No bullshit, sourcecode released.
Press Up to start to right click once a second.
Press Down to pause.
Press Right to exit.
+K if you like it
Press Up to start to right click once a second.
Press Down to pause.
Press Right to exit.
Code:
HotKeySet("{UP}","Start")
HotKeySet("{DOWN}","Pause")
HotKeySet("{RIGHT}","Quit")
While 1
Sleep(1000)
WEnd
Func Start()
While 1
MouseClick("right")
Sleep(1000)
WEnd
EndFunc
Func Pause()
While 1
Sleep(1000)
WEnd
EndFunc
Func Quit()
Exit
EndFunc