AutoIT !
works good for abbys or boss spwan
Code:
HotKeySet("{F1}", "Begin")
HotKeySet("{F2}", "Pause")
HotKeySet("{ESC}", "TOT")
TrayTip("Esc = Close, F1= Start, F2= Pause", 5, 1)
Func Begin ()
While 1
Send("1")
Sleep(100)
Send("2")
Sleep(100)
Send("3")
Sleep(100)
WEnd
EndFunc
Func Pause ()
While 1
Sleep(1)
WEnd
EndFunc
Func TOT()
Exit
EndFunc
While 1
Sleep(1)
WEnd