Warmonger Posted May 11, 2011 Posted May 11, 2011 (edited) Alright here's what I wanna do. I wanna make AdlibRegister run a function on a specific time (12:00am or whatever). How would I go about that? And having it keep following up day in and day out. I wanna say away from the main while loop as much as possible. Edited May 11, 2011 by Warmonger [AutoIt File Patcher]
JohnOne Posted May 12, 2011 Posted May 12, 2011 AdlibRegister("_MyAdlibRegisteFunc",1000*30) Func _MyAdlibRegisteFunc() If @HOUR == 12 And @MIN = 00 Then ;Stuff EndIf EndFunc AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
Warmonger Posted May 12, 2011 Author Posted May 12, 2011 AdlibRegister("_MyAdlibRegisteFunc",1000*30) Func _MyAdlibRegisteFunc() If @HOUR == 12 And @MIN = 00 Then ;Stuff EndIf EndFunc Blah... Didn't read the help file fully. Didn't realize it paused the script to execute the function. Thanks. Maybe next time ill read more before asking for support. [AutoIt File Patcher]
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