View Single Post
  #7  
Old 25-08-2013, 12:03
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,043 Times in 3,086 Posts
pakrat2k2 is on a distinguished road
add to arc.ini & in compress.bat for each file ( data#.cab )

-lc1024 -ld1024 ( to reduce memory requirements for the old pc )

IE: arc.ini
Code:
[External compressor:srep]
;options  = l%d (minimal match length, default=512)
header = 0
packcmd   = srep {options} -m3f -l512 -c256 -a4  -lc1024 -ld1024 $$arcdatafile$$.tmp $$arcpackedfile$$.tmp
unpackcmd = srep -d -s -lc1024 -ld1024 $$arcpackedfile$$.tmp $$arcdatafile$$.tmp
compress.bat ( multiple lines )
Code:
arc a -ep1 -r -w.\ -msrep+lzma:a1:mfbt4:d128m:fb128:mc1000:-lc1024 -ld1024
Test to see if it compiles properly first. ( move cabs you've already created elsewhere, then recreate using above changes ) I don't have game to test this out.
Reply With Quote