Hey,
So I inject a DLL into a game and i try to read the pointers that i found with CE.
CE address:
[Only registered and activated users can see links. Click Here To Register...]
Code that i tried to get the values with
But this returns the wrong value
Any ideas?
So I inject a DLL into a game and i try to read the pointers that i found with CE.
CE address:
[Only registered and activated users can see links. Click Here To Register...]
Code that i tried to get the values with
Code:
HANDLE handle = GetModuleHandleA(0); DWORD *baseAddress = (DWORD*)handle; DWORD value = *(DWORD*)(*(DWORD*)baseAddress + 0xE750F4);
Any ideas?