Browse Source

Update server.cfg

pull/43/head
Daniel Gibbs 6 years ago
committed by GitHub
parent
commit
f5f339b599
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 52
      CounterStrikeGlobalOffensive/server.cfg

52
CounterStrikeGlobalOffensive/server.cfg

@ -1,4 +1,13 @@
// Hostname for server.
// ************************************************************************** //
// //
// Counter-Strike: Global Offensive - server.cfg //
// Version 240917 //
// //
// ************************************************************************** //
// .................................. Basic ................................. //
// Hostname - Name of the server.
hostname "SERVERNAME"
// RCON - remote console password.
@ -7,25 +16,62 @@ rcon_password "ADMINPASSWORD"
// Server password - for private servers.
sv_password ""
// Server Logging
// Email - Server admin email.
// Example: sv_contact "[email protected]"
sv_contact ""
// LAN mode - If set the server will not show on the internet.
// Default: sv_lan 0
sv_lan 0
// ............................. Server Logging ............................. //
// Enable log - Enables logging to file, console, and udp < on | off >.
// Recommended: log on
log on
// Log bans - Log server bans in the server logs.
// Default: sv_logbans 1
// Recommended: sv_logbans 1
sv_logbans 1
// Log echo - Display log information to the server console.
// Default: sv_logecho 1
// Recommended: sv_logecho 1
sv_logecho 1
// Log file - Log server information in the log file.
// Default: sv_logfile 1
// Recommended: sv_logfile 1
sv_logfile 1
// One file log - Log server information to only one file.
// Default: sv_log_onefile 0
// Recommended: sv_log_onefile 0
sv_log_onefile 0
// Server Hibernation
sv_hibernate_when_empty 1
sv_hibernate_ms 5
// Server Query
// ............................. Server Query ............................. //
// More info at: https://www.gametracker.com/games/csgo/forum.php?thread=91691
host_name_store 1
host_info_show 1
host_players_show 2
// ................................ Ban List ................................ //
// User ban - Server banlist based on user steam ID.
// Recommended: exec banned_user.cfg
exec banned_user.cfg
// IP ban - Server banlist based on user IP.
// Recommended: exec banned_ip.cfg
exec banned_ip.cfg
// Write ID - Writes a list of permanently-banned user IDs to banned_user.cfg.
writeid
// Write IP - Save the ban list to banned_ip.cfg.
writeip

Loading…
Cancel
Save