1 changed files with 35 additions and 8 deletions
@ -1,35 +1,62 @@ |
|||||
|
// **************************************************************************** |
||||
|
// Deathmatch Classic |
||||
|
// Config - server.cfg |
||||
|
// Date - 26/04/2026 |
||||
|
// **************************************************************************** |
||||
|
|
||||
|
// .................................. Basic ................................. // |
||||
|
|
||||
// hostname - Name of the server. |
// hostname - Name of the server. |
||||
hostname "SERVERNAME" |
hostname "SERVERNAME" |
||||
|
|
||||
// rcon_password - remote console password. |
// rcon_password - Remote console password. |
||||
rcon_password "ADMINPASSWORD" |
rcon_password "ADMINPASSWORD" |
||||
|
|
||||
// sv_password - Server password for private servers. |
// sv_password - Server password for private servers. |
||||
sv_password "" |
sv_password "" |
||||
|
|
||||
// Server Logging |
// ............................. Server Logging ............................. // |
||||
|
|
||||
|
// log - Enable/disable logging. |
||||
log on |
log on |
||||
|
|
||||
|
// sv_logbans - Log server bans in the server logs. |
||||
sv_logbans 1 |
sv_logbans 1 |
||||
|
|
||||
|
// sv_logecho - Display log information in the server console. |
||||
sv_logecho 1 |
sv_logecho 1 |
||||
|
|
||||
|
// sv_logfile - Log server information in the log file. |
||||
sv_logfile 1 |
sv_logfile 1 |
||||
|
|
||||
|
// sv_log_onefile - Log server information to only one file. |
||||
sv_log_onefile 0 |
sv_log_onefile 0 |
||||
|
|
||||
// disable autoaim |
// ................................. Security ................................ // |
||||
|
|
||||
|
// sv_aim - Enable/disable autoaim. |
||||
sv_aim 0 |
sv_aim 0 |
||||
|
|
||||
// disable clients' ability to pause the server |
// pausable - Allow clients to pause the server. |
||||
|
// 0 = no, 1 = yes |
||||
pausable 0 |
pausable 0 |
||||
|
|
||||
// maximum client movement speed |
// ................................. Runtime ................................. // |
||||
|
|
||||
|
// sv_maxspeed - Maximum client movement speed. |
||||
sv_maxspeed 320 |
sv_maxspeed 320 |
||||
|
|
||||
// 20 minute timelimit |
// ................................ Gameplay ................................ // |
||||
|
|
||||
|
// mp_timelimit - Game time per map in minutes. |
||||
mp_timelimit 20 |
mp_timelimit 20 |
||||
|
|
||||
// cheats off |
// sv_cheats - Enable/disable cheats. |
||||
sv_cheats 0 |
sv_cheats 0 |
||||
|
|
||||
// load ban files |
// ................................ Ban List ................................ // |
||||
|
|
||||
|
// Load ban lists. |
||||
exec listip.cfg |
exec listip.cfg |
||||
exec banned.cfg |
exec banned.cfg |
||||
|
|
||||
|
|||||
Loading…
Reference in new issue