Quote:
Originally Posted by Gamer009
works , thnx a lot <3
but please the following question
--------------------------------------------
and what about this :
Code:
in the archive.ini
i must type : ISPrecompExtract or ISArcExtract ?
i'm using this line in compressing :mprecomp+srep+delta+lzma:a1:mfbt4:d158m:fb273:mc1 000:lc8
(i think it's a precomp , i'm asking to check
btw, here's my archive.ini
Code:
if not ISPrecompExtract ( 0, 50, ExpandConstant('{src}\Setup-1.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;
if not ShowChangeDiskWindow ('Please Insert Disk 2 To Continue..', ExpandConstant('{src}'),'Setup-2.bin') then break;
if not ISPrecompExtract ( 0, 50, ExpandConstant('{src}\Setup-2.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;
|
Answer About your Archive:
Code:
From Archive.ini
You must type: ISArcExtract! Not ISPrecompExtract!
(Precomp can't used extract about it! They will together from Arc it! I'm think...)
Can't used about it IsPrecompExtract it!
For Precomp used it:
Code:
if not ShowChangeDiskWindow ('Please Insert Disk To Continue...', ExpandConstant('{src}'),'Data_01.pcf') then break;
if not ISPrecompExtract( 0, 0, ExpandConstant('{src}\Data_01.pcf'), ExpandConstant('{app}\Data_01.bin'), true) then break;
if not ShowChangeDiskWindow ('Please Insert Disk To Continue...', ExpandConstant('{src}'),'Data_02.pcf') then break;
if not ISPrecompExtract( 0, 0, ExpandConstant('{src}\Data_02.pcf'), ExpandConstant('{app}\Data_02.bin'), true) then break;
For Arc used it:
Code:
if not ShowChangeDiskWindow ('Please Insert Disk To Continue...', ExpandConstant('{src}'),'Setup-1.bin') then break;
if not ISArcExtract ( 0, 0, ExpandConstant('{src}\Setup-1.bin'), ExpandConstant('{app}\'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}\'), notPCFonFLY{PCFonFLY}) then break;
if not ShowChangeDiskWindow ('Please Insert Disk To Continue...', ExpandConstant('{src}'),'Setup-2.bin') then break;
if not ISArcExtract ( 0, 0, ExpandConstant('{src}\Setup-2.bin'), ExpandConstant('{app}\'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}\'), notPCFonFLY{PCFonFLY}) then break;
This the answer!
PS:
Code:
Don't used about the Precomp it!
There have crash your installation's about it!
Last edited by Carldric Clement; 04-10-2014 at 17:02.
|