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

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 26-05-2020, 02:14
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,073
Thanks: 1,814
Thanked 2,302 Times in 786 Posts
Cesar82 is on a distinguished road
Quote:
Originally Posted by Emorian View Post
The following files are available (UltraArc):
Code:
ArcFile1=Data-1a.bin;DestDir:{app}\Data-1.bin;Type:ARC;Disk:1;Size:208.666.624;Flags: splitfile;
ArcFile2=Data-1b.bin;DestDir:{app}\Data-1.bin;Type:ARC;Disk:2;Size:209.715.200;Flags: splitfile;
ArcFile3=Data-1c.bin;DestDir:{app}\Data-1.bin;Type:ARC;Disk:3;Size:209.715.200;Flags: splitfile;
ArcFile4=Data-1d.bin;DestDir:{app}\Data-1.bin;Type:ARC;Disk:4;Size:98.508.322;Flags: splitfile;
ArcFile4=Data-1.bin;DestDir:{app};Type:ARC;Disk:4;Flags: joinedfile;
Runtime error: Line 1503 (Out of range)
This runtime error is because you have not increased the number of ArcFile on the last line.
If you specify size, you must also inform the Size of the joined file.
Code:
ArcFile1=Data-1a.bin;DestDir:{app}\Data-1.bin;Type:ARC;Disk:1;Size:208.666.624;Flags: splitfile;
ArcFile2=Data-1b.bin;DestDir:{app}\Data-1.bin;Type:ARC;Disk:2;Size:209.715.200;Flags: splitfile;
ArcFile3=Data-1c.bin;DestDir:{app}\Data-1.bin;Type:ARC;Disk:3;Size:209.715.200;Flags: splitfile;
ArcFile4=Data-1d.bin;DestDir:{app}\Data-1.bin;Type:ARC;Disk:4;Size:98.508.322;Flags: splitfile;
ArcFile5=Data-1.bin;DestDir:{app};Type:ARC;Disk:4;Size:726.605.346;Flags: joinedfile;
Quote:
Originally Posted by Emorian View Post
occasionally says the following as an error: unknow identifier (Line 1281: OptimalCheck)

And now please ?!
That was my mistake. I forgot to delete this from the code.
As I compiled this part of the CIU beta5 code, I forgot to remove it. Just remove the 3 lines in script (Remove from "if" until after "else".).
Code:
if OptimalCheck.Checked then
  SetIniString('External compressor:mpz,mpzapi', 'unpackcmd', ' pmt d {compressor} -t100p - - <stdin> <stdout>', ExpandConstant('{tmp}\Arc.ini'))
else
Here is a hotfix for source code 1.0.0.2
Replace the script in the source code 1.0.0.2 (Delete the previous script).

Code:
Changes:
- Fixed to hide the pause button on the finish page.
- Fixed to set to finish the "Timer" that updates the labels after completing the installation.
- Removed unnecessary part of the code that displayed an error related to "OptimalCheck" when using PMT + MPZ method.
- Fixed not to display an error when the size is entered incorrectly in the extraction parameters.
Attached Files
File Type: 7z InstallerScript [2020.05.22]_HF.7z (15.2 KB, 18 views)

Last edited by Cesar82; 28-05-2020 at 08:21.
Reply With Quote
The Following User Says Thank You to Cesar82 For This Useful Post:
Emorian (26-05-2020)
Sponsored Links
  #2  
Old 26-05-2020, 11:28
Emorian Emorian is offline
Registered User
 
Join Date: Oct 2011
Location: Hungary
Posts: 26
Thanks: 14
Thanked 4 Times in 4 Posts
Emorian is on a distinguished road
Remove the red? (I was confused )
Code:

  if OptimalCheck.Checked then
    SetIniString('External compressor:mpz,mpzapi', 'unpackcmd', ' pmt d {compressor} -t100p - - <stdin> <stdout>', ExpandConstant('{tmp}\Arc.ini'))
  else
     SetIniString('External compressor:mpz,mpzapi', 'unpackcmd', ' pmt d {compressor} -t75p - - <stdin> <stdout>', ExpandConstant('{tmp}\Arc.ini'));
  end;

Quote:
Originally Posted by Cesar82 View Post
This runtime error is because you have not increased the number of ArcFile on the last line.
If you specify size, you must also inform the Size of the joined file.
Thanks, I set it up as you wrote and it happened:
Code:
Error: Unarc.dll code -2 Unsupported compression .... method
msc+srep+lzma:a1:mfbt4:d256m:fb273:mc:1000000000:lc8 (UltraArc 2900 R7 = MSC+SREP+LZMA in setting)

msc+srep+lzma:a1:mfbt4:d256m:fb128:mc:1000000000:lc8+diskspan500mb:500mb (DiskSpan by Razor12911)

Last edited by Emorian; 26-05-2020 at 13:25.
Reply With Quote
  #3  
Old 26-05-2020, 22:09
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,073
Thanks: 1,814
Thanked 2,302 Times in 786 Posts
Cesar82 is on a distinguished road
Quote:
Originally Posted by Emorian View Post
[Thanks, I set it up as you wrote and it happened:
Code:
Error: Unarc.dll code -2 Unsupported compression .... method
msc+srep+lzma:a1:mfbt4:d256m:fb273:mc:1000000000:lc8 (UltraArc 2900 R7 = MSC+SREP+LZMA in setting)

msc+srep+lzma:a1:mfbt4:d256m:fb128:mc:1000000000:lc8+diskspan500mb:500mb (DiskSpan by Razor12911)
Check if you checked the SREP and MSC compressors in the "Compressor GUI" before compiling Setup.exe?
Reply With Quote
  #4  
Old 28-05-2020, 16:19
Emorian Emorian is offline
Registered User
 
Join Date: Oct 2011
Location: Hungary
Posts: 26
Thanks: 14
Thanked 4 Times in 4 Posts
Emorian is on a distinguished road
Quote:
Originally Posted by Cesar82 View Post
This runtime error is because you have not increased the number of ArcFile on the last line.
If you specify size, you must also inform the Size of the joined file.
Code:
ArcFile1=Data-1a.bin;DestDir:{app}\Data-1.bin;Type:ARC;Disk:1;Size:208.666.624;Flags: splitfile;
ArcFile2=Data-1b.bin;DestDir:{app}\Data-1.bin;Type:ARC;Disk:2;Size:209.715.200;Flags: splitfile;
ArcFile3=Data-1c.bin;DestDir:{app}\Data-1.bin;Type:ARC;Disk:3;Size:209.715.200;Flags: splitfile;
ArcFile4=Data-1d.bin;DestDir:{app}\Data-1.bin;Type:ARC;Disk:4;Size:98.508.322;Flags: splitfile;
ArcFile5=Data-1.bin;DestDir:{app};Type:ARC;Disk:4;Size:726.605.346;Flags: joinedfile;
That was my mistake. I forgot to delete this from the code.
As I compiled this part of the CIU beta5 code, I forgot to remove it. Just remove the 3 lines in script (Remove from "if" until after "else".).
Code:
if OptimalCheck.Checked then
  SetIniString('External compressor:mpz,mpzapi', 'unpackcmd', ' pmt d {compressor} -t100p - - <stdin> <stdout>', ExpandConstant('{tmp}\Arc.ini'))
else
Here is a hotfix for source code 1.0.0.2
Replace the script in the source code 1.0.0.2 (Delete the previous script).

Works great with the new script, thank you very much !!!!!
__________________
Any help, thanks I welcome!
By Emorian
Reply With Quote
Reply

Tags
asis, ciu, inno, installer, ultraarc

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
[Help] need Advanced Installer script with Razor1911's UltraArc module rez3vil Conversion Tutorials 3 15-04-2024 02:24
Ultimate Conversion Compressor (UCC) vollachr Conversion Tutorials 55 26-04-2021 09:27
INDEX - Conversion Tutorial Index Razor12911 Conversion Tutorials 5 11-06-2020 02:05
How many forum members does it take to change a light bulb? rms2001 XBox Games 6 12-01-2004 05:31



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


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