That's perfect, thanks. I modified your script to skip cinematics like in stage 7. here's the code :Quote:
Is a really simple script for background bot that press F5 and ESC, just compie it and run.
Oh yeah is undetect :)Code:#RequireAdmin HotKeySet("{F1}","start") HotKeySet("{F2}","close") While 1 ToolTip("F1 Start - F2 Exit",0,0) Sleep(500) WEnd Func start() while 1 ControlSend("S4 Client","","","{F5}") Sleep(500) ControlSend("S4 Client","","","{ESC}") Sleep(500) WEnd EndFunc Func close() Exit EndFunc
If you don't know how use it follow this mini guide
Code:
#RequireAdmin
HotKeySet("{F1}","start")
HotKeySet("{F2}","close")
While 1
ToolTip("F1 Start - F2 Exit",0,0)
Sleep(500)
WEnd
Func start()
while 1
ControlSend("S4 Client","","","{F5}")
Sleep(500)
ControlSend("S4 Client","","","{ESC}")
Sleep(500)
ControlSend("S4 Client","","","{p}")
Sleep(500)
WEnd
EndFunc
Func close()
Exit
EndFunc