You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
2.4 KiB
91 lines
2.4 KiB
// ****************************************************************************
|
|
// BrainBread
|
|
// Config - server.cfg
|
|
// Date - 26/04/2026
|
|
// ****************************************************************************
|
|
|
|
// .................................. Basic ................................. //
|
|
|
|
// hostname - Hostname for server.
|
|
hostname "SERVERNAME"
|
|
|
|
// rcon_password - remote console password.
|
|
rcon_password "ADMINPASSWORD"
|
|
|
|
// sv_password - Server password for entry into multiplayer games.
|
|
sv_password ""
|
|
|
|
// ................................. Security ................................ //
|
|
|
|
// sv_aim - Enable autoaim assistance.
|
|
sv_aim 0
|
|
|
|
// sv_lan - Server is a lan server ( no heartbeat, no authentication, no non-class C addresses ).
|
|
sv_lan 0
|
|
|
|
// pausable - Allow clients to pause the server.
|
|
pausable 0
|
|
|
|
// ................................ Gameplay ................................ //
|
|
|
|
// sv_maxspeed - Maximum client movement speed.
|
|
sv_maxspeed 1000
|
|
|
|
// mp_timelimit - game time per map in minutes.
|
|
mp_timelimit 20
|
|
|
|
// sv_cheats - Allow cheats on server.
|
|
sv_cheats 0
|
|
|
|
// mp_friendlyfire - Allows team members to injure other members of their team.
|
|
mp_friendlyfire 0
|
|
|
|
// sv_mapvote - Enable map voting.
|
|
sv_mapvote 1
|
|
|
|
// sv_varvote - Enable variable voting.
|
|
sv_varvote 1
|
|
|
|
// sv_roundtimelimit - Round time limit in seconds.
|
|
sv_roundtimelimit 1000
|
|
|
|
// sv_rounddelay - Delay in seconds between rounds.
|
|
sv_rounddelay 8
|
|
|
|
// sv_expperlevel - Experience points required per level.
|
|
sv_expperlevel 150
|
|
|
|
// sv_exppotence - Experience potency. level = ( exp / sv_expperlevel ) ^ ( 1 / sv_exppotence ).
|
|
sv_exppotence 2
|
|
|
|
// sv_maxlevel - Maximum player level.
|
|
sv_maxlevel 23
|
|
|
|
// sv_savexp - Hours to save experience. 0=Disabled, -1=Forever.
|
|
sv_savexp 24
|
|
|
|
// sv_difficulty - Difficulty level. Affects respawn times, HP, damage, speed. 1=100%.
|
|
sv_difficulty 1
|
|
|
|
// sv_playerinfofile - File to save player info to.
|
|
sv_playerinfofile "players.lvl"
|
|
|
|
// sv_gibcount - Maximum number of gibs.
|
|
sv_gibcount 10
|
|
|
|
// sv_zombiecount - Maximum number of zombies.
|
|
sv_zombiecount 65
|
|
|
|
// mp_teamscorelimit - Team score limit. 0=Unlimited.
|
|
mp_teamscorelimit 0
|
|
|
|
// mp_fraglimit - The number of kills at which the map ends.
|
|
mp_fraglimit 0
|
|
|
|
// ................................ Ban List ................................ //
|
|
|
|
// exec listip.cfg - Load the banned IP address list.
|
|
exec listip.cfg
|
|
|
|
// exec banned.cfg - Load the banned user list.
|
|
exec banned.cfg
|
|
|