Skip to content

Instantly share code, notes, and snippets.

@coldnebo
Last active December 22, 2015 13:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coldnebo/6481986 to your computer and use it in GitHub Desktop.
Save coldnebo/6481986 to your computer and use it in GitHub Desktop.
ARMA stuff
set "STEAMHOME=F:\games\steam\steamapps\common"
rem =========================== mods =========================
rem Latest mod versions as of 10/16/2013:
rem CBA*: Community Base Addons CBA_v1.0.0pre10.7z: http://dev-heaven.net/attachments/download/19512/CBA_v1.0.0pre10.7z
rem ASR_AI: Improved AI @ASR_AI_v1_16_1.7z: http://www.armaholic.com/page.php?id=12105&a=dl
rem ACEX_SM: Improved Sound Effects @ACEX_SM_v1.13.0.100.7z: http://www.armaholic.com/page.php?id=12160&a=dl
rem Blastcore: Better Explosions @Blastcore_Visuals_R1.2.rar: http://www.armaholic.com/page.php?id=12975&a=dl
rem sthud: Situational Awareness 121209_sthud_islandfree.7z: http://www.armaholic.com/page.php?id=9936&a=dl
rem *latest that works with Steam reliably
rem ----------------------------------------------------------
rem INSTALL MODS TO "%STEAMHOME%\arma 2 operation arrowhead"
rem set CUSTOM_MODS to blank if you don't have/want any mods
set "CUSTOM_MODS=@CBA;@CBA_A2;@CBA_OA;@ASR_AI;@ACEX_SM;@Blastcore_Visuals_R1.2;@sthud"
set "ARMA2=%STEAMHOME%\arma 2"
set "ARMA2OA=%STEAMHOME%\arma 2 operation arrowhead"
"%ARMA2OA%\ArmA2OA.exe" "-nosplash" "-mod=%ARMA2%;%ARMA2OA%\Expansion;%ARMA2OA%\PMC" "-mod=@mod;%CUSTOM_MODS%"
set "STEAMHOME=F:\games\steam\steamapps\common"
rem ============== mods =====================================
rem Latest mod versions as of 10/16/2013:
rem CBA_A3: Community Base Addons CBA_A3_beta4.7z: https://dev-heaven.net/attachments/download/20793/CBA_A3_beta4.7z
rem ASR_A3: Improved AI asr_addons_13081701.zip: http://arma-sr.bzbit.com/wp-content/uploads/2013/08/asr_addons_13081701.zip
rem sthud: Situational Awareness 130307_sthud_a3_v1.7z: https://dev-heaven.net/attachments/download/20270/130307_sthud_a3_v1.7z
rem ----------------------------------------------------------
rem INSTALL MODS TO "%STEAMHOME%\Arma 3"
rem set CUSTOM_MODS to blank if you don't have/want any mods
set "CUSTOM_MODS=@CBA_A3;@ASR_A3;@ASR_AI;@sthud"
rem ================ AllInArma 3 ============================
rem AIA lets you use ARMA assets from previous games in ARMA3.
rem this mod requires some config, so it has a separate section and var.
rem AllInArma: https://dev-heaven.net/attachments/download/21104/AllInArma_2013_10_07_v18.7z
rem ---------------------------------------------------------
rem set USEAIA to 1 if using @AllInArma mod to load previous Arma resources as defined above
rem or leave empty if you don't want to load that.
set "USEAIA="
rem ========================= all in arma setup ===========================
set "ARMA1="
set "ARMA2=%STEAMHOME%\arma 2"
set "ARMA2OA=%STEAMHOME%\arma 2 operation arrowhead"
set "ARMA3=%STEAMHOME%\Arma 3"
set "TAKOH="
if not "%ARMA1%" == "" (
set "A1PART=%ARMA1%\DBE1;%ARMA1%"
)
if not "%ARMA2OA%" == "" (
set "A2OAPART=%ARMA2OA%;%ARMA2OA%\Expansion"
)
if not "%USEAIA%" == "" (
set "MODPART=%CUSTOM_MODS%;@AllInArma\ProductDummies;%A1PART%;@AllInArma\A1Dummies;%ARMA2%;%A2OAPART%;%TAKOH%;@A1A2ObjectMerge;%ARMA3%;@AllInArma\Core;@AllInArma\PostA3"
) else (
set "MODPART=%CUSTOM_MODS%"
)
"%ARMA3%\arma3.exe" "-nosplash" "-mod=%MODPART%"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment