Browse Source
- cc (CodenameCURE): add section dividers, fix comment format (double-space in sv_allowvotediff, wrong description copy-paste on sv_autokick_strikes, non-standard bot_quota comment, inline trailing comment on sv_autokick_strikes) - doi (Day of Infamy): add section dividers, fix missing periods on timer cvar comments, fix question-mark ending on doi_bot_quota comment - jbep3 (Jabroni Brawl: Episode 3): complete rewrite from non-standard format (dash dividers, inline comments, multi-line comments) to standard; add missing date to header, add Jabroni Brawl: Episode 3 Settings section - mcv (Military Conflict: Vietnam): add Basic divider, rename Server Query section to Security, move host_name_store/host_info_show/host_players_show into Security with comments, collapse multi-line comments (sv_contact, sv_tags, sv_region, mapcyclefile, sv_hibernate_zombie_mode), remove Default: sub-lines (sv_lan, sv_cheats)source-config-standards-trial
committed by
GitHub
4 changed files with 157 additions and 123 deletions
@ -1,51 +1,59 @@ |
|||||
// **************************************************************************** |
// ****************************************************************************** |
||||
// Jabroni Brawl: Episode 3 |
// Jabroni Brawl: Episode 3 |
||||
// Config - server.cfg |
// Config - server.cfg |
||||
// **************************************************************************** |
// Date - 27/04/2026 |
||||
|
// ****************************************************************************** |
||||
|
|
||||
// This config is based on the game's sample config and uses LinuxGSM tokens. |
// ................................. Basic .................................. // |
||||
|
|
||||
// ----------------------- |
// hostname - Hostname for server. |
||||
// Generic Source commands |
hostname "SERVERNAME" |
||||
// ----------------------- |
|
||||
|
|
||||
log on // Enable server logging |
// rcon_password - Remote console password. |
||||
|
rcon_password "ADMINPASSWORD" |
||||
|
|
||||
hostname "SERVERNAME" // Server name |
// ............................. Server Logging ............................. // |
||||
|
|
||||
rcon_password "ADMINPASSWORD" // RCON password |
// log - Enable logging to file, console, and udp. |
||||
|
log on |
||||
|
|
||||
mp_timelimit 30 // Map time limit in minutes |
// ................................ Gameplay ................................ // |
||||
mp_maxrounds 0 // Max number of rounds till level change |
|
||||
|
|
||||
|
// mp_timelimit - Map time limit in minutes. |
||||
|
mp_timelimit 30 |
||||
|
|
||||
|
// mp_maxrounds - Max number of rounds till level change. |
||||
|
mp_maxrounds 0 |
||||
|
|
||||
|
// mp_mapcycle_empty_timeout_seconds - Cycle to next map if server has been empty for N seconds. |
||||
mp_mapcycle_empty_timeout_seconds 300 |
mp_mapcycle_empty_timeout_seconds 300 |
||||
|
|
||||
sv_downloadurl "" // Fast Download location |
// ............................. Fast Download .............................. // |
||||
|
|
||||
// Load bans from previous sessions |
// sv_downloadurl - Location from which clients can download missing files. |
||||
execifexists banned_ip.cfg |
sv_downloadurl "" |
||||
|
|
||||
|
// ................................ Ban List ................................ // |
||||
|
|
||||
|
// execifexists banned_user.cfg - Execute the banned users file if it exists. |
||||
execifexists banned_user.cfg |
execifexists banned_user.cfg |
||||
|
|
||||
// ----------------------- |
// execifexists banned_ip.cfg - Execute the banned IPs file if it exists. |
||||
// Jabroni Brawl voting |
execifexists banned_ip.cfg |
||||
// ----------------------- |
|
||||
|
// ................... Jabroni Brawl: Episode 3 Settings .................... // |
||||
|
|
||||
jb_sv_voting_enabled 1 // Allow end of game voting |
// jb_sv_voting_enabled - Allow end of game voting. |
||||
|
jb_sv_voting_enabled 1 |
||||
|
|
||||
// Voting fallback behavior. |
// jb_sv_voting_fallback - Voting fallback behavior; 0 = standard cycle, 1 = same map, 2 = random. |
||||
// 0 = Remain on same game mode, continue standard cycle. |
|
||||
// 1 = Remain on same game mode/map. |
|
||||
// 2 = Pick a random game mode/map. |
|
||||
jb_sv_voting_fallback 0 |
jb_sv_voting_fallback 0 |
||||
|
|
||||
jb_sv_voting_allow_gamemode 1 // Enable/disable game mode voting |
// jb_sv_voting_allow_gamemode - Enable game mode voting. |
||||
jb_sv_voting_allow_map 1 // Enable/disable map voting |
jb_sv_voting_allow_gamemode 1 |
||||
|
|
||||
// ----------------------- |
// jb_sv_voting_allow_map - Enable map voting. |
||||
// Jabroni Brawl other |
jb_sv_voting_allow_map 1 |
||||
// ----------------------- |
|
||||
|
|
||||
// Mapcycle method. |
// jb_sv_mapcycle_method - Mapcycle method; 0 = sequential, 1 = randomized. |
||||
// 0 = Sequential, standard Source behavior. |
|
||||
// 1 = Randomized, picks random maps in the cycle. |
|
||||
jb_sv_mapcycle_method 1 |
jb_sv_mapcycle_method 1 |
||||
|
|||||
@ -1,40 +1,47 @@ |
|||||
// **************************************************************************** |
// ****************************************************************************** |
||||
// Military Conflict: Vietnam |
// Military Conflict: Vietnam |
||||
// Config - server.cfg |
// Config - server.cfg |
||||
// Date - 24/04/2026 |
// Date - 24/04/2026 |
||||
// **************************************************************************** |
// ****************************************************************************** |
||||
|
|
||||
|
// ................................. Basic .................................. // |
||||
|
|
||||
// hostname - Hostname for server. |
// hostname - Hostname for server. |
||||
hostname "SERVERNAME" |
hostname "SERVERNAME" |
||||
|
|
||||
// rcon_password - remote console password. |
// rcon_password - Remote console password. |
||||
rcon_password "ADMINPASSWORD" |
rcon_password "ADMINPASSWORD" |
||||
|
|
||||
// sv_password - Server password for private servers. |
// sv_password - Server password for private servers. |
||||
sv_password "" |
sv_password "" |
||||
|
|
||||
// sv_contact - Server admin email. |
// sv_contact - Server admin email address. |
||||
// Example: sv_contact "[email protected]" |
|
||||
sv_contact "" |
sv_contact "" |
||||
|
|
||||
|
// ................................ Security ................................ // |
||||
|
|
||||
// sv_lan - LAN mode; disables VAC and internet heartbeats. |
// sv_lan - LAN mode; disables VAC and internet heartbeats. |
||||
// Default: sv_lan 0 |
|
||||
sv_lan 0 |
sv_lan 0 |
||||
|
|
||||
// sv_cheats - Disables cheat commands. Set to 1 to enable (disables VAC). |
// sv_cheats - Disables cheat commands. Set to 1 to enable (disables VAC). |
||||
// Default: sv_cheats 0 |
|
||||
sv_cheats 0 |
sv_cheats 0 |
||||
|
|
||||
// sv_tags - Tags shown in server browser. |
// sv_tags - Tags shown in server browser. |
||||
// Example: sv_tags "vietnam,deathmatch" |
|
||||
sv_tags "" |
sv_tags "" |
||||
|
|
||||
// sv_region - World region to report this server in. |
// sv_region - World region; -1 = world, 0 = US East, 1 = US West, 2 = South America, 3 = Europe, 4 = Asia, 5 = Australia, 6 = Middle East, 7 = Africa. |
||||
// -1 = world, 0 = US East, 1 = US West, 2 = South America, 3 = Europe, |
|
||||
// 4 = Asia, 5 = Australia, 6 = Middle East, 7 = Africa |
|
||||
sv_region -1 |
sv_region -1 |
||||
|
|
||||
// ................................ Server Logging ................................ // |
// host_name_store - Store hostname in server info. |
||||
|
host_name_store 1 |
||||
|
|
||||
|
// host_info_show - Show server info in server browser. |
||||
|
host_info_show 1 |
||||
|
|
||||
|
// host_players_show - Show player info in server browser. |
||||
|
host_players_show 2 |
||||
|
|
||||
|
// ............................. Server Logging ............................. // |
||||
|
|
||||
// log - Enable logging to file, console, and udp. |
// log - Enable logging to file, console, and udp. |
||||
log on |
log on |
||||
@ -51,33 +58,25 @@ sv_logfile 1 |
|||||
// sv_log_onefile - Log server information to only one file. |
// sv_log_onefile - Log server information to only one file. |
||||
sv_log_onefile 0 |
sv_log_onefile 0 |
||||
|
|
||||
|
// ................................ Gameplay ................................ // |
||||
|
|
||||
// sv_hibernate_when_empty - Hibernate when no clients connected. |
// sv_hibernate_when_empty - Hibernate when no clients connected. |
||||
sv_hibernate_when_empty 1 |
sv_hibernate_when_empty 1 |
||||
|
|
||||
// sv_hibernate_zombie_mode - Spawn bots when server is empty to keep it active in server browser. |
// sv_hibernate_zombie_mode - Spawn bots when server is empty to keep active in server browser. |
||||
// Note: this is unique to Military Conflict: Vietnam and is enabled by default. |
|
||||
// Set to 0 to disable bot fill when empty. |
|
||||
// sv_hibernate_zombie_mode 1 |
// sv_hibernate_zombie_mode 1 |
||||
|
|
||||
// ................................ Map Rotation ................................ // |
// .............................. Map Rotation .............................. // |
||||
|
|
||||
// mapcyclefile - Name of the .txt file used to cycle the maps on multiplayer servers. |
// mapcyclefile - Name of the map cycle file used to cycle maps on multiplayer servers. |
||||
// Create a mapcycle.txt in the vietnam/ folder, one map name per line. |
|
||||
// Example: mcv_siege |
|
||||
mapcyclefile "mapcycle.txt" |
mapcyclefile "mapcycle.txt" |
||||
|
|
||||
// ................................ Server Query ................................ // |
|
||||
|
|
||||
host_name_store 1 |
|
||||
host_info_show 1 |
|
||||
host_players_show 2 |
|
||||
|
|
||||
// ................................ Ban List ................................ // |
// ................................ Ban List ................................ // |
||||
|
|
||||
// exec banned_user.cfg - Server banlist based on user steam ID. |
// exec banned_user.cfg - Execute the banned users file. |
||||
exec banned_user.cfg |
exec banned_user.cfg |
||||
|
|
||||
// exec banned_ip.cfg - Server banlist based on user IP. |
// exec banned_ip.cfg - Execute the banned IPs file. |
||||
exec banned_ip.cfg |
exec banned_ip.cfg |
||||
|
|
||||
// writeid - Writes a list of permanently-banned user IDs to banned_user.cfg. |
// writeid - Writes a list of permanently-banned user IDs to banned_user.cfg. |
||||
|
|||||
Loading…
Reference in new issue