jmaleal Posted December 15, 2006 Posted December 15, 2006 I have some scripts that allow me to stay Away from Keyboard in MU ONLINE game. Usually i start the script using a key. This time i need a script that starts with right mouse click, dont make loop. So the idea is start the script and press number 1,2,3 in a fast way then stop if anyone can help ty
xcal Posted December 19, 2006 Posted December 19, 2006 You want to do it without a loop? Why? You already have a loop idling your script... so make use of it. #Include <Misc.au3> HotKeySet('{escape}', 'quit') While 1 If _IsPressed('02') Then myfunc() Sleep(50) WEnd Func myfunc() MsgBox(0, 'im a newb', 'my stuff here') EndFunc Func quit() Exit EndFunc How To Ask Questions The Smart Way
jmaleal Posted December 20, 2006 Author Posted December 20, 2006 the question is that i dont want a loop i click...the script start and stop then i click again and repeat script The idea is Start the bot with the mouse click (mouse click should be the way to start the bot), then the script runs, and finish.... dont back to beginning ty for help
HackerZer0 Posted December 20, 2006 Posted December 20, 2006 sorry for not understanding but do you want it to do the following? you right click it sends "123" you right click again, do you still want it to send "123" or only do it the one time? Earn money on CASHCRATE by sitting around doing nothing..
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