royalsymbol Cheater
Reputation: 0
Joined: 14 Nov 2007 Posts: 36
|
Posted: Tue Jan 15, 2008 1:12 am Post subject: AA Script for Cheat Engine 5.4 Tutorial Step 9 |
|
|
[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)
00455DEA:
jmp newmem
nop
returnhere:
newmem: //this is allocated memory, you have read,write,execute access
//place your code here
mov [ebx+00000310],7D0
originalcode:
exit:
jmp returnhere
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
00455DEA:
dec [ebx+00000310] |
|