Agile98 Posted May 31 Posted May 31 (edited) I want Script for seting game speed 1 times for 15 seconds then game speed 5 times for 6 minutes and make loop to to change speed 1 and 5 indefinitely Edited May 31 by Agile98 correction
0 CmP Posted June 2 Posted June 2 Not very clear description, see yourself whether the following does what you want: local function setSpeedForSeconds(speed, seconds) gg.setSpeed(speed) gg.sleep(seconds * 1000) end while true do setSpeedForSeconds(1, 15) setSpeedForSeconds(5, 360) end 1
Question
Agile98
I want Script for seting game speed 1 times for 15 seconds
then
game speed 5 times for 6 minutes
and make loop to to change speed 1 and 5 indefinitely
Edited by Agile98correction
1 answer to this question
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