
Originally Posted by
Sammy
I think the best is to find them yourselves. Do some cheat engine tutorials and learn about multilevel pointers.
Does adding offsets work on both of these ways?
ReadProcessMemory(hProc, (LPCVOID)(address), &pointed1, 4, NULL);
ReadProcessMemory(hProc, (LPCVOID)(pointed1 + offset1), &pointed2, 4, NULL);
ReadProcessMemory(hProc, (LPCVOID)(pointed2 + offset2), &pointed3, 4, NULL);
ReadProcessMemory(hProc, (LPCVOID)(pointed3 + offset3), ¤tAmmo, 4, NULL);
---------------------------------------------------------------------------------------------------
ReadProcessMemory(hProc, (LPCVOID)(address + offset1 + offset2+ offset3), ¤tAmmo, 4, NULL);