Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials
Register FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 04-08-2020, 08:22
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,689
Thanks: 1,106
Thanked 7,337 Times in 2,839 Posts
KaktoR is on a distinguished road
You have to write the mask groups in lowercase

Code:
$MscSolid => $mscsolid
Don't ask me why, but it works.

precomp is always used by xtool (well, the command precomp, not the tool). You can't call xtool without precomp command (precomp = precompression). That's what xtool is for. You can only change used codecs or options.

For uncompressable files use $void mask group (or your own). Open arc.groups with a text editor and add files to $void mask (by filename (+ subfolder) or by file extension (*.abc). You can define files for every other mask group or make a new group ($groupxyz).
__________________
Haters gonna hate
Reply With Quote
Sponsored Links
  #2  
Old 04-08-2020, 12:43
Atakanbasturk Atakanbasturk is offline
Registered User
 
Join Date: Dec 2012
Location: istanbul
Posts: 7
Thanks: 4
Thanked 0 Times in 0 Posts
Atakanbasturk is on a distinguished road
Quote:
Originally Posted by KaktoR View Post
You have to write the mask groups in lowercase

Code:
$MscSolid => $mscsolid
Don't ask me why, but it works.
Thanks man, it works and perfect. My code will get better in time. I suggest you can write lowercase thing to wiki.

Quote:
Originally Posted by KaktoR View Post
precomp is always used by xtool (well, the command precomp, not the tool). You can't call xtool without precomp command (precomp = precompression). That's what xtool is for. You can only change used codecs or options.
Now I get it. I think precomp option ise precomp.exe build in xtool. Precomp.exe and xtool.exe different precompressors. If I want to use precomp, I will just change xzlib.

Quote:
Originally Posted by KaktoR View Post
For uncompressable files use $void mask group (or your own). Open arc.groups with a text editor and add files to $void mask (by filename (+ subfolder) or by file extension (*.abc). You can define files for every other mask group or make a new group ($groupxyz).
Yeah I did that absolutely but, lowercase thing. Now it stores.
Reply With Quote
  #3  
Old 05-08-2020, 12:35
Atakanbasturk Atakanbasturk is offline
Registered User
 
Join Date: Dec 2012
Location: istanbul
Posts: 7
Thanks: 4
Thanked 0 Times in 0 Posts
Atakanbasturk is on a distinguished road
I'm really sorry but I can't figure it out.

MASK=precomp+srep+7z/$binkpack=bpk/$mscsolid=msc+srep+7z (I tried 7z and 7Z it fails everyway)

msc works, srep works but 7z doesn't work. 7z options in config0.ini(I edited it)

[External compressor:7z,7Z]
header = 0
default = :d192m:fb273:lc4:mc1000000
packcmd = "7z\7z_x64" a -t7z -an -mcrc=0 -m0=lzma:d1536m:mf=bt4:fb=273:mc1000000000:lc8 -mx9 -myx=9 -si -so <stdin> <stdout>

It's not working. But;

4L3 = 4x4:b128mb:lzma:ultra:1536m:bt4:fb273:lc8:mc100000 0000(It uses FAZip)

Or (when I use lzma2)

[External compressor:lzma2,Lzma2]
header = 0
default = :d25:fb=273:mf=bt4:mc=1000000:lc=4:lp=0
packcmd = "7z\7z_x64" a -txz -an -mcrc=0 -m1=lzma2:d1536m:mf=bt4:fb=273:mc1000000 -mmt=off -mx9 -si -so <stdin> <stdout>

Working.

I want 7-zip with lzma method. What's wrong?

(UltraARC 2.9 R8)

NOTE: For your information, when I use these parameters (7z_x64 a -t7z -an -mcrc=0 -m0=lzma:d1536m:mf=bt4:fb=273:mc1000000000:lc8 -mx9 -myx=9) in cmd, it compress any file without any error.


I tried it with DiskSpan, it says Write error(disk full??). I have 160 gb empty space and my game files 5.33 GB.Whaaaatt???

Found the problem's source: It's not accepting -t7z command. Why? How can I use lzma compression method with 7zip in ultraarc?

Last edited by Atakanbasturk; 06-08-2020 at 10:31. Reason: Found real problem...
Reply With Quote
  #4  
Old 06-08-2020, 21:18
devil777's Avatar
devil777 devil777 is offline
Registered User
 
Join Date: May 2019
Location: Let.it.be
Posts: 106
Thanks: 280
Thanked 65 Times in 48 Posts
devil777 is on a distinguished road
Smile

Holdup

Watch how much the 7z.exe weighs (I mean space. It'll be 1.09MB likely for 64bit one. 720KB likely for 32 bit one)

7z.exe for xz(lzma2) isn't the same in size for general 7z patch. In 7z(for xz/lzma2) parameter -txz is used in packaging parameter not -t7z.

Also dude it's written

HTML Code:
packcmd   = 7z.exe a -txz -an -m0=lzma2(:options):fb=273:mf=bt4:mc=100000000:lc=4:lp=0 -mx9 -si -so <stdin> <stdout>
Never used lzma in the place of "lzma2" in the packcmd parameter.it matters a little about what you write in [External compressor] whether it's lmza2 or xz

during compression use or u can say for compression method
HTML Code:
lzma2:d256m:mt2
(Will help you to keep the track about how much directory and multithread you had used for files.but use lzma2 in case of renaming it in External compressor)

#d is directory and of course mt is the thread number

#I had encountered disk error when used "d" more than 128 for 32bit executable.just a reminder tho

That should work fine.with best regards

Last edited by devil777; 06-08-2020 at 21:25.
Reply With Quote
The Following User Says Thank You to devil777 For This Useful Post:
Atakanbasturk (07-08-2020)
  #5  
Old 13-09-2020, 21:31
pratikpatel8982 pratikpatel8982 is offline
Registered User
 
Join Date: Sep 2020
Location: India
Posts: 116
Thanks: 105
Thanked 49 Times in 30 Posts
pratikpatel8982 is on a distinguished road
How can I decompress the archive using inno setup scripts. Sorry but I am noob. I don't know much about scripting. BTW, it would have been better if there was an inbuilt "decompess" option in Ultra Arc.
Reply With Quote
  #6  
Old 14-09-2020, 08:02
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,689
Thanks: 1,106
Thanked 7,337 Times in 2,839 Posts
KaktoR is on a distinguished road
There is. Namely Self-Extractor.
__________________
Haters gonna hate
Reply With Quote
  #7  
Old 06-10-2020, 01:05
Cuttlas's Avatar
Cuttlas Cuttlas is offline
Registered User
 
Join Date: Aug 2020
Location: Near You :)
Posts: 62
Thanks: 19
Thanked 10 Times in 5 Posts
Cuttlas is on a distinguished road
Where to download UltraARC 2900 R8 version?
Reply With Quote
  #8  
Old 06-10-2020, 02:11
mausschieber's Avatar
mausschieber mausschieber is offline
Conversion Designer
 
Join Date: Jan 2011
Location: germany
Posts: 4,331
Thanks: 6,768
Thanked 11,735 Times in 3,239 Posts
mausschieber is on a distinguished road
Quote:
Originally Posted by Cuttlas View Post
Where to download UltraARC 2900 R8 version?
you can download it here under tools
__________________
It would be nice if you appreciate my work with the thanks Button
Reply With Quote
  #9  
Old 06-10-2020, 07:40
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,689
Thanks: 1,106
Thanked 7,337 Times in 2,839 Posts
KaktoR is on a distinguished road
R8 will be the last one only compatible with CIU3.0.0.0u9.

For v3.0.0.1 there will be a whole new version.
__________________
Haters gonna hate
Reply With Quote
The Following User Says Thank You to KaktoR For This Useful Post:
mausschieber (06-10-2020)
  #10  
Old 06-11-2020, 11:55
y_thelastknight's Avatar
y_thelastknight y_thelastknight is offline
Registered User
 
Join Date: Mar 2010
Location: Canada
Posts: 437
Thanks: 616
Thanked 576 Times in 213 Posts
y_thelastknight is on a distinguished road
is there any simple Installer Script that support UltraARC (v2.9.0.0 R6 Final Rev. 30102018) Full ? i get these error every time.
Attached Images
File Type: png asda.png (151.5 KB, 584 views)
File Type: png sadsad.png (16.3 KB, 572 views)
__________________
Glass BB | BlackBox v2 | Portable Installer
Reply With Quote
  #11  
Old 06-11-2020, 12:29
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,689
Thanks: 1,106
Thanked 7,337 Times in 2,839 Posts
KaktoR is on a distinguished road
Well you have to include used compressors in your setup script and let them extract on install step.
__________________
Haters gonna hate
Reply With Quote
  #12  
Old 06-11-2020, 22:13
y_thelastknight's Avatar
y_thelastknight y_thelastknight is offline
Registered User
 
Join Date: Mar 2010
Location: Canada
Posts: 437
Thanks: 616
Thanked 576 Times in 213 Posts
y_thelastknight is on a distinguished road
Quote:
Originally Posted by KaktoR View Post
Well you have to include used compressors in your setup script and let them extract on install step.
what files should i include into the script? i used this script. it support UltraARC Reflate Edition 2800 but not support
i try to replace the files with UltraARC (v2.9.0.0 R6 Final Rev. 30102018) Full but whole files are different. what should i do?
__________________
Glass BB | BlackBox v2 | Portable Installer

Last edited by y_thelastknight; 06-11-2020 at 22:24.
Reply With Quote
  #13  
Old 07-11-2020, 00:43
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,689
Thanks: 1,106
Thanked 7,337 Times in 2,839 Posts
KaktoR is on a distinguished road
If you like it simple, I suggest you this script https://fileforums.com/showthread.php?t=103408

The very latest UltraArc version is already inside.
__________________
Haters gonna hate
Reply With Quote
  #14  
Old 07-11-2020, 03:25
y_thelastknight's Avatar
y_thelastknight y_thelastknight is offline
Registered User
 
Join Date: Mar 2010
Location: Canada
Posts: 437
Thanks: 616
Thanked 576 Times in 213 Posts
y_thelastknight is on a distinguished road
Quote:
Originally Posted by KaktoR View Post
If you like it simple, I suggest you this script https://fileforums.com/showthread.php?t=103408

The very latest UltraArc version is already inside.
thank you very much
__________________
Glass BB | BlackBox v2 | Portable Installer
Reply With Quote
  #15  
Old 27-04-2021, 22:49
pratikpatel8982 pratikpatel8982 is offline
Registered User
 
Join Date: Sep 2020
Location: India
Posts: 116
Thanks: 105
Thanked 49 Times in 30 Posts
pratikpatel8982 is on a distinguished road
How do I use a custom algorithm with ultra arc??
like this:
Code:
pZLib3:m1:c128m:t75p+srep:m3f+lolz:dtb1:tt16:d2047:mc1023
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
BlackBox v2 y_thelastknight Conversion Tutorials 567 11-03-2025 07:16
Useful Dll for Inno Setup users peterf1999 Conversion Tutorials 88 01-12-2017 16:00
Total War Collection - 6xDVD9 [LZMA + INNO SETUP + CIU] REV0 PC Games - CD/DVD Conversions 1 28-06-2015 17:00
Total War Collection - 2xBLURAY [LZMA + INNO SETUP + CIU] REV0 PC Games - CD/DVD Conversions 2 09-01-2013 18:02
Total War Collection - 11xDVD5 [LZMA + INNO SETUP + CIU] REV0 PC Games - CD/DVD Conversions 0 09-01-2013 16:38



All times are GMT -7. The time now is 11:11.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com