; <COMPILER: v1.0.47.5>
#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%
#Persistent
menu, tray, add
menu, tray, add, Buff Repeater (CTRL +2), BuffLoop
menu, tray, add, Buff Round (CTRL + 3), BuffRound
return
^q::ExitApp
^p::Pause
^r::Reload
^h::about()
^1::buff()
^2::buff_loop()
^3::buff_round()
IfWinNotActive, ROSE online, , WinActivate, ROSE online,
BuffLoop:
buff_loop()
return
BuffRound:
buff_round()
return
about()
{
TrayTip, Conjurer script,`n CTRL + q = quit `n CTRL + R = restart `n
}
buff()
{
Send, {F1}
Sleep, 3000
Send, {F2}
Sleep, 3000
Send, {F3}
Sleep, 3000
Send, {F4}
Sleep, 3000
Send, {F5}
Sleep, 3000
Send, {F6}
Sleep, 5000
}
buff_loop()
{
TrayTip, Activated buff repeat, Buff stay buffing ( to deactivate use CTRL+R)
counter = 0
Loop
{
Sleep, 10000
buff()
Sleep, 60000
counter++
if(counter = 200)
{
Send, {F8}
counter = 0
}
}
}
sequence()
{
Sleep, 10000
Send, {!}I will buff in 30 seconds {!} Get near please {!} {ENTER}
Sleep, 30000
buff()
}
buff_round()
{
TrayTip, Activated buff round, will cicle maps buffing ( to deactivate use CTRL+R)
counter = 0
Loop
{
IfWinActive, ROSE online
{
Send, /na Welcome to Bratok R.O.S.E, We wish you all the best fun playing in our server! {ENTER}
Sleep, 5000
Send, /na This is a automated BOT, does not respond to players or buffing requests. Buff Junon, Zant and Adventure! {ENTER}
Sleep, 1000
Send, /mm 22 565 522 {ENTER}
sequence()
Send, /mm 1 525 525 {ENTER}
sequence()
Send, /mm 2 566 521 {ENTER}
sequence()
counter++
if(counter = 50)
{
Send, {F8}
counter = 0
}
}
}
}