-DEViL- Expert Cheater
Reputation: 3
Joined: 21 Apr 2007 Posts: 185
|
Posted: Sat Apr 21, 2007 8:19 am Post subject: Can Some One Help Me About Auto Assemble Scrip |
|
|
hi every one
i want to create trainer with auto assmbler cheat table my table work very good but when i create trainer from auto assembler cheat table trainer is not work?
can some one help me please
here is the scrip:
| 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)
007428B0:
jmp newmem
nop
returnhere:
newmem: //this is allocated memory, you have read,write,execute access
//place your code here
originalcode:
mov [esi+08],eax
add,[esi+0c],1
exit:
jmp returnhere
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
007428B0:
mov [esi+08],eax
mov eax,[esi+0c] |
|
|