View Single Post
  #126  
Old 04-01-2021, 07:56
Ele's Avatar
Ele Ele is offline
Registered User
 
Join Date: Nov 2020
Location: Near Mars
Posts: 93
Thanks: 89
Thanked 96 Times in 37 Posts
Ele is on a distinguished road
Quote:
Originally Posted by Epic Titan 69 View Post
Thanks Man that worked but what does 300mb means??
Moreover am facing an issue
can u do a video on how to compress.......... PLZZZZ
My friend,
Razor12911's DiskSpan is the replacement for UltraARC. It allows to split Freearc archives into parts.

For more info, click here

Example:
Assume the compressed archive is 756mb "dataOne.bf". When you use "diskspan: 300mb" it splits "dataOne.bf" into three parts:

Code:
"dataOne-1.bf" (300mb)
"dataOne-2.bf" (300mb)
"dataOne-3.bf" (156mb) <= Total is 756MB
The commandline should be as follows. (Output for DiskSpan is dataOne-1.bf [not dataOne.bf])
Code:
bin\arc.exe a .... Output\dataOne-1.bf -m=xtool+srep+lolz+diskspan:300mb "Pack\*"
You don't need to add all three of these parts to "Compiler.ini". Mention only the first part (dataOne-1.bf). The script will recognize everything.
Code:
[Datas]
Data1=dataOne-1.bf
;Data2=data2.bf
;Data3=data3.cpi
;Data4=data4.cpi

; Data5, Data6 ...
-------------------------------------------------------------------------------------

let's move on to the next case.

If you've separated the game files, assume that you have put that separated files in three folders (Pack1, Pack2 and Pack3). Archive is now "dataOne.bf", "dataTwo.bf" and "dataThree.bf" respectively. Now you need to use "diskspan" in these three archives.

How can you do that? Use the following three command lines.

Code:
bin\arc.exe a .... Output\dataOne-1.bf -m=xtool+srep+lolz+diskspan:300mb "Pack1\*"
bin\arc.exe a .... Output\dataTwo-1.bf -m=xtool+srep+lolz+diskspan:300mb "Pack2\*"
bin\arc.exe a .... Output\dataThree-1.bf -m=xtool+srep+lolz+diskspan:300mb "Pack3\*"

Now, the "Compiler.ini" is
Code:
[Datas]
Data1=dataOne-1.bf
Data2=dataTwo-1.bf
Data3=dataThree-1.bf
;Data4=data4.cpi

; Data5, Data6 ...

-------------------------------------------------------------------------------------

If you're interested in the "MiniShot compressor", I also found an alpha update. I will attach it below.
Attached Images
File Type: png 1.png (26.7 KB, 175 views)
File Type: png 2.png (394.5 KB, 174 views)
File Type: png 3.png (383.1 KB, 178 views)
Attached Files
File Type: rar MiniShot - alpha Update.rar (2.27 MB, 127 views)
Reply With Quote
The Following User Says Thank You to Ele For This Useful Post:
Epic Titan 69 (04-01-2021)