|
|
|
#1
|
||||
|
||||
|
Quote:
ex: encode: 16 (Threads) decode: 16, 8, 6, 4, 2, ... if any user has entered an invalid value for the decoding threads, i'll improve MTX so that it can be corrected by MTX itself in a future update. (since i'm a bit busy, give me some time for that )in the meantime you can test out the beta version of new RazorX. i've used 50p for encoding and 100p for decoding. although this is usually invalid, it's automatically corrected by RazorX. Code:
[External compressor:rzmt] header = 0 packcmd = RazorX.exe a -c:64m -t:50p $$arcdatafile$$.tmp $$arcpackedfile$$.tmp unpackcmd = RazorX.exe x -t:100p - - <stdin> <stdout> . Last edited by BLACKFIRE69; 24-07-2022 at 22:54. |
| The Following User Says Thank You to BLACKFIRE69 For This Useful Post: | ||
Gehrman (02-04-2022) | ||
| Sponsored Links |
|
#2
|
||||
|
||||
|
Quote:
Me and KaktoR were doing tests with RAZOR MTX. The configuration used was: Code:
packcmd = MTX.exe a -m:rz {option} -c:64m -t:100p - - <stdin> <stdout>
unpackcmd = MTX.exe x -m:rz {option} -t:100p - - <stdin> <stdout>
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. I know I could set it to t2 for extraction, but that loses the meaning of being multi threaded (use only 2 of 24). The workaround is to set it to 100p use send thread number (get from system) as method parameter and when extract use {option} to set -t parameter. Thanks for answering! |
|
#3
|
||||
|
||||
|
Quote:
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> KaktoR can use it to encode as, Code:
packcmd = RazorX.exe a -c:64m -t:100p $$arcdatafile$$.tmp $$arcpackedfile$$.tmp Code:
unpackcmd = RazorX.exe x -t:100p - - <stdin> <stdout> |
| The Following 2 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
Cesar82 (03-04-2022), RAZ0R12911 (18-05-2023) | ||
|
#4
|
||||
|
||||
|
Update!
Code:
USAGE:
[External compressor:zstdmt,zstdx,mtx_zstd]
header = 0
default = -t100p --basePath=".\..\..\" --cfgfile="$basePath$\arc.ini"
packcmd = MTX\Win64\MTX64.exe a -mzstd64 -c128m {option} $$arcdatafile$$.tmp $$arcpackedfile$$.tmp
unpackcmd = MTX\Win64\MTX64.exe x -mzstd64 {option} $$arcpackedfile$$.tmp $$arcdatafile$$.tmp
[External compressor:zstdmt,zstdx,mtx_zstd]
header = 0
default = --basePath=".\..\..\" --cfgfile="$basePath$\arc.ini"
packcmd = MTX\Win64\MTX64.exe a -mzstd64 -c128m -t8 {option} $$arcdatafile$$.tmp $$arcpackedfile$$.tmp
unpackcmd = MTX\Win64\MTX64.exe x -mzstd64 -t8 {option} $$arcpackedfile$$.tmp $$arcdatafile$$.tmp
[External compressor:zstdmt,zstdx,mtx_zstd]
header = 0
default = --basePath=".\..\..\" --cfgfile="$basePath$\arc.ini"
packcmd = MTX\Win64\MTX64.exe a -mzstd64 -c128m -t4 {option} $$arcdatafile$$.tmp $$arcpackedfile$$.tmp
unpackcmd = MTX\Win64\MTX64.exe x -mzstd64 -t8 {option} $$arcpackedfile$$.tmp $$arcdatafile$$.tmp
Last edited by BLACKFIRE69; 21-06-2026 at 05:03. |
| The Following 4 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
|
#5
|
||||
|
||||
|
MTX v5.0.0.3 beta Update 1
Code:
-- Fixed a minor issue. MTX v5.0.0.3_beta Update 01 _ 64-Bit.rar |
| The Following 2 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
Cesar82 (17-07-2022), RAZ0R12911 (18-05-2023) | ||
|
#6
|
||||
|
||||
|
Code:
1. Created MTX2023 from scratch and optimized for speed and efficiency. - As a result, it isn't compatible with any previous versions. 2. The bugs experienced in previous versions have been addressed and fixed. 3. MTX can handle scenarios where the #userThreads > #compressionThreads. 4. Simultaneous reading and writing of data takes place. - Previous versions required extra waiting time that's no longer necessary in this version. - Make sure to specify the '-ds' parameter with the 'arc.exe a'. (arc.exe a -ds ...) Code:
Remark: 1. '--TempPath=' parameter has been removed. - Tmp files will now be created in the freearc temp dir instead. 2. '%' sign has been removed from threads (100%). 3. Support for "MTX32.ini" and "MTX64.ini" files has been discontinued. 4. There won't be a 32-bit version of MTX. Code:
1. Recommended setting (stdio mode) but no info will be displayed.
packcmd = MTX64.exe a -mNz64 -c32m {options} - - <stdin> <stdout>
unpackcmd = MTX64.exe x -mNz64 {options} - - <stdin> <stdout>
2. Info will only be displayed for packing.
packcmd = MTX64.exe a -mNz64 -c32m {options} - $$arcpackedfile$$.tmp <stdin>
unpackcmd = MTX64.exe x -mNz64 {options} - - <stdin> <stdout>
3. Info will only be displayed for unpacking.
packcmd = MTX64.exe a -mNz64 -c32m {options} - - <stdin> <stdout>
unpackcmd = MTX64.exe x -mNz64 {options} - $$arcdatafile$$.tmp <stdin>
4. Info will be displayed for both packing and unpacking.
packcmd = MTX64.exe a -mNz64 -c32m {options} - $$arcpackedfile$$.tmp <stdin>
unpackcmd = MTX64.exe x -mNz64 {options} - $$arcdatafile$$.tmp <stdin>
. Last edited by BLACKFIRE69; 21-06-2026 at 05:04. |
|
#7
|
||||
|
||||
|
Quote:
|
|
#8
|
||||
|
||||
|
Quote:
The MTX project has been rebooted, and it is now starting from version 0.1. The new version of MTX is compatible with both cls-diskspan.dll and DiskSpan-GUI. The first post has been updated. . Last edited by BLACKFIRE69; 21-06-2026 at 05:04. |
| The Following User Says Thank You to BLACKFIRE69 For This Useful Post: | ||
Cesar82 (20-09-2023) | ||
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| XLolz - Lolz Accelerator | BLACKFIRE69 | Conversion Tutorials | 17 | 28-09-2022 14:24 |
| Universal Accelerator - cls-mtx.dll | BLACKFIRE69 | Conversion Tutorials | 60 | 12-07-2022 14:44 |
| New Universal Extractor By DLG | felice2011 | Conversion Tutorials | 5 | 30-12-2018 04:16 |
| Universal CLS Generator | 78372 | Conversion Tutorials | 57 | 30-01-2018 04:04 |
| CheatEngine Universal Game Cracker All Games 2014 | sillywalks | PC Games | 1 | 01-12-2014 12:24 |