Quote:
Originally Posted by Cesar82
As his processor is 6/12 and my processor is 12/24
If it compressed and sent me the file I couldn't extract it because it would have been compressed using 12 threads and I would extract using 24 threads.
So if you make a game backup and upgrade the CPU to one with more threads, there will be an extraction error.
|
that won't happen in the next update of MTX. checkout the RazorX beta above,
the following config works without any problems.
Code:
[External compressor:rzmt]
header = 0
packcmd = RazorX.exe a -c:64m -t:12 $$arcdatafile$$.tmp $$arcpackedfile$$.tmp
unpackcmd = RazorX.exe x -t:24 - - <stdin> <stdout>
OR
KaktoR can use it to encode as,
Code:
packcmd = RazorX.exe a -c:64m -t:100p $$arcdatafile$$.tmp $$arcpackedfile$$.tmp
also,
cesar you can use the same to decode, -t:100p
Code:
unpackcmd = RazorX.exe x -t:100p - - <stdin> <stdout>