HL2CTF LINUX BUILD PROCEDURE

6 downloads 101 Views 56KB Size Report
BASIC HL2CTF 2.0 DEDICATED SERVER SETUP. Episode 1 Source SDK 2006. SETUP OF A HL2CTF 2.0 WINDOWS DEDICATED SERVER. *Your server's ...
BASIC HL2CTF 2.0 DEDICATED SERVER SETUP Episode 1 Source SDK 2006 SETUP OF A HL2CTF 2.0 WINDOWS DEDICATED SERVER *Your server's CPU must support the SSE2 instruction set.

Replace C: in the following instructions with your dedicated server's drive letter. 1. Download the Windows SRCDS Tool to your favorite download folder or the desktop: http://www.steampowered.com/download/hldsupdatetool.exe • In Explorer, select the drive you want to install your server: ie. Drive C: • Create a new /srcds folder off the root ie. C:\srcds

2. Locate and run the hldsupdatetool.exe you downloaded above and point the installer to the new C:/srcds folder you just created. You will then have a new HldsUpdateTool.exe in your /srcds folder along with a Readme, Install Log and the UNWISE Uninstaller. From the Windows Start Menu, open the Command Prompt and type the following: • C: • cd\srcds • hldsupdatetool -command update -game "episode1" -dir C:\srcds

After all of the episode 1 (2006 SDK) files have downloaded, extract the latest HL2CTF zip (with folders) into your C:\srcds folder which will create the \hl2ctf folder. Edit the c:\srcds\hl2ctf\cfg\server.cfg and start your HL2CTF server as follows: c:\srcds\srcds.exe -console -game hl2ctf +maxplayers 16 +map ctf_floodzone -autoupdate

SETUP OF A HL2CTF 2.0 LINUX DEDICATED SERVER *Your server's CPU must support the SSE2 instruction set.

• • • • • •

mkdir srcds_l cd srcds_l wget http://www.steampowered.com/download/hldsupdatetool.bin chmod +x hldsupdatetool.bin ./hldsupdatetool.bin ./steam

After the update to the steam binary, run the following to download the server files. ./steam -command update -game "episode1" -dir .

After all of the episode 1 (2006 SDK) files have downloaded, extract the latest HL2CTF zip into your /srcds_l folder which will create the /hl2ctf folder. Edit the /srcds_l/hl2ctf/cfg/server.cfg and start your HL2CTF server as follows: ./srcds_run -console -game hl2ctf +maxplayers 16 +map ctf_floodzone -autoupdate

If the server is running without error, press CONTROL+C to stop and create a file named hl2ctf_server.sh (ie. touch hl2ctf_server.sh) and edit the file with the following script: #!/bin/sh echo "Starting HL2CTF Server" sleep 1 screen -A -m -d -S hl2ctf-server ./srcds_run -console -game hl2ctf +maxplayers 16 +map ctf_floodzone -autoupdate

Suggest Documents