Dai_Lucerne Posted May 7, 2018 Posted May 7, 2018 (edited) Solved. Edited June 7, 2018 by Dai_Lucerne Solved
Developers Jos Posted May 7, 2018 Developers Posted May 7, 2018 You never finished this thread with your other account you created: I guess it is time to read our forumrules first now and don't create an account for each question! Jos SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
Dai_Lucerne Posted May 7, 2018 Author Posted May 7, 2018 I apologize for doing so, simply forgot my account name. Is there any alternative to a goto function or anything similar?
badcoder123 Posted May 7, 2018 Posted May 7, 2018 If you want it always running it's probably better if you put it in a loop such as #include <AutoItConstants.au3> HotKeySet("+9", "Terminate") HotKeySet("+5", "Lucerne") While 1 MouseDown("left") $point = PixelSearch(957,537,963,541, 0xFE4040, 3) Sleep(1800) If IsArray($point) Then MouseUp("left") WEnd Func Terminate() Exit EndFunc or #include <AutoItConstants.au3> HotKeySet("+9", "Terminate") HotKeySet("+5", "Lucerne") While 1 ;insert script... Lucerne() ;insert script... WEnd Func Lucerne() MouseDown("left") $point = PixelSearch(957,537,963,541, 0xFE4040, 3) Sleep(1800) If IsArray($point) Then MouseUp("left") EndFunc Func Terminate() Exit EndFunc if you want the script to run while looping pixelsearch maybe look into the AdLibRegister function
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