silentus How do I cheat?
Reputation: 0
Joined: 07 Feb 2013 Posts: 9
|
Posted: Thu Feb 07, 2013 9:34 am Post subject: What is done there ? (pointers!) |
|
|
Hi !
Iam creating a GTA:SA trainer in VB.NET, i have already done money cheat, unlimited ammo etc, but i want to be able to change health value, and its using a dynamic address (i know how to find it in CE)
Its pretty simple, all adressess i need are here (i cant post urls , but its at GTA Modding website)
So CPed (pointer) is B6F5F0 and my health address is 540, i know how to do it in CE to get the dynamic address and be able to change my health value (float)
but i dont understand one part of those pointers in CE, what is done in second textbox ? I write there the pointer (CPed) B6F5F0 and then it shows some other ? How is it done, and is it possible to do in VB.NET ?
Screenshot:
img829.imageshack.us/img829/4499/pointerx.png
Im talking about the second textbox, where B6F5F0 is.
|
|
Screitor Cheater
Reputation: 1
Joined: 26 Nov 2012 Posts: 33 Location: Venezuela
|
Posted: Thu Feb 07, 2013 2:42 pm Post subject: Re: What is done there ? (pointers!) |
|
|
?
0xB6F5F0 is your pointer.
0x540 is your offset.
0x0A6013E0 is your health address on GTA.
So: 0xB6F5F0 + 0x540 -> 0x0A6013E0
ReadProcessMemory in VB.NET to read that pointer, then add the offset to the result of RPM and RPM again with the result, convert it to float.
_________________
Everybody lies. |
|