Hi all!
I'm trying to understand the principle finding data structures in game memory, the example of Lineage II HF (Private server)
First i can find my current HP witch Cheat Engine
I can find pointer for this data, like nwindow.dll+0x0011FE ofset1+ofset2+ofset3+ofset4
but i want find data structure of my char, like
Code:
Base - 0x0
Level - 0x8
Class - 0x4 + 0x1C + 20
Name - 0xC8 + 0x0 + 0x0
Current HP - 0x48
Max HP - 0x58
Over HP - 0x68
Current MP - 0x78
Max MP - 0x88
Over MP - 0x98
Camera Rotation - 0x74
I can run Ollydbg and see memory adress of my current HP
I tried to add EDX in CE, like a struct:
but, after restart the Game result of adressing is changed and EDX was changed
Please help me