Been lurking here quite a few days, love the tutorial section, but i've become stuck and a hell of a lot of googleing later
and i still can't find the information i need.
Im looking into displaying values to screen, i have located the player structure in the game. From there using reclass I made the following :
PHP Code:
class EntryPtr;
class FirstPtr;
class SecondPtr;
class PlayerPtr;
class EntryPtr
{
public:
char _0x0000[416];
FirstPtr* Offset1; //0x01A0
char _0x01A4[796]; //dont know why this is here, this is addrs after 1a0
};//Size=0x04C0
class FirstPtr
{
public:
char _0x0000[1800];
SecondPtr* Offset2; //0x0708
char _0x070C[372]; //same as above
};//Size=0x0880
class SecondPtr
{
public:
char _0x0000[608];
PlayerPtr* Offset3; //0x0260
char _0x0264[28];
};//Size=0x0280
class PlayerPtr
{
public:
char _0x0000[80];
__int32 MaxHealth; //0x0050
__int32 CurrHealth; //0x0054
char _0x0058[28];
__int32 MaxMana; //0x0074
__int32 CurrMana; //0x0078
char _0x007C[28];
__int32 MaxSheild; //0x0098
__int32 CurrSheild; //0x009C
char _0x00A0[32];
};//Size=0x00C0
What's the next step from here, I am injecting into the game and as such have access to its memory.
Can i simply use my memoryreading function to read into the above?
PHP Code:
void Read(DWORD address)
{
DWORD result;
result = *(DWORD*)address;
}
I've been stuck on this for a bit now and could really use some guidance. The game i'm trying to make this little tool for is Path Of Exile, a diablo type game.
Thanks