Exemple #1
0
 private void btnInformation_Click(object sender, EventArgs e)
 {
     if (formInformation == null) formInformation = new Information(Client);
     formInformation.StartPosition = FormStartPosition.Manual;
     formInformation.Location = new Point(this.Location.X + 20, this.Location.Y + 20);
     if (!formInformation.Visible) formInformation.Show();
     else formInformation.Activate();
 }
Exemple #2
0
        private void MainHub_Shown(object sender, EventArgs e)
        {
            this.Client.CloseWhenClientCloses = true;

            // instantiate modules
            formCavebot     = new Cavebot(this.Client);
            formHealer      = new Healer(this.Client);
            formHotkeys     = new Hotkeys(this.Client);
            formInformation = new Information(this.Client);
            formPvP         = new PvP(this.Client);
            formScripter    = new Scripter(this.Client);
        }
Exemple #3
0
 private void btnInformation_Click(object sender, EventArgs e)
 {
     if (formInformation == null)
     {
         formInformation = new Information(Client);
     }
     formInformation.StartPosition = FormStartPosition.Manual;
     formInformation.Location      = new Point(this.Location.X + 20, this.Location.Y + 20);
     if (!formInformation.Visible)
     {
         formInformation.Show();
     }
     else
     {
         formInformation.Activate();
     }
 }
Exemple #4
0
        private void MainHub_Shown(object sender, EventArgs e)
        {
            this.Client.CloseWhenClientCloses = true;

            // instantiate modules
            formCavebot = new Cavebot(this.Client);
            formHealer = new Healer(this.Client);
            formHotkeys = new Hotkeys(this.Client);
            formInformation = new Information(this.Client);
            formPvP = new PvP(this.Client);
            formScripter = new Scripter(this.Client);
        }