FireDaemon Forums
Go Back   FireDaemon Forums > Support > HOWTOs: Application Tutorials > Game Servers

Game Servers HOWTOs and Tutorials regarding integrating FireDaemon with various game servers.


Reply
 
Thread Tools Display Modes
  James Bourne's time 2nd May 2008, 04:03 PM    #1  
Old 2nd May 2008, 06:03 AM
James Bourne's Avatar
James Bourne James Bourne is offline
FireDaemon Tech Supp
 
Join Date: Jun 2005
Location: Sydney, AU
Posts: 605
Send a message via Skype™ to James Bourne
Default Counter-Strike: Source Dedicated Server (CSS DS)



How To Run Counter-Strike: Source Dedicated Server (CSS DS) as a Windows Service with FireDaemon

Counter-Strike: Source is a first person action game. The dedicated server component can be run as a Windows Service using FireDaemon. FireDaemon will allow you to have the dedicated server start automatically at boot prior to login, allow you to start multiple instances of the dedicated server and so forth. This HOWTO will show you how set it up. You can also use FireDaemon Trinity or PanelDaemon to manage FireDaemon and other Windows services via a web browser.

CSS Dedicated Server Setup Under FireDaemon

If you are deploying FireDaemon on Windows Vista or Server 2008 ensure you read this and this. Windows XP and Server 2003 users should read this.
  1. First download and install the HLDS Update Tool. The download is small (< 2 MB).
  2. Download the CSS server files via Valve’s content servers. First before downloading the files, go to the directory where you installed the HLDS Update Tool. Create a shortcut to "HldsUpdateTool.exe". Next edit the properties of the shortcut and in the target box, at the end of it (with a space before the following), put:

    -command update -game "Counter-Strike Source" -dir .

    The target box should now look something like:

    "C:\CSS\HldsUpdateTool.exe" -command update -game "Counter-Strike Source" -dir .



    Now click the shortcut you created and let it run (it might take a few hours to update everything). You should also run the shortcut every week or so to grab the latest server updates (stop your server first though).
  3. Download and install FireDaemon Pro into the directory of your choice (typically C:\Program Files\FireDaemon). FireDaemon can be downloaded from here.
  4. CSS uses 1 configuration file to store it’s settings. You can find it in "cstrike\cfg\server.cfg" in the directory where you installed the server.
  5. Next start the FireDaemon GUI from the desktop shortcut. Click on the "Create a new service definition" button in the toolbar (or type Ctrl+N) and enter the information into the fields as you see below. Obviously adjust paths to suite your installation. Pay special attention to the Parameters list.



    The most important field on the tab is the Parameters. The Parameters define the initial setup of your server.

    Here’s the full parameter list you should have:
    -console -game "cstrike" -secure +map de_dust -autoupdate +log on +maxplayers 32 -port 27015 +ip 1.2.3.4 +exec server.cfg
    • "-console" enables text base server display. The server can only be automatically restarted in text based mode.
    • "-game" loads the mod.
    • "-secure" enables VAC protection of your server (valve anti cheat). You can remove this command if you do not want to use VAC.
    • "+map" loads a specified map on server startup. You can change "de_dust" to whatever map you want. This command should never be removed.
    • "-autoupdate" Enables auto update of the server, valve has not implemented this in windows so you will have to manually update SRCDS/CSS yourself. It’s simply here for the sake of legacy support if valve ever decides to add it.
    • "+log on" Displays the output of information on the screen. You can turn optionally it off (+log off), but keeping it on makes it easier to debug any errors you might encounter.
    • "maxplayers 32" This controls the maximum of amount of players you want your server to run. You can only control the max players on server startup. This command should never be removed.
    • "-port 27015" This is the default server port for SRCDS. You can change it to anywhere from 27015 to 27020. Changing it is generally used when you host multiple servers (as each server has to use its own port when using the same IP). This command should never be removed.
    • "+ip" should be the IP of your computer (not 127.0.0.1, go here to get your IP). This command should never be removed.
    • "+exec server.cfg" This simply executes your server.cfg file on server startup. If you run multiple servers from the same installation, you can specify other config files (eg. server2.cfg)
  6. Now click on the Settings tab. If you DON'T want to see your dedicated server running, uncheck the Interact with Desktop check box & select "Hidden" from the "Show Window" dropdown. Also uncheck Graceful Shutdown as SRCDS doesn't respond to it. You can optionally run SRCDS as the user you installed it as. In the Logon Account field type your username (eg. Administrator) and then enter the user's password twice in the Password and Confirm fields.


  7. Now click on the Advanced tab. You can change the Process Priority to allocate more CPU time to the dedicated server or specify which CPU or core the dedicated server will run on (in the case of multi-processor, hyperthreaded or multi-core CPUs).


  8. Now click on the Dependencies tab. Make sure the service depends on the lanmanworkstation (Workstation) service to ensure the TCP/IP and CIFS stacks are both up prior to starting SRCDS.


  9. Now click on the Install button to install and start CSS!

Below is an example server.cfg file:

Code:
// server name
hostname "Counter-Strike Server" 

// rcon passsword
rcon_password "password" 

// Advanced RCON
sv_rcon_banpenalty 60 
sv_rcon_maxfailures 10 
sv_rcon_minfailures 5 
sv_rcon_minfailuretime 30 

// server cvars
mp_friendlyfire 0 
mp_footsteps 1 
mp_autoteambalance 1 
mp_autokick 1 
mp_flashlight 0 
mp_tkpunish 1 
mp_forcecamera 0 
sv_alltalk 0 
sv_pausable 0 
sv_cheats 0 
sv_consistency 1 
sv_allowupload 1 
sv_allowdownload 1 
sv_maxspeed 320 
mp_limitteams 2 
mp_hostagepenalty 5 
sv_voiceenable 1 
mp_allowspectators 1 
mp_timelimit 25 
mp_chattime 10 
sv_timeout 120 

// round specific cvars
mp_freezetime 6 
mp_roundtime 5 
mp_startmoney 800 
mp_c4timer 45 
mp_fraglimit 0 
mp_maxrounds 0 
mp_winlimit 0 
mp_playerid 0 
mp_spawnprotectiontime 5 

// bandwidth rates/settings
sv_minrate 0 
sv_maxrate 0 
decalfrequency 10 
sv_maxupdaterate 60 
sv_minupdaterate 10 

// server logging
log off 
sv_logbans 0 
sv_logecho 1 
sv_logfile 1 
sv_log_onefile 0 

// operation
sv_lan 0 
sv_region 0 

// execute ban files
exec banned_user.cfg 
exec banned_ip.cfg
You can easily generate your own configuration from here.

=======================
HOWTO Provided by:

=======================

Last edited by Jordan; 10th September 2009 at 10:10 PM.
Reply With Quote
Reply

Bookmarks

Tags
counterstrike, css, dedicated, server, source

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

 
Free 30 Day Trial

Join our Newsletter
Once a month we poke the right people on product releases and promos.



Connect with us



Latest HOWTOs



All times are GMT. The time now is 01:30 PM.


Powered by vBulletin® Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Template-Modifications by TMS
Copyright © 2009 FireDaemon Technologies Limited