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 › Programming › Programming Tutorials › How to create a hack

LightbulbHow to create a hack

Posts 1–11 of 11 · Page 1 of 1
HU
Hunter sent 2 kill
How to create a hack
Tutorial by hunter sent 2 kill

Hey Guys this would be my third thread woohoo I don't know why I am always saying that

Well today we will learn how to make or create a hack for a game. First of all lets start with some basics

Memory Adresses- An adress is a part of the game that holds the information of what to do in the game. For example: Here is an adress: 46A3B182 (Don't worry about the letters I will explain that later) This could be the adress for the game you are hacking that tells you how many ammo you have or how many lives...

But that is only the first part of a Memory Adress, the second part is the Value and here it is getting reaaaally difficult!!! Now the value is the part where it tells how much of what does the player have of that type of information. For example: Lets use the previous adress for the lives in the game: 46A3B182 , now lets add the value. 43A2F01: 08 Now if we look at this adress knowing that this adress is for lives we can tell that the player currently has 8 lives. Because the value is 8! :O wooooow told you it would be difficult!

Now how can we manipulate this to give us infinite lives? Well lets no get ahead of us! We'll cover that later. Theres more to be learned! XD

8 bit, 16 bit, and 32 bit Memory-



All adresses are either 8 bit, 16 bit, and 32 bit adresses. Now what does this mean.
Well dont worry about that now I don't really know it too XD ....you just need to know the differences between them

A 8 bit adress looks like this: 43A2F0B1: 05

Now a 16 bit adress looks like this 7D73AF93: 0356

A 32 bit adress looks like this: 4C74F3DA: 004F28C9

Now remeber this: 8 bit adresses are in the lower memory, go to 16 bit and your higher in the memory, and 32 bit, you are pretty high in the memory. Now let me show you what memory you would be looking in if for certain codes. Usually if you wanted to look for an adress for the lives or health in a game. It would be in 8 bit memory. If you were looking for Invincibility, maybe score, moon jumps, size mods, there usually in 16 bit memory.


Soooooo now to the codes well you are not using normal numbers you are using the :
Hexadecimal System-
We are all used to the 1, 2, 3, 4, 5, 6, 7, 8, 9, ,10 , 11 , 12 etc... counting we learned in like 1st grade.
Now in video games, the game counts like this: 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D ,E ,F Now A= 10 B=11 C=12 =D=13 E=14 F=15 so what goes after F?
Well it goes back to 10.... I know its confusing....but 10 does not actually equal 10....it equals 16.

So then it would go: 10, 11, 12, 13 ,14, 15, 16, 17, 18, 19 = Hex
16, 17, 18, 19, 20, 21, 22, 23, 24, 25 = Real number in decimal (the way we are used to counting)
So whats after 19? 1A, 1B, 1C, 1D, 1E, 1F, = Hex
26, 27, 28, 29, 30, 31, 32 = Real Number in Decimal

Then is would continue 21, 22, 23, 24, 25, 26, 27, 28, 29, 2A, 2B, 2C, 2D, 2E, 2F, 36, 37 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47,

Etc...lets seen if you learned anything What is 50 in Hex?


If you said 32! Your right!

Now what about....77... what is that in hex?



If you said 4D...your on the right track!

If you still dont get this.. You can use your windows calculator to do all the converting to hex for you. Just select scientific mode under view at the top.

Now see this adress...tell me how many lives does this person have if this adress is for lives?
47D8393F: 3D


If you said 61! Alright!




Here just all the numbers hexameter and the "normal" numbers The ones at the top are these from the hexameter and under them the numbers we used to learn

1 2 3 4 5 6 7 8 9 A
1 2 3 4 5 6 7 8 9 10

B C D E F 10 11 12 13 14 15
11 12 13 14 15 16 17 18 19 20 21

16 17 18 19 1A 1B 1C 1D 1E 1F
22 23 24 25 26 27 28 29 30 31

20 21 22 23 24 25 26 27 28 29 2A
32 33 34 35 36 37 38 39 40 41 42

2B 2C 2D 2E 2F 30 31 32 33 34 35
43 44 45 46 47 48 49 50 51 52 53

36 37 38 39 3A 3B 3C 3D 3E 3F 40
54 55 56 57 58 59 60 61 62 63 64

41 42 43 44 45 46 47 48 49 4A
65 66 67 68 69 70 71 72 73 74

4B 4C 4D 4E 4F 50 51 52 53 54
75 76 77 78 79 80 81 82 83 84

55 56 57 58 59 5A 5B 5C 5D 5E 5F
85 86 87 88 89 90 91 92 93 94 95

60 61 62 63 64
96 97 98 99 100

That was mostly it I was so confused in the beginning of that because I thought there wouldn't be a number 10 so nothing ever made sence but after I wrote all these above I mastered them
Tomorrow morning I will add some stuff about the other stuff so you can finally begin hacking (not that that wasn't interesting) but hey you have to start somewhere

It i wonderful what a boring day in school can make ( and yes i did this during school )
#1 · 12y ago
AR
Arcton
Content does'nt much title,
It's just about memory addresses and hexadecimal conversion.
#2 · 12y ago
WhiteHat PH
WhiteHat PH
its only addresses not making hacks ^^ but great!!
#3 · 12y ago
abuckau907
abuckau907
A 8 bit adress looks like this: 43A2F0B1: 05

Now a 16 bit adress looks like this 7D73AF93: 0356

A 32 bit adress looks like this: 4C74F3DA: 004F28C9
No.

43 A2 F0 B1
7D 73 AF 93
4C 74 F3 DA

all 4 of those are 32-bit addresses. ..the part to the right of the : in your example is the "value" you read, STARTING at that address.
Each address (for normal user hardware) can store 1 byte. Only 1 byte per memory box: each box has an address..
"A 32 bit adress looks like this: 4C74F3DA: 004F28C9 "
004f28C9 is a 32 bit value, read from the memory addresses
4C74F3DA, 4C74F3DB, 4C74F3DC, and 4C74F3DD

and ofc now cpu's support 64-bit addresses. (not actually all 64 bits are used I hear..but still much larger than 32)

Just my nitpicking. Thanks for your effort.
#4 · edited 12y ago · 12y ago
ME
medo.soleman
thanks alot for your work.
#5 · 11y ago
BA
barryshark
nice? thx i dont understand how this has to do with hacking unless your useing cheat engine XD
#6 · 10y ago
BR
Brisado
i dont understand this
#7 · 8y ago
CO
copypastekingdom
this is not a hack
#8 · 8y ago
GA
gamerreaper1
thats more a hexadecimal thopic.
#9 · 8y ago
SO
solacexis
thanks for your effort. Could have been little more organized but still few cool info laying there
#10 · 8y ago
SL
Slazi
Thanks you very much
#11 · 5y ago
Posts 1–11 of 11 · Page 1 of 1

Post a Reply

Similar Threads

  • how to create a hack for combat arms eu?By d4n13l in Combat Arms Help
    2Last post 16y ago
  • How To Create D3D HACK [PB] ??By marvelt in C++/C Programming
    7Last post 15y ago
  • How To Create A Hack Loader Help!!By AZN_Noob in Combat Arms Coding Help & Discussion
    15Last post 15y ago
  • Crossfire how to create a hack?By maggicc in CrossFire Help
    6Last post 15y ago
  • How to create simple hack (for noobies)By [Hectic] in CrossFire Hack Coding / Programming / Source Code
    44Last post 15y ago

Tags for this Thread

#hack creation#hack game#hack tutorial#how to hack#make hacks#team fortress hack