biel-_- How do I cheat?
Reputation: 0
Joined: 25 Dec 2012 Posts: 2 Location: brazil
|
Posted: Tue Dec 25, 2012 1:16 pm Post subject: help prince of persia T2T |
|
|
hello;
sorry for my English because, I am Brazilian and I used google to translate.
I would like some help in the game prince of persia T2T. I found the code that subtracts my hp:
| Code: | [ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
alloc(newmem,2048) //2kb should be enough
label(returnhere)
label(originalcode)
label(exit)
newmem: //this is allocated memory, you have read,write,execute access
//place your code here
originalcode:
mov [esi+000002B0],edx
exit:
jmp returnhere
"POP3.exe"+156AB4:
jmp newmem
nop
returnhere:
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
"POP3.exe"+156AB4:
mov [esi+000002B0],edx
//Alt: db 89 96 B0 02 00 00 |
and also found the code that subtracts the hp of enemies:
| Code: | [ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
alloc(newmem,2048) //2kb should be enough
label(returnhere)
label(originalcode)
label(exit)
newmem: //this is allocated memory, you have read,write,execute access
//place your code here
originalcode:
mov [edx+000005F4],eax
exit:
jmp returnhere
"POP3.exe"+256F25:
jmp newmem
nop
returnhere:
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
"POP3.exe"+256F25:
mov [edx+000005F4],eax
//Alt: db 89 82 F4 05 00 00
|
My question is, how to make each hit I take, the hp is subtracted from my enemies and not me?
sorry for bad english, I would like to help me;
thank you
|
|