-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
78 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,73 +1,51 @@ | ||
// ************************************************************************** // | ||
// // | ||
// BrainBread 2 - server.cfg // | ||
// Version 240917 // | ||
// // | ||
// ************************************************************************** // | ||
// **************************************************************************** | ||
// Brainbread 2 | ||
// Config - server.cfg | ||
// Date - 06/12/2023 | ||
// **************************************************************************** | ||
|
||
// .................................. Basic ................................. // | ||
|
||
// Hostname - Name of the server. | ||
// hostname - Hostname for server. | ||
hostname "SERVERNAME" | ||
|
||
// RCON - remote console password. | ||
rcon_password "ADMINPASSWORD" | ||
|
||
// Server password - for private servers. | ||
// sv_password - Server password for entry into multiplayer games. | ||
sv_password "" | ||
|
||
// Email - Server admin email. | ||
// Example: sv_contact "[email protected]" | ||
sv_contact "" | ||
// Default Map - map <mapname> :Load a new map. | ||
map "bba_barracks" | ||
|
||
// LAN mode - If set the server will not show on the internet. | ||
// Default: sv_lan 0 | ||
// sv_lan - Server is a lan server ( no heartbeat, no authentication, no non-class C addresses ). | ||
sv_lan 0 | ||
|
||
// Server tags - Tags show up on the in-game server browser. This helps | ||
// users filter servers. | ||
// vanilla - the server runs the default settings. | ||
// custom - the server runs custom gameplay settings or mods. | ||
// Example: sv_tags "custom, fastdl" | ||
sv_tags "" | ||
|
||
|
||
// ................................. In Game ................................ // | ||
// sv_logfile - Log server information in the log file. | ||
sv_logfile 1 | ||
|
||
// Cheats - Allow cheats on the server. Steam achievements and stats are disabled. | ||
// 0 = cheats off. | ||
// 1 = cheats on. | ||
// Default: sv_cheats 0 | ||
// Reccomended: sv_cheats 0 | ||
sv_cheats 0 | ||
// sv_logbans - Log server bans in the server logs. | ||
sv_logbans 1 | ||
|
||
// Profile System | ||
// desc: Sets if the player will be able to save and load their skills. (0 - Disabled | 1 - Global | 2 - Local, achievements and steam stats are disabled) | ||
// default 1 | ||
// Profile Saving only works on dedicated servers. | ||
bb2_allow_profile_system 1 | ||
// sv_voiceenable - Enable voice communications. | ||
sv_voiceenable 1 | ||
|
||
// Misc | ||
sv_region 255 | ||
// sv_alltalk - Players can hear all other players, no team restrictions. | ||
sv_alltalk 1 | ||
|
||
// sv_allowupload - Allow clients to upload customizations files. | ||
sv_allowupload 1 | ||
sv_allowdownload 1 | ||
|
||
// Rates | ||
sv_maxrate 0 | ||
sv_minrate 35000 | ||
// sv_allowdownload - Allow clients to download files. | ||
sv_allowdownload 1 | ||
|
||
sv_maxcmdrate 33 | ||
sv_mincmdrate 30 | ||
// sv_downloadurl - Location from which clients can download missing files. | ||
sv_downloadurl "" | ||
|
||
sv_maxupdaterate 33 | ||
sv_minupdaterate 30 | ||
// mp_allowspectators - Toggles whether the server allows spectator mode or not. | ||
mp_allowspectators 1 | ||
|
||
sv_forcepreload 0 | ||
// 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 | ||
exec server_game.cfg | ||
exec server_custom.cfg | ||
|
||
heartbeat |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters