27.10.2010, 17:31
Quote:
Ah, so it basicly looks for where certain stuff is stored when playing GTA? so, where your gun slot 1, slot 2, slot 3 etc. is stored, then they use like C++ and stuff to make it so you can use pawn to just use a function to change it??
And then thats how hacks would do it aswell?? |
You need to use in-line assembly in C++ to call some GTA functions. Like this:
Код:
void CallGTAFunction() { DWORD dwFunc = 0x123456; _asm { push 0 call dwFunc } }
Read some Assembly tutorials for more information.