GetDeadPlayers: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
 
Line 4: Line 4:
==Syntax==  
==Syntax==  
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
table getDeadPlayers ( void )
table getDeadPlayers()
</syntaxhighlight>
</syntaxhighlight>



Revision as of 20:48, 2 August 2007

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