Code:
$GameWinTitle = "AION"
WinActivate($GameWinTitle, "")
WinWaitActive($GameWinTitle, "", 5)
HotKeySet("{PAUSE}", "Escape")
HotKeySet("{F11}", "Combo")
$Class = "Scout"
While 1
Sleep(300000)
WEnd
Func Combo()
Select
Case $Class = "Scout"
Send("{TAB}") ; target
Sleep(1500)
Send("!1") ; prebuff < works sometimes >
Sleep(1500)
Send("1") ; chain 1 part 1
Sleep(1500)
Send("1") ; chain 1 part 2
Sleep(1200)
Send("1") ; chain 1 part 3
Sleep(1500)
Send("3") ; skill
Sleep(1500)
Send("4") ; chain 2 part 1
Sleep(1500)
Send("4") ; chain 2 part 1
Sleep(1800)
Send("5") ; attack
Sleep(1000)
Send("1") ; chain 1 part 1
Sleep(1500)
Send("1") ; chain 1 part 1
Sleep(1200)
Send("1") ; chain 1 part 1
Sleep(1800)
Send("5") ; attack
Case $Class = "other"
;write your own macro for your class
Case Else
MsgBox(0, "", "Enter your class info")
EndSelect
EndFunc ;==>Combo
Func Escape()
Exit
EndFunc ;==>Escape






