- Saves target position
- Sits
- Uses Meditation
- Executes Skill (works on Guards)

If this helped you, don't forget to click
Source code:
Code:
; var
dim $pos
; hotkeys
HotKeySet ( "{Esc} " , "Terminate" )
HotKeySet ( "!t", "GetTargetPos" )
ToolTip("Press Esc to exit script.", 0, 0)
GetTargetPos()
; execution
MsgBox ( 0, "SkillBot", "Please make sure you have Sit on F1, Meditation on F2 and Skill on F3.", 0)
Send("{CTRLDOWN}")
While 1
Send( "{F1}")
Send( "{F2}")
Send( "{F3}")
MouseClick( "secondary" , $pos[0], $pos[1] )
WEnd
Func GetTargetPos()
MsgBox ( 0, "SkillBot", "Please hover the mouse over the target. (Press Alt + T to reset target position)" , 0)
Sleep ( 5000 )
$pos = MouseGetPos ()
ToolTip("Press Esc to exit script. Target: x-pos= " & $pos[0] & ", y-pos= " & $pos[1], 0, 0)
EndFunc
Func Terminate()
Exit 0
EndFunc






