Hello all! Sorry for my english, I'm using Google Translate
I have a question about script... I need to make an action repeat every 13 minutes, but with the loop runing.. see my script:
global $Paused
global $cnt = 1 ;variable declaration
global $z = 0
HotKeySet("{ESC}", "Terminate")
Sleep(5000)
MouseClick("left", 1073, 307, 200)
While 1
MouseClick("left", 1052, 550, 3)
Sleep(1000)
MouseClick("left", 1052, 550, 3)
Sleep(1000)
MouseClick("left", 1052, 550, 3)
Sleep(1000)
MouseClick("left", 1052, 550, 3)
MouseClick("left", 1168, 452, 1)
WEnd
Func Terminate() ; the exit function
Exit 0
EndFunc
I need to every 13 minutes, make the first click: MouseClick("left", 1073, 307, 200) ... but I don't know how to do this action
Someone can help me with this please?
Thank you in advance!!
Regards!