圖檔請自己抓(1.Sel)
我沒有可讓你們下載的地方
拍謝!
補師可以打開skill1跟skill2幫忙補血
生命治癒:放到0鍵(每20秒施法一次)看個人失血情況調整
治療術 :放到9鍵(一分鐘施法一次)看個人失血情況調整
強韌真言:放到8鍵(15分鐘)
靈智恩典:放到7鍵(15分鐘)
聖光眷顧:放到6鍵(15分鐘)
#[HOTKEY]F11
# 在此定義全局變量
function main
SetInputMode(3)
//SetTimer("skill1", 20*1000, true)//生命治癒(每20秒施法一次)
//SetTimer("skill2", 60*1000, true)//治療術(一分鐘施法一次)
//SetTimer("skill3", 15*60000, true)//強韌真言,靈智恩典,聖光眷顧(15分鐘)
//SetTimer("skill4", 600*1000, true)
//SetTimer("skill5", 600*1000, true)
while true
//無限循環執行以下代碼
if FindImageEx("1.Sel", Color(10, 10, 10), 0, 0, 1024, 768, true, FoundX, FoundY) then
//此時FoundX和FoundY的值分別為找到的圖像的左上角X,Y坐標
/*
KeyPress("1")//施法
Wait(1000)//依個人情況調整
KeyPress("`")//攻擊
Wait(600)//依個人情況調整
KeyPress("2")//施法
Wait(200)//依個人情況調整
Print("找到怪物")*/
KeyPress("`")//攻擊
Wait(205)
else //否則
KeyPress("TAB")
Print("找怪")
//等待500毫秒
Wait(500)
end if
wend
end function
# 在此添加子函數
function skill1
KeyPress("0")
Wait(412)
KeyPress("`")
Wait(250)
end function
function skill2
KeyPress("9")
Wait(412)
KeyPress("`")
Wait(250)
end function
function skill3
KeyPress("8")
Wait(1520)
KeyPress("7")
Wait(1520)
KeyPress("6")
Wait(1520)
end function
function skill4
KeyPress("9")
Wait(412)
KeyPress("`")
Wait(250)
end function
function skill5
KeyPress("8")
Wait(412)
KeyPress("`")
Wait(250)
end function |