Quote:
Originally Posted by reyjhulyan
Hi, i have a problem, when i tried get the value of the address:
"metin2client.exe"+00F5565C Offset: 130, like this:
Code:
float result = *(float*)(ModuleBase+0x00F5565C+0x130);
not work, but when i get the real address of this Pointer and Offset it work
Code:
float result = *(float*)(0x22B020);
i want know how i get the value of a address with multi level pointer, thanks;
|
versuch mal:
Code:
*(float*)( (* (int*) ((int*)ModuleBase+0x00F5565C)) +0x130)
mit den casts weiß ich net ob ich richtig liege.
aufjedenfall erstmal *(ModuleBase+0x00F5565C) und dann auf die adresse die du erhälst das offset 0x130 addieren.