it-ty Newbie cheater
Reputation: 0
Joined: 05 Jun 2014 Posts: 22
|
Posted: Sat Apr 04, 2015 5:08 am Post subject: How writing auto assembler to EXE trainers in C ++ |
|
|
How writing auto assembler to EXE trainers in C ++
examble code
| Code: | [ENABLE]
alloc(newmem,2048)
label(returnhere)
label(originalcode)
label(exit)
newmem:
mov [eax+08],0
originalcode:
//inc [eax+08]
call solitaire.exe+2EFEF
exit:
jmp returnhere
"solitaire.exe"+310B0:
jmp newmem
nop
nop
nop
returnhere:
[DISABLE]
dealloc(newmem)
"solitaire.exe"+310B0:
inc [eax+08]
call solitaire.exe+2EFEF
//Alt: db FF 40 08 E8 37 DF FF FF |
|
|