Ryvius~ Posted October 5, 2006 Posted October 5, 2006 (edited) I need help with AutoClicker, i dont know how to loop this whole prosess,i just started to learn about 2 days ago, any help/tips would be good.Thx alot HotKeySet("a", "quit") Sleep (5000) MouseClick("Right") Sleep(250) MouseClick("Right") Sleep(250) MouseClick("Right") Sleep(250) MouseClick("Right") Sleep(250) MouseClick("Right") Sleep(250) MouseClick("Right") Sleep(250) MouseClick("Right") Sleep(250) MouseClick("Right") Sleep(250) MouseClick("Right") Sleep(250) MouseClick("Right") Sleep(250) MouseClick("Right") Sleep(250) MouseClick("Right") Sleep(250) EndFunc click() Func quit () Exit () EndFunc Edited October 5, 2006 by Ryvius~
Xenobiologist Posted October 5, 2006 Posted October 5, 2006 Hi, there are several tutorials to learn Autoit. HotKeySet("a", "quit") While 1 MouseClick("Right") Sleep(250) WEnd Func quit() Exit () EndFunc ;==>quit Good luck! So long, Mega Scripts & functions Organize Includes Let Scite organize the include files Yahtzee The game "Yahtzee" (Kniffel, DiceLion) LoginWrapper Secure scripts by adding a query (authentication) _RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...) Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc. MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times
Paulie Posted October 6, 2006 Posted October 6, 2006 Slight improvment to t.h.'s script, insert starts it, Esc quits HotKeySet("{ESC}", "quit") HotKeySet("{Insert}", "Click") While 1 Sleep(1000) WEnd Func Click() While 1 Mouseclick("Right") Sleep(250) Wend EndFunc Func quit() Exit () EndFunc
Paulie Posted October 6, 2006 Posted October 6, 2006 Thx this helped me so much NP. Welcome to the forums!
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now