TwMS v149_ICS_人物座標左右走
//TwMS v149_ICS_人物座標左右走
//Auther:Onion
//好處是不會有偏移問題(需開起小地圖)
//這個版本支援CEAutoAssembler了,也就是說可以加到打勾掛裡了這樣XD
[Enable]
Alloc(AutoLRICS, 512)
Alloc(ChrX, 04)
Alloc(MyLR, 04)
Alloc(Step, 04)
Label(AutoLR)
Label(GetWall)
Label(GetChrX)
Label(GoRight)
Label(GoLeft)
Label(SetX)
Step:
DD 1 //0為停止
MyLR:
DD 1 //開啟後向右走
AutoLRICS:
Cmp [Step],0
Je GetFocus
Cmp [Step],1
Je SetX
Cmp [Esp],00982C68
Jne GetFocus
Mov [Esp],AutoLR
Jmp GetFocus
SetX:
Call GetChrX
Mov [ChrX],Eax
Inc [Step]
Jmp GetFocus
AutoLR:
Call GetWall
Mov [Ebp-04],Eax
Jmp 00982F3B
GetWall:
Call GetChrX
Mov Ecx,[ChrX]
Sub Eax,Ecx
Cmp Eax,0
Jle GoRight
Call GetChrX
Mov Ecx,[ChrX]
sub Ecx,Eax
cmp Ecx,0
Jle GoLeft
Mov Eax,[MyLR]
Ret
GetChrX:
Mov Eax,[00E14118]
Mov Eax,[Eax+F98]
Ret
GoRight:
Mov [MyLR],1
Mov Eax,1
Ret
GoLeft:
Mov [MyLR],FFFFFFFF
Mov Eax,FFFFFFFF
Ret
00E198C8:
DD AutoLRICS
[Disable]
00E198C8:
DD GetFocus
DeAlloc(MyLR)
DeAlloc(SetX)
DeAlloc(AutoLRICS)
請問一下 這個數據可以改成人物只走單邊嗎?
回覆刪除可以的話該怎麼改可以說一下嗎@@?