Browse Source

Moved comments to stop issues with LGSM

pull/3/head
Daniel Gibbs 9 years ago
parent
commit
4ab8e785fe
  1. 78
      WolfensteinEnemyTerritory/server.cfg

78
WolfensteinEnemyTerritory/server.cfg

@ -5,33 +5,51 @@
// * // *
// **************************************************************************** // ****************************************************************************
set dedicated "2" // 1: dedicated server for lan 2: dedicated server for internet // 1: dedicated server for lan 2: dedicated server for internet
// set net_ip "" // set to override the default IP ET uses set dedicated "2"
// set net_port "27960" // set to override the default port ET uses // set to override the default IP ET uses
// set net_ip ""
// set to override the default port ET uses
// set net_port "27960"
// PASSWORDS & CLIENTS // PASSWORDS & CLIENTS
set sv_maxclients "20" // number of players including private slots // number of players including private slots
set g_password "" // set to password protect the server set sv_maxclients "20"
set sv_privateclients "4" // if set > 0, then this number of client slots will be reserved for connections // set to password protect the server
set sv_privatepassword "" // that have "password" set to the value of "sv_privatePassword" set g_password ""
set rconpassword "" // remote console access password // if set > 0, then this number of client slots will be reserved for connections
set refereePassword "" // referee status password set sv_privateclients "4"
// that have "password" set to the value of "sv_privatePassword"
set sv_privatepassword ""
// remote console access password
set rconpassword ""
// referee status password
set refereePassword ""
// DL, RATE // DL, RATE
set sv_maxRate "13000" // 10000 standard but poor for ET // 10000 standard but poor for ET
set sv_dl_maxRate "42000" // increase/decerease if you have plenty/little spare bandwidth set sv_maxRate "13000"
set sv_allowDownload "0" // global toggle for both legacy download and web download // increase/decerease if you have plenty/little spare bandwidth
set sv_wwwDownload "0" // toggle to enable web download set sv_dl_maxRate "42000"
set sv_wwwBaseURL "" // base URL for redirection // global toggle for both legacy download and web download
set sv_wwwDlDisconnected "0" // tell clients to perform their downloads while disconnected from the server set sv_allowDownload "0"
set sv_wwwFallbackURL "" // URL to send to if an http/ftp fails or is refused client side // toggle to enable web download
set sv_wwwDownload "0"
// base URL for redirection
set sv_wwwBaseURL ""
// tell clients to perform their downloads while disconnected from the server
set sv_wwwDlDisconnected "0"
// URL to send to if an http/ftp fails or is refused client side
set sv_wwwFallbackURL ""
// MOTD ETC // MOTD ETC
set sv_hostname "ETHost" // name of server here // name of server here
set server_motd0 " ^NEnemy Territory ^7MOTD " // message in right corner of join screen here set sv_hostname "ETHost"
// message in right corner of join screen here
set server_motd0 " ^NEnemy Territory ^7MOTD "
set server_motd1 "" set server_motd1 ""
set server_motd2 "" set server_motd2 ""
set server_motd3 "" set server_motd3 ""
@ -48,7 +66,8 @@ set g_complaintlimit "6"
set g_ipcomplaintlimit "3" set g_ipcomplaintlimit "3"
set g_fastres "0" set g_fastres "0"
set g_friendlyFire "1" set g_friendlyFire "1"
//set g_gametype "4" // Game type should be set from map rotation script // Game type should be set from map rotation script
//set g_gametype "4"
set g_minGameClients "8" set g_minGameClients "8"
set g_maxlives "0" set g_maxlives "0"
set g_alliedmaxlives "0" set g_alliedmaxlives "0"
@ -114,19 +133,26 @@ set vote_allow_muting "1"
// LOGGING // LOGGING
set g_log "etserver.log" // Game logging // Game logging
set g_log "etserver.log"
set g_logsync 0 set g_logsync 0
set logfile 0 // Console logging ( 1: enable 2: enable and sync ) // Console logging ( 1: enable 2: enable and sync )
set logfile 1
// MAP ROTATION // MAP ROTATION
exec campaigncycle.cfg // Campaign mode // Campaign mode
//exec objectivecycle.cfg // Objective mode exec campaigncycle.cfg
//exec lmscycle.cfg // Last Man Standing mode // Objective mode
//exec objectivecycle.cfg
// Last Man Standing mode
//exec lmscycle.cfg
// WATCHDOG // WATCHDOG
// in case the game dies with an ERR_DROP // in case the game dies with an ERR_DROP
// or any situation leading to server running with no map // or any situation leading to server running with no map
//set com_watchdog 10 // defaults 60 // defaults 60
set com_watchdog_cmd "exec campaigncycle.cfg" // defaults to quit //set com_watchdog 10
// defaults to quit
set com_watchdog_cmd "exec campaigncycle.cfg"

Loading…
Cancel
Save