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
  Jordan's time 21st January 2010, 02:55 PM    #1  
Old 21st January 2010, 07:55 PM
Jordan's Avatar
Jordan Jordan is offline
Member
 
Join Date: Jun 2007
Posts: 90
Default Counter-Strike: Condition Zero (CS CZ DS)

Counter-Strike: Condition Zero Logo

How To Run Counter-Strike: Condition Zero Dedicated Server (CS CZ DS) as a Windows Service with FireDaemon

Counter-Strike: Condition Zero 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.

CS CZ 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 CS CZ 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 czero -dir .

    The target box should now look something like:

    "C:\CS CZ\HldsUpdateTool.exe" -command update -game czero -dir .

    HLDS Link Properties

    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. CS CZ uses 1 configuration file to store it’s settings. You can find it in "czzero\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.

    FireDaemon Pro - Program Tabs

    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 czero -secure +map as_oilrig -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 "as_oilrig" 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 HLDS/CS CZ 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 HLDS. 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 HLDS doesn't respond to it. You can optionally run HLDS 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.

    FireDaemon Pro - Settings Tab
  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).

    FireDaemon Pro - Advanced Tab
  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 HLDS.

    FireDaemon Pro - Dependencies Tab
  9. Now click on the Install button to install and start CS CZ!

    Counter-Strike: Condition Zero Server Console
Below is an example server.cfg file:

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

// rcon passsword
rcon_password "CHANGEME"

// server cvars
mp_friendlyfire 0
mp_footsteps 1
mp_autoteambalance 1
mp_autokick 0
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 65

// 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 25000
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

// RCON Protection
sv_rcon_banpenalty 60
sv_rcon_maxfailures 10
sv_rcon_minfailures 5
sv_rcon_minfailuretime 45

// execute ban files
exec banned_user.cfg
exec banned_ip.cfg

Last edited by Jordan; 22nd July 2010 at 10:25 PM.
Reply With Quote
Reply

Bookmarks

Tags
condition, counterstrike

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 10:31 PM.


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

[Close]