GetDeadPlayers: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (Syntax section)
No edit summary
 
(3 intermediate revisions by 3 users not shown)
Line 1: Line 1:
__NOTOC__
{{Server function}}
{{Server function}}
__NOTOC__
This function returns a table of all currently dead players on the server.
This function returns a table of all currently dead players on the server.


==Syntax==  
==Syntax==
<section show="true" name="Server" class="server">
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
table getDeadPlayers()
table getDeadPlayers()
</syntaxhighlight>
</syntaxhighlight>
 
{{OOP||[[Player]].getAllDead||}}
===Returns===
===Returns===
Returns a table of all the dead players.
Returns a table of all the dead players.
</section>


==Example==
==Example==
<section show="true" name="Server" class="server">
This example prints the list of dead players to the chat box.
This example prints the list of dead players to the chat box.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
Line 33: Line 30:
   end
   end
</syntaxhighlight>
</syntaxhighlight>
</section>


==See Also==
==See Also==
{{Player functions}}
{{Player functions}}
[[ru:getDeadPlayers]]

Latest revision as of 22:57, 28 December 2014

This function returns a table of all currently dead players on the server.

Syntax

table getDeadPlayers()

OOP Syntax Help! I don't understand this!

Method: Player.getAllDead(...)


Returns

Returns a table of all the dead players.

Example

This example prints the list of dead players to the chat box.

-- 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 = getPlayerName ( playerValue )
      else
        deadPlayersList = deadPlayersList .. ", " .. getPlayerName ( playerValue )
      end
    end
    outputChatBox ( "Dead Players: " .. deadPlayersList )    
  end

See Also