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 › C++/C Programming › Hey Guys ! its me (your stupid guy :D ) well , a way to be hacker ... ?

ExclamationHey Guys ! its me (your stupid guy :D ) well , a way to be hacker ... ?

Posts 1–8 of 8 · Page 1 of 1
TH
thekm1994
Hey Guys ! its me (your stupid guy :D ) well , a way to be hacker ... ?
Guys !
I dont know what way to go in C++ to become an Hacker !
pls helpp me ! tell me your steps that you become an hacker or a other better way to become an hacker !

Oh and i got a new questions !
ine Hexademical code !

why are you guys puting 0 and not 1 ? or 2 ? i mean the first zero ! (0x)

and what does the (x) mean ?
hmm and after the (x) is that THE adress ? if it is ! whay arent you writing just it and you write (0x) ????/me/yea
#1 · 16y ago
Hell_Demon
Hell_Demon
Quote Originally Posted by thekm1994 View Post
Guys !
I dont know what way to go in C++ to become an Hacker !
pls helpp me ! tell me your steps that you become an hacker or a other better way to become an hacker !

Oh and i got a new questions !
ine Hexademical code !

why are you guys puting 0 and not 1 ? or 2 ? i mean the first zero ! (0x)

and what does the (x) mean ?
hmm and after the (x) is that THE adress ? if it is ! whay arent you writing just it and you write (0x) ????/me/yea
the 0x is to tell the compiler you're going to write HEXADECIMAL behind it.
0x10 means hexadecimal 10, which is 16 in decimal, you could also write 10h, which is the same as 0x10, so also 16.

behind 0x you put bytes, an addy is 4 bytes, so you do e.g. 0xAABBCCDD

but, if you look at that with olly it will say 0xDD 0xCC 0xBB 0xAA
so you could probably do this too:
Code:
char addy[4] = {0xDD, 0xCC, 0xBB, 0xAA};
*(DWORD*)addy = 100;
which would be the same as *(DWORD*)0xAABBCCDD = 100; I guess(not entirely sure)



As for your first question: Learn all of the basics, write small project like snake in a console app for example, and the most important part of the basics are POINTERS, make sure you know how to use them in and out! They are the most basic thing you must know for gamehacking, and now i am too lazy(and it's too hot) to write more here ^^
#2 · 16y ago
TH
thekm1994
what is the *(DWORD*) mean ?, i know that (*) can make a pointers varibles , but when you put it that way i m confiused !
#3 · 16y ago
'Bruno
'Bruno
Quote Originally Posted by Hell_Demon View Post
As for your first question: Learn all of the basics, write small project like snake in a console app for example, and the most important part of the basics are POINTERS, make sure you know how to use them in and out! They are the most basic thing you must know for gamehacking, and now i am too lazy(and it's too hot) to write more here ^^
/

Ontopic:

I already said on your other post (i guess), that you could start by hacking something simple as solitaire (only if you are well with the basics, such as pointers... etc...), Well i started with solitaire, anyway im not an hacker... so...
#4 · 16y ago
Hell_Demon
Hell_Demon
Quote Originally Posted by thekm1994 View Post
what is the *(DWORD*) mean ?, i know that (*) can make a pointers varibles , but when you put it that way i m confiused !
which * do you mean? the first one or the second?

Code:
DWORD *mypointer = (DWORD*)0x0B4DF00D; //mypointer is type DWORD*, so we cast 0x0B4DF00D to DWORD* too
*mypointer = 100; //*mypointer means the value of mypointer, mypointer is 0x0B4DF00D, so value of 0xB4DF00D is changed to 100.
*(DWORD*)0x0B4DF00D.
(what is in here) means that you tell compiler 'it is this type', in this case it is DWORD* which means pointer to DWORD value. the * infront of (DWORD means go to the 'value' of it, so go to what 0x0B4DF00D points to.

I hope this helped
#5 · 16y ago
TH
thekm1994
hmmmmmmm
can you write it like
1) (first pointer mean)
2) (seacond pointer mean)

Thx
#6 · 16y ago
Hell_Demon
Hell_Demon
*(DWORD*)0x0B4DF00D = 100;

Dereference, so go to 'value'
Tell compiler type is DWORD*, so pointer to DWORD
The addy, ¯\(o.O)/¯
The new value
#7 · 16y ago
TH
thekm1994
hehe ok thanks
#8 · 16y ago
Posts 1–8 of 8 · Page 1 of 1

Post a Reply

Similar Threads

  • Hey guys, I need your help.By SkullMetalLord in CrossFire Hacks & Cheats
    2Last post 17y ago
  • Hey guys its xpwned12By Foyerhead in CrossFire Farming & Partner Request
    0Last post 15y ago
  • hey guys need your help.By tooktheriver2 in Combat Arms Help
    1Last post 16y ago
  • Hey guysBy ktspaz in WarRock - International Hacks
    4Last post 20y ago
  • [Done] hey guys i suk at making sigs ^^By metabee22 in Help & Requests
    11Last post 20y ago

Tags for this Thread

None