Difference between revisions of "MaxPlayers"

From Soldat Community Wiki
Jump to: navigation, search
(Created page with "===From the Scripting Manual=== '''Data Type:''' Byte '''Description:''' Current player limit for the server (Excluding Admins and Bots) ==Examples== <source lang="p...")
 
 
Line 11: Line 11:
 
//player's 31, or 32, because they are never used.</source>
 
//player's 31, or 32, because they are never used.</source>
  
==External Links==
+
==See also==
* [http://enesce.com/help/index.html?Variables/MaxPlayers.html Scripting Manual page for MaxPlayers]
+
* [[NumPlayers]]
  
[[Category:Server Scripting]][[Category:Server Scripting Variables]]
+
[[Category:Server Scripting]][[Category:Server Scripting Variables]][[Category:Player Count Variables]]

Latest revision as of 10:46, 13 March 2013

From the Scripting Manual

 Data Type: Byte
 
 Description:
 Current player limit for the server (Excluding Admins and Bots)

Examples

MyInteger: array[1..MaxPlayers] of Integer

//This way the array will hold the needed Integers and not
//player's 31, or 32, because they are never used.

See also