From 34fd32821954643880a8ef6736449d15b6399270 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 26 Apr 2026 22:53:33 +0100 Subject: [PATCH] Standardize Blade Symphony Source config style --- bs/server.cfg | 44 +++++++++++++++++++++++++++++++++++--------- 1 file changed, 35 insertions(+), 9 deletions(-) diff --git a/bs/server.cfg b/bs/server.cfg index 288eb6c..5e4b09d 100644 --- a/bs/server.cfg +++ b/bs/server.cfg @@ -1,29 +1,55 @@ -// Server Hostname +// **************************************************************************** +// Blade Symphony +// Config - server.cfg +// Date - 26/04/2026 +// **************************************************************************** + +// .................................. Basic ................................. // + +// hostname - Name of the server. hostname "SERVERNAME" -// Server Password +// sv_password - Server password for private servers. sv_password "" -// RCON Password +// rcon_password - Remote console password. rcon_password "ADMINPASSWORD" -// Time Limit +// ................................ Gameplay ................................ // + +// mp_timelimit - Game time per map in minutes. mp_timelimit 40 -// Logging +// ............................. Server Logging ............................. // + +// log - Enable/disable logging. log off + +// sv_logfile - Log server information in the log file. sv_logfile 1 + +// sv_logecho - Display log information in the server console. sv_logecho 0 + +// sv_logbans - Log server bans in the server logs. sv_logbans 1 -// MapCycle File +// .............................. Map Rotation .............................. // + +// mapcyclefile - Name of the .txt file used to cycle maps on multiplayer servers. mapcyclefile mapcycle.txt -// Cheats Disabled +// ................................. Security ................................ // + +// sv_cheats - Enable/disable cheats. sv_cheats 0 -// AllTalk Enabled +// ............................. Communication .............................. // + +// sv_alltalk - Players can hear all other players, no team restrictions. sv_alltalk 1 -// Misc. +// ................................ Misc .................................... // + +// sv_allowupload - Allow clients to upload customization files. sv_allowupload 1 \ No newline at end of file