Advertisement
Guest User

bat

a guest
May 28th, 2015
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. @echo off
  2. echo ===============================
  3. echo EU46 Server Join Batch
  4. echo --------------------------------
  5. echo Author: Snow [AGS]
  6. echo ===============================
  7. echo JOINING SERVER IN .....
  8. timeout 0
  9.  
  10. ::===============================================================================================================================================
  11. ::Configuration| Edit these to the proper file paths ==============================================================================================================================================
  12. ::---> ===============================================================================================================================================
  13. :: YOUR Arma 2 Operation Arrowhead Directory
  14. set arma2oapath=C:\Program Files (x86)\Steam\steamapps\common\Arma 2 Operation Arrowhead
  15. :: YOUR Arma 2 Directory
  16. set arma2path=C:\Program Files (x86)\Steam\steamapps\common\Arma 2
  17. :: Server IP
  18. set IP=119.252.189.45
  19. :: Server Port
  20. set PORT=2402
  21. :: Required Mods [ Ex. @DayZ_Epoch;@DayZ_Namalsk ]
  22. set MODS=@DayZ_Epoch;
  23. ::---> ===============================================================================================================================================
  24.  
  25.  
  26. ::===============================================================================================================================================
  27. :: DO NOT EDIT ANYTHING BELLOW THIS LINE OR YOU WILL BREAK THIS FILE ==============================================================================================================================================
  28. ::===============================================================================================================================================
  29.  
  30.  
  31. start "" "%arma2oapath%\ArmA2OA_BE.exe" 0 0 -skipintro -mod=%MODS% -noSplash -noFilePatching -nologs -cpuCount=4 -maxMem=2048 -noPause -world=empty -connect=%IP% -port=%PORT% "-mod=%arma2path%;expansion;"
  32.  
  33. @exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement