
Originally Posted by
thekm1994
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 ^^