skilzrulz 0 Posted November 10, 2004 (edited) MouseClick("left, 648, 762") Opt("MouseClickDelay", 11000) MouseClick("left, 721, 175") How would I get all of that to Click in that position, then wait 11 seconds, then click again? and keep it looping infintly. Thanks Edited November 10, 2004 by skilzrulz Share this post Link to post Share on other sites
Guest Py7|-|[]/\/ Posted November 10, 2004 NoobieFunc() Func NoobieFunc() While 1 MouseClick("left", 648, 762, 1) Sleep(11000) MouseClick("left", 721, 175, 1) Wend EndFunc This should work. Share this post Link to post Share on other sites
mcfr1es 0 Posted November 10, 2004 (edited) /\/,Nov 9 2004, 07:57 PM]NoobieFunc() Func NoobieFunc() While 1 MouseClick("left", 648, 762, 1) Sleep(11000) MouseClick("left", 721, 175, 1) Wend EndFuncThis should work.<{POST_SNAPBACK}>skilzrulz, RTFM Edited November 10, 2004 by mcfr1es Roger! You son of a big pile o' Monkey Nuts. Share this post Link to post Share on other sites
Guest Py7|-|[]/\/ Posted November 10, 2004 Meh, I'm sure he has... Just forgot a few quotes and number of times to click. Share this post Link to post Share on other sites
Guest Py7|-|[]/\/ Posted November 10, 2004 Slightly modified version. If you press Ctrl + s then it will start the script, if you press Ctrl + t then it will stop the script; might be helpful. HotKeySet("^s", "NoobieFunc") HotKeySet("^t", "Terminate") While 1 Sleep(100) Wend Func NoobieFunc() While 1 MouseClick("left", 648, 762, 1) Sleep(11000) MouseClick("left", 721, 175, 1) Wend EndFunc Func Terminate() Exit 0 EndFunc Share this post Link to post Share on other sites