1- // ****************************************************************************
1+ // *****************************************************************************
22// Brainbread 2
33// Config - server.cfg
44// Date - 06/12/2023
5- // ****************************************************************************
5+ // *****************************************************************************
6+
7+ // .................................. Basic ................................. //
68
79// hostname - Hostname for server.
810hostname " SERVERNAME"
@@ -13,31 +15,48 @@ rcon_password "ADMINPASSWORD"
1315// sv_password - Server password for entry into multiplayer games.
1416sv_password " "
1517
16- // sv_setsteamaccount - token Set game server account token to use for logging in to a persistent game server account
17- // https://steamcommunity.com/dev/managegameservers
18+ // sv_setsteamaccount - Set game server account token to use for logging in to a persistent game server account.
1819sv_setsteamaccount " "
1920
20- // map - Start playing on specified map.
21- // map " bba_barracks"
22-
23- // mapcyclefile - Name of the .txt file used to cycle the maps on multiplayer servers
24- mapcyclefile " mapcycle.txt"
21+ // ................................. Security ................................ //
2522
2623// sv_lan - Server is a lan server ( no heartbeat, no authentication, no non-class C addresses ).
2724sv_lan 0
2825
26+ // ............................. Server Logging ............................. //
27+
2928// sv_logfile - Log server information in the log file.
3029sv_logfile 1
3130
3231// sv_logbans - Log server bans in the server logs.
3332sv_logbans 1
3433
34+ // ............................. Communication .............................. //
35+
3536// sv_voiceenable - Enable voice communications.
3637sv_voiceenable 1
3738
3839// sv_alltalk - Players can hear all other players, no team restrictions.
3940sv_alltalk 1
4041
42+ // ................................ Gameplay ................................ //
43+
44+ // mp_allowspectators - Toggles whether the server allows spectator mode or not.
45+ mp_allowspectators 1
46+
47+ // bb2_allow_profile_system - Allow players to load Global stats or local stats defined on the server. 1 = Global, 2 = Local.
48+ bb2_allow_profile_system 1
49+
50+ // .............................. Map Rotation .............................. //
51+
52+ // map - Start playing on specified map.
53+ // map " bba_barracks"
54+
55+ // mapcyclefile - Name of the .txt file used to cycle the maps on multiplayer servers.
56+ mapcyclefile " mapcycle.txt"
57+
58+ // ............................. Fast Download .............................. //
59+
4160// sv_allowupload - Allow clients to upload customizations files.
4261sv_allowupload 1
4362
@@ -47,12 +66,13 @@ sv_allowdownload 1
4766// sv_downloadurl - Location from which clients can download missing files.
4867sv_downloadurl " "
4968
50- // mp_allowspectators - Toggles whether the server allows spectator mode or not.
51- mp_allowspectators 1
52-
53- // bb2_allow_profile_system - Allow players to load Global stats or local stats defined on the server. 1 = Global, 2 = Local!
54- bb2_allow_profile_system
69+ // ............................ Startup Commands ............................ //
5570
71+ // exec server_core.cfg - Load the server core configuration.
5672exec server_core.cfg
73+
74+ // exec server_game.cfg - Load the server game configuration.
5775exec server_game.cfg
76+
77+ // exec server_custom.cfg - Load the server custom configuration.
5878exec server_custom.cfg
0 commit comments