i'm a little confused here, i tried moving my steam folder to different places to get this to work, but it keeps saying "cannont find C:\Steam\steamapps\myusername\source" when the whole folder is C:\steam\steamapps\mysuername\source dedicated server\srcds.exe. I'm trying to get this for hl2dm. can someone please help!!!!
My Batch File looks like this: (I did change the directory)
::=======================::
:: SRCDS Guardian ::
:: Black-Sky ::
:: Drocona ::
::=======================::
::This will make the window clear, remove all paths etc, just to keep the important stuff
@echo off
::Give a name to the window, nothing really important.
title SRCDS Guardian by Drocona, Black-Sky
::Clear the window
cls
::Report to console what we are doing
echo ****To close this script, close the SRCDS window and type "Y"****
echo.
echo.
echo Watching the SRCDS for crashes
>> Guardian.log echo.
>> Guardian.log echo (%date%)(%time%) Started up SRCDS Guardian.
::If you are using the FPSbooster use this to start it up
echo.
echo (%date%)(%time%) Starting FPSbooster.
>> Guardian.log echo (%date%)(%time%) Starting FPSbooster.
start C:\SRCDS\srcdsfpsboost.exe
echo (%date%)(%time%) FPSbooster online.
>> Guardian.log echo (%date%)(%time%) FPSbooster online
::Insert a return point if it crashes
:srcds
echo (%date%)(%time%) SRCDS online.
>> Guardian.log echo (%date%)(%time%) SRCDS online.
::Start the actual server
start /wait C:\scrds\srcds.exe = -console -game hl2dm -tickrate 45 -ip 192.168.1.3 -port 27015 -maxplayers 20 +map bfcs_lobby_v2 +mp_dynamicpricing 0 +sv_Cheats 1 +sv_infinite_aux_power 1 +mp_flashlight 1
echo (%date%)(%time%) Server crashed or closed, restarting...
>> Guardian.log echo (%date%)(%time%) Server crashed or closed, restarting...
::Server crashed or closed, so we point it to the return point to start the server again
goto srcds
My Batch File looks like this: (I did change the directory)
::=======================::
:: SRCDS Guardian ::
:: Black-Sky ::
:: Drocona ::
::=======================::
::This will make the window clear, remove all paths etc, just to keep the important stuff
@echo off
::Give a name to the window, nothing really important.
title SRCDS Guardian by Drocona, Black-Sky
::Clear the window
cls
::Report to console what we are doing
echo ****To close this script, close the SRCDS window and type "Y"****
echo.
echo.
echo Watching the SRCDS for crashes
>> Guardian.log echo.
>> Guardian.log echo (%date%)(%time%) Started up SRCDS Guardian.
::If you are using the FPSbooster use this to start it up
echo.
echo (%date%)(%time%) Starting FPSbooster.
>> Guardian.log echo (%date%)(%time%) Starting FPSbooster.
start C:\SRCDS\srcdsfpsboost.exe
echo (%date%)(%time%) FPSbooster online.
>> Guardian.log echo (%date%)(%time%) FPSbooster online
::Insert a return point if it crashes
:srcds
echo (%date%)(%time%) SRCDS online.
>> Guardian.log echo (%date%)(%time%) SRCDS online.
::Start the actual server
start /wait C:\scrds\srcds.exe = -console -game hl2dm -tickrate 45 -ip 192.168.1.3 -port 27015 -maxplayers 20 +map bfcs_lobby_v2 +mp_dynamicpricing 0 +sv_Cheats 1 +sv_infinite_aux_power 1 +mp_flashlight 1
echo (%date%)(%time%) Server crashed or closed, restarting...
>> Guardian.log echo (%date%)(%time%) Server crashed or closed, restarting...
::Server crashed or closed, so we point it to the return point to start the server again
goto srcds