DayZ-Private-Server
DayZ-Private-Server copied to clipboard
Include Arma 2 OA Beta in Update Server
the file start_Server.bat
references the the Arma2OAServer.exe
of the beta version by default.
I suggest to change the update_server.bat
to download Arma 2 Operation Arrowhead Beta (Obsolete) too.
Could be done with this line of code:
steamcmd +login "%STEAM_USERNAME%" "%STEAM_PASSWORD%" +force_install_dir "%STEAM_DIR%" +app_update "219540" validate +quit
new update_server.bat
:
@ECHO OFF
SET STEAM_DIR=D:\Server\DayZVanillaServer
SET STEAM_USERNAME=STEAM_USERNAME
SET STEAM_PASSWORD=STEAM_PASSWORD
ECHO Downloading ArmA 2...
steamcmd +login "%STEAM_USERNAME%" "%STEAM_PASSWORD%" +force_install_dir "%STEAM_DIR%" +app_update "33910" validate +quit
ECHO Finished!
ECHO.
ECHO Downloading ArmA 2: Operation Arrowhead...
steamcmd +login "%STEAM_USERNAME%" "%STEAM_PASSWORD%" +force_install_dir "%STEAM_DIR%" +app_update "33930" validate +quit
ECHO Finished!
ECHO.
ECHO Downloading ArmA 2: Operation Arrowhead Beta (Obsolete)...
steamcmd +login "%STEAM_USERNAME%" "%STEAM_PASSWORD%" +force_install_dir "%STEAM_DIR%" +app_update "219540" validate +quit
ECHO Finished!
PAUSE