[HELP]How can i modify this?
Posted: Thu Aug 19, 2021 1:12 pm
Hi guys!How can I only change the value in the image?
[Link]
Here is the original code:
Thanks in advance for your help!
[Link]
Here is the original code:
Code: Select all
[ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
aobscanmodule(INJECT,0F 29 81 20 01 00 00 48) // should be unique
alloc(newmem,$1000,INJECT)
label(code)
label(return)
newmem:
code:
movaps [rcx+00000120],xmm0
jmp return
INJECT:
jmp newmem
nop 2
return:
registersymbol(INJECT)
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
INJECT:
db 0F 29 81 20 01 00 00
unregistersymbol(INJECT)
dealloc(newmem)