Post: How to C# Thread: (COD Wise)
03-19-2014, 06:13 AM #1
ByteSource
League Champion
(adsbygoogle = window.adsbygoogle || []).push({}); Hello NGU, today(3/19/14) I have started a How to C# thread. I have noticed that majority of the NGU Development Community (NDC) has finally gathered there data to create (Projects/Programs/Tools). I'm here to share my knowledge, to the people who don't know much of C# Developing. This thread is based of the most Simple -> Complicated C# Coding, I will try to get more Developers to create sources and tutorials to help you guys understand how to Develop your own Tool. As most of the NGU Community has been filled with nothing but (CEX|DEX) modders, why not help the modders turn into Developers. If you would like to learn and also need help with anything simple but is complicated for you this will be the thread for you. I hope you learn!


  • DO not hate i know its only one TUT, i will add another tomarrow making it in this little box is really complicated and also i dont have much time but you guys get the point of it





Tutorial 1: How to Use a NumericUpandDown (Multiple Choices) ( 3 Step )

Version Numeric Up and Down with Listed Information.

Objects Needed: As meany NumericUpandDowns you would like to use, a Button, and a RichtextBox.

Step 1: Double Click the Button.
You must login or register to view this content.
Step 2: We Must now make the button send the Value of the NumericUpandDown box to the Game its self and write down the Value in the TextBox to remind you what you have set the Value to.

    richTextBox1.Text = "Prestige Value = " + numericUpDown1.Value.ToString();//Writes down the value of the NU&Awesome face to the textbox.

    MessageBox.Show("Prestige set to the value off" + numericUpDown1.Value.ToString() + "!");//Notifys you the Value

    byte[] Prestige = BitConverter.GetBytes(Convert.ToInt32(numericUpDown1.Value));//Converts the Value to Bytes

    PS3.SetMemory(0x000000, Prestige);//Sets the Offset and sends the NU&Awesome face value.

You must login or register to view this content.

Step 3: Set the Value to the Max witch will be 2147483647
You must login or register to view this content.
Step 4: Run and enjoy!
You must login or register to view this content.


Version Numeric Up and Down without Listed Information.

Objects Needed: As meany NumericUpandDowns you would like to use and a Button.

Step 1: Double Click the Button.
You must login or register to view this content.
Step 2: We Must now make the button send the Value of the NumericUpandDown box to the Game its self and write down the Value in the TextBox to remind you what you have set the Value to.

    MessageBox.Show("Prestige set to the value off" + numericUpDown1.Value.ToString() + "!");//Notifys you the Value

    byte[] Prestige = BitConverter.GetBytes(Convert.ToInt32(numericUpDown1.Value));//Converts the Value to Bytes

    PS3.SetMemory(0x000000, Prestige);//Sets the Offset and sends the NU&Awesome face value.

You must login or register to view this content.

Step 3: Set the Value to the Max witch will be 2147483647
You must login or register to view this content.
Step 4: Run and enjoy!


Tutorial 2: How to Set and use Image strings (Credit: BaSs_HaXoR, RatchetBooty)


Objects Needed: One Text Box, One Button, and a list Box.
Codes Done for you:
listBox1.Items.Add("^==voice_on");// - voice on
listBox1.Items.Add("^ZZnottalkingicon");// - not talking icon
listBox1.Items.Add("^ZZtalkingicon");// - talking icon
listBox1.Items.Add("^ZZui_host");// - host
listBox1.Items.Add("^== voice_off");// - voice off
listBox1.Items.Add("^==net_disconnect");// - net disconnect
listBox1.Items.Add("^ZZprogress_bar_fg");// - progress bar
listBox1.Items.Add("^ZZhint_health");// - hint health
listBox1.Items.Add("^ZZ*playlist_population");// - the little map you see that shows the people around the world playing ghosts
listBox1.Items.Add("^ZZ*hud_grenadepointer");// - grenade pointer icon
listBox1.Items.Add("^ZZ*hud_grenadethrowback");// - grenade throw back icon
listBox1.Items.Add("^ZZ*headiconvoicechat");// - head icon voice chat
listBox1.Items.Add("^ZZFacebook - facebook");// logo
listBox1.Items.Add("^ZZ*hud_flashbangicon");// - flash bang icon
listBox1.Items.Add("^ZZaward_trophy");// - trophy award
listBox1.Items.Add("^ZZaward_positive");// - positive award
listBox1.Items.Add("^ZZaward_negative");// - negative award
listBox1.Items.Add("^ZZ*waypoint_defend_c");// - defend c way point
listBox1.Items.Add("^ZZhud_status_dead");// - dead status
listBox1.Items.Add("^ZZ*waypoint_target_b");// - target b way point
listBox1.Items.Add("^ZZ*waypoint_defend_b");// - defend b way point
listBox1.Items.Add("^ZZwaypoint_escort");// - escort way point
listBox1.Items.Add("^ZZ*waypoint_target_a");// - target a way point
listBox1.Items.Add("^ZZ*waypoint_defuse_a");// - defuse a way point
listBox1.Items.Add("^ZZ*waypoint_capture_c");// - capture c way point
listBox1.Items.Add("^ZZ*waypoint_capture_a");// - capture a way point
listBox1.Items.Add("^ZZ*waypoint_capture_b");// - capture b way point
listBox1.Items.Add("^ZZ*waypoint_defend_a");// - defend a way point
listBox1.Items.Add("^ZZ*waypoint_defuse_b");// - defuse b way point
listBox1.Items.Add("^ZZhud_grenadeicon");// - grenade icon
listBox1.Items.Add("^ZZ*hud_suitcase_bomb");// - bomb suitcase
listBox1.Items.Add("^ZZkilliconfalling");// - falling icon
listBox1.Items.Add("^ZZaward_skull");// - skull award
listBox1.Items.Add("^ZZaward_bird");// - bird award
listBox1.Items.Add("^ZZ plantbomb");// - bomb plant
listBox1.Items.Add("^ZZ*killiconheadshot");// - headshot icon
listBox1.Items.Add("^ZZmapselect_arrow");// - arrow
listBox1.Items.Add("^ZZaward_hero");// - hero award
listBox1.Items.Add("^ZZdefusebomb");// - bomb defuse
listBox1.Items.Add("^ZZkilliconimpact");// - impact
listBox1.Items.Add("^ZZhint_usable");// - idk what this is
listBox1.Items.Add("^ZZaward_jets");// - jet award

Step 1: Double click the form ( Set the Items when form Loads )
You must login or register to view this content.
Step 2: Double Click the listbox to set items( Prevents you from clicking the item and having to have a button to set the item )
    textBox1.Text = listBox1.SelectedItem.ToString();
MessageBox.Show("Selected Item " + listBox1.SelectedItem.ToString());
You must login or register to view this content.

Step 3: Send Selected item to the Game
    byte[] imagename = BitConverter.GetBytes(Convert.ToUInt32(textBox1.Text));
Array.Resize(ref imagename, imagename.Length + 1);
PS3.SetMemory(0x0176A038, imagename);

Step 4: Run the Program and Send!
You must login or register to view this content.





Tutorials will be added [DAILY]



Log

3/18/14 - Added Tutorial 1
3/19/14 - Added Tutorial 2


[/I]
(adsbygoogle = window.adsbygoogle || []).push({});

The following 8 users say thank you to ByteSource for this useful post:

▶DaOriginal209◀, Dan Dactyl, iHc-Patches, Renton, ResistTheMoon, SnTsV1_modZ, xROccOx, zSunriseModz
03-20-2014, 02:46 AM #11
FarSideX
I’m too L33T
You really should learn to program yourself before trying to teach others.

No offence meant but going by your tutorials you have much to learn in the basic fundamentals of programming yourself let alone teaching others.

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

Artiist, Mxtivated
03-20-2014, 02:58 AM #12
ByteSource
League Champion
Originally posted by FarSideX View Post
You really should learn to program yourself before trying to teach others.

No offence meant but going by your tutorials you have much to learn in the basic fundamentals of programming yourself let alone teaching others.


Kill your self ******, you think your a good coder because you made a shitty tool? then make a thread to help others and shit the fuck up. Your annoying and your not worth being in the NGU community. If you such know C# why open a thread thats not useful for you? is it because ur looking for help but your trying to make ur self look professional or is it google that does all your work? no offence your a skid and a scrub. no wonder your didnt update your tool, your work is worthless to other people because you think your better than others. Facepalm Im sorry to say but your stupid for Groaning someones work for others that dont know 1 thing about C# your retarted because your the one that clicked on a thread u such not need. Log off NGU and jump off a clift and just die. Dont reply back because what ever u say is going to be worthless and stupid. + once you read this your going to sit there and think about to something to say back and sweat your balls off. Goodbye kiddo
03-20-2014, 03:04 AM #13
FarSideX
I’m too L33T
Originally posted by TeamIdentity View Post
Kill your self ******, you think your a good coder because you made a shitty tool? then make a thread to help others and shit the fuck up. Your annoying and your not worth being in the NGU community. If you such know C# why open a thread thats not useful for you? is it because ur looking for help but your trying to make ur self look professional or is it google that does all your work? no offence your a skid and a scrub. no wonder your didnt update your tool, your work is worthless to other people because you think your better than others. Facepalm Im sorry to say but your stupid for Groaning someones work for others that dont know 1 thing about C# your retarted because your the one that clicked on a thread u such not need. Log off NGU and jump off a clift and just die. Dont reply back because what ever u say is going to be worthless and stupid. + once you read this your going to sit there and think about to something to say back and sweat your balls off. Goodbye kiddo


Seriously dude stop making bad examples for people to follow. All I am saying is learn to program before you try to teach. Your coding is inexperienced and is not worthy of being used to teach others. I'm not trying to insult you, you just lack experience and your coding shows it, why teach bad programming?
03-20-2014, 03:21 AM #14
ByteSource
League Champion
Originally posted by FarSideX View Post
Seriously dude stop making bad examples for people to follow. All I am saying is learn to program before you try to teach. Your coding is inexperienced and is not worthy of being used to teach others. I'm not trying to insult you, you just lack experience and your coding shows it, why teach bad programming?


Then you teach simple as that, you dont want to see this type of coding show your master side of coding. Ive never seen s thread of anykind of source from you why is that can you not code?
03-20-2014, 11:29 AM #15
FarSideX
I’m too L33T
Originally posted by TeamIdentity View Post
Then you teach simple as that, you dont want to see this type of coding show your master side of coding. Ive never seen s thread of anykind of source from you why is that can you not code?


As we both know you asked me to show you what you were doing wrong before. I did so line by line. I explained what you did wrong and why it was wrong. Your response showed you to be deeply bi-polar as you raged at me for doing something you asked me to do, stating you could not understand it (as it was to advanced for you I assumed). Although you raged about that post you clearly learned something as some of the worst mistakes in that 'tutorial' are not repeated here.

I have written tutorials but like your response to the above mentioned post they are beyond your current skill level. If you like I could write a simpler tutorial using your code as an example of what not to do.
03-20-2014, 12:01 PM #16
ByteSource
League Champion
Originally posted by FarSideX View Post
As we both know you asked me to show you what you were doing wrong before. I did so line by line. I explained what you did wrong and why it was wrong. Your response showed you to be deeply bi-polar as you raged at me for doing something you asked me to do, stating you could not understand it (as it was to advanced for you I assumed). Although you raged about that post you clearly learned something as some of the worst mistakes in that 'tutorial' are not repeated here.

I have written tutorials but like your response to the above mentioned post they are beyond your current skill level. If you like I could write a simpler tutorial using your code as an example of what not to do.


img not saying anything else
You must login or register to view this content.
03-20-2014, 07:19 PM #17
Mxtivated
I am error
Originally posted by TeamIdentity View Post
Kill your self ******, you think your a good coder because you made a shitty tool? then make a thread to help others and shit the fuck up. Your annoying and your not worth being in the NGU community. If you such know C# why open a thread thats not useful for you? is it because ur looking for help but your trying to make ur self look professional or is it google that does all your work? no offence your a skid and a scrub. no wonder your didnt update your tool, your work is worthless to other people because you think your better than others. Facepalm Im sorry to say but your stupid for Groaning someones work for others that dont know 1 thing about C# your retarted because your the one that clicked on a thread u such not need. Log off NGU and jump off a clift and just die. Dont reply back because what ever u say is going to be worthless and stupid. + once you read this your going to sit there and think about to something to say back and sweat your balls off. Goodbye kiddo


Well that escalated quickly...

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

coreconfusion, FarSideX
03-21-2014, 01:04 AM #18
coreconfusion
I defeated!
Originally posted by TeamIdentity View Post
Kill your self ******, you think your a good coder because you made a shitty tool? then make a thread to help others and shit the fuck up. Your annoying and your not worth being in the NGU community. If you such know C# why open a thread thats not useful for you? is it because ur looking for help but your trying to make ur self look professional or is it google that does all your work? no offence your a skid and a scrub. no wonder your didnt update your tool, your work is worthless to other people because you think your better than others. Facepalm Im sorry to say but your stupid for Groaning someones work for others that dont know 1 thing about C# your retarted because your the one that clicked on a thread u such not need. Log off NGU and jump off a clift and just die. Dont reply back because what ever u say is going to be worthless and stupid. + once you read this your going to sit there and think about to something to say back and sweat your balls off. Goodbye kiddo


dude you really need some anger management. almost every post you make is just to start some kind of drama, and always comes down to "how awesome you are" and "how nobody else can do what you do". Maybe you could try taking some of the comments that people give you and look at them as constructive criticism. Get off your damn high horse, nobody really thinks you're shit.

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

FarSideX, VezahMoDz
03-21-2014, 07:54 PM #19
marioju
Bounty hunter
Originally posted by xroccox View Post
tutorial for add functions to a mod menu base please :d


bitch please

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo