x86asm How do I cheat?
Reputation: 0
Joined: 11 May 2016 Posts: 8
|
Posted: Tue Jul 26, 2016 3:58 pm Post subject: Finding out more information about a class in memory |
|
|
There is an Entity class in memory and a list of pointers to these entity instances also in memory that I know. There are also different types of characters in game, like say hunter, animal, soldier, etc which belong to this entity class. Also, I know it was compiled with C++
Now I've found basic information like the players health, coordinates, velocity, acceleration, mana, camera view. This class also has pointers to functions at different places in memory. So I have two questions:
(1) How can I find out more information about this class so I can distinguish entity types?
(2) What would cause there to be function pointers at different offsets of this class such as eax+100 and eax+500 besides the class actually having function pointers as member variables
|
|