GetDeadPlayers

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 dead players

Syntax

table getDeadPlayers()

Returns

Returns a table of all the dead players.

Example

-- Print a list of all the dead players
  deadPlayers = getDeadPlayers ()
  if ( deadPlayers ) then -- if we got the table
    deadPlayersList = "none"
    -- Loop through the table
    for playerKey, playerValue in deadPlayers do
      -- add their name to the list
      if ( deadPlayersList == "none" ) then
        deadPlayersList = getClientName ( playerValue )
      else
        deadPlayersList = deadPlayersList .. ", " .. getClientName ( playerValue )
      end
    end
    outputChatBox ( "Dead Players: " .. deadPlayersList )    
  end

See Also