GetAlivePlayers

From Multi Theft Auto: Wiki
Revision as of 17:57, 30 September 2006 by MrJax (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This function returns a table of all the alive players

Syntax

table getAlivePlayers ( void )

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