I'm extremely new to this and would appreciate if someone could explain what exactly it is that I have found as I don't quite understand why I have two base addresses each with two different offsets.
I'm extremely new to this and would appreciate if someone could explain what exactly it is that I have found as I don't quite understand why I have two base addresses each with two different offsets.
Any help would be appreciated.
Thanks
Vyrrt
It looks like those two base addresses ("Game.exe"+0193D0F4 and "Game.exe"+039F6890) point to the same address. That might be a structure like this, where offset E4 is a pointer to offset 04 in the same struct, or E4 could be in another struct and pointing to offset 4 in this struct that is less than E4 bytes in size:
Code:
struct {
int id;
int value;
char unknown[0x78];
float health; // what you're finding, offset 0x80
char unknown2[30];
int *pValue; // offset 0xE4, points to value member of this struct
}
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