foxtrot08 How do I cheat?
Reputation: 0
Joined: 07 Oct 2015 Posts: 7
|
Posted: Sat Oct 24, 2015 12:30 pm Post subject: Finding Pointer of a pointer help |
|
|
So im playing a game that I have successfully found the pointer for, however, they still change after restarting the game. I then realized it needed a pointer to a pointer, etc...and after reading through countless multi-pointer guides, I still cannot figure it out.
I cant find the pointer of my first pointer I found because it is saying that the value of the pointer to find the address is actually the first pointer I already found. So how what steps do I take if its making me chase my tail?
Here is the first pointer I found
Code: | 00718A79 - 8B 8C 81 C4000000 - mov ecx,[ecx+eax*4+000000C4]
00718A80 - 8B 45 14 - mov eax,[ebp+14]
00718A83 - 89 84 91 742A0000 - mov [ecx+edx*4+00002A74],eax <<
00718A8A - 5D - pop ebp
00718A8B - C3 - ret
The value of this pointer needed to find this address is probably 0FC20030
EAX=000000A2
EBX=0F06FB00
ECX=0FC20030
EDX=00000000
ESI=0F270030
EDI=00000004
ESP=0F06FA80
EBP=0F06FA80
EIP=00718A8A |
And here is what i get after trying to find the pointer of that pointer...
Code: | 00718A74 - 03 D0 - add edx,eax
00718A76 - 8B 45 08 - mov eax,[ebp+08]
00718A79 - 8B 8C 81 C4000000 - mov ecx,[ecx+eax*4+000000C4] <<
00718A80 - 8B 45 14 - mov eax,[ebp+14]
00718A83 - 89 84 91 742A0000 - mov [ecx+edx*4+00002A74],eax
The value of this pointer needed to find this address is probably 0FC20030
EAX=00000005
EBX=0F06FB00
ECX=0FC20030
EDX=00000000
ESI=0F270030
EDI=00000004
ESP=0F06FA80
EBP=0F06FA80
EIP=00718A80 |
Any help appreciated...Thanks
|
|