
18-07-2020, 06:03
|
 |
Registered User
|
|
Join Date: Mar 2019
Location: In the Hell
Posts: 701
Thanks: 486
Thanked 2,610 Times in 574 Posts
|
|
Quote:
Originally Posted by Masquerade
Yes, I already know this.
I have it this way, let me show an example:
Code:
Folder
---------> Binaries
| - - - - - - - - ->Arc.exe
| - - - - - - - - ->Arc.ini
| - - - - - - - - ->cls-mtx.dll
| - - - - - - - - ->rz.exe
| - - - - - - - - ->Pack.bat
|
----------> Alt
- - - - - - - - - ->Pack2.bat
Now, Pack2.bat is set to run arc.exe inside the binaries folder:
Code:
@echo off
..\Binaries\Arc a -wTemp -mmtx:c64m:t16:rz (as well as the input output files)
But if we run this, we get uknown method error from mtx.
If we run pack.bat inside the binaries folder, it runs normally. Arc.ini is written correctly. Other cls based compressors like bpk work just fine.
|
@Masquerade,
this may work as expected
_pack.bat :-
Quote:
@echo off
cd /d "Binaries"
arc.exe a -ep1 -r -ed -s; -w.\temp -m=mtx:c64m:t4:rz ..\Packed\Data5.bf "Pack5\*"
pause&exit
|
Last edited by BLACKFIRE69; 18-07-2020 at 06:05.
|