- UID
- 1435
- 帖子
- 213
- 主題
- 66
- 精華
- 0
- 積分
- 301
- 楓幣
- 23130
- 威望
- 257
- 存款
- 50000
- 贊助金額
- 0
- 推廣
- 0
- GP
- 622
- 閱讀權限
- 100
- 性別
- 男
- 在線時間
- 889 小時
- 註冊時間
- 2012-1-2
- 最後登入
- 2024-11-19
|
因版上原有的 SetFakeTime 位置更新錯誤
所以會有斷線問題
以下是正確版
//TwMs v203.1_CRC_人物移動加速
//Author:kkmomo
//Modify: neilwaker
//Update:zeach01
[Enable]
Alloc(CharSpeedUp, 256)
Alloc(Speed, 04)
Alloc(FakeTime, 04)
RegisterSymbol(Speed)
Label(SpeedChk)
Label(Normal)
Label(SetFakeTime)
Label(InitFakeTime)
Speed:
DD 05
FakeTime:
DD 00
//-----------------------
CharSpeedUp:
push esi
mov esi,[Speed]
SpeedChk:
test esi,esi
je Normal
dec esi
push esi
push ecx
call 00861400
pop ecx
pop esi
jmp SpeedChk
Normal:
pop esi
jmp 01BFB8D3
//-----------------------
SetFakeTime:
cmp [FakeTime],00
je InitFakeTime
mov eax,[FakeTime]
add eax,000001FE
InitFakeTime:
mov [FakeTime],eax
push eax
push edx
jp 035DF79F
jl 035DF79F
jmp 035DF79F
//-----------------------
01BFB8CE:
jmp CharSpeedUp
035DF791:
jmp SetFakeTime
//-----------------------
[Disable]
01BFB8CE:
call 00861400
035DF791:
push eax
push edx
jp 035DF79F
jl 035DF79F
DeAlloc(CharSpeedUp)
DeAlloc(FakeTime)
DeAlloc(Speed)
UnRegisterSymbol(Speed)
|
|