TGame.MaxPlayers

From Soldat Community Wiki
Revision as of 15:33, 23 July 2013 by Mighty (talk | contribs) (Description)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
property MaxPlayers: Byte
 Access mode: RW

Description

Number representing maximum players that can play on the server at the same time.
When executed, players are never kicked.
MaxPlayers is not changeable with Locked Mode ON

Example

  // a never-full server
  if Game.NumPlayers = Game.MaxPlayers then
    Game.MaxPlayers := Game.MaxPlayers + 1;