battle309 Posted September 25, 2012 Posted September 25, 2012 Hey, I want to make a script that counts up to 5 minutes then if the player hasn't died in 5 minutes they win but I cant find any think wiki for it example I last for 4 minutes then I die. I want my time to reset and start counting up to 5 minutes again
Castillo Posted September 25, 2012 Posted September 25, 2012 setTimer San Andreas Utopia RPG (SAUR) Owner & Developer. Education is the most powerful weapon which you can use to change the world.
battle309 Posted September 25, 2012 Author Posted September 25, 2012 it doesnt count up that just sets time for function to start
Jaysds1 Posted September 25, 2012 Posted September 25, 2012 setTimer and resetTimer My in-game name: Jaysds1 Retired CMG Scripter World Of Tanks GameMode (Open-Source): https://github.com/Jaysds1/mtasa-wot-gamemode Online GUI-Editor (WIP): https://forum.mtasa.com/topic/47678-online-gui-editor/
battle309 Posted September 25, 2012 Author Posted September 25, 2012 how would you start setTimer off i know resetTimer is onPlayerDeath
Jaysds1 Posted September 25, 2012 Posted September 25, 2012 (edited) ok, example: local count = 0 timer = setTimer(function() if count==5 then outputChatBox("You have won!") killTimer(timer) else count = count + 1 end end,1000,0) Edited September 25, 2012 by Guest My in-game name: Jaysds1 Retired CMG Scripter World Of Tanks GameMode (Open-Source): https://github.com/Jaysds1/mtasa-wot-gamemode Online GUI-Editor (WIP): https://forum.mtasa.com/topic/47678-online-gui-editor/
Jaysds1 Posted September 25, 2012 Posted September 25, 2012 ah ok thx np My in-game name: Jaysds1 Retired CMG Scripter World Of Tanks GameMode (Open-Source): https://github.com/Jaysds1/mtasa-wot-gamemode Online GUI-Editor (WIP): https://forum.mtasa.com/topic/47678-online-gui-editor/
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