I'm trying to trace back an address to a static pointer with all the offsets using CheatEngine for a game I play. The instruction that accesses the non-static address, looks like this:
004B7F18 0FBF42 02 MOVSX EAX, WORD PTR [EDX+2] 46
Value of registers after statement:
Address: 004B7F18
EAX (after): 0000000F ESP (after): 0018A620
ECX (after): 00000001 EBP (after): 0018A630
EDX (after): 08465DFC ESI (after): 00011652
EBX (after): 00000000 EDI (after): 00000000
To me, that means I should search for 08465DFC to find the pointer which is 2 bytes away from the address. However, searching for this value renders no results.
Setting a breakpoint before the execution allows me to get the value of EDX before the statement is run and it's not even close to EDX (after) - 02h.
It seems something is fishy since EAX after the statement is simply F but I don't know enough about what I'm doing to know exactly what's going wrong.
I've successfully traced back every address to a static pointer in the game but this one and it's giving me fits.
Any ideas.
