請問我用了某位大大的腳本 他會一直跑 一直亂鎖定怪物 但是都不會打 有人可以幫我修改一下嗎
#[HOTKEY]F11
#[HOTKEY]F11
function main
SetInputMode(3) //驅動模式,很多遊戲會阻擋SP的部份功能,可以套用此函數
while true //循環開始
FuncTimer01()
State() //子函數狀態
wend //返回while開始循環
end function
function State
//讀入數字0-9的圖像文件到數組
if not CheckColor(WinX0+611, WinY0+48, Color(165, 60, 24), 10) then
do
KeyDown("a")
Wait(100)
KeyUp("a")
KeyDown("Tab")
Wait(100)
KeyUp("Tab")
loop until CheckColor(WinX0+431, WinY0+33, Color(59, 59, 59), 10)
else //否則
do
FuncTimer01()
KeyDown("1")
Wait(300)
KeyUp("1")
Wait(300)
KeyDown("2")q97
Wait(300)
KeyUp("2")
//如果找到圖像"小瓶hp剩餘1.Sel"
//如果窗口坐標(157, 38)的顏色不等於(148, 56, 24) 那麼
if not CheckColor(WinX0+157, WinY0+38, Color(148, 56, 24), 10) then
KeyDown("3")
Wait(300)
KeyUp("3")
end if
//如果窗口坐標(134, 35)的顏色不等於(155, 114, 100) 那麼
if CheckColor(WinX0+134, WinY0+35, Color(155, 114, 100), 10) then
KeyDown("4")
Wait(300)
KeyUp("4")
end if
//如果窗口坐標(157, 47)的顏色不等於(45, 120, 138) 那麼
if not CheckColor(WinX0+157, WinY0+47, Color(45, 120, 138), 10) then
//以下為嚮導添加的代碼
KeyPress("5")
end if
loop while CheckColor(WinX0+431, WinY0+33, Color(59, 59, 59), 10)
end if
end function
function FuncTimer01 //每隔10秒,按一次鍵盤a,轉移視角
//定時器代碼,每Interval秒執行一次
dim global Timer01 = -1
if Timer01 < 0 or GetTime() - Timer01 >= 15 * 1000 then
Timer01 = GetTime() //等待時間等於系統時間
//以下為執行代碼
KeyPress("a") //按鍵盤a
//代碼結束
end if
end function //子函數結束 |