Advertisement
secondcoming

Untitled

Apr 28th, 2016
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. @echo off
  2. @rem http://media.steampowered.com/installer/steamcmd.zip
  3. SETLOCAL ENABLEDELAYEDEXPANSION
  4.  
  5. :: DEFINE the following variables where applicable to your install
  6.  
  7. SET STEAMLOGIN=steamusername steampassword
  8. SET A3serverBRANCH=233780
  9. :: For stable use 233780 -beta
  10. :: For Dev use 233780 -beta development
  11. :: Note, the missing qotation marks, these need to be wrapped around the entire "+app_data......"
  12. :: There is no DEV branch data yet for Arma 3 Dedicated Server package !!!
  13.  
  14. SET A3serverPath=F:\A3server\
  15. SET STEAMPATH=F:\Apps\Steam
  16.  
  17.  
  18. :: _________________________________________________________
  19.  
  20. echo.
  21. echo You are about to update ArmA 3 server
  22. echo Dir: %A3serverPath%
  23. echo Branch: %A3serverBRANCH%
  24. echo.
  25. echo Key "ENTER" to proceed
  26. pause
  27. %STEAMPATH%\steamcmd.exe +login %STEAMLOGIN% +force_install_dir %A3serverPath% +"app_update %A3serverBRANCH%" validate +quit
  28. echo .
  29. echo Your ArmA 3 server is now up to date
  30. echo key "ENTER" to exit
  31. pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement