View previous topic :: View next topic |
Author |
Message |
gibb How do I cheat?
Reputation: 0
Joined: 17 Oct 2015 Posts: 1
|
Posted: Sat Oct 17, 2015 11:35 am Post subject: finding a player address |
|
|
So I am trying to find the player address for a certain game. There is no health or ammo like the typical game has, but I started using CE to find a value that is 1 when the player is on the ground and 0 when the player is off of the ground. I narrowed it down to one value, but I am unsure of what to do next.
|
|
Back to top |
|
 |
vng21092 Grandmaster Cheater
Reputation: 15
Joined: 05 Apr 2013 Posts: 644
|
Posted: Sat Oct 17, 2015 6:47 pm Post subject: |
|
|
Well... technically there is no "player address" so this question doesn't exactly make sense. You should tell us what it is you're searching for and what you're trying to accomplish.
|
|
Back to top |
|
 |
Rydian Grandmaster Cheater Supreme
Reputation: 31
Joined: 17 Sep 2012 Posts: 1358
|
Posted: Sat Oct 17, 2015 9:21 pm Post subject: |
|
|
If you want the base address of the player structure, right-click that address and choose "find what accesses this address", then in the new window do stuff in the game until things show up there. Some of the instructions should look something like...
Code: | mov eax,[ecx+00000084] |
Or something like that, with an offset if it's part of a structure. In that case, +84 (in hex) is the offset, so take the player address and subtract 84 (in hex) from it, the windows calculator has a hex mode select in the programmer mode view thing.
_________________
|
|
Back to top |
|
 |
|