WorldOfPadman_Dedi_Server/config/server-settings.cfg
Elias Stepanik 1d8657dc6c Init
2023-12-03 14:07:42 +01:00

74 lines
1.8 KiB
INI

//
// World of Padman - example server settings
//
// NOTE: Any line that starts with // is ignored by WoP.
// Whitespace between commands is also ignored.
//
//
// Administrator info
//
// Do not forget to edit and uncomment the two lines below
//sets admin "YOUR NAME HERE"
//sets email "YOUR EMAIL HERE"
//
// Server name and message
//
// Name of the server. Can include color tags
set sv_hostName "My ^2first ^6WoP ^7server"
// "Message of the Day". Can include color tags
set g_MOTD "^7Visit ^6www.worldofpadman.net ^7for news and files"
//
// Server settings
//
// Maximum number of players, including bots
set sv_maxClients "12"
// Enable Voice over IP
set sv_VoIP "1"
// Maximum bandwith per player. VoIP needs additional bandwidth.
// You only need to set this if your server is on a home connection with
// small upstream bandwith, e.g. dial-up.
// A value of 9000 is for 12 sv_maxClients and sv_VoIP 1 while on a 1 Mbps upstream.
set sv_maxRate "9000"
//
// Bot settings
//
// Enable bots
set bot_enable "1"
// Automatically add 4 bots and kick them when humans connect
set bot_minPlayers "4"
// Bot skill, from 1 to 5. 2 is default
set g_spSkill "3"
//
// Passwords
//
// Remote administration password. If not set, no remote administration is possible
set rconPassword ""
// Password needed for anyone to join the server. If not set, anyone can join
set g_password ""
//
// Game settings
//
// Allow players to call votes for next map, kicking a player etc.
set g_allowVote "1"
// Do warmup at the start of every map
set g_doWarmup "1"
// Duration of the warmup, 30 seconds
set g_warmup "30"
//
// Map and gametype rotation
//
// Execute contents of "rotation.cfg"
exec "rotation.cfg"
//
// You can now load a map via "vstr nextmap"
//