From f97a83b6b2d2afba26f9d3082bcc7c57dbc5cf87 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 25 Sep 2024 12:24:41 +0100 Subject: [PATCH] update cs1.6 --- cs/server.cfg | 40 +++++++++++++++++++++++++++------------- cs/server.cfg.orig | 23 +++++++++++++++++++++++ 2 files changed, 50 insertions(+), 13 deletions(-) create mode 100644 cs/server.cfg.orig diff --git a/cs/server.cfg b/cs/server.cfg index 546a358..b0d7787 100644 --- a/cs/server.cfg +++ b/cs/server.cfg @@ -1,32 +1,46 @@ -// Hostname for server. +// **************************************************************************** +// Counter-Strike 1.6 +// Config - server.cfg +// Date - 06/12/2023 +// **************************************************************************** + +// hostname - Hostname for server. hostname "SERVERNAME" +// sv_password - Server password for entry into multiplayer games. +sv_password "" + // RCON - remote console password. rcon_password "ADMINPASSWORD" -// Server password - for private servers. -sv_password "" +// map - Start playing on specified map. +map "de_dust2" -// Server Logging -log on -sv_logbans 1 -sv_logecho 1 +// mapcyclefile - Name of the .txt file used to cycle the maps on multiplayer servers +mapcyclefile "mapcycle.txt" + +// sv_lan - Server is a lan server ( no heartbeat, no authentication, no non-class C addresses ). +sv_lan false + +// sv_logfile - Log server information in the log file. sv_logfile 1 -sv_log_onefile 0 -// disable autoaim +// sv_logbans - Log server bans in the server logs. +sv_logbans 1 + +// sv_aim - disable autoaim sv_aim 0 -// disable clients' ability to pause the server +// pausable - disable clients' ability to pause the server pausable 0 -// maximum client movement speed +// sv_maxspeed - maximum client movement speed sv_maxspeed 320 -// 20 minute timelimit +// mp_timelimit - 20 minute timelimit mp_timelimit 20 -// cheats off +// sv_cheats - cheats off sv_cheats 0 // load ban files diff --git a/cs/server.cfg.orig b/cs/server.cfg.orig new file mode 100644 index 0000000..47a5efd --- /dev/null +++ b/cs/server.cfg.orig @@ -0,0 +1,23 @@ +// Use this file to configure your DEDICATED server. +// This config file is executed on server start. + +// disable autoaim +sv_aim 0 + +// disable clients' ability to pause the server +pausable 0 + +// default server name. Change to "Bob's Server", etc. +hostname "Counter-Strike 1.6 Server" + +// maximum client movement speed +sv_maxspeed 320 + +// 20 minute timelimit +mp_timelimit 20 + +sv_cheats 0 + +// load ban files +exec listip.cfg +exec banned.cfg \ No newline at end of file