Quote:
Originally Posted by KaktoR
packjpg/packmp3 are already included inside MPZ folder.
Maybe the files cause the error (jpg/mp3). Did you try to unpack them with a batch file instead to see if the error comes actually from the script itself?
Yes it is possible, but you could also just move all files you need inside FreeArc folder.
|
Sorry it took me a while to get back to you, but I did a bit of digging and when I was rearranging my Arc.ini in the Installer, I missed out a line causing everything to turn nasty:
Compress:
Code:
[External compressor:packjpg]
header = 0
packcmd = packjpg_x64 -np $$arcdatafile$$.jpg
datafile = $$arcdatafile$$.jpg
packedfile = $$arcdatafile$$.pjg
solid = 0
Unpack Arc.ini
Code:
[External compressor:packjpg]
packcmd = packjpg_x64 -np $$arcdatafile$$.jpg
datafile = $$arcdatafile$$.jpg
packedfile = $$arcdatafile$$.pjg
solid = 0
Added the header = 0 line back and now all is good. Thanks again for the great script.