[ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
alloc(newmem,2048)
label(returnhere)
label(originalcode)
label(exit)
newmem: //this is allocated memory, you have read,write,execute access
//place your code here
originalcode:
//mov ebp,[esp+10]
mov ebp,100000
push edi
exit:
jmp returnhere
"PlantsVsZombies.exe"+1317C9:
jmp newmem
returnhere:
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
"PlantsVsZombies.exe"+1317C9:
mov ebp,[esp+10]
push edi
//Alt: db 8B 6C 24 10 57
增加大嘴花吞噬冷却
[ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
alloc(newmem,2048)
label(returnhere)
label(originalcode)
label(exit)
newmem: //this is allocated memory, you have read,write,execute access
//place your code here
originalcode:
xor eax,eax
//add eax,-01
mov [edi+54],eax
exit:
jmp returnhere
"PlantsVsZombies.exe"+6324C:
jmp newmem
nop
returnhere:
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
"PlantsVsZombies.exe"+6324C:
add eax,-01
mov [edi+54],eax
//Alt: db 83 C0 FF 89 47 54
金银花狂吐金币
label(originalcode)
label(exit)
newmem: //this is allocated memory, you have read,write,execute access
//place your code here
originalcode:
//add dword ptr [edi+58],-01
add dword ptr [edi+58],-ff
mov esi,[edi+58]
exit:
jmp returnhere
"PlantsVsZombies.exe"+5FA48:
jmp newmem
nop
nop
returnhere:
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
"PlantsVsZombies.exe"+5FA48:
add dword ptr [edi+58],-01
mov esi,[edi+58]
//Alt: db 83 47 58 FF 8B 77 58