Hey, i need help in RPM, im codding a internal hack, but i don't really know how to use the function ReadProcessMemory() while using a .DLL can someone help me please?
I'm pretty sure using ReadProcessMemory internally is useless..
Originally Posted by pipperpipper
I'm pretty sure using ReadProcessMemory internally is useless..
The problem is this : Im trying to read the Jump addr (for bunny hop) but i don't know how if(CVar.Jump > 266) this doesn't work..
The problem is this : Im trying to read the Jump addr (for bunny hop) but i don't know how if(CVar.Jump > 266) this doesn't work..
you can read process memory internally like this: *Your variable u want to store shit in* = *("datatype"*)((DWORD)Address);
Originally Posted by affe2626
you can read process memory internally like this: *Your variable u want to store shit in* = *("datatype"*)((DWORD)Address);
this ? ->
DWORD InCrossID = *(DWORD *)(0x0000AA44);
Originally Posted by fowev3rXP
this ? ->
DWORD InCrossID = *(DWORD *)(0x0000AA44);
nah first Client = somehow u got it just search on how u get modules or something and then Localbase = *(DWORD*)((DWORD)Client + localplayer);
and then CrosshairID = *(int*)((DWORD)Localbase + 0xAA44);
and also do u know how to make it externally? start with that if so :P
Originally Posted by affe2626
nah first Client = somehow u got it just search on how u get modules or something and then Localbase = *(DWORD*)((DWORD)Client + localplayer);
and then CrosshairID = *(int*)((DWORD)Localbase + 0xAA44);
and also do u know how to make it externally? start with that if so :P
Thanks also i know how to do it externally but i stoped codding for a about 2 years tho ... coming back now anyway thx for the help
The concept is the same but instead of using RPM/WPM, you make a pointer to the address.
Originally Posted by affe2626
nah first Client = somehow u got it just search on how u get modules or something and then Localbase = *(DWORD*)((DWORD)Client + localplayer);
and then CrosshairID = *(int*)((DWORD)Localbase + 0xAA44);
and also do u know how to make it externally? start with that if so :P
Why would you cast "Client" and "Localbase" into a DWORD? You are casting it afterwards anyways?