Shark01 How do I cheat? Reputation: 0
Joined: 29 Apr 2018 Posts: 2
|
Posted: Sun Apr 29, 2018 6:03 pm Post subject: I need a little help |
|
|
Could you help me with the following problem? I'm trying to do it by the ps2 emulator the game is Ben 10: Protector of Earth
The code that I have is this one:
[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 [ecx],0
mov [pcsx2.exe+839DA8],00193BA8
exit:
jmp returnhere
300D941B:
jmp newmem
nop
nop
nop
nop
nop
nop
nop
returnhere:
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
300D941B:
mov [ecx],edx
mov [pcsx2.exe+839DA8],00193BA8
//Alt: db 89 11 C7 05 A8 9D 68 01 A8 3B 19 00
and the instructions i have
300D9413 - 01 C1 - add ecx,eax
300D9415 - 0F88 257EF7D2 - js pcsx2.exe+2201240
300D941B - 89 11 - mov [ecx],edx <<
300D941D - C7 05 A89D6801 A83B1900 - mov [pcsx2.exe+839DA8],00193BA8
300D9427 - A1 C09E6801 - mov eax,[pcsx2.exe+839EC0]
EAX=20000000
EBX=300D941D
ECX=20BCD0B4
EDX=42480000
ESI=00193EE4
EDI=00000000
ESP=0DE4F880
EBP=0DE4F888
EIP=300D941D
when I change edx to 0 and I'm cold the emulator reduces the size of the screen and when I pause the game it hangs. Another thing is that both me and my enemies die with a blow, and my intention is to only make my enemies die with a blow, any help would be appreciated
|
|