Jump to content

How to do this?


GamerDeMTA

Recommended Posts

Posted
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,

Posted
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 );     

Posted

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...