14 changed files with 446 additions and 325 deletions
@ -0,0 +1,48 @@ |
|||
// dedicated server default configuration settings |
|||
|
|||
// server name |
|||
hostname "Action: Source Server" |
|||
|
|||
// server password |
|||
sv_password "" |
|||
|
|||
// maximum players allowed in server |
|||
maxplayers 12 |
|||
|
|||
// only allow players on local network to join |
|||
sv_forcelan 0 |
|||
sv_lan 0 |
|||
|
|||
// ping master server list |
|||
heartbeat |
|||
|
|||
// teamplay |
|||
mp_teamplay 0 // enable teams |
|||
mp_threeteams 0 // use three teams for teamplay |
|||
mp_friendlyfire 1 // allow friendly fire |
|||
mp_tkpunish 1 // punish team killers after 2 unforgiven team kills |
|||
|
|||
// game modes |
|||
mp_instagib 0 // enable one hit kill ultimate gib mode |
|||
mp_allowctb 0 // allow "capture the briefcase" mode on supported maps |
|||
mp_allowdante 0 // allow "dante must die" mode on supported maps |
|||
mp_allowvip 0 // allow VIP mode on supported maps |
|||
mp_allowcustom 0 // allow map defined goal modes |
|||
|
|||
// game rules |
|||
mp_timelimit 20 // amount of time, in minutes, played on each map |
|||
mp_fraglimit 0 // number of kills a player must get to win the match |
|||
mp_maxrounds 0 // in rounds mode, number of rounds to be played on each map |
|||
mp_playerlives 0 // number of lives each player gets per round (0 = deathmatch) |
|||
mp_roundtimelimit 5 // amount of time, in minutes, a round is allowed to last |
|||
mp_forcerespawn 0 // automatically respawn players without waiting for them to click |
|||
|
|||
// loadouts and pickups |
|||
mp_forcerandom 0 // force players to spawn with random equipment |
|||
// 0: Players can choose loadout. 1: Each player gets different random loadout. 2: All players get the same random loadout |
|||
|
|||
mp_allowequip 3 // restrict which equipment players can spawn with |
|||
// 0: Players spawn with nothing. 1: Side arms only. 2: Side arms and items only. 3: All equipment allowed |
|||
|
|||
mp_allowpickup 3 // restrict which equipment can spawn on the map as pickups |
|||
// 0: No pickups spawn on map. 1: Side arms only. 2: Side arms and items only. 3: All equipment pickup types spawn on map. |
@ -1,156 +1,75 @@ |
|||
// ************************************************************************** // |
|||
// // |
|||
// Black Mesa - server.cfg // |
|||
// Version 240917 // |
|||
// // |
|||
// ************************************************************************** // |
|||
// **************************************************************************** |
|||
// Black Mesa |
|||
// Config - server.cfg |
|||
// Date - 06/12/2023 |
|||
// **************************************************************************** |
|||
|
|||
// .................................. Basic ................................. // |
|||
|
|||
// Hostname - Name of the server. |
|||
// hostname - Hostname for server. |
|||
hostname "SERVERNAME" |
|||
|
|||
// RCON - remote console password. |
|||
rcon_password "ADMINPASSWORD" |
|||
|
|||
// Server password - for private servers. |
|||
// sv_password - Server password for entry into multiplayer games. |
|||
sv_password "" |
|||
|
|||
// Email - Server admin email. |
|||
// Example: sv_contact "[email protected]" |
|||
sv_contact "" |
|||
|
|||
// LAN mode - If set the server will not show on the internet. |
|||
// Default: sv_lan 0 |
|||
sv_lan 0 |
|||
|
|||
// Server tags - Tags show up on the in-game server browser. This helps |
|||
// users filter servers. |
|||
// vanilla - the server runs the default settings. |
|||
// custom - the server runs custom gameplay settings or mods. |
|||
// Example: sv_tags "custom, fastdl" |
|||
sv_tags "" |
|||
|
|||
|
|||
// ................................. In Game ................................ // |
|||
|
|||
// Cheats - Allow cheats on the server. Steam achievements and stats are disabled. |
|||
// 0 = cheats off. |
|||
// 1 = cheats on. |
|||
// Default: sv_cheats 0 |
|||
// Reccomended: sv_cheats 0 |
|||
sv_cheats 0 |
|||
|
|||
// Friendly fire - Allows players to injure other members of their team. |
|||
// 0 = friendly fire disabled |
|||
// 1 = friendly fire enabled |
|||
// Default: mp_friendlyfire 0 |
|||
mp_friendlyfire 0 |
|||
|
|||
// Time limit - Time on a single map in minutes before switching to a new map automatically. |
|||
// Default: mp_timelimit 45 |
|||
// Recommended: mp_timelimit 45 |
|||
mp_timelimit 45 |
|||
|
|||
// Flashlight - Allow players to use the flashlight. |
|||
// 0 = flashlight off. |
|||
// 1 = flashlight on. |
|||
// Default: mp_flashlight 1 |
|||
mp_flashlight 1 |
|||
|
|||
// Force Respawn - Force the player to respawn. |
|||
// 0 = force respawn off. |
|||
// 1 = force respawn on. |
|||
// Default: mp_forcerespawn 0 |
|||
mp_forcerespawn 0 |
|||
|
|||
// Frag Limit - Number of frags on a single map before switching to a new map automatically. |
|||
// Default: mp_fraglimit 45 |
|||
mp_fraglimit 45 |
|||
|
|||
// Warmup time - Number of seconds to wait before the round starts. |
|||
// Default: mp_warmup_time 30 |
|||
mp_warmup_time 30 |
|||
// sv_setsteamaccount - token Set game server account token to use for logging in to a persistent game server account |
|||
// https://steamcommunity.com/dev/managegameservers |
|||
sv_setsteamaccount "" |
|||
|
|||
// Default Map - map <mapname> :Load a new map. |
|||
map "dm_bounce" |
|||
|
|||
// ................................ Map Cycle ............................... // |
|||
|
|||
// Map cycle - Maps to be rotated on the server. |
|||
// "mapcycle.txt" - All maps |
|||
// mapcyclefile - Name of the .txt file used to cycle the maps on multiplayer servers |
|||
mapcyclefile "mapcycle.txt" |
|||
|
|||
// sv_lan - Server is a lan server ( no heartbeat, no authentication, no non-class C addresses ). |
|||
sv_lan 0 |
|||
|
|||
// ............................. Communication ............................. // |
|||
// sv_logfile - Log server information in the log file. |
|||
sv_logfile 1 |
|||
|
|||
// sv_logbans - Log server bans in the server logs. |
|||
sv_logbans 1 |
|||
|
|||
// Voice enable - Enable communication over voice via microphone. |
|||
// 0 = voice off. |
|||
// 1 = voice on. |
|||
// Default: sv_voiceenable 1 |
|||
// sv_voiceenable - Enable voice communications. |
|||
sv_voiceenable 1 |
|||
|
|||
// All talk - Players can hear all other players, no team restrictions. |
|||
// 0 = all talk off. |
|||
// 1 = all talk on. |
|||
// Default: sv_alltalk 0 |
|||
// sv_alltalk - Players can hear all other players, no team restrictions. |
|||
sv_alltalk 0 |
|||
|
|||
// sv_allowupload - Allow clients to upload customizations files. |
|||
sv_allowupload 1 |
|||
|
|||
// ............................. Fast Download .............................. // |
|||
// info: Used by servers with custom maps |
|||
|
|||
// Allow download - Allow clients to download custom files from the server at 20 kbps. |
|||
// 0 = allow download off. |
|||
// 1 = allow download on. |
|||
// Default: sv_allowdownload 1 |
|||
// sv_allowdownload - Allow clients to download files. |
|||
sv_allowdownload 1 |
|||
|
|||
// Download url - Allow clients to download custom files from a web server. |
|||
// Example: |
|||
// server location: maps/custommap.bsp |
|||
// web server location: http://example.com/custom/maps/custommap.bsp |
|||
// Example: sv_downloadurl "http://example.com/custom" |
|||
// sv_downloadurl - Location from which clients can download missing files. |
|||
sv_downloadurl "" |
|||
|
|||
// mp_allowspectators - Toggles whether the server allows spectator mode or not. |
|||
mp_allowspectators 1 |
|||
|
|||
// ................................ Ban List ................................ // |
|||
|
|||
// User ban - Server banlist based on user steam ID. |
|||
// Recommended: exec banned_user.cfg |
|||
exec banned_user.cfg |
|||
|
|||
// IP ban - Server banlist based on user IP. |
|||
// Recommended: exec banned_ip.cfg |
|||
exec banned_ip.cfg |
|||
|
|||
// Write ID - Writes a list of permanently-banned user IDs to banned_user.cfg. |
|||
writeid |
|||
|
|||
// Write IP - Save the ban list to banned_ip.cfg. |
|||
writeip |
|||
// mp_falldamage - Enable fall damage. |
|||
mp_falldamage 0 |
|||
|
|||
// mp_forcerespawn - Force all players to respawn. |
|||
mp_forcerespawn 0 |
|||
|
|||
// ............................. Server Logging ............................. // |
|||
// mp_fraglimit - The number of kills at which the map ends. |
|||
mp_fraglimit 45 |
|||
|
|||
// Enable log - Enables logging to file, console, and udp < on | off >. |
|||
// Recommended: log on |
|||
log on |
|||
// mp_friendlyfire - Allows team members to injure other members of their team. |
|||
mp_friendlyfire 0 |
|||
|
|||
// Log bans - Log server bans in the server logs. |
|||
// Default: sv_logbans 1 |
|||
// Recommended: sv_logbans 1 |
|||
sv_logbans 1 |
|||
// mp_mapcycle_empty_timeout_seconds - If nonzero, server will cycle to the next map if it has been empty on the current map for N seconds. |
|||
mp_mapcycle_empty_timeout_seconds 900 |
|||
|
|||
// Log echo - Display log information to the server console. |
|||
// Default: sv_logecho 1 |
|||
// Recommended: sv_logecho 1 |
|||
sv_logecho 1 |
|||
// mp_teamplay - Enable team based gameplay. |
|||
mp_teamplay 0 |
|||
|
|||
// Log file - Log server information in the log file. |
|||
// Default: sv_logfile 1 |
|||
// Recommended: sv_logfile 1 |
|||
sv_logfile 1 |
|||
// mp_timelimit - Game time per map in minutes. |
|||
mp_timelimit 45 |
|||
|
|||
// One file log - Log server information to only one file. |
|||
// Default: sv_log_onefile 0 |
|||
// Recommended: sv_log_onefile 0 |
|||
sv_log_onefile 0 |
|||
// mp_warmup_time - Length of the warm up round in seconds. |
|||
mp_warmup_time 30 |
|||
|
@ -1,12 +1,6 @@ |
|||
// Black Mesa server.cfg file |
|||
hostname "Black Mesa: Deathmatch" |
|||
mp_timelimit 900 |
|||
mp_warmup_time 30 |
|||
// sv_lan 0 |
|||
// rcon_password |
|||
// mp_flashlight 1 |
|||
// mp_forcerespawn 0 |
|||
// mp_friendlyfire 0 |
|||
// mp_fraglimit 45 |
|||
// sv_logecho 1 |
|||
// sv_logfile 1 |
|||
mp_fraglimit 30 |
|||
mp_teamplay 1 |
|||
mp_forcerespawn 1 |
@ -1,105 +1,99 @@ |
|||
// ************************************************************************** // |
|||
// // |
|||
// CodenameCURE - server.cfg // |
|||
// Version 240217 // |
|||
// // |
|||
// ************************************************************************** // |
|||
// **************************************************************************** |
|||
// CodenameCURE |
|||
// Config - server.cfg |
|||
// Date - 06/12/2023 |
|||
// **************************************************************************** |
|||
|
|||
// ............................. Basic Settings ............................. // |
|||
|
|||
// Hostname for server. |
|||
// hostname - Hostname for server. |
|||
hostname "SERVERNAME" |
|||
|
|||
// RCON - remote console password. |
|||
rcon_password "ADMINPASSWORD" |
|||
|
|||
// Server password - for private servers. |
|||
// sv_password - Server password for entry into multiplayer games. |
|||
sv_password "" |
|||
|
|||
// Email - Server admin email. |
|||
sv_contact "[email protected]" |
|||
// Default Map - map <mapname> :Load a new map. |
|||
map "cbe_bunker" |
|||
|
|||
// mapcyclefile - Name of the .txt file used to cycle the maps on multiplayer servers |
|||
mapcyclefile "mapcycle.txt" |
|||
|
|||
// LAN Mode - If set the server will not show on the internet. |
|||
// Default: sv_lan 0 |
|||
// sv_lan - Server is a lan server ( no heartbeat, no authentication, no non-class C addresses ). |
|||
sv_lan 0 |
|||
|
|||
// Server tags - Tags show up on the in-game server browser. This helps |
|||
// users filter servers. |
|||
// vanilla - he server runs the default settings. |
|||
// custom - the server runs custom gameplay settings or mods. |
|||
// example: sv_tags "custom, fastdl" |
|||
sv_tags "" |
|||
// sv_logfile - Log server information in the log file. |
|||
sv_logfile 1 |
|||
|
|||
// ............................. Game Settings ............................. // |
|||
// info: Other settings that apply to this game. |
|||
// sv_logbans - Log server bans in the server logs. |
|||
sv_logbans 1 |
|||
|
|||
// Difficulty |
|||
// 0 - Easy |
|||
// 1 - Average |
|||
// 2 - Skilled |
|||
// 3 - Insane |
|||
sv_difficulty "1" |
|||
// sv_voiceenable - Enable voice communications. |
|||
sv_voiceenable 1 |
|||
|
|||
// ............................... Map Cycles ............................... // |
|||
// info: There are several predefined mapcycles available that are listed below. |
|||
// You can also create your own custom mapcycle. |
|||
// sv_alltalk - Players can hear all other players, no team restrictions. |
|||
sv_alltalk 1 |
|||
|
|||
// "mapcycle.txt" - all maps |
|||
mapcyclefile "mapcycle.txt" |
|||
// sv_allowupload - Allow clients to upload customizations files. |
|||
sv_allowupload 1 |
|||
|
|||
// ............................. Server Logging ............................. // |
|||
// sv_allowdownload - Allow clients to download files. |
|||
sv_allowdownload 1 |
|||
|
|||
//Enables logging to file, console, and udp < on | off >. |
|||
log on |
|||
// sv_allowvotekick - Allow voting to kick players. |
|||
sv_allowvotekick 1 |
|||
|
|||
// Log server bans in the server logs. |
|||
// Default: sv_logbans 1 |
|||
sv_logbans 1 |
|||
// sv_allowvotediff - Allow voting to change difficulty. |
|||
sv_allowvotediff 1 |
|||
|
|||
// Echo log information to the console. |
|||
// Default: sv_logecho 1 |
|||
sv_logecho 1 |
|||
// sv_allowvotemap - Allow voting to change maps. |
|||
sv_allowvotemap 1 |
|||
|
|||
// Log server information in the log file. |
|||
// Default: sv_logfile 1 |
|||
sv_logfile 1 |
|||
// sv_autokick_cooldown - Min: 10.0, Max: 60.0 - the time (in seconds) it takes friendly fire strikes to reset |
|||
sv_autokick_cooldown 15 |
|||
|
|||
// Log server information to only one file. |
|||
// Default: sv_log_onefile 0 |
|||
sv_log_onefile 0 |
|||
// sv_autokick_strikes - Min: 10.0, Max: 60.0 - the time (in seconds) it takes friendly fire strikes to reset |
|||
sv_autokick_strikes 10 //min 5, max 30 |
|||
|
|||
// ............................. Communication ............................. // |
|||
//number of bots (maximum 3) |
|||
bot_quota 3 |
|||
|
|||
// Enable communication over voice via microphone. |
|||
// Default: sv_voiceenable 1 |
|||
sv_voiceenable 1 |
|||
// sv_downloadurl - Location from which clients can download missing files. |
|||
sv_downloadurl "" |
|||
|
|||
// Players can hear all other players, no team restrictions. |
|||
// Default: sv_alltalk 0 |
|||
sv_alltalk 1 |
|||
// mp_allowspectators - Toggles whether the server allows spectator mode or not. |
|||
mp_allowspectators 1 |
|||
|
|||
// ............................. Fast Download .............................. // |
|||
// info: Allows custom maps to be downloaded to the client. |
|||
// mp_autoteambalance - Define if the game should automatically balance out teams in teamplay (0: no, default, 1: yes) |
|||
mp_autoteambalance 0 |
|||
|
|||
// Allows clients to download custom maps and textures etc. from the server at 20 kbps. |
|||
// Default: sv_allowdownload 1 |
|||
sv_allowdownload 1 |
|||
// mp_falldamage - Enable fall damage. |
|||
mp_falldamage 1 |
|||
|
|||
// Allows clients to download custom maps, textures etc. from a web server with no transfer limit. |
|||
// Example: |
|||
// server location: maps/custommap.bsp |
|||
// web server location: http://example.com/custom/maps/custommap.bsp |
|||
// sv_downloadurl "http://example.com/custom" |
|||
// Default: sv_downloadurl "" |
|||
sv_downloadurl "" |
|||
// mp_forcerespawn - Force all players to respawn. |
|||
mp_forcerespawn 1 |
|||
|
|||
// mp_fraglimit - The number of kills at which the map ends. |
|||
mp_fraglimit 0 |
|||
|
|||
// mp_friendlyfire - Allows team members to injure other members of their team. |
|||
mp_friendlyfire 0 |
|||
|
|||
|
|||
// sv_kickbantime - the amount of mins to temp ban a user after being vote kicked - -1 is no ban - 0 is indefinate ban |
|||
sv_kickbantime 5 |
|||
|
|||
// mp_mapcycle_empty_timeout_seconds - If nonzero, server will cycle to the next map if it has been empty on the current map for N seconds. |
|||
mp_mapcycle_empty_timeout_seconds 900 |
|||
|
|||
// ................................ Ban List ............................... // |
|||
// mp_maxrounds - Max number of rounds to play before server changes maps. |
|||
mp_maxrounds 0 |
|||
|
|||
// personal banlist based on user IDs. |
|||
exec banned_user.cfg |
|||
// mp_timelimit - Game time per map in minutes. |
|||
mp_timelimit 20 |
|||
|
|||
// personal banlist based on user IPs. |
|||
exec banned_ip.cfg |
|||
// sv_votetime - The amount of time players have to vote. |
|||
sv_votetime 20 |
|||
|
|||
writeid |
|||
writeip |
|||
// sv_votenext - The amount of time players have to wait before calling another vote. |
|||
sv_votenext 10 |
|||
|
@ -0,0 +1,37 @@ |
|||
hostname "Cure Dedicated Server" |
|||
|
|||
//internet |
|||
sv_lan 0 |
|||
|
|||
//number of bots (maximum 3) |
|||
bot_quota 3 |
|||
|
|||
//freindly fire enabled |
|||
mp_friendlyfire 1 |
|||
|
|||
//unless freindly fire is disabled there is no way to turn off the new autokick system (introduced to reduce trolling) |
|||
//however you can alter the strikes and cooldown values (within a limited range) |
|||
//you can also set select steamid's to be exempt from being kicked on this server via "kickexemption.txt" |
|||
sv_autokick_strikes 10 //min 5, max 30 |
|||
sv_autokick_cooldown 15 //min 10, max 60 |
|||
|
|||
//the amount of mins a player should be banned for after being kicked |
|||
//(-1 to turn off 0 for indefinate time) |
|||
sv_kickbantime 5 |
|||
|
|||
//the amount of time players have to vote, once it has been called |
|||
sv_votetime 20 |
|||
|
|||
//the amount of time players have to wait before calling another vote |
|||
sv_votenext 10 |
|||
|
|||
//allow voting on specific issues |
|||
sv_allowvotekick 1 |
|||
sv_allowvotediff 1 |
|||
sv_allowvotemap 1 |
|||
|
|||
//it is no longer recommended to set difficulty here |
|||
//as on map change it will override any difficulty players have voted for |
|||
|
|||
//send info to master servers |
|||
heartbeat |
@ -1,15 +1,74 @@ |
|||
// Hostname for server. |
|||
// **************************************************************************** |
|||
// Double Action Boogaloo |
|||
// Config - server.cfg |
|||
// Date - 06/12/2023 |
|||
// **************************************************************************** |
|||
|
|||
// hostname - Hostname for server. |
|||
hostname "SERVERNAME" |
|||
|
|||
// RCON - remote console password. |
|||
rcon_password "ADMINPASSWORD" |
|||
|
|||
// Server password - for private servers. |
|||
// sv_password - Server password for entry into multiplayer games. |
|||
sv_password "" |
|||
|
|||
// Server Logging |
|||
log on |
|||
sv_logbans 1 |
|||
sv_logecho 1 |
|||
// Default Map - map <mapname> :Load a new map. |
|||
map "da_rooftops" |
|||
|
|||
// mapcyclefile - Name of the .txt file used to cycle the maps on multiplayer servers |
|||
mapcyclefile "mapcycle.txt" |
|||
|
|||
// sv_lan - Server is a lan server ( no heartbeat, no authentication, no non-class C addresses ). |
|||
sv_lan 0 |
|||
|
|||
// sv_logfile - Log server information in the log file. |
|||
sv_logfile 1 |
|||
sv_log_onefile 0 |
|||
|
|||
// sv_logbans - Log server bans in the server logs. |
|||
sv_logbans 1 |
|||
|
|||
// sv_voiceenable - Enable voice communications. |
|||
sv_voiceenable 1 |
|||
|
|||
// sv_alltalk - Players can hear all other players, no team restrictions. |
|||
sv_alltalk 0 |
|||
|
|||
// sv_allowupload - Allow clients to upload customizations files. |
|||
sv_allowupload 1 |
|||
|
|||
// sv_allowdownload - Allow clients to download files. |
|||
sv_allowdownload 1 |
|||
|
|||
// sv_downloadurl - Location from which clients can download missing files. |
|||
sv_downloadurl "" |
|||
|
|||
// sv_allow_votes - Allow voting? |
|||
sv_allow_votes 1 |
|||
|
|||
// mp_allowspectators - Toggles whether the server allows spectator mode or not. |
|||
mp_allowspectators 1 |
|||
|
|||
// mp_falldamage - Enable fall damage. |
|||
mp_falldamage 0 |
|||
|
|||
// mp_forcerespawn - Force all players to respawn. |
|||
mp_forcerespawn 1 |
|||
|
|||
// mp_fraglimit - The number of kills at which the map ends. |
|||
mp_fraglimit 0 |
|||
|
|||
// mp_friendlyfire - Allows team members to injure other members of their team. |
|||
mp_friendlyfire 0 |
|||
|
|||
// mp_limitteams - Max # of players 1 team can have over another (0 disables check) |
|||
mp_limitteams 2 |
|||
|
|||
// mp_mapcycle_empty_timeout_seconds - If nonzero, server will cycle to the next map if it has been empty on the current map for N seconds. |
|||
mp_mapcycle_empty_timeout_seconds 900 |
|||
|
|||
// mp_teamplay - Enable team based gameplay. |
|||
mp_teamplay 0 |
|||
|
|||
// mp_timelimit - Game time per map in minutes. |
|||
mp_timelimit 20 |
@ -0,0 +1,7 @@ |
|||
hostname "Double Action: Boogaloo" |
|||
sv_lan 0 |
|||
bot_quota 2 |
|||
sv_allow_votes 1 |
|||
exec banned_ip.cfg |
|||
exec banned_user.cfg |
|||
exec server_custom.cfg |
@ -1,111 +1,92 @@ |
|||
// ************************************************************************** // |
|||
// // |
|||
// Day of Infamy - server.cfg // |
|||
// // |
|||
// ************************************************************************** // |
|||
// **************************************************************************** |
|||
// Day of Infamy |
|||
// Config - server.cfg |
|||
// Date - 06/12/2023 |
|||
// **************************************************************************** |
|||
|
|||
// .................................. Basic ................................. // |
|||
|
|||
// Hostname - Name of the server. |
|||
// hostname - Hostname for server. |
|||
hostname "SERVERNAME" |
|||
|
|||
// RCON - remote console password. |
|||
rcon_password "ADMINPASSWORD" |
|||
|
|||
// Server password - for private servers. |
|||
// sv_password - Server password for entry into multiplayer games. |
|||
sv_password "" |
|||
|
|||
// Email - Server admin email. |
|||
// Example: sv_contact "[email protected]" |
|||
sv_contact "" |
|||
// Default Map - map <mapname> :Load a new map. |
|||
map "bastogne stronghold" |
|||
|
|||
// LAN mode - If set the server will not show on the internet. |
|||
// Default: sv_lan 0 |
|||
sv_lan 0 |
|||
// mapcyclefile - Name of the .txt file used to cycle the maps on multiplayer servers |
|||
mapcyclefile "mapcycle.txt" |
|||
|
|||
// ............................. Server Logging ............................. // |
|||
// sv_lan - Server is a lan server ( no heartbeat, no authentication, no non-class C addresses ). |
|||
sv_lan 0 |
|||
|
|||
// Enable log - Enables logging to file, console, and udp < on | off >. |
|||
// Recommended: log on |
|||
log on |
|||
// sv_logfile - Log server information in the log file. |
|||
sv_logfile 1 |
|||
|
|||
// Log bans - Log server bans in the server logs. |
|||
// Default: sv_logbans 1 |
|||
// Recommended: sv_logbans 1 |
|||
// sv_logbans - Log server bans in the server logs. |
|||
sv_logbans 1 |
|||
|
|||
// Log echo - Display log information to the server console. |
|||
// Default: sv_logecho 1 |
|||
// Recommended: sv_logecho 1 |
|||
sv_logecho 1 |
|||
|
|||
// Log file - Log server information in the log file. |
|||
// Default: sv_logfile 1 |
|||
// Recommended: sv_logfile 1 |
|||
sv_logfile 1 |
|||
|
|||
// One file log - Log server information to only one file. |
|||
// Default: sv_log_onefile 0 |
|||
// Recommended: sv_log_onefile 0 |
|||
sv_log_onefile 0 |
|||
// sv_voiceenable - Enable voice communications. |
|||
sv_voiceenable 1 |
|||
|
|||
// ................................ Ban List ................................ // |
|||
// sv_alltalk - Players can hear all other players, no team restrictions. |
|||
sv_alltalk 0 |
|||
|
|||
// User ban - Server banlist based on user steam ID. |
|||
// Recommended: exec banned_user.cfg |
|||
exec banned_user.cfg |
|||
// sv_alltalk_dead - Dead players broadcast their voice to enemies? |
|||
sv_alltalk_dead 0 |
|||
|
|||
// IP ban - Server banlist based on user IP. |
|||
// Recommended: exec banned_ip.cfg |
|||
exec banned_ip.cfg |
|||
// sv_alltalk_endgame - All talk enabled at the end of the game? |
|||
sv_alltalk_endgame 1 |
|||
|
|||
// Write ID - Writes a list of permanently-banned user IDs to banned_user.cfg. |
|||
writeid |
|||
// sv_alltalk_intermission - All talk enabled between rounds? |
|||
sv_alltalk_intermission 1 |
|||
|
|||
// Write IP - Save the ban list to banned_ip.cfg. |
|||
writeip |
|||
// sv_allowupload - Allow clients to upload customizations files. |
|||
sv_allowupload 1 |
|||
|
|||
// ........................ Day Of Infamy Settings ...................... // |
|||
// sv_allowdownload - Allow clients to download files. |
|||
sv_allowdownload 1 |
|||
|
|||
// Playlist |
|||
// Available playlists: "nwi/coop" "nwi/coop_commando" "nwi/mp_battles" "nwi/mp_casual_with_bots" "nwi/mp_first_deployment" "nwi/mp_special_assignments" "custom" "example" |
|||
"sv_playlist" "nwi/coop" |
|||
// sv_downloadurl - Location from which clients can download missing files. |
|||
sv_downloadurl "" |
|||
|
|||
// friendly fire (0 = disabled) |
|||
"mp_friendlyfire" "1" |
|||
// mp_allowspectators - Toggles whether the server allows spectator mode or not. |
|||
mp_allowspectators 1 |
|||
|
|||
// How to punish team killing ( 0 = none, 1 = warning, 2 = kill ) |
|||
"mp_tkpunish" "1" |
|||
// mp_autoteambalance - Define if the game should automatically balance out teams in teamplay (0: no, default, 1: yes) |
|||
mp_autoteambalance 1 |
|||
|
|||
// show k:d on scoreboard |
|||
"sv_hud_scoreboard_show_score" "1" |
|||
// mp_falldamage - Enable fall damage. |
|||
mp_falldamage 0 |
|||
|
|||
// show friendly player names when looking at them |
|||
"sv_hud_targetindicator" "1" |
|||
// mp_forcerespawn - Force all players to respawn. |
|||
mp_forcerespawn 1 |
|||
|
|||
// death messages (kill feed) |
|||
"sv_hud_deathmessages" "0" |
|||
// mp_fraglimit - The number of kills at which the map ends. |
|||
mp_fraglimit 0 |
|||
|
|||
// timer for the pre-game (before the game starts, usually after map change or on mp_restartgame 1) |
|||
"mp_timer_pregame" "10" |
|||
// mp_friendlyfire - Allows team members to injure other members of their team. |
|||
mp_friendlyfire 0 |
|||
|
|||
// timer for the pre-round (before the round starts, usually after a previous round ends or on mp_restartround 1) |
|||
"mp_timer_preround" "15" |
|||
// mp_teamplay - Enable team based gameplay. |
|||
mp_teamplay 0 |
|||
|
|||
// timer for the post-round (after the round starts) |
|||
"mp_timer_postround" "15" |
|||
// mp_timelimit - Game time per map in minutes. |
|||
mp_timelimit 20 |
|||
|
|||
// timer for the post-game (at the end of a game / map rotation) |
|||
"mp_timer_postgame" "21" |
|||
// mp_timer_pregame - Pregame timer in seconds |
|||
mp_timer_pregame 10 |
|||
|
|||
// if set higher than 0, the server will add this many bots to each team |
|||
"doi_bot_quota" "0" |
|||
// mp_timer_preround - Preround timer in seconds |
|||
mp_timer_preround 15 |
|||
|
|||
// enabling this will allow the dead and living to VOIP each other |
|||
"sv_deadvoice" "0" |
|||
// mp_timer_postround - Postround timer in seconds |
|||
mp_timer_postround 15 |
|||
|
|||
// enabling this will allow the dead and living to chat text each other |
|||
"sv_deadtalk" "0" |
|||
// mp_timer_postgame - Postgame timer in seconds |
|||
mp_timer_postgame 21 |
|||
|
|||
// is deadchat limited to just your team? |
|||
"sv_deadtalk_team" "1" |
|||
// doi_bot_quota - How many bots to place on each team when no players are present? |
|||
doi_bot_quota 0 |
Loading…
Reference in new issue