Quote:
Originally Posted by Lauscape
First off, very nice tutorial. I got everything working OK for me. I do have 1 small issue. How do I turn the cheats off? When i play with the vac/non-aggro hack, it works very well, no problem. But when I want to stop cheating, i go to my CE and uncheck the hacks. But when i return back to 2Moons the cheats just keep working. So... how do I turn em off?
|
uncheck ur hacks and click on thease scripts, then reload the map
Vac off
Code:
[ENABLE]
alloc(newmem,2048) //2kb should be enough
label(returnhere)
label(originalcode)
label(exit)
004599BD:
jmp newmem
nop
returnhere:
newmem: //this is allocated memory, you have read,write,execute access
//place your code here
originalcode:
mov edx,[eax+1c]
mov [ecx+20],edx
exit:
jmp returnhere
[DISABLE]
non aggro
Code:
[ENABLE]
alloc(newmem,2048) //2kb should be enough
label(returnhere)
label(originalcode)
label(exit)
0053DB4A:
jmp newmem
nop
nop
returnhere:
newmem: //this is allocated memory, you have read,write,execute access
//place your code here
originalcode:
movzx eax,word ptr [esi+00000154]
exit:
jmp returnhere
[DISABLE]