Created
April 22, 2016 19:57
-
-
Save a1batross/3ad52e7e335ef03772f5ac5c190a28dc to your computer and use it in GitHub Desktop.
Server.cfg from Counter-Strike Xash3D Server
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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 "Bob's Server" | |
// maximum client movement speed | |
sv_maxspeed 320 | |
// Enable cheats(for debugging, etc) | |
// sv_cheats 1 | |
// Set the mapcycle file | |
set mapcyclefile mapcycle.txt | |
// Set time limit for one map | |
set mp_timelimit 20 | |
// Set start map(important!) | |
set defaultmap de_dust2 | |
// Set port for game | |
set port 27016 | |
// Enable shield hack. (important for Counter-Strike!) | |
sv_skipshield 1 | |
// Set server public visibility (important!) | |
public 1 | |
// Set maxplayers | |
maxplayers 16 | |
// Set RCon Password. (important!) | |
rcon_password YourRConPasswordIsHere | |
// Set FastDL servers (important, if you want to use custom maps). | |
set sv_downloadurl "http://files.anitalink.com/gamecache/hl/cstrike/ http://files2.hldm.org/cs/ http://www.leveldesign.com.br/labs/sv/cs/ http://gs.bel-net.ru/cs/download/" | |
// load ban files | |
exec listip.cfg | |
exec banned.cfg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment