Advertisement
Guest User

server.cfg

a guest
Dec 18th, 2012
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.84 KB | None | 0 0
  1. set dedicated "2" // 1: dedicated server for lan 2: dedicated server for internet
  2. // set net_ip "" // set to override the default IP ET uses
  3. // set net_port "27960" // set to override the default port ET uses
  4.  
  5. // PASSWORDS & CLIENTS
  6.  
  7. set sv_maxclients "20" // number of players including private slots
  8. set g_password "" // set to password protect the server
  9. set sv_privateclients "4" // if set > 0, then this number of client slots will be reserved for connections
  10. set sv_privatepassword "" // that have "password" set to the value of "sv_privatePassword"
  11. set rconpassword "" // remote console access password
  12. set refereePassword "" // referee status password
  13.  
  14. // DL, RATE
  15.  
  16. set sv_maxRate "13000" // 10000 standard but poor for ET
  17. set sv_dl_maxRate "42000" // increase/decerease if you have plenty/little spare bandwidth
  18. set sv_allowDownload "0" // global toggle for both legacy download and web download
  19. set sv_wwwDownload "0" // toggle to enable web download
  20. set sv_wwwBaseURL "" // base URL for redirection
  21. set sv_wwwDlDisconnected "0" // tell clients to perform their downloads while disconnected from the server
  22. set sv_wwwFallbackURL "" // URL to send to if an http/ftp fails or is refused client side
  23.  
  24. // MOTD ETC
  25.  
  26. set sv_hostname "ETHost" // name of server here
  27. set server_motd0 " ^NEnemy Territory ^7MOTD " // message in right corner of join screen here
  28. set server_motd1 ""
  29. set server_motd2 ""
  30. set server_motd3 ""
  31. set server_motd4 ""
  32. set server_motd5 ""
  33.  
  34. // MISC SETTINGS
  35.  
  36. set g_heavyWeaponRestriction "100"
  37. set g_antilag "1"
  38. set g_altStopwatchMode "0"
  39. set g_autofireteams "1"
  40. set g_complaintlimit "6"
  41. set g_ipcomplaintlimit "3"
  42. set g_fastres "0"
  43. set g_friendlyFire "1"
  44. //set g_gametype "4" // Game type should be set from map rotation script
  45. set g_minGameClients "8"
  46. set g_maxlives "0"
  47. set g_alliedmaxlives "0"
  48. set g_axismaxlives "0"
  49. set g_teamforcebalance "1"
  50. set g_noTeamSwitching "0"
  51. set g_voiceChatsAllowed "4"
  52. set g_doWarmup "0"
  53. set g_warmup "30"
  54. set g_spectatorInactivity "0"
  55. set sv_floodProtect "1"
  56. set sv_allowDownload "1"
  57. set sv_pure "1"
  58. set sv_minping "0"
  59. set sv_maxping "0"
  60. set match_latejoin "1"
  61. set match_minplayers "4"
  62. set match_mutespecs "0"
  63. set match_readypercent "100"
  64. set match_timeoutcount "0"
  65. set match_warmupDamage "1"
  66. set team_maxplayers "0"
  67. set team_nocontrols "1"
  68. set pmove_fixed "0"
  69. set pmove_msec "8"
  70.  
  71. // LMS ONLY SETTINGS
  72.  
  73. set g_lms_teamForceBalance "1"
  74. set g_lms_roundlimit "3"
  75. set g_lms_matchlimit "2"
  76. set g_lms_currentMatch "0"
  77. set g_lms_lockTeams "0"
  78. set g_lms_followTeamOnly "1"
  79.  
  80. // VOTING
  81.  
  82. set g_allowVote "1"
  83. set vote_limit "5"
  84. set vote_percent "50"
  85. set vote_allow_comp "1"
  86. set vote_allow_gametype "1"
  87. set vote_allow_kick "1"
  88. set vote_allow_map "1"
  89. set vote_allow_matchreset "1"
  90. set vote_allow_mutespecs "1"
  91. set vote_allow_nextmap "1"
  92. set vote_allow_pub "1"
  93. set vote_allow_referee "0"
  94. set vote_allow_shuffleteams "1"
  95. set vote_allow_swapteams "1"
  96. set vote_allow_friendlyfire "1"
  97. set vote_allow_timelimit "0"
  98. set vote_allow_warmupdamage "1"
  99. set vote_allow_antilag "1"
  100. set vote_allow_balancedteams "1"
  101. set vote_allow_muting "1"
  102.  
  103. // PUNKBUSTER
  104.  
  105. // sv_punkbuster is a readonly variable. Use +set sv_punkbuster on command line or use the command pb_sv_enable in the console
  106. //pb_sv_enable
  107.  
  108. // LOGGING
  109.  
  110. set g_log "etserver.log" // Game logging
  111. set g_logsync 0
  112. set logfile 0 // Console logging ( 1: enable 2: enable and sync )
  113.  
  114. // MAP ROTATION
  115.  
  116. exec campaigncycle.cfg // Campaign mode
  117. //exec objectivecycle.cfg // Objective mode
  118. //exec lmscycle.cfg // Last Man Standing mode
  119.  
  120. // WATCHDOG
  121.  
  122. // in case the game dies with an ERR_DROP
  123. // or any situation leading to server running with no map
  124. //set com_watchdog 10 // defaults 60
  125. set com_watchdog_cmd "exec campaigncycle.cfg" // defaults to quit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement