GetAlivePlayers

From Multi Theft Auto: Wiki
Revision as of 20:48, 2 August 2007 by Norby89 (talk | contribs) (→‎Syntax)
Jump to navigation Jump to search

This function returns a table of all the alive players

Syntax

table getAlivePlayers()

Returns

Returns a table of all the alive players.

Example

-- Print a list of all the alive players
  alivePlayers = getAlivePlayers ()
  if ( alivePlayers ) then -- if we got the table
    alivePlayersList = "none"
    -- Loop through the table
    for playerKey, playerValue in alivePlayers do
      -- add their name to the list
      if ( alivePlayersList == "none" ) then
        alivePlayersList = getClientName ( playerValue )
      else
        alivePlayersList = alivePlayersList .. ", " .. getClientName ( playerValue )
      end
    end
    outputChatBox ( "Alive Players: " .. alivePlayersList )    
  end

See Also