Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › MultiPlayer Game Hacks & Cheats › Call of Duty Hacks & Cheats › Call of Duty 8 - Modern Warfare 3 (MW3) Hacks & Cheats › Call of Duty Modern Warfare 3 Coding, Programming & Source Code › C# Book Snippet (Jorndels C# Book)

Red faceC# Book Snippet (Jorndels C# Book)

Posts 1–15 of 15 · Page 1 of 1
Jorndel
Jorndel
C# Book Snippet (Jorndels C# Book)
Well, since some people prefer text instead of video. I decided to make this tutorial to see if my C# Book. (Writing it) Will be understand able

First of all we need to start, you need to install: Visual C# Express 2010
This is a free ware, so after 30 days you just register and you have it

Now, install it and we will be ready to start



Let's create a New Project:

Now we will create an Windows Application Form


Now we will look on some basic stuff.



First of all we will have a look at the ToolBox and the Properties.

 
ToolBox


What we will use most is the stuff in the: Common Controls
Let's expend it and look what we will use...

(I might have some more or less in it, but mainly we have the same)

Okey, now lets Drag & Drop a Button from the ToolBox onto our Form1.


Now, we can re-size it by dragging the white squares on the ends or sides of the button.

Now you know how to re-size it, you can also move it by holding the mouse down (on the control/button) and move it to where you want.
 
Properties


Here we have the options we usually use when we modify our controls.
Most of the options you see there can be done with coding, but not all of them are easy to do.

I have marked some of the most common used properties for the button here:


You can play around with the properties to get a better understanding of them.




Now we will look into some basic coding, so you will have a basic knowledge of what we will work with later on.


To access the coding page, we can right click and select the: View Code
But, we won't do that now. Since there is nothing there for us now

Double-Click the Button1 (This will create the default event for the button. Which is 'Click')


Now, lets create an very simple function:
MessageBox.Show("MyMessage");

And keep in mind that you have to add it in the button1_click event

Mark the: { } - I like to call the: { for the Open Code/Function Mark, and the: } for the Close Code/Function Mark


 
If Statement
Now, lets look on the If|Else Statement. This is used to check if something is true/false or just to check something
Code:
If(Argument1 == Argument2)
{
//We will do something
}
else
{
//We do something
}
Here is an example:

This will do the: Else Statement.
Why? Because I did an: If "name" is equal too "you"
And that would not be the same value as the "name".


 
Declareing Variables
So let's look a little on how we can declare variables / values.
First of all we have mainly two ways we declare a variable.

1:

Okey, here I have done two things.
First: I declared a variable with the 'name' - Name.
But I didn't 'declare' the content of the variable Name.

Second: I declared a variable with the 'name' - Name2.
But here I did declare the content, as "Jorndel" - My Online Name

(Note, if you see the RED line under the: Name in the If statement. That means it can't use something that is nothing to check it with a variable that is something. (Your Program would not be able to debug...)

2:

(Now, you see the RED line is gone? That is because we didn't create it in the same method as we used it in.)

The same here as before. (The First and Second)
But this time I made it 'public'. That means I can use it in any of my events / methods I am to make.
This allow you to set the value: Name to something in an other method / event and then use the button1_click event to check if the name is 'Jorndel'

Let me Demonstrate:

As you see, now I sat the value of Name equal to "Jorndel". (By pressing the Button2)
Mark: When you use 1: = that means you set a value to the variable. 2: == Means you check the value.
Look more on these 'checking' ways here: Operators


I will release more once I write more.

I would really need some feedback on this.
Since I am writing a book on this stuff
#1 · edited 14y ago · 14y ago
hochikage
hochikage
If you need some help for some code or something else, call me on steam and i will come on skype
Good job for this TextBox ^^
But you forget something bro', let see how to make it in .exe (Debug => Build)
If you want, i can make a video for it ^^
#2 · 14y ago
Jorndel
Jorndel
Quote Originally Posted by hochikage View Post
If you need some help for some code or something else, call me on steam and i will come on skype
Good job for this TextBox ^^
But you forget something bro', let see how to make it in .exe (Debug => Build)
If you want, i can make a video for it ^^
Why would I need that?
X,x

This is just a snippet of my book.
There is no videos in a book....
#3 · 14y ago
hochikage
hochikage
To help some guy cause i know some who don't find properties and don't know how to put it in .exe ^^
#4 · 14y ago
SA
SAMPHacker
Nice guid sir
#5 · 14y ago
GoldenEagle
GoldenEagle
Very nice, I can't wait to see more.
#6 · 14y ago
MA
Maurice12
Im trying to make a hack but its very difficult
what you show here , so you can make hacks right?
#7 · 14y ago
Jorndel
Jorndel
Quote Originally Posted by Maurice12 View Post
Im trying to make a hack but its very difficult
what you show here , so you can make hacks right?
Erm, no.

Just a snippet of my C# Book for you guys.

Go to the tutorial section.
Released a 28 min long tutorial for it.
#8 · 14y ago
tylergott
tylergott
<3 This Jorndel Your Helping Me Alot xD
#9 · 14y ago
VE
Ventril
Jorndel, how would I start to make an aimbot script and like boxes around people and what not?
#10 · 14y ago
Eidolon
Eidolon
Quote Originally Posted by Ventril View Post
Jorndel, how would I start to make an aimbot script and like boxes around people and what not?
Start with .NET and create a trainer
#11 · 14y ago
guidogol
guidogol
Good GUID man
#12 · 14y ago
RE
REAPER39
thanks for this
#13 · 14y ago
zer0t3ch
zer0t3ch
Very good starting C# tutorial, but you should get into the more advanced stuff, this kind of stuff is already all over the internet.
#14 · 14y ago
ST
stevonator
ok, i'm new at the c-languages (i know what they are, and i'm not total programming-n00b) and this tutorial explains very well how to start
i hope you finish your book, and maybe share the link

very good job
#15 · 14y ago
Posts 1–15 of 15 · Page 1 of 1

Post a Reply

Similar Threads

  • A book on leaning C++By radnomguywfq3 in Hardware & Software Support
    5Last post 19y ago
  • Book vb6By smartie in Visual Basic Programming
    10Last post 19y ago
  • [Book] C++ How to programBy H4rdc0r3NL in C++/C Programming
    4Last post 19y ago
  • Fucking BooksBy radnomguywfq3 in General
    21Last post 18y ago
  • My Graffiti black-bookBy iHack in General
    13Last post 18y ago

Tags for this Thread

#code tutorial hel