Added playerlimit documentation.

dumptruckman 2012-11-06 08:21:06 -08:00
parent cb8f42ab61
commit 15b4be3dbe

@ -24,6 +24,7 @@ Here are the various properties of worlds that can be set in `worlds.yml`. __Nor
1. [Adjust Spawn](#wiki-adjustspawn)
1. [Portal Forming](#wiki-portalform)
1. [Time](#wiki-time)
1. [Player Limit](#wiki-playerlimit)
---
@ -490,4 +491,24 @@ __In Game Usage:__
`mvm set time true`
`mvm set autoheal false`
[Back to Top](#wiki-top)
---
## <a name="playerlimit" href="#wiki-playerlimit"></a>Player Limit
Multiverse has the ability to set a maximum number of players allowed in a world. By default, the limit is set to `-1` indicating no limit. The setting is to specify how many players are allowed.
A player may bypass this limit with the following permissions:
`mv.bypass.playerlimit.*` for all worlds.
`mv.bypass.playerlimit.NAME` for specific worlds.
__Type__:
`Integer`
__Example:__
`playerLimit: -1`
__In Game Usage:__
`mvm set playerlimit 10`
`mvm set limit -1`
[Back to Top](#wiki-top)