Advertisement
Brenner650

installarma3server

Sep 1st, 2022
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 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 /p login=Steam Login:
  8. echo.
  9. set /p pass=Steam Pass:
  10. echo.
  11. SET A3serverBRANCH=233780 -beta
  12. :: For stable use 233780 -beta
  13. :: For Dev use 233780 -beta development
  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=D:\Server\Arma
  18. SET STEAMPATH="D:\Install\steamcmd"
  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 +force_install_dir %A3serverPath% +login %login% %pass% +"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
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement