@ -1,8 +1,10 @@
// ****************************************************************************
// *****************************************************************************
// Brainbread 2
// Brainbread 2
// Config - server.cfg
// Config - server.cfg
// Date - 06/12/2023
// Date - 06/12/2023
// ****************************************************************************
// *****************************************************************************
// .................................. Basic ................................. //
// hostname - Hostname for server.
// hostname - Hostname for server.
hostname "SERVERNAME"
hostname "SERVERNAME"
@ -13,31 +15,48 @@ rcon_password "ADMINPASSWORD"
// sv_password - Server password for entry into multiplayer games.
// sv_password - Server password for entry into multiplayer games.
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 - Set game server account token to use for logging in to a persistent game server account.
// https://steamcommunity.com/dev/managegameservers
sv_setsteamaccount ""
sv_setsteamaccount ""
// map - Start playing on specified map.
// ................................. Security ................................ //
// map "bba_barracks"
// 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 - Server is a lan server ( no heartbeat, no authentication, no non-class C addresses ).
sv_lan 0
sv_lan 0
// ............................. Server Logging ............................. //
// sv_logfile - Log server information in the log file.
// sv_logfile - Log server information in the log file.
sv_logfile 1
sv_logfile 1
// sv_logbans - Log server bans in the server logs.
// sv_logbans - Log server bans in the server logs.
sv_logbans 1
sv_logbans 1
// ............................. Communication .............................. //
// sv_voiceenable - Enable voice communications.
// sv_voiceenable - Enable voice communications.
sv_voiceenable 1
sv_voiceenable 1
// sv_alltalk - Players can hear all other players, no team restrictions.
// sv_alltalk - Players can hear all other players, no team restrictions.
sv_alltalk 1
sv_alltalk 1
// ................................ Gameplay ................................ //
// mp_allowspectators - Toggles whether the server allows spectator mode or not.
mp_allowspectators 1
// bb2_allow_profile_system - Allow players to load Global stats or local stats defined on the server. 1 = Global, 2 = Local.
bb2_allow_profile_system 1
// .............................. Map Rotation .............................. //
// map - Start playing on specified map.
// map "bba_barracks"
// mapcyclefile - Name of the .txt file used to cycle the maps on multiplayer servers.
mapcyclefile "mapcycle.txt"
// ............................. Fast Download .............................. //
// sv_allowupload - Allow clients to upload customizations files.
// sv_allowupload - Allow clients to upload customizations files.
sv_allowupload 1
sv_allowupload 1
@ -47,12 +66,13 @@ sv_allowdownload 1
// sv_downloadurl - Location from which clients can download missing files.
// sv_downloadurl - Location from which clients can download missing files.
sv_downloadurl ""
sv_downloadurl ""
// mp_allowspectators - Toggles whether the server allows spectator mode or not.
// ............................ Startup Commands ............................ //
mp_allowspectators 1
// bb2_allow_profile_system - Allow players to load Global stats or local stats defined on the server. 1 = Global, 2 = Local!
bb2_allow_profile_system
// exec server_core.cfg - Load the server core configuration.
exec server_core.cfg
exec server_core.cfg
// exec server_game.cfg - Load the server game configuration.
exec server_game.cfg
exec server_game.cfg
// exec server_custom.cfg - Load the server custom configuration.
exec server_custom.cfg
exec server_custom.cfg