prt 發表於 2021-2-24 16:58:45

TwMS v232.1 ICS 人物移動加速

// TwMS v232.1 ICS 人物移動加速
// 速度設定越快越容易斷線

Alloc(Check_Esp,256)
Alloc(Speed,04)
Alloc(FakeTime,04)
RegisterSymbol(Speed)
Label(SpeedChk)
Label(Return)
Label(SetFakeTime)
Label(InitFakeTime)
Label(CharSpeedUp)

Speed: // 速度設定
DD 03

FakeTime:
DD 00

//-----------------------
Check_Esp:
cmp ,02AD278F
jne GetLastError
mov ,CharSpeedUp
jmp GetLastError

CharSpeedUp:
push esi
mov esi,

SpeedChk:
test esi,esi
je Return

dec esi
push esi
mov ecx,
call 00BA4F90
pop esi
jmp SpeedChk

Return:
pop esi
jmp 02AD278F

//-----------------------
SetFakeTime:
cmp ,00
je InitFakeTime

mov eax,
add eax,000001FE

InitFakeTime:
mov ,eax
jmp 04C96F8A

//-----------------------
03BA61A8:
DD Check_Esp

04C96F77:
jmp SetFakeTime
//-----------------------


03BA61A8:
DD GetLastError

04C96F77:
DB 0F 89 0D 00 00 00

DeAlloc(Check_Esp)
DeAlloc(FakeTime)
DeAlloc(Speed)
UnRegisterSymbol(Speed)
頁: [1]
查看完整版本: TwMS v232.1 ICS 人物移動加速