SetMaxPlayers
Jump to navigation
Jump to search
This function set the maximum number of player slots on the server.
Syntax
bool setMaxPlayers ( int slots )
Required Arguments
- slots: Maximum number of player slots on the server.
Returns
Returns true if number of player slots was successfully changed, false or nil otherwise.
Example
This example increases server slots count if server is full.
addEventHandler( "onPlayerConnect", root, function() local nowPlayers = getElementsByType('player') local maxPlayers = getMaxPlayers() if nowPlayers and maxPlayers and #nowPlayers >= maxPlayers then setMaxPlayers( maxPlayers + 1 ) end end )
See Also
- getMaxPlayers
- getServerConfigSetting
- getServerHttpPort
- getServerName
- getServerPassword
- getServerPort
- isGlitchEnabled
- setGlitchEnabled
- setMaxPlayers
- setServerConfigSetting
- setServerPassword
- shutdown