Browse Source
* standardize Source server.cfg style and section order * Standardize remaining Source config headers * Adopt newer Source header format across Source configs * Fix Source headers to use per-game names * Update Source header dates to 26/04/2026 * Remove Action label from Source headers * Apply 2024 Source style to remaining outlier configs * Standardize Blade Symphony Source config style * Correct Base Defence header in bd config * Standardize CS2 config comments and sections * Standardize Double Action: Boogaloo Source config style * Standardize Deathmatch Classic Source config style * Standardize additional Source and GoldSrc mod configs * Add restored orig snapshots for Empires and Sven * Remove draft server.cfg style standards documentation This document served its purpose in guiding the ongoing standardization effort for various game server configurations. Its principles are now being applied directly to the configs.main
committed by
GitHub
43 changed files with 1123 additions and 385 deletions
@ -1,29 +1,55 @@ |
|||||
// Server Hostname |
// **************************************************************************** |
||||
|
// Blade Symphony |
||||
|
// Config - server.cfg |
||||
|
// Date - 26/04/2026 |
||||
|
// **************************************************************************** |
||||
|
|
||||
|
// .................................. Basic ................................. // |
||||
|
|
||||
|
// hostname - Name of the server. |
||||
hostname "SERVERNAME" |
hostname "SERVERNAME" |
||||
|
|
||||
// Server Password |
// sv_password - Server password for private servers. |
||||
sv_password "" |
sv_password "" |
||||
|
|
||||
// RCON Password |
// rcon_password - Remote console password. |
||||
rcon_password "ADMINPASSWORD" |
rcon_password "ADMINPASSWORD" |
||||
|
|
||||
// Time Limit |
// ................................ Gameplay ................................ // |
||||
|
|
||||
|
// mp_timelimit - Game time per map in minutes. |
||||
mp_timelimit 40 |
mp_timelimit 40 |
||||
|
|
||||
// Logging |
// ............................. Server Logging ............................. // |
||||
|
|
||||
|
// log - Enable/disable logging. |
||||
log off |
log off |
||||
|
|
||||
|
// sv_logfile - Log server information in the log file. |
||||
sv_logfile 1 |
sv_logfile 1 |
||||
|
|
||||
|
// sv_logecho - Display log information in the server console. |
||||
sv_logecho 0 |
sv_logecho 0 |
||||
|
|
||||
|
// sv_logbans - Log server bans in the server logs. |
||||
sv_logbans 1 |
sv_logbans 1 |
||||
|
|
||||
// MapCycle File |
// .............................. Map Rotation .............................. // |
||||
|
|
||||
|
// mapcyclefile - Name of the .txt file used to cycle maps on multiplayer servers. |
||||
mapcyclefile mapcycle.txt |
mapcyclefile mapcycle.txt |
||||
|
|
||||
// Cheats Disabled |
// ................................. Security ................................ // |
||||
|
|
||||
|
// sv_cheats - Enable/disable cheats. |
||||
sv_cheats 0 |
sv_cheats 0 |
||||
|
|
||||
// AllTalk Enabled |
// ............................. Communication .............................. // |
||||
|
|
||||
|
// sv_alltalk - Players can hear all other players, no team restrictions. |
||||
sv_alltalk 1 |
sv_alltalk 1 |
||||
|
|
||||
// Misc. |
// ................................ Misc .................................... // |
||||
|
|
||||
|
// sv_allowupload - Allow clients to upload customization files. |
||||
sv_allowupload 1 |
sv_allowupload 1 |
||||
@ -1,51 +1,64 @@ |
|||||
// **************************************************************************** |
// **************************************************************************** |
||||
// Counter-Strike 2 |
// Counter-Strike 2 |
||||
// Config - server.cfg |
// Config - server.cfg |
||||
// Date - 06/12/2023 |
// Date - 26/04/2026 |
||||
// **************************************************************************** |
// **************************************************************************** |
||||
|
|
||||
// hostname - Hostname for server. |
// .................................. Basic ................................. // |
||||
|
|
||||
|
// hostname - Name of the server. |
||||
hostname "SERVERNAME" |
hostname "SERVERNAME" |
||||
|
|
||||
// sv_password - Server password for entry into multiplayer games. |
// sv_password - Server password for private servers. |
||||
sv_password "" |
sv_password "" |
||||
|
|
||||
// sv_setsteamaccount - token Set game server account token to use for logging in to a persistent game server account |
// sv_setsteamaccount - Game server account token used for persistent login. |
||||
// https://steamcommunity.com/dev/managegameservers |
// https://steamcommunity.com/dev/managegameservers |
||||
sv_setsteamaccount "" |
sv_setsteamaccount "" |
||||
|
|
||||
|
// .............................. Map Rotation .............................. // |
||||
|
|
||||
// map - Start playing on specified map. |
// map - Start playing on specified map. |
||||
map "de_anubis" |
map "de_anubis" |
||||
|
|
||||
// mapcyclefile - Name of the .txt file used to cycle the maps on multiplayer servers |
// mapcyclefile - Name of the .txt file used to cycle maps on multiplayer servers. |
||||
mapcyclefile "mapcycle.txt" |
mapcyclefile "mapcycle.txt" |
||||
|
|
||||
// sv_lan - Server is a lan server ( no heartbeat, no authentication, no non-class C addresses ). |
// ................................. Security ................................ // |
||||
|
|
||||
|
// sv_lan - LAN mode. No heartbeat, no authentication, and no public listing. |
||||
sv_lan false |
sv_lan false |
||||
|
|
||||
|
// ............................. Server Logging ............................. // |
||||
|
|
||||
// sv_logfile - Log server information in the log file. |
// sv_logfile - Log server information in the log file. |
||||
sv_logfile true |
sv_logfile true |
||||
|
|
||||
// sv_logbans - Log server bans in the server logs. |
// sv_logbans - Log server bans in the server logs. |
||||
sv_logbans true |
sv_logbans true |
||||
|
|
||||
|
// ............................. Communication .............................. // |
||||
|
|
||||
// sv_voiceenable - Enable voice communications. |
// sv_voiceenable - Enable voice communications. |
||||
sv_voiceenable true |
sv_voiceenable true |
||||
|
|
||||
// sv_alltalk - Players can hear all other players, no team restrictions. |
// sv_alltalk - Players can hear all other players, no team restrictions. |
||||
sv_alltalk false |
sv_alltalk false |
||||
|
|
||||
// game_alias - Set the configuration of game type and mode based on game alias like 'deathmatch'. |
// ................................ Gameplay ................................ // |
||||
// values: casual, deathmatch, competative, wingman |
|
||||
|
// game_alias - Set game type and mode based on a preset alias. |
||||
|
// values: casual, deathmatch, competitive, wingman |
||||
game_alias "casual" |
game_alias "casual" |
||||
|
|
||||
// host_workshop_collection - Host a workshop map collection as a mapgroup. |
// host_workshop_collection - Host a workshop map collection as a mapgroup. |
||||
// e.g host_workshop_collection "3104731381" |
// e.g. host_workshop_collection "3104731381" |
||||
host_workshop_collection |
host_workshop_collection |
||||
|
|
||||
// host_workshop_map - Get the latest version of the map and host it. |
// host_workshop_map - Get the latest version of the map and host it. |
||||
// e.g host_workshop_map "3075706807" |
// e.g. host_workshop_map "3075706807" |
||||
host_workshop_map |
host_workshop_map |
||||
|
|
||||
// mp_autoteambalance - Define if the game should automatically balance out teams in teamplay (0: no, default, 1: yes) |
// mp_autoteambalance - Automatically balance teams in teamplay modes. |
||||
|
// false = no, true = yes |
||||
mp_autoteambalance true |
mp_autoteambalance true |
||||
@ -1,25 +1,26 @@ |
|||||
// ************************************************************************** // |
// **************************************************************************** |
||||
// // |
// Counter-Strike: Global Offensive |
||||
// Counter-Strike: Global Offensive - server.cfg // |
// Config - server.cfg |
||||
// Version 120719 // |
// Date - 26/04/2026 |
||||
// // |
// **************************************************************************** |
||||
// ************************************************************************** // |
|
||||
|
|
||||
// .................................. Basic ................................. // |
// .................................. Basic ................................. // |
||||
|
|
||||
// Hostname - Name of the server. |
// hostname - Name of the server. |
||||
hostname "SERVERNAME" |
hostname "SERVERNAME" |
||||
|
|
||||
// rcon_password - remote console password. |
// rcon_password - Remote console password. |
||||
rcon_password "ADMINPASSWORD" |
rcon_password "ADMINPASSWORD" |
||||
|
|
||||
// Server password - for private servers. |
// sv_password - Server password for private servers. |
||||
sv_password "" |
sv_password "" |
||||
|
|
||||
// Email - Server admin email. |
// Email - Server admin email. |
||||
// Example: sv_contact "[email protected]" |
// Example: sv_contact "[email protected]" |
||||
sv_contact "" |
sv_contact "" |
||||
|
|
||||
|
// ................................. Security ................................ // |
||||
|
|
||||
// LAN mode - Server is a LAN server; can't connect from the internet. VAC (Valve Anti-Cheat) is disabled in this mode. |
// LAN mode - Server is a LAN server; can't connect from the internet. VAC (Valve Anti-Cheat) is disabled in this mode. |
||||
// Default: sv_lan 0 |
// Default: sv_lan 0 |
||||
sv_lan 0 |
sv_lan 0 |
||||
@ -64,14 +65,22 @@ sv_logfile 1 |
|||||
// Recommended: sv_log_onefile 0 |
// Recommended: sv_log_onefile 0 |
||||
sv_log_onefile 0 |
sv_log_onefile 0 |
||||
|
|
||||
// Server Hibernation |
// sv_hibernate_when_empty - Put server in hibernation mode when empty. |
||||
sv_hibernate_when_empty 1 |
sv_hibernate_when_empty 1 |
||||
|
|
||||
|
// sv_hibernate_ms - Frame time during hibernation in milliseconds. |
||||
sv_hibernate_ms 5 |
sv_hibernate_ms 5 |
||||
|
|
||||
// ............................. Server Query ............................. // |
// .............................. Server Query .............................. // |
||||
// More info at: https://www.gametracker.com/games/csgo/forum.php?thread=91691 |
// More info at: https://www.gametracker.com/games/csgo/forum.php?thread=91691 |
||||
|
|
||||
|
// host_name_store - Show server name in query responses. |
||||
host_name_store 1 |
host_name_store 1 |
||||
|
|
||||
|
// host_info_show - Show server information level in queries. |
||||
host_info_show 1 |
host_info_show 1 |
||||
|
|
||||
|
// host_players_show - Show player information level in queries. |
||||
host_players_show 2 |
host_players_show 2 |
||||
|
|
||||
// ................................ Ban List ................................ // |
// ................................ Ban List ................................ // |
||||
@ -89,3 +98,7 @@ writeid |
|||||
|
|
||||
// Write IP - Save the ban list to banned_ip.cfg. |
// Write IP - Save the ban list to banned_ip.cfg. |
||||
writeip |
writeip |
||||
|
|
||||
|
// ............................. Startup Commands ........................... // |
||||
|
|
||||
|
// Startup trigger is typically defined by launch parameters or mapgroup configuration. |
||||
|
|||||
@ -1,35 +1,62 @@ |
|||||
// Hostname for server. |
// **************************************************************************** |
||||
|
// Deathmatch Classic |
||||
|
// Config - server.cfg |
||||
|
// Date - 26/04/2026 |
||||
|
// **************************************************************************** |
||||
|
|
||||
|
// .................................. Basic ................................. // |
||||
|
|
||||
|
// hostname - Name of the server. |
||||
hostname "SERVERNAME" |
hostname "SERVERNAME" |
||||
|
|
||||
// rcon_password - remote console password. |
// rcon_password - Remote console password. |
||||
rcon_password "ADMINPASSWORD" |
rcon_password "ADMINPASSWORD" |
||||
|
|
||||
// Server password - for private servers. |
// sv_password - Server password for private servers. |
||||
sv_password "" |
sv_password "" |
||||
|
|
||||
// Server Logging |
// ............................. Server Logging ............................. // |
||||
|
|
||||
|
// log - Enable/disable logging. |
||||
log on |
log on |
||||
|
|
||||
|
// sv_logbans - Log server bans in the server logs. |
||||
sv_logbans 1 |
sv_logbans 1 |
||||
|
|
||||
|
// sv_logecho - Display log information in the server console. |
||||
sv_logecho 1 |
sv_logecho 1 |
||||
|
|
||||
|
// sv_logfile - Log server information in the log file. |
||||
sv_logfile 1 |
sv_logfile 1 |
||||
|
|
||||
|
// sv_log_onefile - Log server information to only one file. |
||||
sv_log_onefile 0 |
sv_log_onefile 0 |
||||
|
|
||||
// disable autoaim |
// ................................. Security ................................ // |
||||
|
|
||||
|
// sv_aim - Enable/disable autoaim. |
||||
sv_aim 0 |
sv_aim 0 |
||||
|
|
||||
// disable clients' ability to pause the server |
// pausable - Allow clients to pause the server. |
||||
|
// 0 = no, 1 = yes |
||||
pausable 0 |
pausable 0 |
||||
|
|
||||
// maximum client movement speed |
// ................................. Runtime ................................. // |
||||
|
|
||||
|
// sv_maxspeed - Maximum client movement speed. |
||||
sv_maxspeed 320 |
sv_maxspeed 320 |
||||
|
|
||||
// 20 minute timelimit |
// ................................ Gameplay ................................ // |
||||
|
|
||||
|
// mp_timelimit - Game time per map in minutes. |
||||
mp_timelimit 20 |
mp_timelimit 20 |
||||
|
|
||||
// cheats off |
// sv_cheats - Enable/disable cheats. |
||||
sv_cheats 0 |
sv_cheats 0 |
||||
|
|
||||
// load ban files |
// ................................ Ban List ................................ // |
||||
|
|
||||
|
// Load ban lists. |
||||
exec listip.cfg |
exec listip.cfg |
||||
exec banned.cfg |
exec banned.cfg |
||||
|
|
||||
|
|||||
@ -0,0 +1,134 @@ |
|||||
|
/// Empires config |
||||
|
/// Please only uncomment and edit the values you need to change. |
||||
|
/// Default values are sensible for most servers. |
||||
|
/// If you feel any of the defaults should be changed, please send the devs a message. |
||||
|
|
||||
|
// server name |
||||
|
hostname "Empires Server" |
||||
|
|
||||
|
// rcon passsword |
||||
|
//be sure to change your rcon password |
||||
|
rcon_password "" |
||||
|
|
||||
|
sv_password "" |
||||
|
sv_cheats 0 |
||||
|
|
||||
|
// server cvars |
||||
|
//mp_footsteps 1 |
||||
|
//mp_autoteambalance 1 |
||||
|
//mp_flashlight 0 |
||||
|
//mp_forcecamera 0 |
||||
|
//sv_alltalk 0 |
||||
|
//sv_pausable 0 |
||||
|
//sv_cheats 0 |
||||
|
//sv_consistency 1 |
||||
|
//sv_allowupload 1 |
||||
|
//sv_allowdownload 1 |
||||
|
//sv_voiceenable 1 |
||||
|
//emp_allowspectators 1 |
||||
|
//emp_forceautoassign 0 |
||||
|
//mp_timelimit 0 |
||||
|
//mp_chattime 45 |
||||
|
//sv_timeout 65 |
||||
|
//mp_falldamage 0 |
||||
|
//sv_specspeed 8 |
||||
|
//sv_downloadurl "http://fastdl.empiresmod.com:17739/default/" // used for fastdownload server |
||||
|
//emp_sv_debug_build_vehicles 0 |
||||
|
//emp_sv_debug_instant_build 0 |
||||
|
|
||||
|
//Empires specific cvars |
||||
|
|
||||
|
//emp_sv_vote_commander_time 90 //How long people have to vote for a commander |
||||
|
//emp_sv_wait_phase_time 60 // Time before round starts on map without commander |
||||
|
//emp_sv_kick_commander_penalty 300 //time before a kicked commander can re-enter the command vehicle |
||||
|
//emp_sv_kick_commander_percentage 0.6 //percentage of players on a team that must vote yes to kick the commander |
||||
|
//emp_sv_kick_commander_time 180 //time commander kick vote lasts |
||||
|
//emp_sv_max_buildings 48 //number of buildings (not counting walls) each team can have at any one time |
||||
|
//emp_sv_max_vehicles 32 //number of vehicles each team can have at any one time |
||||
|
//emp_sv_max_turrets 24 //number of turrets each team can have at any one time |
||||
|
//emp_sv_max_walls 64 //number of walls each team can have at any one time |
||||
|
//emp_sv_player_refinery_multiplier 20 //number of players that cause an increase in resources produced via refineries (default: 12 means at 12 to 23 players, 1 is added to refinery output, 24 to 35, 2 is added to refinery output |
||||
|
//emp_sv_resource_multiplier_be 1 //number of resources at map start is multiplied by this (Brenodi Empire) |
||||
|
//emp_sv_resource_multiplier_nf 1 //number of resources at map start is multiplied by this (Northern Faction) |
||||
|
//emp_sv_refinery_multiplier 1 //refinery output is multiplied by this |
||||
|
//emp_sv_reinforcement_multiplier_be 1 //number of reinforcements at map start is multiplied by this (Brenodi Empire) |
||||
|
//emp_sv_reinforcement_multiplier_nf 1 //number of reinforcements at map start is multiplied by this (Northern Faction) |
||||
|
//emp_sv_research_complete 0 //set to 1 to have all research tree items unlocked |
||||
|
//emp_sv_research_multiplier 1 //affects research speed, less than 1 is slower, greater than 1 is faster |
||||
|
//emp_sv_respawn_penalty 10 //number of seconds to make players wait to respawn |
||||
|
//emp_sv_refinery_interval 1 //number of seconds between refinery resource generation |
||||
|
//emp_sv_spawn_protection 1 //number of seconds that a player is invincible after spawn |
||||
|
//emp_sv_vehicle_fadeout_time 30 //how long vehicle carcesses last for |
||||
|
|
||||
|
//skill cvars percentage modifiers |
||||
|
//emp_sv_skill_rifleman_damage_increase 0.1 |
||||
|
//emp_sv_vehicle_skill_speed 0.25 |
||||
|
//emp_sv_vehicle_skill_damage 0.25 |
||||
|
//emp_sv_vehicle_skill_cooling 0.15 |
||||
|
//emp_sv_vehicle_skill_armor 0.25 |
||||
|
// |
||||
|
//emp_sv_player_minimap_interval 1 //how often the network info required to update the minimap is sent (actually split up into 1/4s and sent at 1/4 intervals of this time) |
||||
|
//emp_sv_vehicle_minimap_interval 6 |
||||
|
// |
||||
|
//emp_sv_netvisdist_player 8000 //distance to stop sending player network info to others |
||||
|
//emp_sv_netvisdist_building 12000 //distance to stop sending buildings |
||||
|
//emp_sv_netvisdist_vehicle 10000 |
||||
|
//emp_sv_netvisdist_commander 10000 |
||||
|
//emp_sv_netvisdist_ratedistmin 2000 //Minimum distance to regulate network traffic (highest frequency of transmission) |
||||
|
//emp_sv_netvisdist_ratedistmax 8000 //Maximum distantce to regulate network traffic (lowest frequency of transmission) |
||||
|
//emp_sv_client_missiles 1 // Predicted and cheaper missiles will be used for dumb missiles |
||||
|
//emp_sv_client_shells 1 // Predicted and cheaper shells. |
||||
|
|
||||
|
// bandwidth rates/settings |
||||
|
// The following settings are omptimized for a 64 slot 30 tick server as 30 tick is recommended for empires. |
||||
|
// Empires needs higher than normal settings for sv_maxrate and sv_minrate compared to other source games as the increased player count, vehicles and buildings use a lot more bandwidth. |
||||
|
|
||||
|
//sv_maxrate 0 //The maximum bytes/sec the server will send to the client. |
||||
|
//sv_minrate 1000000 //value is in bytes/sec. Overrides the client's rate setting if it is less than sv_minrate. |
||||
|
//sv_minupdaterate 33 //The minimum amount of updates the server will send to the client. Change this to what your tickrate is. |
||||
|
//sv_maxupdaterate 66 //The maximum amount of updates the server will send to the client. Change this to what your tickrate is. |
||||
|
//sv_mincmdrate 33 //The minimum amount of updates the client can send to the server. Change this to what your tickrate is. |
||||
|
//sv_maxcmdrate 66 //The maximum amount of updates the client can send to the server. Change this to what your tickrate is. |
||||
|
//net_splitpacket_maxrate 1048576 // |
||||
|
//net_splitrate 2 //Maximum number of fragments per frame. |
||||
|
//fps_max 0 |
||||
|
//net_maxcleartime 0.01 //Max # of seconds we can wait for next packets to be sent based on rate setting (0 == no limit). |
||||
|
//net_compresspackets 0 //Use compression on game packets. |
||||
|
//sv_parallel_sendsnapshot 1 //controls whether the sending of network data is done on the main thread (when set to zero) or on worker threads (when set to one). |
||||
|
//decalfrequency 10 |
||||
|
|
||||
|
//voice |
||||
|
//sv_voicecodec vaudio_celt |
||||
|
|
||||
|
// server logging |
||||
|
//log on |
||||
|
//sv_logbans 1 |
||||
|
//sv_logecho 1 |
||||
|
//sv_logfile 1 |
||||
|
//sv_log_onefile 0 |
||||
|
|
||||
|
// operation |
||||
|
//sv_lan 0 |
||||
|
//sv_region 0 |
||||
|
sv_contact [email protected] //Enter your contact information here |
||||
|
|
||||
|
//sourcetv |
||||
|
tv_enable 1 |
||||
|
tv_port 27020 |
||||
|
//tv_debug 0 |
||||
|
//tv_delay 20 |
||||
|
//tv_dispatchmode 1 |
||||
|
//tv_maxclients 1 |
||||
|
//tv_maxrate 20000 |
||||
|
tv_name "SourceTV" |
||||
|
tv_password "" |
||||
|
tv_relaypassword "" |
||||
|
//tv_snapshotrate 20 |
||||
|
tv_autorecord 0 |
||||
|
|
||||
|
//vprof - this is for creating performance logs to find bottlenecks; it shouldn't be turned on |
||||
|
//vprof_scope_entity_gamephys 1 |
||||
|
//vprof_scope_entity_thinks 1 |
||||
|
//emp_vprof_record_interval 30 |
||||
|
//emp_vprof_start |
||||
|
//echo server.cfg loaded |
||||
@ -1,35 +1,65 @@ |
|||||
// Hostname for server. |
// **************************************************************************** |
||||
|
// Half-Life Deathmatch |
||||
|
// Config - server.cfg |
||||
|
// Date - 26/04/2026 |
||||
|
// **************************************************************************** |
||||
|
|
||||
|
// .................................. Basic ................................. // |
||||
|
|
||||
|
// hostname - Name of the server. |
||||
hostname "SERVERNAME" |
hostname "SERVERNAME" |
||||
|
|
||||
// rcon_password - remote console password. |
// rcon_password - Remote console password. |
||||
rcon_password "ADMINPASSWORD" |
rcon_password "ADMINPASSWORD" |
||||
|
|
||||
// Server password - for private servers. |
// sv_password - Server password for private servers. |
||||
sv_password "" |
sv_password "" |
||||
|
|
||||
// Server Logging |
// ................................. Security ................................ // |
||||
|
|
||||
|
// sv_cheats - Allow cheat commands. |
||||
|
// Default: sv_cheats 0 |
||||
|
sv_cheats 0 |
||||
|
|
||||
|
// ............................. Server Logging ............................. // |
||||
|
|
||||
|
// log - Enable server log output. |
||||
|
// Recommended: log on |
||||
log on |
log on |
||||
|
|
||||
|
// sv_logbans - Log server bans in the server logs. |
||||
sv_logbans 1 |
sv_logbans 1 |
||||
|
|
||||
|
// sv_logecho - Display log information in server console. |
||||
sv_logecho 1 |
sv_logecho 1 |
||||
|
|
||||
|
// sv_logfile - Write server log information to file. |
||||
sv_logfile 1 |
sv_logfile 1 |
||||
|
|
||||
|
// sv_log_onefile - Use a single rolling log file. |
||||
sv_log_onefile 0 |
sv_log_onefile 0 |
||||
|
|
||||
// disable autoaim |
// ................................ Gameplay ................................ // |
||||
|
|
||||
|
// sv_aim - Enable autoaim assistance. |
||||
|
// Recommended: sv_aim 0 |
||||
sv_aim 0 |
sv_aim 0 |
||||
|
|
||||
// disable clients' ability to pause the server |
// pausable - Allow clients to pause the server. |
||||
|
// Recommended: pausable 0 |
||||
pausable 0 |
pausable 0 |
||||
|
|
||||
// maximum client movement speed |
// sv_maxspeed - Maximum client movement speed. |
||||
sv_maxspeed 320 |
sv_maxspeed 320 |
||||
|
|
||||
// 20 minute timelimit |
// mp_timelimit - Round time limit in minutes. |
||||
mp_timelimit 20 |
mp_timelimit 20 |
||||
|
|
||||
// cheats off |
// ................................ Ban List ................................ // |
||||
sv_cheats 0 |
|
||||
|
|
||||
// load ban files |
// exec listip.cfg - Load IP ban list. |
||||
exec listip.cfg |
exec listip.cfg |
||||
|
|
||||
|
// exec banned.cfg - Load user ban list. |
||||
exec banned.cfg |
exec banned.cfg |
||||
|
|
||||
|
|||||
@ -1,23 +1,22 @@ |
|||||
// **************************************************************************** |
// **************************************************************************** |
||||
// * |
// Nuclear Dawn |
||||
// Nuclear Dawn - server.cfg * |
// Config - server.cfg |
||||
// Version 250817 * |
// Date - 26/04/2026 |
||||
// * |
|
||||
// **************************************************************************** |
// **************************************************************************** |
||||
|
|
||||
// ............................. Basic Settings ............................. // |
// .................................. Basic ................................. // |
||||
|
|
||||
// Hostname for server. |
// hostname - Name of the server. |
||||
hostname "SERVERNAME" |
hostname "SERVERNAME" |
||||
|
|
||||
// Server password - for private servers. |
// sv_password - Server password for private servers. |
||||
sv_password "" |
sv_password "" |
||||
|
|
||||
// Email - Server admin email. |
// Email - Server admin email. |
||||
// Example: sv_contact "[email protected]" |
// Example: sv_contact "[email protected]" |
||||
sv_contact "" |
sv_contact "" |
||||
|
|
||||
// LAN Mode - If set the server will not show on the internet. |
// sv_lan - LAN mode. If set, the server will not show on the internet. |
||||
// Default: sv_lan 0 |
// Default: sv_lan 0 |
||||
sv_lan 0 |
sv_lan 0 |
||||
|
|
||||
@ -26,12 +25,12 @@ sv_lan 0 |
|||||
// 2 south america, 3 europe, 4 asia, 5 australia, 6 middle east, 7 africa |
// 2 south america, 3 europe, 4 asia, 5 australia, 6 middle east, 7 africa |
||||
sv_region -1 |
sv_region -1 |
||||
|
|
||||
// Game tags to identify vanilla server |
// sv_tags - Game tags to identify a vanilla server. |
||||
sv_tags "nucleardawn" |
sv_tags "nucleardawn" |
||||
|
|
||||
// ........................... RCON Configuration ........................... // |
// ........................... RCON Configuration ........................... // |
||||
|
|
||||
// RCON - remote console password. |
// rcon_password - Remote console password. |
||||
rcon_password "ADMINPASSWORD" |
rcon_password "ADMINPASSWORD" |
||||
|
|
||||
// Number of minutes to ban users who fail rcon authentication |
// Number of minutes to ban users who fail rcon authentication |
||||
@ -51,7 +50,7 @@ sv_rcon_minfailures 5 |
|||||
// Number of seconds to track failed rcon authentications |
// Number of seconds to track failed rcon authentications |
||||
sv_rcon_minfailuretime 10 |
sv_rcon_minfailuretime 10 |
||||
|
|
||||
// ...................... Communication and spectators ...................... // |
// ............................. Communication .............................. // |
||||
|
|
||||
// Enable voice communications |
// Enable voice communications |
||||
sv_voiceenable 0 |
sv_voiceenable 0 |
||||
@ -62,7 +61,7 @@ sv_alltalk 0 |
|||||
// Toggles whether the server allows spectator mode or not |
// Toggles whether the server allows spectator mode or not |
||||
mp_allowspectators 1 |
mp_allowspectators 1 |
||||
|
|
||||
// ......................... Team and round settings ........................ // |
// ................................ Gameplay ................................ // |
||||
|
|
||||
// Sets how many players can a team have over the opposite team. |
// Sets how many players can a team have over the opposite team. |
||||
mp_limitteams 1 |
mp_limitteams 1 |
||||
@ -112,6 +111,8 @@ nd_spawn_min_time 6.0 |
|||||
// Time in seconds between spawn waves |
// Time in seconds between spawn waves |
||||
nd_spawn_wave_interval 12.0 |
nd_spawn_wave_interval 12.0 |
||||
|
|
||||
|
// ............................... Map Rotation .............................. // |
||||
|
|
||||
// Minutes in a round |
// Minutes in a round |
||||
mp_roundtime 35 |
mp_roundtime 35 |
||||
|
|
||||
|
|||||
@ -1,35 +1,65 @@ |
|||||
// Hostname for server. |
// **************************************************************************** |
||||
|
// Half-Life: Opposing Force |
||||
|
// Config - server.cfg |
||||
|
// Date - 26/04/2026 |
||||
|
// **************************************************************************** |
||||
|
|
||||
|
// .................................. Basic ................................. // |
||||
|
|
||||
|
// hostname - Name of the server. |
||||
hostname "SERVERNAME" |
hostname "SERVERNAME" |
||||
|
|
||||
// RCON - remote console password. |
// rcon_password - Remote console password. |
||||
rcon_password "ADMINPASSWORD" |
rcon_password "ADMINPASSWORD" |
||||
|
|
||||
// Server password - for private servers. |
// sv_password - Server password for private servers. |
||||
sv_password "" |
sv_password "" |
||||
|
|
||||
// Server Logging |
// ................................. Security ................................ // |
||||
|
|
||||
|
// sv_cheats - Allow cheat commands. |
||||
|
// Default: sv_cheats 0 |
||||
|
sv_cheats 0 |
||||
|
|
||||
|
// ............................. Server Logging ............................. // |
||||
|
|
||||
|
// log - Enable server log output. |
||||
|
// Recommended: log on |
||||
log on |
log on |
||||
|
|
||||
|
// sv_logbans - Log server bans in the server logs. |
||||
sv_logbans 1 |
sv_logbans 1 |
||||
|
|
||||
|
// sv_logecho - Display log information in server console. |
||||
sv_logecho 1 |
sv_logecho 1 |
||||
|
|
||||
|
// sv_logfile - Write server log information to file. |
||||
sv_logfile 1 |
sv_logfile 1 |
||||
|
|
||||
|
// sv_log_onefile - Use a single rolling log file. |
||||
sv_log_onefile 0 |
sv_log_onefile 0 |
||||
|
|
||||
// disable autoaim |
// ................................ Gameplay ................................ // |
||||
|
|
||||
|
// sv_aim - Enable autoaim assistance. |
||||
|
// Recommended: sv_aim 0 |
||||
sv_aim 0 |
sv_aim 0 |
||||
|
|
||||
// disable clients' ability to pause the server |
// pausable - Allow clients to pause the server. |
||||
|
// Recommended: pausable 0 |
||||
pausable 0 |
pausable 0 |
||||
|
|
||||
// maximum client movement speed |
// sv_maxspeed - Maximum client movement speed. |
||||
sv_maxspeed 320 |
sv_maxspeed 320 |
||||
|
|
||||
// 20 minute timelimit |
// mp_timelimit - Round time limit in minutes. |
||||
mp_timelimit 20 |
mp_timelimit 20 |
||||
|
|
||||
// cheats off |
// ................................ Ban List ................................ // |
||||
sv_cheats 0 |
|
||||
|
|
||||
// load ban files |
// exec listip.cfg - Load IP ban list. |
||||
exec listip.cfg |
exec listip.cfg |
||||
|
|
||||
|
// exec banned.cfg - Load user ban list. |
||||
exec banned.cfg |
exec banned.cfg |
||||
|
|
||||
|
|||||
@ -1,25 +1,24 @@ |
|||||
// **************************************************************************** |
// **************************************************************************** |
||||
// * |
// Pirates, Vikings, and Knights II |
||||
// Pirates, Vikings, and Knights II * |
// Config - server.cfg |
||||
// Version 150815 * |
// Date - 26/04/2026 |
||||
// * |
|
||||
// **************************************************************************** |
// **************************************************************************** |
||||
|
|
||||
// ............................. Basic Settings ............................. // |
// .................................. Basic ................................. // |
||||
|
|
||||
// Hostname for server. |
// hostname - Name of the server. |
||||
hostname "SERVERNAME" |
hostname "SERVERNAME" |
||||
|
|
||||
// RCON - remote console password. |
// rcon_password - Remote console password. |
||||
rcon_password "ADMINPASSWORD" |
rcon_password "ADMINPASSWORD" |
||||
|
|
||||
// Server password - for private servers. |
// sv_password - Server password for private servers. |
||||
sv_password "" |
sv_password "" |
||||
|
|
||||
// Email - Server admin email. |
// Email - Server admin email. |
||||
sv_contact "[email protected]" |
sv_contact "[email protected]" |
||||
|
|
||||
// LAN Mode - If set the server will not show on the internet. |
// sv_lan - LAN mode. If set, the server will not show on the internet. |
||||
// Default: sv_lan 0 |
// Default: sv_lan 0 |
||||
sv_lan 0 |
sv_lan 0 |
||||
|
|
||||
|
|||||
@ -1,35 +1,65 @@ |
|||||
// Hostname for server. |
// **************************************************************************** |
||||
|
// Ricochet |
||||
|
// Config - server.cfg |
||||
|
// Date - 26/04/2026 |
||||
|
// **************************************************************************** |
||||
|
|
||||
|
// .................................. Basic ................................. // |
||||
|
|
||||
|
// hostname - Name of the server. |
||||
hostname "SERVERNAME" |
hostname "SERVERNAME" |
||||
|
|
||||
// RCON - remote console password. |
// rcon_password - Remote console password. |
||||
rcon_password "ADMINPASSWORD" |
rcon_password "ADMINPASSWORD" |
||||
|
|
||||
// Server password - for private servers. |
// sv_password - Server password for private servers. |
||||
sv_password "" |
sv_password "" |
||||
|
|
||||
// Server Logging |
// ................................. Security ................................ // |
||||
|
|
||||
|
// sv_cheats - Allow cheat commands. |
||||
|
// Default: sv_cheats 0 |
||||
|
sv_cheats 0 |
||||
|
|
||||
|
// ............................. Server Logging ............................. // |
||||
|
|
||||
|
// log - Enable server log output. |
||||
|
// Recommended: log on |
||||
log on |
log on |
||||
|
|
||||
|
// sv_logbans - Log server bans in the server logs. |
||||
sv_logbans 1 |
sv_logbans 1 |
||||
|
|
||||
|
// sv_logecho - Display log information in server console. |
||||
sv_logecho 1 |
sv_logecho 1 |
||||
|
|
||||
|
// sv_logfile - Write server log information to file. |
||||
sv_logfile 1 |
sv_logfile 1 |
||||
|
|
||||
|
// sv_log_onefile - Use a single rolling log file. |
||||
sv_log_onefile 0 |
sv_log_onefile 0 |
||||
|
|
||||
// disable autoaim |
// ................................ Gameplay ................................ // |
||||
|
|
||||
|
// sv_aim - Enable autoaim assistance. |
||||
|
// Recommended: sv_aim 0 |
||||
sv_aim 0 |
sv_aim 0 |
||||
|
|
||||
// disable clients' ability to pause the server |
// pausable - Allow clients to pause the server. |
||||
|
// Recommended: pausable 0 |
||||
pausable 0 |
pausable 0 |
||||
|
|
||||
// maximum client movement speed |
// sv_maxspeed - Maximum client movement speed. |
||||
sv_maxspeed 320 |
sv_maxspeed 320 |
||||
|
|
||||
// 20 minute timelimit |
// mp_timelimit - Round time limit in minutes. |
||||
mp_timelimit 20 |
mp_timelimit 20 |
||||
|
|
||||
// cheats off |
// ................................ Ban List ................................ // |
||||
sv_cheats 0 |
|
||||
|
|
||||
// load ban files |
// exec listip.cfg - Load IP ban list. |
||||
exec listip.cfg |
exec listip.cfg |
||||
|
|
||||
|
// exec banned.cfg - Load user ban list. |
||||
exec banned.cfg |
exec banned.cfg |
||||
|
|
||||
|
|||||
@ -0,0 +1,36 @@ |
|||||
|
//---------------------------------------------- |
||||
|
// Sven Co-op v5.0 Default Server CFG |
||||
|
//---------------------------------------------- |
||||
|
|
||||
|
//---------------------------------------------- |
||||
|
// See server_example.cfg for more available |
||||
|
// commands and settings. |
||||
|
//---------------------------------------------- |
||||
|
|
||||
|
hostname "SERVERNAME" |
||||
|
log "on" |
||||
|
|
||||
|
rcon_password "ADMINPASSWORD" |
||||
|
//sv_password "" |
||||
|
|
||||
|
sys_ticrate 100 |
||||
|
deathmatch 1 |
||||
|
decalfrequency 30 |
||||
|
hpk_maxsize 2 |
||||
|
pausable 0 |
||||
|
|
||||
|
sv_aim 0 |
||||
|
sv_allowdownload 1 |
||||
|
sv_allowupload 1 |
||||
|
sv_region 255 |
||||
|
sv_send_resources 1 |
||||
|
sv_voicecodec "voice_speex" |
||||
|
sv_voiceenable 1 |
||||
|
sv_voicequality 5 |
||||
|
|
||||
|
mp_telefrag 1 |
||||
|
mp_timelimit 99 |
||||
|
mp_weaponstay 1 |
||||
|
|
||||
|
exec banned.cfg |
||||
|
exec listip.cfg |
||||
@ -1,15 +1,34 @@ |
|||||
// Hostname for server. |
// **************************************************************************** |
||||
|
// Team Fortress 2 |
||||
|
// Config - server.cfg |
||||
|
// Date - 26/04/2026 |
||||
|
// **************************************************************************** |
||||
|
|
||||
|
// .................................. Basic ................................. // |
||||
|
|
||||
|
// hostname - Name of the server. |
||||
hostname "SERVERNAME" |
hostname "SERVERNAME" |
||||
|
|
||||
// RCON - remote console password. |
// rcon_password - Remote console password. |
||||
rcon_password "ADMINPASSWORD" |
rcon_password "ADMINPASSWORD" |
||||
|
|
||||
// Server password - for private servers. |
// sv_password - Server password for private servers. |
||||
sv_password "" |
sv_password "" |
||||
|
|
||||
// Server Logging |
// ............................. Server Logging ............................. // |
||||
|
|
||||
|
// log - Enable server log output. |
||||
|
// Recommended: log on |
||||
log on |
log on |
||||
|
|
||||
|
// sv_logbans - Log server bans in the server logs. |
||||
sv_logbans 1 |
sv_logbans 1 |
||||
|
|
||||
|
// sv_logecho - Display log information in server console. |
||||
sv_logecho 1 |
sv_logecho 1 |
||||
|
|
||||
|
// sv_logfile - Write server log information to file. |
||||
sv_logfile 1 |
sv_logfile 1 |
||||
|
|
||||
|
// sv_log_onefile - Use a single rolling log file. |
||||
sv_log_onefile 0 |
sv_log_onefile 0 |
||||
@ -1,15 +1,34 @@ |
|||||
// Hostname for server. |
// **************************************************************************** |
||||
|
// Team Fortress 2 Classified |
||||
|
// Config - server.cfg |
||||
|
// Date - 26/04/2026 |
||||
|
// **************************************************************************** |
||||
|
|
||||
|
// .................................. Basic ................................. // |
||||
|
|
||||
|
// hostname - Name of the server. |
||||
hostname "SERVERNAME" |
hostname "SERVERNAME" |
||||
|
|
||||
// RCON - remote console password. |
// rcon_password - Remote console password. |
||||
rcon_password "ADMINPASSWORD" |
rcon_password "ADMINPASSWORD" |
||||
|
|
||||
// Server password - for private servers. |
// sv_password - Server password for private servers. |
||||
sv_password "" |
sv_password "" |
||||
|
|
||||
// Server Logging |
// ............................. Server Logging ............................. // |
||||
|
|
||||
|
// log - Enable server log output. |
||||
|
// Recommended: log on |
||||
log on |
log on |
||||
|
|
||||
|
// sv_logbans - Log server bans in the server logs. |
||||
sv_logbans 1 |
sv_logbans 1 |
||||
|
|
||||
|
// sv_logecho - Display log information in server console. |
||||
sv_logecho 1 |
sv_logecho 1 |
||||
|
|
||||
|
// sv_logfile - Write server log information to file. |
||||
sv_logfile 1 |
sv_logfile 1 |
||||
|
|
||||
|
// sv_log_onefile - Use a single rolling log file. |
||||
sv_log_onefile 0 |
sv_log_onefile 0 |
||||
|
|||||
@ -1,34 +1,61 @@ |
|||||
// Hostname for server. |
// **************************************************************************** |
||||
|
// The Specialists |
||||
|
// Config - server.cfg |
||||
|
// Date - 26/04/2026 |
||||
|
// **************************************************************************** |
||||
|
|
||||
|
// .................................. Basic ................................. // |
||||
|
|
||||
|
// hostname - Name of the server. |
||||
hostname "SERVERNAME" |
hostname "SERVERNAME" |
||||
|
|
||||
// RCON - remote console password. |
// rcon_password - Remote console password. |
||||
rcon_password "ADMINPASSWORD" |
rcon_password "ADMINPASSWORD" |
||||
|
|
||||
// Server password - for private servers. |
// sv_password - Server password for private servers. |
||||
sv_password "" |
sv_password "" |
||||
|
|
||||
// Server Logging |
// ............................. Server Logging ............................. // |
||||
|
|
||||
|
// log - Enable/disable logging. |
||||
log on |
log on |
||||
|
|
||||
|
// sv_logbans - Log server bans in the server logs. |
||||
sv_logbans 1 |
sv_logbans 1 |
||||
|
|
||||
|
// sv_logecho - Display log information in the server console. |
||||
sv_logecho 1 |
sv_logecho 1 |
||||
|
|
||||
|
// sv_logfile - Log server information in the log file. |
||||
sv_logfile 1 |
sv_logfile 1 |
||||
|
|
||||
|
// sv_log_onefile - Log server information to only one file. |
||||
sv_log_onefile 0 |
sv_log_onefile 0 |
||||
|
|
||||
// disable autoaim |
// ................................. Security ................................ // |
||||
|
|
||||
|
// sv_aim - Enable/disable autoaim. |
||||
sv_aim 0 |
sv_aim 0 |
||||
|
|
||||
// disable clients' ability to pause the server |
// pausable - Allow clients to pause the server. |
||||
|
// 0 = no, 1 = yes |
||||
pausable 0 |
pausable 0 |
||||
|
|
||||
// maximum client movement speed |
// ................................. Runtime ................................. // |
||||
|
|
||||
|
// sv_maxspeed - Maximum client movement speed. |
||||
sv_maxspeed 320 |
sv_maxspeed 320 |
||||
|
|
||||
// 20 minute timelimit |
// ................................ Gameplay ................................ // |
||||
|
|
||||
|
// mp_timelimit - Game time per map in minutes. |
||||
mp_timelimit 20 |
mp_timelimit 20 |
||||
|
|
||||
// cheats off |
// sv_cheats - Enable/disable cheats. |
||||
sv_cheats 0 |
sv_cheats 0 |
||||
|
|
||||
// load ban files |
// ................................ Ban List ................................ // |
||||
|
|
||||
|
// Load ban lists. |
||||
exec listip.cfg |
exec listip.cfg |
||||
exec banned.cfg |
exec banned.cfg |
||||
|
|||||
@ -1,19 +1,38 @@ |
|||||
// ************************************************************************** // |
// **************************************************************************** |
||||
// // |
// Vampire Slayer |
||||
// Vampire Slayer - server.cfg // |
// Config - server.cfg |
||||
// Version 150618 // |
// Date - 26/04/2026 |
||||
// // |
// **************************************************************************** |
||||
// ************************************************************************** // |
|
||||
|
|
||||
// Use this file to configure your DEDICATED server. |
// .................................. Basic ................................. // |
||||
// This config file is executed everytime the server changes levels. |
|
||||
|
|
||||
|
// This file configures your dedicated server. |
||||
|
// This config file is executed each time the server changes levels. |
||||
|
|
||||
|
// ................................. Security ................................ // |
||||
|
|
||||
|
// sv_aim - Enable/disable autoaim. |
||||
sv_aim 0 |
sv_aim 0 |
||||
|
|
||||
|
// sv_cheats - Enable/disable cheats. |
||||
sv_cheats 0 |
sv_cheats 0 |
||||
|
|
||||
|
// sv_clienttrace - Player collision trace size. |
||||
sv_clienttrace 3.5 |
sv_clienttrace 3.5 |
||||
|
|
||||
|
// sv_minrate - Minimum network rate. |
||||
sv_minrate 0 |
sv_minrate 0 |
||||
|
|
||||
|
// sv_maxrate - Maximum network rate. |
||||
sv_maxrate 9500 |
sv_maxrate 9500 |
||||
|
|
||||
|
// pausable - Allow clients to pause the server. |
||||
pausable 0 |
pausable 0 |
||||
|
|
||||
|
// ................................. Runtime ................................. // |
||||
|
|
||||
|
// sv_maxspeed - Maximum client movement speed. |
||||
sv_maxspeed 320 |
sv_maxspeed 320 |
||||
|
|
||||
|
// hostname - Name of the server. |
||||
hostname "SERVERNAME" |
hostname "SERVERNAME" |
||||
Loading…
Reference in new issue