Register for your free account! | Forgot your password?

You last visited: Today at 00:01

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[Custom]ControlPanel

Discussion on [Custom]ControlPanel within the CO2 PServer Guides & Releases forum part of the CO2 Private Server category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Mar 2010
Posts: 183
Received Thanks: 74
[Custom]ControlPanel

EDIT: I am working on finishing this project, if anyone can help please PM me!


This control panel will tell you the cmds of the server. It is a basic code. It is not yet finished but here is update #2.


35 views and only 1 thanks... If you like it then don't say thanks actually click the button, it is easier.


Added some screenshots :P

Antivir: Nothing found
ArcaVir: Nothing found
AVG: Nothing found
BitDefender: Nothing found
VirusBlokAda32: Nothing found
VirusBuster: Nothing found

Scanned by

Lots of thanks goes to Justin and walmartboi He helped me code it.
Attached Images
File Type: jpg Capture.JPG (39.6 KB, 437 views)
File Type: jpg Capture2.JPG (44.0 KB, 359 views)
File Type: jpg Capture3.JPG (37.6 KB, 324 views)
Attached Files
File Type: rar Control Panel.rar (94.6 KB, 190 views)
.Light is offline  
Thanks
24 Users
Old 03/18/2010, 06:51   #2
 
Arcо's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 8,765
Received Thanks: 5,291
Screenshot?
Arcо is offline  
Old 03/18/2010, 07:28   #3
 
spare2's Avatar
 
elite*gold: 20
Join Date: Oct 2009
Posts: 1,009
Received Thanks: 621
Quote:
Originally Posted by .Arco View Post
Screenshot?
You could of played your role as a guardian and checked it your self.

Anyway, program was clean and it was coded in C# I assume.



All it does is when you click on a command button, it uses the SendKey() function to send the command to the CO client.

@TS
Quite simple, but good job for a beginner.
spare2 is offline  
Old 03/18/2010, 10:26   #4
 
elite*gold: 20
Join Date: Jan 2008
Posts: 2,338
Received Thanks: 490
Great work!

Source please!
~Yuki~ is offline  
Old 03/18/2010, 14:40   #5
 
elite*gold: 0
Join Date: Mar 2010
Posts: 183
Received Thanks: 74
@spare2 That is what I was attempting... I couldn't get it to send it to the client If you can help PM me that would be great! @~Yuki~ Sorry, no source... It is simple to make.
.Light is offline  
Old 03/18/2010, 15:49   #6
 
elite*gold: 20
Join Date: Jan 2008
Posts: 2,338
Received Thanks: 490
then ill decompile it
~Yuki~ is offline  
Old 03/18/2010, 16:54   #7
 
Luiz01's Avatar
 
elite*gold: 0
Join Date: Apr 2009
Posts: 110
Received Thanks: 32
Quote:
Originally Posted by ~Yuki~ View Post
then ill decompile it
LOLOLOLOLOLOLOLOLOLOL ! YukiFoo~~
Luiz01 is offline  
Thanks
1 User
Old 03/18/2010, 19:34   #8
 
elite*gold: 0
Join Date: Mar 2010
Posts: 183
Received Thanks: 74
I don't care lol It is way easy to make.
.Light is offline  
Old 03/18/2010, 20:19   #9
 
elite*gold: 0
Join Date: Jan 2009
Posts: 37
Received Thanks: 19
Quote:
Originally Posted by ~Yuki~ View Post
then ill decompile it
Too late...

Didn't want to put all of it just some of the methods

Code:
// Methods
    public Form1()
    {
        this.InitializeComponent();
    }

    private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
    {
    }

    private void button1_Click(object sender, EventArgs e)
    {
        int hWnd = FindWindow(null, "[Conquer] Raiding Clans");
        if (hWnd != 0)
        {
            ShowWindow(hWnd, 3);
            SendKeys.Send(this.textBox1.Text);
        }
    }

    private void button10_Click(object sender, EventArgs e)
    {
        this.F("/item PointCard special 0 0 0 0 0");
        this.J("None");
    }

    private void button11_Click(object sender, EventArgs e)
    {
        this.F("/item Cookie special 0 0 0 0 0");
        this.J("None");
    }

    private void button12_Click(object sender, EventArgs e)
    {
        this.F("/dpbag");
        this.J("None");
    }

    private void button13_Click(object sender, EventArgs e)
    {
        this.F("/item MarketlandGate special 0 0 0 0 0");
        this.J("None");
    }

    private void button14_Click(object sender, EventArgs e)
    {
        this.F("/item GoldPrize special 12 7 255 13 13");
        this.J("None");
    }

    private void button16_Click(object sender, EventArgs e)
    {
        this.F("/item Dragonball special 0 0 0 0 0");
        this.J("None");
    }

    private void button2_Click(object sender, EventArgs e)
    {
    }

    private void button2_Click_1(object sender, EventArgs e)
    {
        this.textBox2.Text = "/tc";
        this.textBox3.Text = "/tele 1002 429 378";
    }

    private void button23_Click(object sender, EventArgs e)
    {
        Clipboard.SetText(this.textBox2.Text);
        MessageBox.Show("Copied to clipboard!", "Success");
    }

    private void button3_Click(object sender, EventArgs e)
    {
        this.F("/pc");
        this.J("/tele 1011 232 260");
    }

    private void button4_Click(object sender, EventArgs e)
    {
        this.F("/des");
        this.J("/tele 1000 499 650");
    }

    private void button5_Click(object sender, EventArgs e)
    {
        this.F("/bi");
        this.J("/tele 1015 717 576");
    }

    private void button6_Click(object sender, EventArgs e)
    {
        this.F("/ma");
        this.J("/tele 1036 211 196");
    }

    private void button7_Click(object sender, EventArgs e)
    {
        this.F("/1v1");
        this.J("/tele 1844 150 162");
    }

    private void button8_Click(object sender, EventArgs e)
    {
        this.F("/bv");
        this.J("/tele 1010 089 053");
    }

    private void button9_Click(object sender, EventArgs e)
    {
        this.F("/item Meteor special 0 0 0 0 0");
        this.J("None");
    }

    private void closeToolStripMenuItem_Click(object sender, EventArgs e)
    {
        Application.Exit();
    }

    private void demonPowerSiteToolStripMenuItem_Click(object sender, EventArgs e)
    {
    }

    protected override void Dispose(bool disposing)
    {
        if (disposing && (this.components != null))
        {
            this.components.Dispose();
        }
        base.Dispose(disposing);
    }

    private void F(string set)
    {
        this.textBox2.Text = set;
    }

    [DllImport("User32.dll")]
    private static extern int FindWindow(string lpClassName, string lpWindowName);
    private void Form1_Load(object sender, EventArgs e)
    {
    }

    private void HitEnter()
    {
        SendKeys.Send("{ENTER");
    }

    private void InitializeComponent()
    {
        this.button1 = new Button();
        this.label1 = new Label();
        this.textBox1 = new TextBox();
        this.tabControl1 = new TabControl();
        this.tabPage2 = new TabPage();
        this.tabPage1 = new TabPage();
        this.button23 = new Button();
        this.label2 = new Label();
        this.textBox3 = new TextBox();
        this.textBox2 = new TextBox();
        this.groupBox3 = new GroupBox();
        this.button15 = new Button();
        this.button17 = new Button();
        this.button18 = new Button();
        this.button19 = new Button();
        this.button20 = new Button();
        this.button21 = new Button();
        this.button22 = new Button();
        this.groupBox2 = new GroupBox();
        this.button14 = new Button();
        this.button13 = new Button();
        this.button12 = new Button();
        this.button11 = new Button();
        this.button10 = new Button();
        this.button9 = new Button();
        this.button16 = new Button();
        this.groupBox1 = new GroupBox();
        this.button8 = new Button();
        this.button7 = new Button();
        this.button6 = new Button();
        this.button5 = new Button();
        this.button4 = new Button();
        this.button3 = new Button();
        this.button2 = new Button();
        this.menuStrip1 = new MenuStrip();
        this.commandsToolStripMenuItem = new ToolStripMenuItem();
        this.bodyToolStripMenuItem = new ToolStripMenuItem();
        this.largeMaleToolStripMenuItem = new ToolStripMenuItem();
        this.largeFemaleToolStripMenuItem = new ToolStripMenuItem();
        this.smallMaleToolStripMenuItem = new ToolStripMenuItem();
        this.smallFemaleToolStripMenuItem = new ToolStripMenuItem();
        this.closeToolStripMenuItem = new ToolStripMenuItem();
        this.fileToolStripMenuItem = new ToolStripMenuItem();
        this.tabControl1.SuspendLayout();
        this.tabPage2.SuspendLayout();
        this.tabPage1.SuspendLayout();
        this.groupBox3.SuspendLayout();
        this.groupBox2.SuspendLayout();
        this.groupBox1.SuspendLayout();
        this.menuStrip1.SuspendLayout();
        base.SuspendLayout();
        this.button1.Enabled = false;
        this.button1.Location = new Point(0x67, 0x98);
        this.button1.Name = "button1";
        this.button1.Size = new Size(0x4b, 0x17);
        this.button1.TabIndex = 0;
        this.button1.Text = "Enter";
        this.button1.UseVisualStyleBackColor = true;
        this.button1.Click += new EventHandler(this.button1_Click);
        this.label1.AutoSize = true;
        this.label1.Enabled = false;
        this.label1.Location = new Point(110, 60);
        this.label1.Name = "label1";
        this.label1.Size = new Size(0x39, 13);
        this.label1.TabIndex = 1;
        this.label1.Text = "Command:";
        this.label1.TextAlign = ContentAlignment.MiddleCenter;
        this.textBox1.Enabled = false;
        this.textBox1.Location = new Point(0x31, 0x66);
        this.textBox1.Name = "textBox1";
        this.textBox1.Size = new Size(0xb9, 20);
        this.textBox1.TabIndex = 2;
        this.tabControl1.Controls.Add(this.tabPage2);
        this.tabControl1.Controls.Add(this.tabPage1);
        this.tabControl1.Location = new Point(12, 40);
        this.tabControl1.Name = "tabControl1";
        this.tabControl1.SelectedIndex = 0;
        this.tabControl1.Size = new Size(0x12b, 0x14b);
        this.tabControl1.TabIndex = 3;
        this.tabControl1.TabStop = false;
        this.tabControl1.Tag = "";
        this.tabPage2.BackColor = Color.Transparent;
        this.tabPage2.Controls.Add(this.button1);
        this.tabPage2.Controls.Add(this.textBox1);
        this.tabPage2.Controls.Add(this.label1);
        this.tabPage2.Location = new Point(4, 0x16);
        this.tabPage2.Name = "tabPage2";
        this.tabPage2.Padding = new Padding(3);
        this.tabPage2.Size = new Size(0x123, 0x131);
        this.tabPage2.TabIndex = 1;
        this.tabPage2.Text = "Input Commmands";
        this.tabPage2.ToolTipText = "Input custom Commands";
        this.tabPage1.Controls.Add(this.button23);
        this.tabPage1.Controls.Add(this.label2);
        this.tabPage1.Controls.Add(this.textBox3);
        this.tabPage1.Controls.Add(this.textBox2);
        this.tabPage1.Controls.Add(this.groupBox3);
        this.tabPage1.Controls.Add(this.groupBox2);
        this.tabPage1.Controls.Add(this.groupBox1);
        this.tabPage1.Location = new Point(4, 0x16);
        this.tabPage1.Name = "tabPage1";
        this.tabPage1.Padding = new Padding(3);
        this.tabPage1.Size = new Size(0x123, 0x131);
        this.tabPage1.TabIndex = 0;
        this.tabPage1.Text = "Premade Buttons";
        this.tabPage1.UseVisualStyleBackColor = true;
        this.tabPage1.Click += new EventHandler(this.tabPage1_Click);
        this.button23.Location = new Point(0xf5, 0xef);
        this.button23.Name = "button23";
        this.button23.Size = new Size(40, 0x3b);
        this.button23.TabIndex = 10;
        this.button23.Text = "Copy";
        this.button23.UseVisualStyleBackColor = true;
        this.button23.Click += new EventHandler(this.button23_Click);
        this.label2.AutoSize = true;
        this.label2.Location = new Point(120, 0x106);
        this.label2.Name = "label2";
        this.label2.Size = new Size(0x17, 13);
        this.label2.TabIndex = 9;
        this.label2.Text = "OR";
        this.textBox3.Location = new Point(12, 0x116);
        this.textBox3.Name = "textBox3";
        this.textBox3.Size = new Size(0xe3, 20);
        this.textBox3.TabIndex = 8;
        this.textBox2.Location = new Point(12, 0xef);
        this.textBox2.Name = "textBox2";
        this.textBox2.Size = new Size(0xe3, 20);
        this.textBox2.TabIndex = 5;
        this.textBox2.TextChanged += new EventHandler(this.textBox2_TextChanged);
        this.groupBox3.Controls.Add(this.button15);
        this.groupBox3.Controls.Add(this.button17);
        this.groupBox3.Controls.Add(this.button18);
        this.groupBox3.Controls.Add(this.button19);
        this.groupBox3.Controls.Add(this.button20);
        this.groupBox3.Controls.Add(this.button21);
        this.groupBox3.Controls.Add(this.button22);
        this.groupBox3.Location = new Point(0xc1, 6);
        this.groupBox3.Name = "groupBox3";
        this.groupBox3.Size = new Size(0x57, 0xe3);
        this.groupBox3.TabIndex = 7;
        this.groupBox3.TabStop = false;
        this.groupBox3.Text = "CharPacks";
        this.button15.Enabled = false;
        this.button15.Location = new Point(6, 0xc1);
        this.button15.Name = "button15";
        this.button15.Size = new Size(0x4b, 0x17);
        this.button15.TabIndex = 6;
        this.button15.Text = "Weapons";
        this.button15.UseVisualStyleBackColor = true;
        this.button17.Enabled = false;
        this.button17.Location = new Point(6, 0xa4);
        this.button17.Name = "button17";
        this.button17.Size = new Size(0x4b, 0x17);
        this.button17.TabIndex = 5;
        this.button17.Text = "Ninja";
        this.button17.UseVisualStyleBackColor = true;
        this.button18.Enabled = false;
        this.button18.Location = new Point(6, 0x87);
        this.button18.Name = "button18";
        this.button18.Size = new Size(0x4b, 0x17);
        this.button18.TabIndex = 4;
        this.button18.Text = "Archer";
        this.button18.UseVisualStyleBackColor = true;
        this.button19.Enabled = false;
        this.button19.Location = new Point(6, 0x6a);
        this.button19.Name = "button19";
        this.button19.Size = new Size(0x4b, 0x17);
        this.button19.TabIndex = 3;
        this.button19.Text = "Water";
        this.button19.UseVisualStyleBackColor = true;
        this.button20.Enabled = false;
        this.button20.Location = new Point(6, 0x4d);
        this.button20.Name = "button20";
        this.button20.Size = new Size(0x4b, 0x17);
        this.button20.TabIndex = 2;
        this.button20.Text = "Fire";
        this.button20.UseVisualStyleBackColor = true;
        this.button21.Enabled = false;
        this.button21.Location = new Point(6, 0x30);
        this.button21.Name = "button21";
        this.button21.Size = new Size(0x4b, 0x17);
        this.button21.TabIndex = 1;
        this.button21.Text = "Warrior";
        this.button21.UseVisualStyleBackColor = true;
        this.button22.Enabled = false;
        this.button22.Location = new Point(6, 0x13);
        this.button22.Name = "button22";
        this.button22.Size = new Size(0x4b, 0x17);
        this.button22.TabIndex = 0;
        this.button22.Text = "Trojan";
        this.button22.UseVisualStyleBackColor = true;
        this.groupBox2.Controls.Add(this.button14);
        this.groupBox2.Controls.Add(this.button13);
        this.groupBox2.Controls.Add(this.button12);
        this.groupBox2.Controls.Add(this.button11);
        this.groupBox2.Controls.Add(this.button10);
        this.groupBox2.Controls.Add(this.button9);
        this.groupBox2.Controls.Add(this.button16);
        this.groupBox2.Location = new Point(100, 6);
        this.groupBox2.Name = "groupBox2";
        this.groupBox2.Size = new Size(0x57, 0xe3);
        this.groupBox2.TabIndex = 1;
        this.groupBox2.TabStop = false;
        this.groupBox2.Text = "Items";
        this.button14.Location = new Point(6, 0xc1);
        this.button14.Name = "button14";
        this.button14.Size = new Size(0x4b, 0x17);
        this.button14.TabIndex = 6;
        this.button14.Text = "GoldPrize";
        this.button14.UseVisualStyleBackColor = true;
        this.button14.Click += new EventHandler(this.button14_Click);
        this.button13.Location = new Point(6, 0xa4);
        this.button13.Name = "button13";
        this.button13.Size = new Size(0x4b, 0x17);
        this.button13.TabIndex = 5;
        this.button13.Text = "MarketlandGate";
        this.button13.UseVisualStyleBackColor = true;
        this.button13.Click += new EventHandler(this.button13_Click);
        this.button12.Location = new Point(6, 0x87);
        this.button12.Name = "button12";
        this.button12.Size = new Size(0x4b, 0x17);
        this.button12.TabIndex = 4;
        this.button12.Text = "DPBag";
        this.button12.UseVisualStyleBackColor = true;
        this.button12.Click += new EventHandler(this.button12_Click);
        this.button11.Location = new Point(6, 0x6a);
        this.button11.Name = "button11";
        this.button11.Size = new Size(0x4b, 0x17);
        this.button11.TabIndex = 3;
        this.button11.Text = "Cookie";
        this.button11.UseVisualStyleBackColor = true;
        this.button11.Click += new EventHandler(this.button11_Click);
        this.button10.Location = new Point(6, 0x4d);
        this.button10.Name = "button10";
        this.button10.Size = new Size(0x4b, 0x17);
        this.button10.TabIndex = 2;
        this.button10.Text = "PointCard";
        this.button10.UseVisualStyleBackColor = true;
        this.button10.Click += new EventHandler(this.button10_Click);
        this.button9.Location = new Point(6, 0x30);
        this.button9.Name = "button9";
        this.button9.Size = new Size(0x4b, 0x17);
        this.button9.TabIndex = 1;
        this.button9.Text = "Meteor";
        this.button9.UseVisualStyleBackColor = true;
        this.button9.Click += new EventHandler(this.button9_Click);
        this.button16.Location = new Point(6, 0x13);
        this.button16.Name = "button16";
        this.button16.Size = new Size(0x4b, 0x17);
        this.button16.TabIndex = 0;
        this.button16.Text = "Dragonball";
        this.button16.UseVisualStyleBackColor = true;
        this.button16.Click += new EventHandler(this.button16_Click);
        this.groupBox1.BackColor = Color.Transparent;
        this.groupBox1.Controls.Add(this.button8);
        this.groupBox1.Controls.Add(this.button7);
        this.groupBox1.Controls.Add(this.button6);
        this.groupBox1.Controls.Add(this.button5);
        this.groupBox1.Controls.Add(this.button4);
        this.groupBox1.Controls.Add(this.button3);
        this.groupBox1.Controls.Add(this.button2);
        this.groupBox1.Location = new Point(6, 6);
        this.groupBox1.Name = "groupBox1";
        this.groupBox1.Size = new Size(0x57, 0xe3);
        this.groupBox1.TabIndex = 0;
        this.groupBox1.TabStop = false;
        this.groupBox1.Text = "Teleports";
        this.button8.Location = new Point(6, 0xc1);
        this.button8.Name = "button8";
        this.button8.Size = new Size(0x4b, 0x17);
        this.button8.TabIndex = 6;
        this.button8.Text = "BirthVillage";
        this.button8.UseVisualStyleBackColor = true;
        this.button8.Click += new EventHandler(this.button8_Click);
        this.button7.Location = new Point(6, 0xa4);
        this.button7.Name = "button7";
        this.button7.Size = new Size(0x4b, 0x17);
        this.button7.TabIndex = 5;
        this.button7.Text = "EventMap";
        this.button7.UseVisualStyleBackColor = true;
        this.button7.Click += new EventHandler(this.button7_Click);
        this.button6.Location = new Point(6, 0x87);
        this.button6.Name = "button6";
        this.button6.Size = new Size(0x4b, 0x17);
        this.button6.TabIndex = 4;
        this.button6.Text = "Market";
        this.button6.UseVisualStyleBackColor = true;
        this.button6.Click += new EventHandler(this.button6_Click);
        this.button5.Location = new Point(6, 0x6a);
        this.button5.Name = "button5";
        this.button5.Size = new Size(0x4b, 0x17);
        this.button5.TabIndex = 3;
        this.button5.Text = "BirdIsland";
        this.button5.UseVisualStyleBackColor = true;
        this.button5.Click += new EventHandler(this.button5_Click);
        this.button4.Location = new Point(6, 0x4d);
        this.button4.Name = "button4";
        this.button4.Size = new Size(0x4b, 0x17);
        this.button4.TabIndex = 2;
        this.button4.Text = "DesertCity";
        this.button4.UseVisualStyleBackColor = true;
        this.button4.Click += new EventHandler(this.button4_Click);
        this.button3.Location = new Point(6, 0x30);
        this.button3.Name = "button3";
        this.button3.Size = new Size(0x4b, 0x17);
        this.button3.TabIndex = 1;
        this.button3.Text = "CastleGate";
        this.button3.UseVisualStyleBackColor = true;
        this.button3.Click += new EventHandler(this.button3_Click);
        this.button2.Location = new Point(6, 0x13);
        this.button2.Name = "button2";
        this.button2.Size = new Size(0x4b, 0x17);
        this.button2.TabIndex = 0;
        this.button2.TabStop = false;
        this.button2.Text = "TwinCity";
        this.button2.UseVisualStyleBackColor = true;
        this.button2.Click += new EventHandler(this.button2_Click_1);
        this.menuStrip1.Items.AddRange(new ToolStripItem[] { this.fileToolStripMenuItem, this.commandsToolStripMenuItem });
        this.menuStrip1.Location = new Point(0, 0);
        this.menuStrip1.Name = "menuStrip1";
        this.menuStrip1.Size = new Size(0x141, 0x18);
        this.menuStrip1.TabIndex = 4;
        this.menuStrip1.Text = "menuStrip1";
        this.commandsToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { this.bodyToolStripMenuItem });
        this.commandsToolStripMenuItem.Enabled = false;
        this.commandsToolStripMenuItem.Name = "commandsToolStripMenuItem";
        this.commandsToolStripMenuItem.Size = new Size(0x51, 20);
        this.commandsToolStripMenuItem.Text = "Commands";
        this.bodyToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { this.largeMaleToolStripMenuItem, this.largeFemaleToolStripMenuItem, this.smallMaleToolStripMenuItem, this.smallFemaleToolStripMenuItem });
        this.bodyToolStripMenuItem.Name = "bodyToolStripMenuItem";
        this.bodyToolStripMenuItem.Size = new Size(0x98, 0x16);
        this.bodyToolStripMenuItem.Text = "Body";
        this.largeMaleToolStripMenuItem.Name = "largeMaleToolStripMenuItem";
        this.largeMaleToolStripMenuItem.Size = new Size(0x90, 0x16);
        this.largeMaleToolStripMenuItem.Text = "Large Male";
        this.largeFemaleToolStripMenuItem.Name = "largeFemaleToolStripMenuItem";
        this.largeFemaleToolStripMenuItem.Size = new Size(0x90, 0x16);
        this.largeFemaleToolStripMenuItem.Text = "Large Female";
        this.smallMaleToolStripMenuItem.Name = "smallMaleToolStripMenuItem";
        this.smallMaleToolStripMenuItem.Size = new Size(0x90, 0x16);
        this.smallMaleToolStripMenuItem.Text = "Small Male";
        this.smallFemaleToolStripMenuItem.Name = "smallFemaleToolStripMenuItem";
        this.smallFemaleToolStripMenuItem.Size = new Size(0x90, 0x16);
        this.smallFemaleToolStripMenuItem.Text = "Small Female";
        this.closeToolStripMenuItem.Name = "closeToolStripMenuItem";
        this.closeToolStripMenuItem.Size = new Size(0x98, 0x16);
        this.closeToolStripMenuItem.Text = "Close";
        this.closeToolStripMenuItem.Click += new EventHandler(this.closeToolStripMenuItem_Click);
        this.fileToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { this.closeToolStripMenuItem });
        this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
        this.fileToolStripMenuItem.Size = new Size(0x25, 20);
        this.fileToolStripMenuItem.Text = "File";
        base.AutoScaleDimensions = new SizeF(6f, 13f);
        base.AutoScaleMode = AutoScaleMode.Font;
        base.ClientSize = new Size(0x141, 0x17f);
        base.Controls.Add(this.tabControl1);
        base.Controls.Add(this.menuStrip1);
        base.FormBorderStyle = FormBorderStyle.FixedToolWindow;
        base.MainMenuStrip = this.menuStrip1;
        base.Name = "Form1";
        base.StartPosition = FormStartPosition.CenterScreen;
        this.Text = "Control Panel";
        base.Load += new EventHandler(this.Form1_Load);
        this.tabControl1.ResumeLayout(false);
        this.tabPage2.ResumeLayout(false);
        this.tabPage2.PerformLayout();
        this.tabPage1.ResumeLayout(false);
        this.tabPage1.PerformLayout();
        this.groupBox3.ResumeLayout(false);
        this.groupBox2.ResumeLayout(false);
        this.groupBox1.ResumeLayout(false);
        this.menuStrip1.ResumeLayout(false);
        this.menuStrip1.PerformLayout();
        base.ResumeLayout(false);
        base.PerformLayout();
    }

    private void J(string set)
    {
        this.textBox3.Text = set;
    }

    private void SendText(string Text)
    {
        SendKeys.Send(Text);
    }

    [DllImport("user32.dll")]
    private static extern bool ShowWindow(int hWnd, int nCmdShow);
    private void tabPage1_Click(object sender, EventArgs e)
    {
    }

    private void textBox2_TextChanged(object sender, EventArgs e)
    {
    }

    private void viewToolStripMenuItem_Click(object sender, EventArgs e)
    {
    }
Code:
internal static class Program
{
    // Methods
    [STAThread]
    private static void Main()
    {
        Application.EnableVisualStyles();
        Application.SetCompatibleTextRenderingDefault(false);
        Application.Run(new Splash());
        Application.Run(new Form1());
    }
}















kophtus is offline  
Old 03/18/2010, 21:55   #10
 
walmartboi's Avatar
 
elite*gold: 0
Join Date: Dec 2007
Posts: 378
Received Thanks: 163
Children, this is why we post sources on e*pvp.
walmartboi is offline  
Old 03/19/2010, 00:04   #11
 
elite*gold: 0
Join Date: Sep 2008
Posts: 178
Received Thanks: 62
I just want the code for write in the chat box :S
.Kob is offline  
Old 03/19/2010, 00:05   #12
 
elite*gold: 0
Join Date: Mar 2010
Posts: 183
Received Thanks: 74
Explain?
.Light is offline  
Old 03/19/2010, 04:25   #13
 
cloudwind360's Avatar
 
elite*gold: 0
Join Date: Feb 2009
Posts: 295
Received Thanks: 29
this is awesome! thanks so much
cloudwind360 is offline  
Old 03/19/2010, 04:39   #14
 
elite*gold: 0
Join Date: Mar 2010
Posts: 183
Received Thanks: 74
You are welcome Check in tomorrow there will be an update.
.Light is offline  
Old 03/19/2010, 11:06   #15
 
elite*gold: 0
Join Date: Sep 2008
Posts: 178
Received Thanks: 62
Quote:
Originally Posted by .Light View Post
Explain?
>.< The code for write the command in the Conquer.

When you clic a button, the sistem write and send a command in the conquer really? o.0 I want this code xD
.Kob is offline  
Reply


Similar Threads Similar Threads
help about controlpanel
08/14/2009 - Dekaron Private Server - 1 Replies
help please i wanna edit my char my char have 4 letters asdd but controlpanel giving error The new character's name is not just letters and numbers or is shorter than 6 characters or longer than 12 characters.. what i must do help pls



All times are GMT +2. The time now is 00:01.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.