Got some code:
for k, v in pairs(player.GetAll()) do
chat.AddText( v:Nick() )
end
It outputs something like this:
PlayerOneNick
PlayerTwoNick
PlayerN+1Nick
...
...
Buy I need It to output something like this:
PlayerOneNick
[1 sec interval]
PlayerTwoNick
[1 sec interval]
PlayerN+1Nick
[1 sec interval]
...
So, how can I do this? Tried with timers, but it just repeating PlayerOneNick.
timer.Simple(k, function() MsgN(v) end)
Thanks m8
Sorry, you need to Log In to post a reply to this thread.