- UID
- 119417
- 帖子
- 10914
- 主題
- 4238
- 精華
- 0
- 積分
- 5308
- 楓幣
- 12830
- 威望
- 5212
- 存款
- 70
- 贊助金額
- 0
- 推廣
- 0
- GP
- 2439
- 閱讀權限
- 150
- 性別
- 保密
- 在線時間
- 1923 小時
- 註冊時間
- 2015-10-18
- 最後登入
- 2024-11-5
|
- // TwMs v233.1 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],00BD4007
- jne ICSReturn
- mov [esp],AutoLRMain
- ICSReturn:
- jmp GetFocus
- //-------------------
- AutoLRMain:
- cmp [AutoLRRange], 0
- je 00BD4007
- 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 00BD40C9
- GoRight:
- mov [ebp-18],00000001
- pop eax
- jmp 00BD40C9
- 0473CCB0:
- DD AutoLRICSEntry
- [DISABLE]
- 0473CCB0:
- DD GetFocus
- Dealloc(AutoLRICSEntry)
- UnregisterSymbol(AutoLRMain)
- Dealloc(AutoLRMain)
- UnregisterSymbol(AutoLRRange)
- Dealloc(AutoLRRange)
- Dealloc(AutoLRValue)
複製代碼 |
-
總評分: 彩票 + 1
查看全部評分
|