Posted: Wed Dec 09, 2015 10:52 pm Post subject: Static pointer changing values??
So i'm really confused by this. This happened twice now, i'm trying to do a simple ammo hack for a 64 bit game (Dying Light) and so I go through the process of finding a static pointer, and I find one 4 offsets deep, and it seems to work. Infact, I can restart the game and the values stay the same, but if I die in-game, all the values are ??
Maybe i'm too much of an amateur programmer but I don't understand how a static value can change?
A static pointer just means that the base address of the pointer doesn't change when the process is restarted. The pointer path itself is probably dynamic, so if any block of memory in that pointer path is deallocated, the end result will be that the pointer points to a block of memory that doesn't exist (value = ??). So a static pointer will always directly point to some address, but that address doesn't have to have a value associated with it.
Using the pointer scanner is much better and faster than doing it manually. _________________
I don't know where I'm going, but I'll figure it out when I get there.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum