Css Server startet nicht neu (win root server)

ice76

New Member
moin moin meine lieben !

Ich habe ein windows server 2008 .

Ich habe mir ein CSS Server eingerichtet port, slot usw ist alles ok

Aber wenn ich über hlsw den game server neu starte , kommt er nicht wieder online ..

ich muss wieder auf mein root und den wieder online stzen.

was muss ich im parameta ein geben wenn ich ihn neu starten will.

oder muss ich ein script haben ????

Bitte um infos....

ThX

lg

ice

ps. Google konnte mir nicht ein antwort drauf geben. :mad:
 
Für Windows Server brauchst du ein Script um den Server automatisch neu starten zu lassen.
Ich habe das hier gefunden, den Pfad zu deiner scrds.exe musst du natürlich noch anpassen.
Code:
::=======================::
::    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.


::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 F:\SRCDS\srcds.exe -console -game cstrike -tickrate 45 -ip 192.168.0.81 -port 27015 -maxplayers 10 +map de_dust2 +mp_dynamicpricing 0


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
 

Attachments

Back
Top