Post: How To Create A Call Of Duty Tool
06-16-2011, 11:48 PM #1
Correy
I'm the Original
(adsbygoogle = window.adsbygoogle || []).push({}); In this thread i will be teaching you how to create a Call of duty Tool.

it's simple, easy and comes in handy.
this can be used for making menu makers but, i'm not going to spoon feed you.. thats for you to try, but anyway.. here's a starter.

Whats already Coded
- Creates the CM & MP
- Saves and Write to the CM & MP
- Generates Four Binds
you can add more and experiment to make better things such as a Menu Maker ect.

- Creating a Bind Creator
Here's my Source code for the bind creator, look below.

Full Source Download
    
https://www.mediafire.com/file/yvnx087jk5gd53c/Youtube%20Tutorial%20Bind%20Creator.rar


Coding as a Text
    
[B]//Created By xCorrey

//Form 1 Coding[/B]
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Youtube_Tutorial_Bind_Creator.Properties;

namespace Youtube_Tutorial_Bind_Creator
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
if ((textBox1.Text == "") && (textBox2.Text == "") && (textBox3.Text == "") && (textBox3.Text == ""))
{
MessageBox.Show("No Codes have been entered!", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
else
{
Settings.Default.GeneratedCode = ("BIND " + comboBox1.Text + " \"" + textBox1.Text + "\"\nBIND " + comboBox2.Text + " \"" + textBox2.Text + "\"\nBIND " + comboBox3.Text + " \"" + textBox3.Text + "\"\nBIND " + comboBox4.Text + " \"" + textBox4.Text + "\"");
Form Form2 = new Form2();
Form2.Show();
}
}

private void Form1_Load(object sender, EventArgs e)
{

}
}
}




[B]//Form 2 coding[/B]
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Youtube_Tutorial_Bind_Creator.Properties;

namespace Youtube_Tutorial_Bind_Creator
{
public partial class Form2 : Form
{
public Form2()
{
InitializeComponent();
}

private void Form2_Load(object sender, EventArgs e)
{
richTextBox1.Text = Settings.Default.GeneratedCode;
}
}
}


Coding in a Pastie
    
https://pastie.org/2080151

Also, heres a Video tutorial.. it's my first commentry so don't hate, it's for you.
yeah, i hate my voice lmfao.

Video is Uploading, 64% done =D

thanks for reading this thread, i hope it helps you.
i'm giving this to the commiunity especially this section as this is were i first started of

Note : remember, if you do use that source or if you do benefit from this video and tutorial please Include some type of Thanks or Credits, i would also appreciate it if you could help my channel get a few more subscribers or help me out through subscribing - You must login or register to view this content..

Take Care.
(adsbygoogle = window.adsbygoogle || []).push({});

The following 3 users say thank you to Correy for this useful post:

Bad Luck Brian, Fuser's Hoe, User2340034u
06-17-2011, 12:13 AM #2
Correy
I'm the Original
Originally posted by lt
cool this will come in handy


experiment as you wish, but make sure if you do use please include some sort of credits =D
06-17-2011, 02:34 PM #3
Default Avatar
Brad
Guest
nice what. language is the coded it?
06-17-2011, 03:02 PM #4
MeowDev
Power to the Premium
C# Brad.

This section got spammed with these before, I would like to thank you for contributing however we will all have to put up with the spammed programs now.
06-17-2011, 03:31 PM #5
Originally posted by Telepot View Post
C# Brad.

This section got spammed with these before, I would like to thank you for contributing however we will all have to put up with the spammed programs now.


Never complain about too many people trying to make something easier.

The following 2 users say thank you to FourzerotwoFAILS for this useful post:

Correy, O.P
06-18-2011, 03:17 PM #6
Correy
I'm the Original
Originally posted by Telepot View Post
C# Brad.

This section got spammed with these before, I would like to thank you for contributing however we will all have to put up with the spammed programs now.


i do this for the commuinity, if they want to do this theyn let them.. if you want to then i'm happy for you, btw.. this also is advanced which no oone has done yet in there programs, this actually creates the cm and mp, plus i'm making another program.

---------- Post added at 04:16 PM ---------- Previous post was at 04:16 PM ----------

Originally posted by FourzerotwoFAIL View Post
Never complain about too many people trying to make something easier.


hey sexy :wub:, you should benifit from this.. learn C#, then maybe we could make another project :love: ?

---------- Post added at 04:17 PM ---------- Previous post was at 04:16 PM ----------

Originally posted by Dr.
nice what. language is the coded it?


thanks, it's in CS / C# for visual studio ultimate 2010 Happy.
06-18-2011, 03:18 PM #7
Originally posted by xCorrey
i do this for the commuinity, if they want to do this theyn let them.. if you want to then i'm happy for you, btw.. this also is advanced which no oone has done yet in there programs, this actually creates the cm and mp, plus i'm making another program.

---------- Post added at 04:16 PM ---------- Previous post was at 04:16 PM ----------



hey sexy :wub:, you should benifit from this.. learn C#, then maybe we could make another project :love: ?

---------- Post added at 04:17 PM ---------- Previous post was at 04:16 PM ----------



thanks, it's in CS / C# for visual studio ultimate 2010 Happy.


hey baby. I already know C#. Not doing many more projects as I don't have the time :P
06-18-2011, 04:02 PM #8
Correy
I'm the Original
Originally posted by FourzerotwoFAIL View Post
hey baby. I already know C#. Not doing many more projects as I don't have the time :P


ha okay bro Happy :love:
06-22-2011, 04:03 AM #9
Luulz
Bounty hunter
I Think C and C++ is better than C sharp
07-13-2011, 06:02 AM #10
Originally posted by Correy View Post
In this thread i will be teaching you how to create a Call of duty Tool.

it's simple, easy and comes in handy.
this can be used for making menu makers but, i'm not going to spoon feed you.. thats for you to try, but anyway.. here's a starter.

Whats already Coded
- Creates the CM & MP
- Saves and Write to the CM & MP
- Generates Four Binds
you can add more and experiment to make better things such as a Menu Maker ect.

- Creating a Bind Creator
Here's my Source code for the bind creator, look below.

Full Source Download
    
https://www.mediafire.com/file/yvnx087jk5gd53c/Youtube%20Tutorial%20Bind%20Creator.rar


Coding as a Text
    
[B]//Created By xCorrey

//Form 1 Coding[/B]
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Youtube_Tutorial_Bind_Creator.Properties;

namespace Youtube_Tutorial_Bind_Creator
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
if ((textBox1.Text == "") && (textBox2.Text == "") && (textBox3.Text == "") && (textBox3.Text == ""))
{
MessageBox.Show("No Codes have been entered!", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
else
{
Settings.Default.GeneratedCode = ("BIND " + comboBox1.Text + " \"" + textBox1.Text + "\"\nBIND " + comboBox2.Text + " \"" + textBox2.Text + "\"\nBIND " + comboBox3.Text + " \"" + textBox3.Text + "\"\nBIND " + comboBox4.Text + " \"" + textBox4.Text + "\"");
Form Form2 = new Form2();
Form2.Show();
}
}

private void Form1_Load(object sender, EventArgs e)
{

}
}
}




[B]//Form 2 coding[/B]
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Youtube_Tutorial_Bind_Creator.Properties;

namespace Youtube_Tutorial_Bind_Creator
{
public partial class Form2 : Form
{
public Form2()
{
InitializeComponent();
}

private void Form2_Load(object sender, EventArgs e)
{
richTextBox1.Text = Settings.Default.GeneratedCode;
}
}
}


Coding in a Pastie
    
https://pastie.org/2080151

Also, heres a Video tutorial.. it's my first commentry so don't hate, it's for you.
yeah, i hate my voice lmfao.

Video is Uploading, 64% done =D

thanks for reading this thread, i hope it helps you.
i'm giving this to the commiunity especially this section as this is were i first started of

Note : remember, if you do use that source or if you do benefit from this video and tutorial please Include some type of Thanks or Credits, i would also appreciate it if you could help my channel get a few more subscribers or help me out through subscribing - You must login or register to view this content..

Take Care.





hey see i made this
BIND DPAD_UP "statSet 2326 11"
BIND DPAD_DOWN " statSet 2326 10"
BIND DPAD_LEFT " statSet 2326 9"
BIND DPAD_RIGHT " statSet 2326 5"

and but how did you get to make the cod tool i cant find that in the dowlload PM back or Post Back Help

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo