- UID
- 223089
- 帖子
- 3
- 主題
- 1
- 精華
- 0
- 積分
- 1
- 楓幣
- 11
- 威望
- 1
- 存款
- 0
- 贊助金額
- 0
- 推廣
- 0
- GP
- 1
- 閱讀權限
- 10
- 性別
- 保密
- 在線時間
- 0 小時
- 註冊時間
- 2018-2-9
- 最後登入
- 2018-2-12
|
define(delay, #1000) //Adjust Delay to Spawn Rate
[Enable]
Alloc(Hook,123)
Label(Return)
Label(Exit)
alloc(timer,4)
Hook:
pushad
// 74 ? E8 ? ? ? ? 50 FF ? ? E8 ? ? ? ? 83 C4 08 84 C0 74
call 02304B30 //get_update_time (using this instead of actual function delay because its timer is sort of werid)
mov edx,eax
sub edx,[timer]
cmp edx,delay
popad
jl Exit
mov [timer],eax
jmp 010C668A
Exit:
jmp 010C669D //Jump to exit so you don't jump back ontop of more delay.
010C6684:
jmp Hook
nop
Return:
010C9840: //Unlimited Arrow Platter
ret 004
[Disable]
Dealloc(Hook)
010C6684: // [above] 76 13 6A 00 8D
sub ecx,edx
cmp ecx,eax
jna 01012387
010C9840: // [FUNCTON START] 0F 8E ? ? 00 00 8B CE E8 ? ? ? ? 50 89
push ebp
mov ebp,esp
請問這個要怎麽更新?第一個AOB搜出來的好像不對 |
|