Quote:
Originally Posted by pakrat2k2
get rid of first -lc8 & depending on whose script your using the arc.ini must be included as well. so it knows what values to use for compression / decompression.
|
This is the bat file:
Code:
@echo off
Title Compressor for Blackbox Script - by AliEN
echo *******************************************************************************
echo * Freearc+Precomp+Srep Compressor for Blackbox Script *
echo * Don't forget. Open this file with notepad. *
echo * Change C:/* to your files directory. Example: C:/Folder/* *
echo * By AliEN *
echo *******************************************************************************
pause
@echo Working Arc+Precomp+Srep+Arc again
arc a -lc8 -ep1 -ed -r -w.\ Data\Setup-1.bin -mprecomp+srep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8 "C:\Users\Allen\Desktop\v3"
@echo Finished.
pause
This is the arc.ini file:
Code:
[External compressor:srep]
header = 0
packcmd = srep {options} -m3f $$arcdatafile$$.tmp $$arcpackedfile$$.tmp
unpackcmd = srep -d -s $$arcpackedfile$$.tmp $$arcdatafile$$.tmp
[External compressor:precomp]
header = 0
packcmd = precomp -intense0 -cn- {options} -o$$arcpackedfile$$.tmp $$arcdatafile$$.tmp
unpackcmd = precomp -o$$arcdatafile$$.tmp -r $$arcpackedfile$$.tmp
Thank you for the help !!!