- UID
- 119417
- 帖子
- 10957
- 主題
- 4281
- 精華
- 0
- 積分
- 5353
- 楓幣
- 13522
- 威望
- 5256
- 存款
- 70
- 贊助金額
- 0
- 推廣
- 0
- GP
- 2484
- 閱讀權限
- 150
- 性別
- 保密
- 在線時間
- 1934 小時
- 註冊時間
- 2015-10-18
- 最後登入
- 2024-11-13
|
本帖最後由 prt 於 2021-10-16 01:12 編輯
- //CMS v183 ICS 人物左右走
- [ENABLE]
- Alloc(AutoLRICSEntry, 64)
- Label(ICSReturn)
- RegisterSymbol(AutoLRMain)
- Alloc(AutoLRMain, 128)
- Label(GoLeft)
- Label(GoRight)
- RegisterSymbol(AutoLRRange)
- Alloc(AutoLRRange, 4)
- Alloc(AutoLRValue, 4)
- //-----------------------------------------------
- AutoLRRange:
- DD A //16進制 A=10 設置0為不左右走
- //-----------------------------------------------
- AutoLRICSEntry:
- cmp [esp],00BCF26D
- jne ICSReturn
- mov [esp],AutoLRMain
- ICSReturn:
- jmp GetFocus
- //-------------------
- AutoLRMain:
- cmp [AutoLRRange], 0
- je 00BCF26D
- push eax
- inc [AutoLRValue]
- mov eax,[AutoLRRange]
- cmp eax,[AutoLRValue]
- jge GoLeft
- add eax,[AutoLRRange]
- cmp eax,[AutoLRValue]
- jge GoRight
- mov [AutoLRValue],1
- jmp GoLeft
- GoLeft:
- mov [ebp-18],FFFFFFFF
- pop eax
- jmp 00BCFB56
- GoRight:
- mov [ebp-18],00000001
- pop eax
- jmp 00BCFB56
- 04BD6880:
- DD AutoLRICSEntry
- [DISABLE]
- 04BD6880:
- DD GetFocus
- Dealloc(AutoLRICSEntry)
- UnregisterSymbol(AutoLRMain)
- Dealloc(AutoLRMain)
- UnregisterSymbol(AutoLRRange)
- Dealloc(AutoLRRange)
- Dealloc(AutoLRValue)
複製代碼 |
-
總評分: 彩票 + 1
查看全部評分
|