snowreaper03 Posted August 29, 2005 Posted August 29, 2005 ok i have it looped to keep clicking 1 but i cant get it to stop or even pause cause the mouse keeps wanting to move back to the 1 can anyone tell me how to end the loop after like 200 votes
Knight Posted August 29, 2005 Posted August 29, 2005 $x = 0 Do $x = $x + 1 ;stuff here Until $x = 200
flyingboz Posted August 29, 2005 Posted August 29, 2005 can anyone tell me how to end the loop after like 200 votes<{POST_SNAPBACK}>sigh....Among MANY possibilities...$i = 0 While $i < 200 $i = $i + 1 ; do stuff Wend Reading the help file before you post... Not only will it make you look smarter, it will make you smarter.
LxP Posted August 29, 2005 Posted August 29, 2005 And here's another: for $i = 1 to 200 doStuff() next
quick_sliver007 Posted August 29, 2005 Posted August 29, 2005 (edited) **EDIT** Edited August 29, 2005 by quick_sliver007 .
SupraNatural Posted August 29, 2005 Posted August 29, 2005 $x = 0Do $x = $x + 1;stuff hereUntil $x = 200I vote that one; As for pausing try using HotKeySet. Visit http://www.blizzedout.com/forums/register....referrerid=8306 for the top blizzard hacks. WoW, TfT, D2/LOD, CS. You name it we got it!
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