1. updating the graphic drivers.
2. Also running the "Launch Iron Front in Arma 2 CO 1.63 - Automated.bat" file to load the game with the correct parameters. The batch file can be downloaded here: http://dev.withsix.com/attachments/down ... omated.bat
In case the download doesn´t work anymore you can create the file by adding the following lines in a texteditor and save it as "Launch Iron Front in Arma 2 CO 1.63 - Automated.bat", or whatever filename you like but the file must end with ".bat":
Code: Select all
rem
rem Define your additional modfolders
rem
set _CUSTOM_MODS=@CBA_CO
rem
rem Adjust your parameters
rem
set _DEFAULT_PARAMETERS=-nosplash
rem -nosplash -skipintro -world=empty -noFilePatching
set _DEVELOPMENT_PARAMTERS=
rem -window -showScriptErrors
set _PROFILE_PARAMETERS=
rem "-profiles=%_ARMA2OA_PATH%" "-name=UserName"
rem ///////////////////////////////////////////////////////////////////////////
rem
rem DONT MODIFY ANYTHING BELOW
rem
rem ///////////////////////////////////////////////////////////////////////////
rem Find A2
for /F "Tokens=2* skip=2" %%A In ('REG QUERY "HKLM\SOFTWARE\Wow6432Node\Bohemia Interactive Studio\ArmA 2" /v "MAIN"') do (set _FOUNDPATH_A2=%%B)
if defined _FOUNDPATH_A2 goto found_A2
for /F "Tokens=2* skip=2" %%A In ('REG QUERY "HKLM\SOFTWARE\Bohemia Interactive Studio\ArmA 2" /v "MAIN"') do (set _FOUNDPATH_A2=%%B)
if defined _FOUNDPATH_A2 goto found_A2
:found_A2
set _ARMA2_PATH=%_FOUNDPATH_A2%
rem Find OA
for /F "Tokens=2* skip=2" %%A In ('REG QUERY "HKLM\SOFTWARE\Wow6432Node\Bohemia Interactive Studio\ArmA 2 OA" /v "MAIN"') do (set _FOUNDPATH_OA=%%B)
if defined _FOUNDPATH_OA goto found_OA
for /F "Tokens=2* skip=2" %%A In ('REG QUERY "HKLM\SOFTWARE\Bohemia Interactive Studio\ArmA 2 OA" /v "MAIN"') do (set _FOUNDPATH_OA=%%B)
if defined _FOUNDPATH_OA goto found_OA
:found_OA
set _ARMA2OA_PATH=%_FOUNDPATH_OA%
rem ///////////////////////////////////////////////////////////////////////////
cd /D "%_ARMA2OA_PATH%"
arma2oa.exe %_DEFAULT_PARAMETERS% %_DEVELOPMENT_PARAMTERS% %_PROFILE_PARAMETERS% "-mod=%_CUSTOM_MODS%;@LIB_DLC_1;@IF_Other_Addons;@IF;%_ARMA2_PATH%;%_ARMA2OA_PATH%;%_ARMA2OA_PATH%\Expansion"
exit