isa_Khamdan Posted July 29, 2013 Share Posted July 29, 2013 How can I make this Function Repeat Every 2 Minutes? function max() exports.killmessages:outputMessage("* Online Players : ".. getPlayerCount() .."/".. getMaxPlayers() .."", root,250,250,0) end setTimer (max, 1000,1) Link to comment
Castillo Posted July 29, 2013 Share Posted July 29, 2013 Use a timer, instead of 1000, put 120000 and instead of 1, put 0 which is infinite times. Link to comment
denny199 Posted July 29, 2013 Share Posted July 29, 2013 Change the timer. 120000 == 2 mins the 0 = for repeating setTimer (max, 120000,0) Link to comment
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