高级玩家

- 贡献度
- 2
- 金元
- 3672
- 积分
- 375
- 精华
- 0
- 注册时间
- 2011-12-24
|
用ce脚本 直接秒杀 可能需要先打一下 让特征码生成
[ENABLE]
aobScanRegion(newmem2,100000000,30000000000,89 B7 AC 00 00 00 48 8B C6 41 89 44 24 18)
//code from here to '[DISABLE]' will be used to enable the cheat
alloc(newmem,2048,newmem2)
label(returnhere)
label(originalcode)
label(exit)
newmem: //this is allocated memory, you have read,write,execute access
//place your code here
cmp byte [rdi+00000063],0
je originalcode
mov esi,0
mov [rdi+000000AC],esi
jmp exit
originalcode:
mov [rdi+000000AC],esi
exit:
jmp returnhere
newmem2:
jmp newmem
nop
returnhere:
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
newmem2:
db 89 B7 AC 00 00 00
//mov [rdi+000000AC],esi |
|