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.
65 lines
1.6 KiB
65 lines
1.6 KiB
// ****************************************************************************
|
|
// Half-Life Deathmatch
|
|
// Config - server.cfg
|
|
// Date - 26/04/2026
|
|
// ****************************************************************************
|
|
|
|
// .................................. Basic ................................. //
|
|
|
|
// hostname - Name of the server.
|
|
hostname "SERVERNAME"
|
|
|
|
// rcon_password - Remote console password.
|
|
rcon_password "ADMINPASSWORD"
|
|
|
|
// sv_password - Server password for private servers.
|
|
sv_password ""
|
|
|
|
// ................................. Security ................................ //
|
|
|
|
// sv_cheats - Allow cheat commands.
|
|
// Default: sv_cheats 0
|
|
sv_cheats 0
|
|
|
|
// ............................. Server Logging ............................. //
|
|
|
|
// log - Enable server log output.
|
|
// Recommended: log on
|
|
log on
|
|
|
|
// sv_logbans - Log server bans in the server logs.
|
|
sv_logbans 1
|
|
|
|
// sv_logecho - Display log information in server console.
|
|
sv_logecho 1
|
|
|
|
// sv_logfile - Write server log information to file.
|
|
sv_logfile 1
|
|
|
|
// sv_log_onefile - Use a single rolling log file.
|
|
sv_log_onefile 0
|
|
|
|
// ................................ Gameplay ................................ //
|
|
|
|
// sv_aim - Enable autoaim assistance.
|
|
// Recommended: sv_aim 0
|
|
sv_aim 0
|
|
|
|
// pausable - Allow clients to pause the server.
|
|
// Recommended: pausable 0
|
|
pausable 0
|
|
|
|
// sv_maxspeed - Maximum client movement speed.
|
|
sv_maxspeed 320
|
|
|
|
// mp_timelimit - Round time limit in minutes.
|
|
mp_timelimit 20
|
|
|
|
// ................................ Ban List ................................ //
|
|
|
|
// exec listip.cfg - Load IP ban list.
|
|
exec listip.cfg
|
|
|
|
// exec banned.cfg - Load user ban list.
|
|
exec banned.cfg
|
|
|
|
|