Posted: Wed Jun 17, 2020 7:35 pm Post subject: AOB script without "add" or "sub"
I've been working on a cheat table, but when the value changes there are no "add" or "sub" opcodes unlike in the CE tutorial. How did those people manage to do it?
there are no "add" or "sub" opcodes unlike in the CE tutorial.
I think you have the misconception that there must be an 'add' or 'sub' opcode for every write to an address.
Generally, that's not the case; there are various representations of how a write to an address may look (most commonly involving the 'mov' instruction or its variations).
For example...
Code:
movss [rsi+4C], xmm0
inc [eax+4]
mov word ptr [rbx+14C],rcx
fstp dword ptr [edx+20]
dec [rax+4]
mov [eax+esi*4],ecx
_________________
This is a block of text that can be added to posts you make. There is a 300 character limit
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum