GetAlivePlayers

From Multi Theft Auto: Wiki
Revision as of 12:12, 21 August 2007 by Arc (talk | contribs)
Jump to navigation Jump to search

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

Syntax

table getAlivePlayers ( )

Returns

Returns a table of all the alive players.

Example

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

See Also