44 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * ManiaPlanet dedicated server Xml-RPC client
 | 
						|
 *
 | 
						|
 * @license     http://www.gnu.org/licenses/lgpl.html LGPL License 3
 | 
						|
 */
 | 
						|
 | 
						|
namespace Maniaplanet\DedicatedServer\Structures;
 | 
						|
 | 
						|
class ServerOptions extends AbstractStructure
 | 
						|
{
 | 
						|
	public $name;
 | 
						|
	public $comment;
 | 
						|
	public $password;
 | 
						|
	public $passwordForSpectator;
 | 
						|
	public $hideServer;
 | 
						|
	public $currentMaxPlayers;
 | 
						|
	public $nextMaxPlayers;
 | 
						|
	public $currentMaxSpectators;
 | 
						|
	public $nextMaxSpectators;
 | 
						|
	public $isP2PUpload;
 | 
						|
	public $isP2PDownload;
 | 
						|
	public $currentLadderMode;
 | 
						|
	public $nextLadderMode;
 | 
						|
	public $ladderServerLimitMax;
 | 
						|
	public $ladderServerLimitMin;
 | 
						|
	public $currentVehicleNetQuality;
 | 
						|
	public $nextVehicleNetQuality;
 | 
						|
	public $currentCallVoteTimeOut;
 | 
						|
	public $nextCallVoteTimeOut;
 | 
						|
	public $callVoteRatio;
 | 
						|
	public $allowMapDownload;
 | 
						|
	public $autoSaveReplays;
 | 
						|
	public $autoSaveValidationReplays;
 | 
						|
	public $refereePassword;
 | 
						|
	public $refereeMode;
 | 
						|
	public $currentUseChangingValidationSeed;
 | 
						|
	public $useChangingValidationSeed;
 | 
						|
	public $nextUseChangingValidationSeed;
 | 
						|
	public $clientInputsMaxLatency;
 | 
						|
	public $keepPlayerSlots;
 | 
						|
	public $disableHorns;
 | 
						|
	public $disableServiceAnnounces;
 | 
						|
} |