Browse Source

update cs1.6

feature/source-updates
Daniel Gibbs 7 months ago
parent
commit
f97a83b6b2
No known key found for this signature in database GPG Key ID: 2076B128385E8C55
  1. 40
      cs/server.cfg
  2. 23
      cs/server.cfg.orig

40
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" hostname "SERVERNAME"
// sv_password - Server password for entry into multiplayer games.
sv_password ""
// RCON - remote console password. // RCON - remote console password.
rcon_password "ADMINPASSWORD" rcon_password "ADMINPASSWORD"
// Server password - for private servers. // map - Start playing on specified map.
sv_password "" map "de_dust2"
// Server Logging // mapcyclefile - Name of the .txt file used to cycle the maps on multiplayer servers
log on mapcyclefile "mapcycle.txt"
sv_logbans 1
sv_logecho 1 // 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_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 sv_aim 0
// disable clients' ability to pause the server // pausable - disable clients' ability to pause the server
pausable 0 pausable 0
// maximum client movement speed // sv_maxspeed - maximum client movement speed
sv_maxspeed 320 sv_maxspeed 320
// 20 minute timelimit // mp_timelimit - 20 minute timelimit
mp_timelimit 20 mp_timelimit 20
// cheats off // sv_cheats - cheats off
sv_cheats 0 sv_cheats 0
// load ban files // load ban files

23
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
Loading…
Cancel
Save