getAlivePlayers | Multi Theft Auto: Wiki Skip to content

getAlivePlayers

Client-side
Server-side
Shared

Manual Review Required

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


This function returns a table of all the alive players on the server. Opposite function of getDeadPlayers.

OOP Syntax Help! I don't understand this!

Syntax

table getAlivePlayers ( )

Returns

  • table: value

Returns a table of all the alive players.

Code Examples

shared

This example prints a list of all alive players in a "name, name2, name3" format. If no players are alive then it outputs "none".

-- 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 ipairs(alivePlayers) do
-- add their name to the list
if ( alivePlayersList == "none" ) then
alivePlayersList = getPlayerName ( playerValue )
else
alivePlayersList = alivePlayersList .. ", " .. getPlayerName ( playerValue )
end
end
outputChatBox ( "Alive Players: " .. alivePlayersList )
end

See Also