PHP Code:
Global $Active = 0
HotKeySet("{F3}", "_StartBot")
HotKeySet("{F}", "_PauseBot")
HotKeySet("{ESC}", "_EndeBot")
Func _StartBot()
$Active = 1
EndFunc
Func _PauseBot()
$Active = 0
EndFunc
Func _EndeBot()
Exit
EndFunc
While 1
If $Active = 1 Then
MouseClick("left", 975, 509, 5)
Sleep(1000)
MouseClick("left", 975, 509, 5)
EndIf
WEnd