AR/getPlayerCount: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "{{Server function}} __NOTOC__ هذه الوظيفة تقوم باحضار عدد الاعبين الموجودين في السيرفر {{Note|#getElementsByType("player") works t...")
(No difference)

Revision as of 20:32, 17 October 2012

هذه الوظيفة تقوم باحضار عدد الاعبين الموجودين في السيرفر

[[{{{image}}}|link=|]] Note: #getElementsByType("player") works the same as this function but also works client side unlike this function.

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 when a player joins or quits.

function playerCount ( )
	outputChatBox ( "There are now " .. getPlayerCount() .. " players on this server!" )
end
addEventHandler ( "onPlayerJoin", getRootElement(), playerCount )
addEventHandler ( "onPlayerQuit", getRootElement(), playerCount )

See Also

Shared