getDeadPlayers | Multi Theft Auto: Wiki Skip to content

getDeadPlayers

Client-side
Server-side
Shared

This page is incomplete! Help wanted!

Please finish this page using the corresponding Old Wiki article.
Go to Contribution guidelines for more information.


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

Syntax

getDeadPlayers ( )

Code Examples

server

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