K3STROS Posted October 20, 2015 Posted October 20, 2015 Self explanatory, why doesn't this work?Sleep((Random, 990, 1990, 1))Thanks in advance
Developers Jos Posted October 20, 2015 Developers Posted October 20, 2015 Because you coded it wrong and it contains syntax errors.Jos JohnOne 1 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.
ViciousXUSMC Posted October 20, 2015 Posted October 20, 2015 As Jos said. Bad Syntax. Break it down into it's pieces and then put them together.$iTime = Random(990, 1990, 1) Sleep($iTime) ;or Sleep(Random(990, 1990, 1)) K3STROS 1
K3STROS Posted October 21, 2015 Author Posted October 21, 2015 (edited) $iTime = Random(990, 1990, 1) Sleep($iTime) ;or Sleep(Random(990, 1990, 1))Works perfectly! Thanks alot! Had it coded properly in the rest on my code guess i must of type wrong then copy/paste Edited October 21, 2015 by K3STROS Figured it out
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