Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 04-01-2021, 10:22
Epic Titan 69 Epic Titan 69 is offline
Banned
 
Join Date: Dec 2020
Location: In The Hell
Posts: 89
Thanks: 147
Thanked 39 Times in 27 Posts
Epic Titan 69 is on a distinguished road
Quote:
Originally Posted by Ele View Post
DiskSpan is not an essential tool. So you can drop it.Now try the normal method as below (no DiskSpan).

Code:
bin\arc.exe a .... Output\data1.bf -m=xtool+srep+lolz "Pack1\*"
bin\arc.exe a .... Output\data2.bf -m=xtool+srep+lolz "Pack2\*"
bin\arc.exe a .... Output\data3.bf -m=xtool+srep+lolz "Pack3\*"
And Compiler.ini
Code:
[Datas]
Data1=data1.bf
Data2=data2.bf
Data3=data3.bf
Though this solved my 50% problem Thanks......

But again For this i have to divide the game manually in different folders
is there any otherway of doing so i mean choosing the whole folder and the compressor itself divides the games in different parts.............

Last edited by Epic Titan 69; 04-01-2021 at 10:27.
Reply With Quote
Sponsored Links
  #2  
Old 04-01-2021, 10:51
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
Though this solved my 50% problem Thanks......

But again For this i have to divide the game manually in different folders
is there any otherway of doing so i mean choosing the whole folder and the compressor itself divides the games in different parts.............
Of course you can. Using "Arc.groups" you can make FreeArc to select compressors that fit each file type in an entire folder.

Example for
Code:
for *.exe, *dll   <= razor_mtx
for *.pak  <= zlib+srep+lolz
etc.
You can see that "CIU" uses this concept.
Reply With Quote
The Following User Says Thank You to Ele For This Useful Post:
Epic Titan 69 (04-01-2021)
  #3  
Old 04-01-2021, 19:33
Epic Titan 69 Epic Titan 69 is offline
Banned
 
Join Date: Dec 2020
Location: In The Hell
Posts: 89
Thanks: 147
Thanked 39 Times in 27 Posts
Epic Titan 69 is on a distinguished road
Quote:
Originally Posted by Ele View Post
Of course you can. Using "Arc.groups" you can make FreeArc to select compressors that fit each file type in an entire folder.

Example for
Code:
for *.exe, *dll   <= razor_mtx
for *.pak  <= zlib+srep+lolz
etc.
You can see that "CIU" uses this concept.
Can U explain in detail.................
Am little bit confused!!
Reply With Quote
  #4  
Old 04-01-2021, 19:43
Epic Titan 69 Epic Titan 69 is offline
Banned
 
Join Date: Dec 2020
Location: In The Hell
Posts: 89
Thanks: 147
Thanked 39 Times in 27 Posts
Epic Titan 69 is on a distinguished road
Quote:
Originally Posted by Ele View Post
Of course you can. Using "Arc.groups" you can make FreeArc to select compressors that fit each file type in an entire folder.

Example for
Code:
for *.exe, *dll   <= razor_mtx
for *.pak  <= zlib+srep+lolz
etc.
You can see that "CIU" uses this concept.
Moreover can u make it compatible with this pattern of compression

srep+lzma+lolz

Plz i only need this method support in this script��
Reply With Quote
  #5  
Old 04-01-2021, 22:46
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
Moreover can u make it compatible with this pattern of compression

srep+lzma+lolz

Plz i only need this method support in this script��
My friend, This is ridiculous. Both Lzma and Lolz are final compressors. There is no point in using these two together.

It must be srep+lzma or srep+lolz


My example supports both srep+lzma and srep+lolz
Code:
bin\arc.exe .... Output\data1.bf  -m=srep+lzma "Pack\*" 

or 

bin\arc.exe .... Output\data1.bf  -m=srep+lolz "Pack\*"
Reply With Quote
The Following User Says Thank You to Ele For This Useful Post:
Epic Titan 69 (04-01-2021)
  #6  
Old 04-01-2021, 22:53
Epic Titan 69 Epic Titan 69 is offline
Banned
 
Join Date: Dec 2020
Location: In The Hell
Posts: 89
Thanks: 147
Thanked 39 Times in 27 Posts
Epic Titan 69 is on a distinguished road
Quote:
Originally Posted by Ele View Post
My friend, This is ridiculous. Both Lzma and Lolz are final compressors. There is no point in using these two together.

It must be srep+lzma or srep+lolz


My example supports both srep+lzma and srep+lolz
Code:
bin\arc.exe .... Output\data1.bf  -m=srep+lzma "Pack\*" 

or 

bin\arc.exe .... Output\data1.bf  -m=srep+lolz "Pack\*"
Thanks got that......
Reply With Quote
The Following 2 Users Say Thank You to Epic Titan 69 For This Useful Post:
Ele (04-01-2021), pralin (05-01-2021)
  #7  
Old 05-01-2021, 23:46
pralin pralin is offline
Banned
 
Join Date: Dec 2020
Location: india
Posts: 16
Thanks: 18
Thanked 8 Times in 5 Posts
pralin is on a distinguished road
Quote:
Originally Posted by Epic Titan 69 View Post
Thanks got that......
How to change colour in this

https://fileforums.com/showthread.php?t=102774

Plus can u provide

Srep+lzma or
srep+lolz
supports to this also......
Reply With Quote
  #8  
Old 06-01-2021, 00:31
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 pralin View Post
It's easy.Just to go to the "Theme" section (In WindowsPhone.iss) and make your choice. By changing the value of "Color" from "01" to "34", the setup changes its color. Use "Color=00" for your custom color and define it as the value of "CustColor".

example:
Code:
[Theme]
...
Color=03
...
Reply With Quote
The Following User Says Thank You to Ele For This Useful Post:
Epic Titan 69 (06-01-2021)
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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
[CIUv3] Custom Installer Ultimate v3 KaktoR Conversion Tutorials 921 26-04-2026 12:35
Anno 1701 won't load, just get a blue screen! Shadow22 General Gaming 5 28-08-2012 12:52
CPU jumps up to 100% now, not before dav6 Software 11 24-05-2008 03:33
Elder Scrolls IV: Oblivion. WTF FOR ME. SansMercy General Gaming 5 07-04-2007 23:05
weird error.... sheykh PC Games 5 07-05-2006 20:23



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


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