Some of you might be aware of SRCDS Guardian 2.0.  It's a clean batch script
to run our SRCDS and auto-restart in the case of a minor crash or exit
command.  I've modified this version for L4D.  Just adjust the command line
as needed.

It's attached to this e-mail as a .txt since gmail wont send batch scripts.
I also made it available on srcds.com

http://forums.srcds.com/viewtopic/8730

~ Matt
::  _   _   _   ___
:: | | | |_| | |   \
:: | | |     | |    |
:: | |  ---  | |  | | SRCDS Guardian
:: | |___  | | |    |  forums.srcds.com
:: |_____| |_| |___/
::

::=======================::
::  SRCDS Guardian 2.0   ::
::  Left 4 Dead Version  ::
::         Mooga         ::
::       srcds.com       ::
::=======================::

::=========================================================::
:: Thanks To Black-Sky & Drocona for making SRCDS Guardian ::
:: This script is open source.  Feel free to edit at will. ::
::                                                         ::
:: This script was writen for the use of the srcds.com     ::
:: online community.  If you are interested in running a   ::
:: Source Dedicated Server or need help, drop by our       ::
:: forums at... http://forums.srcds.com                    ::
::=========================================================::



:: This will keep the window clean and easy to read
@echo off

::=======================::
::  SET YOUR VARIABLES!  ::
::=======================::

::=======================::
::  Window and Log name  ::
::  Replace "My Server"  ::
::=======================::
set servername="Left 4 Dead"

::=======================::
::   Your start command  ::
::=======================::
set runcmd=C:\l4d_demo\l4d_demo\srcds.exe -console -game left4dead -maxplayers 
4 -port 27035 +map l4d_dem_hospital01_apartment -tickrate 66

:: Sets the title of the window
title SRCDS Guardian 2.0   %servername%


:: Clears the window incase there is anything there
cls


:: Prints to the window what we are doing
echo SRCDS Guardian 2.0 has been started!
echo.
echo **************************************************************************
echo To close the server, close this windows and type exit in the server window
echo **************************************************************************
echo.
echo.

>> %servername%_Guardian.log echo.
>> %servername%_Guardian.log echo (%date%)(%time%) SRCDS Guardian 2.0 has been 
>> started!

echo (%date%)(%time%) %servername% is now starting...
>> %servername%_Guardian.log echo (%date%)(%time%) %servername% is now 
>> starting...

:: This is a return point in case the server crashes or is closed
:restart

echo (%date%)(%time%) %servername% is now online
>> %servername%_Guardian.log echo (%date%)(%time%) %servername% is now online

echo Watching %servername% for crashes...
>> %servername%_Guardian.log echo (%date%)(%time%) Watching %servername% for 
>> crashes...

::Start the actual server
start /wait %runcmd%

echo (%date%)(%time%) Crash or Close detected!
>> %servername%_Guardian.log echo (%date%)(%time%) Crash or Close detected!

echo (%date%)(%time%) %servername% is now restarting...
>> %servername%_Guardian.log echo (%date%)(%time%) %servername% is now 
>> restarting...

::Server crashed or closed, so we point it to the return point to start the 
server again
goto restart
_______________________________________________
To unsubscribe, edit your list preferences, or view the list archives, please 
visit:
http://list.valvesoftware.com/mailman/listinfo/hlds

Reply via email to