這是我個人做的新腳本
需要的人可以參考看看
Gosub 補血 //先看自己血量是否需要喝紅水
Gosub 補靈 //先看自己靈力是否需要喝藍水
Gosub 補真 //先看自己靈力是否需要喝黃水
Gosub 御靈攻擊 //先看御靈血量足夠來攻擊
Gosub 找怪 //以上條件全OK 開始找怪
Goto 結束
//找怪:沒有怪時按快捷鍵找怪
// 找到怪後開始攻擊
Sub 找怪
IfColor 321,62,8484de,2
Goto 攻擊順序
Else
KeyPress 112,1
Delay 1000
EndIf
Return 找怪
//看御靈血量是否充足
Sub 御靈攻擊
IfColor 259,87,bc,2
KeyPress 48,1
Else
KeyPress 57,1
EndIf
Return 御靈攻擊
//找到怪後開始攻擊 設定攻擊順序
Sub 攻擊順序
Rem 攻擊
Gosub 普攻
Gosub 怪確認死亡
IfColor 321,62,8484de,2
Goto 攻擊
Else
Goto 結束
EndIf
Return 攻擊順序
//設定攻擊技能快捷鍵與其延遲時間
Sub 普攻
KeyPress 113,1
Return 普攻
//確認怪是否死亡(攻擊順序中每一個技能後面都要加上確認怪是否死亡)
Sub 怪確認死亡
IfColor 321,62,8484de,2
Gosub 補血
Gosub 補靈
Gosub 補真
Else
Goto 結束
EndIf
Return 怪確認死亡
//血量不足時喝紅水
Sub 補血
IfColor 55,129,bf,2
Else
KeyPress 116,1
Delay 1000
KeyPress 117,1
Delay 1000
EndIf
Return 補血
//靈力不足時喝藍水
Sub 補靈
IfColor 55,140,8b4603,2
Else
KeyPress 118,1
Delay 1000
KeyPress 119,1
Delay 1000
EndIf
Return 補靈
//真氣不足時喝黃水
Sub 補真
IfColor 47,153,3978b,2
Else
KeyPress 118,1
Delay 1000
KeyPress 119,1
Delay 1000
EndIf
Return 補真
//以下只是沒水的時候直接休息到滿
//可用可不用
//要用的話把程序名稱加在"補X"的程序裡就好
Sub 休息滿血
Rem 繼續休息補血
IfColor 104,125,fb,2
Else
Delay 1000
Goto 結束
EndIf
Return 休息滿血
Sub 休息滿靈
Rem 繼續休息補靈
IfColor 105,138,d59500,0
Else
Delay 1000
Goto 結束
EndIf
Return 休息滿靈
Sub 休息滿真
Rem 繼續休息補真
IfColor 104,152,c2d4,0
Else
Delay 1000
Goto 結束
EndIf
Return 休息滿真
Rem 結束 |