Advertisement
secondcoming

Untitled

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