View Single Post
  #11  
Old 19-02-2018, 03:54
saeid saeid is offline
Registered User
 
Join Date: Aug 2015
Location: Tehran, Iran
Posts: 16
Thanks: 10
Thanked 0 Times in 0 Posts
saeid is on a distinguished road
Unhappy stange problem

Quote:
Originally Posted by pakrat2k2 View Post
the 2801 r3 hotfix in first post is already corrected & last up-to-date there is.

If your talking about using in another script that has that error, then ask in
topic for that script.
I use UltraARC 2801 R3 Hotfix.7z (PreCopm+MSC+SREP+LZMA) to compress GTA V in 9Disk.
records.ini file:

Code:
[Records]
Precomp=0.38
[Record1]
Type=Split
Source={src}\Setup1a.bin
Output={app}\Setup1.bin
Disk=1
[Record2]
Type=Split
Source={src}\Setup1b.bin
Output={app}\Setup1.bin
Disk=2
[Record3]
Type=Split
Source={src}\Setup1c.bin
Output={app}\Setup1.bin
Disk=3
[Record4]
Type=Split
Source={src}\Setup1d.bin
Output={app}\Setup1.bin
Disk=4
[Record5]
Type=Split
Source={src}\Setup1e.bin
Output={app}\Setup1.bin
Disk=5
[Record6]
Type=Split
Source={src}\Setup1f.bin
Output={app}\Setup1.bin
Disk=6
[Record7]
Type=Split
Source={src}\Setup1g.bin
Output={app}\Setup1.bin
Disk=7
[Record8]
Type=Split
Source={src}\Setup1h.bin
Output={app}\Setup1.bin
Disk=8
[Record9]
Type=Split
Source={src}\Setup1i.bin
Output={app}\Setup1.bin
Disk=9
[Record10]
Type=Freearc_Split
Source={app}\Setup1.bin
Output={app}
and use UltraARC R3 Simple Installer v3.7z to make installer.
but when install this game Out of the C:\Program Files (x86) path, i get this error:
"exception einouterror in module split.exe at 000D6835 i/o error 105"
i change this code in script:
Code:
procedure UltraARC_Process;
var
Data: array of TData;
i, x, MsgResult: Integer;
SourceDir, OggFile, MergeFile: String;
begin
to:

Code:
procedure UltraARC_Process;
var
Data: array of TData;
i, x, MsgResult: Integer;
SourceDir, OggFile, MergeFile: String;
begin
ForceDirectories(ExpandConstant('{app}\'));
the problem and error is solved! but after extracting 30% of the files (during file extraction of Setup1.bin), the installation will not go ahead!

Last edited by saeid; 19-02-2018 at 04:07.
Reply With Quote