View Single Post
  #72  
Old 06-09-2012, 05:37
The-revenge The-revenge is offline
Registered User
 
Join Date: May 2008
Location: Italy
Posts: 144
Thanks: 19
Thanked 4 Times in 4 Posts
The-revenge is on a distinguished road
I only edited "fra" to "ita".
Of course I have moved the new setup.exe in Disk1.

There are the original COMPRESS_FRA :
Code:
echo off
cls
set choice1=
echo.
set /p choice1=Please type game folder path (e.g. c:\program files\Mass Effect 3):
echo.
echo Creating archive files, please wait...
arc a -ep -w.\ .\Disk2\Data8.bin -mprecomp:zl68:d0+srep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8 "%choice1%\BIOGame\CookedPCConsole\*_fra*.pcc"
if ERRORLEVEL 1 goto arcfail
arc a -ep -w.\ .\Disk2\Data9.bin -msrep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8 "%choice1%\BIOGame\CookedPCConsole\*_fra*.afc"
if ERRORLEVEL 1 goto arcfail
echo.All done.
pause
goto EOF
:arcfail
echo.
echo.WARNING: FreeArc returns an error, please retry... 
pause
:EOF
There are the edited compress_FRA for ita file :
Code:
echo off
cls
set choice1=
echo.
set /p choice1=Please type game folder path (e.g. c:\program files\Mass Effect 3):
echo.
echo Creating archive files, please wait...
arc a -ep -w.\ .\Disk2\Data8.bin -mprecomp:zl68:d0+srep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8 "%choice1%\BIOGame\CookedPCConsole\*_ita*.pcc"
if ERRORLEVEL 1 goto arcfail
arc a -ep -w.\ .\Disk2\Data9.bin -msrep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8 "%choice1%\BIOGame\CookedPCConsole\*_ita*.afc"
if ERRORLEVEL 1 goto arcfail
echo.All done.
pause
goto EOF
:arcfail
echo.
echo.WARNING: FreeArc returns an error, please retry... 
pause
:EOF

Last edited by The-revenge; 06-09-2012 at 05:56.
Reply With Quote