GamerDeMTA Posted April 15, 2013 Share Posted April 15, 2013 I want to do a table with outputChatBoxs. can i? is for a random ouputchatboxs Link to comment
PaiN^ Posted April 15, 2013 Share Posted April 15, 2013 Yes, outputs = { 'text1', 'text2', 'text3' }; setTimer ( outputChatBox, 60000, 0, outputs[math.random(#outputs)] ); Link to comment
TAPL Posted April 15, 2013 Share Posted April 15, 2013 Yes, outputs = { 'text1', 'text2', 'text3' }; setTimer ( outputChatBox, 60000, 0, outputs[math.random(#outputs)] ); The math.random will apply only once, it won't apply every 60 seconds. You will need to put anonymous function inside the timer, Link to comment
PaiN^ Posted April 15, 2013 Share Posted April 15, 2013 The math.random will apply only once, it won't apply every 60 seconds.You will need to put anonymous function inside the timer, Didn't know that, Thanx =) outputs = { 'text1', 'text2', 'text3' }; setTimer ( function ( ) outputChatBox ( outputs[math.random(#outputs)] ); end, 60000, 0 ); Link to comment
GamerDeMTA Posted April 15, 2013 Author Share Posted April 15, 2013 and how to output the Admin players list? And if there's no admin connected how to do an output which says "No admins f" Also if I can put the Admin rank (smod mod admin) =) it could be great 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