rocknload Posted September 1, 2008 Posted September 1, 2008 hey guys, i have a problem understanding the hotkeyset and i will be happy if u will help me let me give u a general example: $click = 0 while $click = 0 MouseClick("right") WEnd how do i make an hotkey to say stop? or something like that if u understand.. thanks
oMBRa Posted September 1, 2008 Posted September 1, 2008 (edited) HotKeySet("{F2}", "stop") Global $Click = False While 1 If $Click = True Then MouseClick("right") EndIf WEnd Func stop() $Click = Not $Click EndFunc ;==>stop Edited September 1, 2008 by oMBra
rocknload Posted September 1, 2008 Author Posted September 1, 2008 thx but now when i press f2 it starts..how to stop?
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