GetPlayerCount: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 4: Line 4:


==Syntax==
==Syntax==
  Integer getPlayerCount ()
  int getPlayerCount ()


==Example==
==Example==
  playercount = '''getPlayerCount''' ();
  playercount = '''getPlayerCount''' ();
  serverChat ( "There are currently ", playercount, " players playing in the server" );
  serverChat ( "There are currently ", playercount, " players playing in the server" );

Revision as of 21:58, 24 March 2006

Description

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

Syntax

int getPlayerCount ()

Example

playercount = getPlayerCount ();
serverChat ( "There are currently ", playercount, " players playing in the server" );