How to get adress from pointer + offsets
Hello,
I'm currently learning memory hacking in C++, and I need help with the pointers :
puu.sh/hIIwD/e084ef51b9.png (image)
I want to know how to get the adress (04C13D18 that changes at every launch) from my C++ programm.
Thank you very much, i'm on this since 3 days ^^
I, too, am looking at this.
Like 0x00645300 + 480, what do you do here to get it?
Hey, think I figured this out.
You have to ReadProcessMemory with the pointer, the value will be the base address. Now, ReadProcessMemory again, but with the baseaddr+pointer, now the address is the address of the value you want, so you can write to it (for single pointers)
For multilevel ones you must Read ProcessMemory as many times as you have offsets, adding the next offset each function.
Hope I helped c: