Open stevenpi opened 6 years ago
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.
start_Server.bat
Arma2OAServer.exe
update_server.bat
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
the file
start_Server.bat
references the theArma2OAServer.exe
of the beta version by default. I suggest to change theupdate_server.bat
to download Arma 2 Operation Arrowhead Beta (Obsolete) too.Could be done with this line of code:
new
update_server.bat
: