GetPlayerCount

From Multi Theft Auto: Wiki
Jump to navigation Jump to search

This function returns the number of players currently connected to the server.

Syntax

int getPlayerCount ()

Returns

Returns the number of players connected to the server as an int.

Example

This example displays a chat message with the number of players connected to the server.

-- Retrieve the number of players connected to the server and store the number in the playercount variable
playercount = getPlayerCount ()
-- Display a chat message informing everyone on the server how many people are playing.
outputChatBox ( "There are currently ", playercount, " players playing in the server" )

See Also

Template:Player Functions