FileForums

FileForums (https://fileforums.com/index.php)
-   Conversion Tutorials (https://fileforums.com/forumdisplay.php?f=55)
-   -   Blackbox Inno Setup Script (https://fileforums.com/showthread.php?t=94425)

Razor12911 14-02-2015 05:02

http://fileforums.com/showpost.php?p...1&postcount=89

DCrepacks 25-03-2015 14:05

There's a problem... when I unchecked "create desktop icon" while installing it is create a desktop Icon on my desktop even when unchecked. Don't know why... Please respond to this as soon as you can. Everything with the installer is fine except (Desktop Icon Issue).

Please solve this riddle for me ?! LOL :D sorry for my bad English.... :(

Bilawal 01-04-2015 02:14

Change
Code:

WizardForm.TasksList.CheckItem(0,IconCB.Checked);
to

Code:

//WizardForm.TasksList.CheckItem(0,IconCB.Checked);
At CurPageID=wpInstalling.

DrakeMcCain 18-04-2015 11:52

Black Box Inno Setup Script Fix
 
1 Attachment(s)
I have fixed some issues:

1) Even, user doesn't check "Create desktop shortcut" option; setup will create it. This issue fixed.

2) If user cancels the installation, setup won't roll back changes. This issue fixed.

3) If user selects additional software(s) option(s) and cancels the installation, additional softwares will be installed. This issue fixed.

But, as a human being, perhaps I may overlook other possible errors/bugs.

So, if you discover another error, you can modify this script. Which means, I am open to suggestions and warnings.

punchao 19-04-2015 10:53

if using precomp 0.38, 0.40 or 0.41, make sure that the option is -slow in arc.ini

arc a -lc8 -ep1 -ed -r -w.\ Data\Setup-1.bin -mprecomp+srep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8

Where add-slow option,bro?

DrakeMcCain 20-04-2015 04:44

Quote:

Originally Posted by punchao (Post 440008)
if using precomp 0.38, 0.40 or 0.41, make sure that the option is -slow in arc.ini

arc a -lc8 -ep1 -ed -r -w.\ Data\Setup-1.bin -mprecomp+srep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8

Where add-slow option,bro?

Actually, I am not sure; but try this:

arc a -lc8 -ep1 -ed -r -slow -w.\ Data\Setup-1.bin -mprecomp+srep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8

It will work maybe.

alucard1973 27-04-2015 04:52

Hello,
sorry for English
I have a problem with the script kurutucu
The first problem is that when there is a choice of language and I do cancel, I get an error message.
My second problem, I integrated the hardware setup page but I can not get enabled page indef components.
I attached the pictures you can see what I'm talking about and the script
thank you for your help

first problem:
http://nsm08.casimages.com/img/2015/...5913218848.jpg
http://nsm08.casimages.com/img/2015/...5913210989.jpg
second problem:
http://nsm08.casimages.com/img/2015/...5913210990.jpg
http://nsm08.casimages.com/img/2015/...5913210991.jpg
http://nsm08.casimages.com/img/2015/...5913210992.jpg

screen:
I would therefore like to create a page that will open before the directx components to make a page like this to choose the game that you want to pack install
eg I select Tomb Raider 2 only me and it will install only the setup-2.bin
http://nsm08.casimages.com/img/2015/...5913211020.jpg
http://nsm08.casimages.com/img/2015/...5913210997.jpg

script:
http://www85.zippyshare.com/v/VmDG0iq9/file.html

nhinchihap3 02-05-2015 08:16

Hep me
I use freearc and create 2 file
setup-1.bin
setup-2,bin
and i change Archives,ini
Code:

if not ISArcExtract ( 0, 50, ExpandConstant('{src}\setup-1.bin'), ExpandConstant('{app}'), '', false, '', '', ExpandConstant('{app}'), notPCFonFLY {PCFonFLY}) then break;
if not ShowChangeDiskWindow ('Please Insert Next Disk To Continue..', ExpandConstant('{src}'),'Setup-2.bin') then break;
if not ISArcExtract ( 0, 50, ExpandConstant('{src}\setup-2.bin'), ExpandConstant('{app}'), '', false, '', '', ExpandConstant('{app}'), notPCFonFLY {PCFonFLY}) then break;

but error " It is not found any file specified for ISArcExtract "

DrakeMcCain 03-05-2015 11:26

Quote:

Originally Posted by nhinchihap3 (Post 440406)
Hep me
I use freearc and create 2 file
setup-1.bin
setup-2,bin
and i change Archives,ini
Code:

if not ISArcExtract ( 0, 50, ExpandConstant('{src}\setup-1.bin'), ExpandConstant('{app}'), '', false, '', '', ExpandConstant('{app}'), notPCFonFLY {PCFonFLY}) then break;
if not ShowChangeDiskWindow ('Please Insert Next Disk To Continue..', ExpandConstant('{src}'),'Setup-2.bin') then break;
if not ISArcExtract ( 0, 50, ExpandConstant('{src}\setup-2.bin'), ExpandConstant('{app}'), '', false, '', '', ExpandConstant('{app}'), notPCFonFLY {PCFonFLY}) then break;

but error " It is not found any file specified for ISArcExtract "

First of all, use Kurutucu Compressor.

Archive which is shared in first page of this topic as an attachment includes Kurutucu Compressor.

And secondly, change archives.ini like this:

Code:

if not ShowChangeDiskWindow ('Please Insert Next Disk To Continue..', ExpandConstant('{src}'),'setup-1.bin') then break;
if not ISArcExtract ( 0, 50, ExpandConstant('{src}\setup-1.bin'), ExpandConstant('{app}'), '', false, '', '', ExpandConstant('{app}'), notPCFonFLY {PCFonFLY}) then break;
if not ShowChangeDiskWindow ('Please Insert Next Disk To Continue..', ExpandConstant('{src}'),'setup-2.bin') then break;
if not ISArcExtract ( 0, 50, ExpandConstant('{src}\setup-2.bin'), ExpandConstant('{app}'), '', false, '', '', ExpandConstant('{app}'), notPCFonFLY {PCFonFLY}) then break;

I am not sure; but maybe archive names will be case sensitive.

If you encounter the same error inspite of the fact that you use my solution,
change archives.ini like this:

Code:

if not ShowChangeDiskWindow ('Please Insert Disk 1 To Continue..', ExpandConstant('{src}'),'Setup-1.bin') then break;
if not ISArcExtract ( 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 ISArcExtract ( 0, 50, ExpandConstant('{src}\Setup-2.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;

Sorry for long post; just only my intent is helping you as I can.

nhinchihap3 04-05-2015 07:53

Quote:

Originally Posted by DrakeMcCain (Post 440429)
First of all, use Kurutucu Compressor.

Archive which is shared in first page of this topic as an attachment includes Kurutucu Compressor.

And secondly, change archives.ini like this:

Code:

if not ShowChangeDiskWindow ('Please Insert Next Disk To Continue..', ExpandConstant('{src}'),'setup-1.bin') then break;
if not ISArcExtract ( 0, 50, ExpandConstant('{src}\setup-1.bin'), ExpandConstant('{app}'), '', false, '', '', ExpandConstant('{app}'), notPCFonFLY {PCFonFLY}) then break;
if not ShowChangeDiskWindow ('Please Insert Next Disk To Continue..', ExpandConstant('{src}'),'setup-2.bin') then break;
if not ISArcExtract ( 0, 50, ExpandConstant('{src}\setup-2.bin'), ExpandConstant('{app}'), '', false, '', '', ExpandConstant('{app}'), notPCFonFLY {PCFonFLY}) then break;

I am not sure; but maybe archive names will be case sensitive.

If you encounter the same error inspite of the fact that you use my solution,
change archives.ini like this:

Code:

if not ShowChangeDiskWindow ('Please Insert Disk 1 To Continue..', ExpandConstant('{src}'),'Setup-1.bin') then break;
if not ISArcExtract ( 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 ISArcExtract ( 0, 50, ExpandConstant('{src}\Setup-2.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;

Sorry for long post; just only my intent is helping you as I can.

Thank bro but i use Kurutucu Compressor with 1 file work but 2 file don't work u can help me ?
And i change compress.bat
Work
Code:

@echo Working Arc+Precomp+Srep+Arc again
arc a -lc8 -ep1 -ed -r -w.\ Data\Data.bin -mprecomp+srep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8 "D:\Data1\*"
pause

After add one more file but don't work
Code:

@echo Working Arc+Precomp+Srep+Arc again
arc a -lc8 -ep1 -ed -r -w.\ Data\Data.bin -mprecomp+srep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8 "D:\Data1\*"
arc a -lc8 -ep1 -ed -r -w.\ Data\Data.bin -mprecomp+srep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8 "D:\Data2\*"
pause

Thankx , sorry my bad english

mausschieber 04-05-2015 09:17

Quote:

Originally Posted by nhinchihap3 (Post 440446)
Thank bro but i use Kurutucu Compressor with 1 file work but 2 file don't work u can help me ?
And i change compress.bat
Work
Code:

@echo Working Arc+Precomp+Srep+Arc again
arc a -lc8 -ep1 -ed -r -w.\ Data\Data.bin -mprecomp+srep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8 "D:\Data1\*"
pause

After add one more file but don't work
Code:

@echo Working Arc+Precomp+Srep+Arc again
arc a -lc8 -ep1 -ed -r -w.\ Data\Data.bin -mprecomp+srep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8 "D:\Data1\*"
arc a -lc8 -ep1 -ed -r -w.\ Data\Data.bin -mprecomp+srep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8 "D:\Data2\*"
pause

Thankx , sorry my bad english

you must set for Data1 Data1.bin for Data2 Data2.bin etc

Amsal 08-05-2015 19:32

How to Make Repack with this
 
Please can you give me steps to make a repack with BlackBox v2

pakrat2k2 08-05-2015 21:55

Quote:

Originally Posted by Amsal (Post 440543)
Please can you give me steps to make a repack with BlackBox v2

try reading !!!

In the very first post click on the link PLEASE READ...

nhinchihap3 09-05-2015 04:55

I have 10 file bin , 1 file = 3Gb
I want ask how to make auto install , i mean we don't need browse dvd ?
Sorry my bad english :D

Razor12911 09-05-2015 09:40

There are instructions. Masks are supported I think. If you have ten files just do this data*.bin.
If your archive names are data1.bin data2.bin and so on.

belzack 11-05-2015 14:29

I get an error in line138 column1 identifier expected plz help and I didn't change anything

alucard1973 13-05-2015 15:28

there is nobody who can help me to activate the components as shown? I unable to open an additional page in the blackbox, I would open a page like the audio and text language before directx components etc ... but I can not do I not understand why
thank you for your help

GhostSystem 29-05-2015 05:39

R. Mechanics
 
This script so much problem. It is not complete blackbox. i want to help you with my script.

GhostSystem 29-05-2015 05:45

you need both Setup-1.bin and Setup-2.bin file put the {src} that means where Setup.exe is create.

DrakeMcCain 31-05-2015 10:06

Blackbox Inno Setup Script Update
 
1 Attachment(s)
I have added some features to this script. So, I want to share it for you.

What's New?
--------------

1) Multi2 feature added. (English+Turkish) But, you can add your language, if you want.

2) Version information added.

PS: This version info is not game version. This version info is shown at file properties.

3) "MinVersion" code added. This code describes minumum Windows version that requires Setup can run.

But, you can remove it, if you want.

4) "UninstallDisplaySize" code added. This code describes game size that is shown at Program Add/Uninstall.

PS: This value must be in terms of bytes.

5) "PrivilegesRequired" code added. If you set this as "poweruser" or "admin" , setup will require admin rights. If you set this as "lowest", every user can run Setup; Setup won't require admin rights.

6) Ram detection feature added. To use this feature, you must move "kernel32.dll" into "include" folder. If the computer's ram size lower than ram size that you set, Setup will show message.

VERY IMPORTANT: This dll file checks max. usable memory, not installed memory size. So, if you have 4 gb ram and if you set ram limit to 4 gb; you will get insufficient ram error.

PS: This dll doesn't support ram sizes that are much than 8 GB.

PS-2: You must set ram size in terms of bytes.

punchao 04-06-2015 09:33

1 Attachment(s)
error below....

added directly to forum>pakrat2k2

pakrat2k2 04-06-2015 12:43

Windows version uses numbers like below:

Second part of Windows Version as determined by Microsoft themselves. (Win2000 = 5.0) (Win XP = 5.1) (WinXP64 & WinServer2003 & 2003R2 = 5.2) (Win Vista & WinServer2008 = 6.0) (WinServer2008R2 & Win7 = 6.1) (WinServer2012 & Win8 = 6.2) (WinServer2012R2 & Win8.1 = 6.3) Numbers before the dot (.) are major & numbers after are minor.

SO in your image( from script ) number should be 5.1.3 NOT 5.1.2600

rather then always uploading to 3rd party site attatch directly to post
under manage attatchments.

ivanlakersss666 08-06-2015 05:19

I can add videos and slideshow at once?

ct-723d 08-06-2015 07:52

Blackbox script problems
 
Hello everyone, I am having a little problem with blackbox script. Everything works fine except I can not get it to install any components like directx, nivdiaphysx or framework. I have enable the buttons but for some reason, they will not install. I also downloaded and tried the Kurutucu black script to see if it something I am doing wrong, and it does the same thing. I went over the code, and nothing is missing. Any advise will be welcome.

Thank in advance :)

pakrat2k2 08-06-2015 08:41

Quote:

Originally Posted by ct-723d (Post 441358)
Hello everyone, I am having a little problem with blackbox script. Everything works fine except I can not get it to install any components like directx, nivdiaphysx or framework. I have enable the buttons but for some reason, they will not install. I also downloaded and tried the Kurutucu black script to see if it something I am doing wrong, and it does the same thing. I went over the code, and nothing is missing. Any advise will be welcome.

Thank in advance :)

re-read the ENTIRE first post, its all there what to edit & how the files/folders have to be set up.

ZeD1818 09-06-2015 07:04

1 Attachment(s)
HELP ! ! ! ! !
I m getting this error while compiling Main.iss

mausschieber 09-06-2015 08:29

Quote:

Originally Posted by ZeD1818 (Post 441373)
HELP ! ! ! ! !
I m getting this error while compiling Main.iss

use Inno Setup Enhanced Unicode that should help you

link is here

n00b9100 10-06-2015 03:00

Hi,

How to compress into multiple .bin files / limit the size of one .bin ? I have game that weighs more than 1xDVD9 after compression and I want to make it possible for users to burn it and make 2xDVD5 size


@edit: would be nice if there's an option to split the existing .bin file into two files instead of recompressing the whole game again just to split it.

@edit2: I found sfk tool, I'll try to split it with it, hope it will be compatible with decompression after it.
@edit3: setup.exe gives currupted header error (unarc.dll error -14) after using sfk

Automatic splitting in ultraarc doesn't work for me.

ZeD1818 12-06-2015 10:10

Quote:

Originally Posted by mausschieber (Post 441375)
use Inno Setup Enhanced Unicode that should help you

link is here

Thanks man, it really works :D

ZeD1818 12-06-2015 10:14

Help
 
I am facing another problem. I made 6 compressed files but my Setup.exe is extracting the 1st one only . What should I do?
Here is my Archives.ini code
HTML Code:

if not ShowChangeDiskWindow ('Please Insert Disk To Continue...', ExpandConstant('{src}'),'Setup-1.bin') then break;
if not ISArcExtract ( 0, 15, 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 ISArcExtract ( 15, 30, ExpandConstant('{src}\Setup-2.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;

if not ShowChangeDiskWindow ('Please Insert Disk 3 To Continue...', ExpandConstant('{src}'),'Setup-3.bin') then break;
if not ISArcExtract ( 30, 45, ExpandConstant('{src}\Setup-3.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;

if not ShowChangeDiskWindow ('Please Insert Disk 4 To Continue...', ExpandConstant('{src}'),'Setup-4.bin') then break;
if not ISArcExtract ( 45, 60, ExpandConstant('{src}\Setup-4.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;

if not ShowChangeDiskWindow ('Please Insert Disk 5 To Continue...', ExpandConstant('{src}'),'Setup-5.bin') then break;
if not ISArcExtract ( 60, 75, ExpandConstant('{src}\Setup-5.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;

if not ShowChangeDiskWindow ('Please Insert Disk 6 To Continue...', ExpandConstant('{src}'),'Setup-6.bin') then break;
if not ISArcExtract ( 75, 100, ExpandConstant('{src}\Setup-6.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;

EDIT by Grumpy: I have un-deleted this post, if this post can not be seen as the 'Question' then 'punchao's' post below makes no sense as the 'Answer' ;)

punchao 12-06-2015 11:02

if not ShowChangeDiskWindow ('Please Insert Disk To Continue...', ExpandConstant('{src}'),'Setup-1.bin') then break;
if not ISArcExtract ( 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 ISArcExtract ( 0,10, ExpandConstant('{src}\Setup-2.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;

if not ShowChangeDiskWindow ('Please Insert Disk 3 To Continue...', ExpandConstant('{src}'),'Setup-3.bin') then break;
if not ISArcExtract ( 0,10, ExpandConstant('{src}\Setup-3.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;

if not ShowChangeDiskWindow ('Please Insert Disk 4 To Continue...', ExpandConstant('{src}'),'Setup-4.bin') then break;
if not ISArcExtract ( 0, 10, ExpandConstant('{src}\Setup-4.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;

if not ShowChangeDiskWindow ('Please Insert Disk 5 To Continue...', ExpandConstant('{src}'),'Setup-5.bin') then break;
if not ISArcExtract ( 0,10, ExpandConstant('{src}\Setup-5.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;

if not ShowChangeDiskWindow ('Please Insert Disk 6 To Continue...', ExpandConstant('{src}'),'Setup-6.bin') then break;
if not ISArcExtract (0, 10, ExpandConstant('{src}\Setup-6.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;

punchao 15-06-2015 09:03

i need a correct .bat to use msc+srep with kurutucu conpressor

Pasq92 19-06-2015 12:12

1 Attachment(s)
I have a few questions:

How do we edit cjstyle files??

How do I translate these texts?

Attachment 12022

Quote:

Originally Posted by punchao (Post 441480)
i need a correct .bat to use msc+srep with kurutucu conpressor

Punchao, try this:

if not ShowChangeDiskWindow ('Please Insert Disk To Continue...', ExpandConstant('{src}'),'Setup-1.bin') then break;
if not ISArcExtract ( 0, 15, 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 ISArcExtract ( 0, 15, ExpandConstant('{src}\Setup-2.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;

if not ShowChangeDiskWindow ('Please Insert Disk 3 To Continue...', ExpandConstant('{src}'),'Setup-3.bin') then break;
if not ISArcExtract ( 0, 15, ExpandConstant('{src}\Setup-3.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;

if not ShowChangeDiskWindow ('Please Insert Disk 4 To Continue...', ExpandConstant('{src}'),'Setup-4.bin') then break;
if not ISArcExtract ( 0, 15, ExpandConstant('{src}\Setup-4.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;

if not ShowChangeDiskWindow ('Please Insert Disk 3 To Continue...', ExpandConstant('{src}'),'Setup-5.bin') then break;
if not ISArcExtract ( 0, 15, ExpandConstant('{src}\Setup-5.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;

if not ShowChangeDiskWindow ('Please Insert Disk 4 To Continue...', ExpandConstant('{src}'),'Setup-6.bin') then break;
if not ISArcExtract ( 0, 15, ExpandConstant('{src}\Setup-6.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;

Razor12911 27-07-2015 16:30

Quote:

Originally Posted by Pasq92 (Post 441568)
I have a few questions:

How do we edit cjstyle files??

How do I translate these texts?

Attachment 12022



Punchao, try this:

if not ShowChangeDiskWindow ('Please Insert Disk To Continue...', ExpandConstant('{src}'),'Setup-1.bin') then break;
if not ISArcExtract ( 0, 15, 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 ISArcExtract ( 0, 15, ExpandConstant('{src}\Setup-2.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;

if not ShowChangeDiskWindow ('Please Insert Disk 3 To Continue...', ExpandConstant('{src}'),'Setup-3.bin') then break;
if not ISArcExtract ( 0, 15, ExpandConstant('{src}\Setup-3.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;

if not ShowChangeDiskWindow ('Please Insert Disk 4 To Continue...', ExpandConstant('{src}'),'Setup-4.bin') then break;
if not ISArcExtract ( 0, 15, ExpandConstant('{src}\Setup-4.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;

if not ShowChangeDiskWindow ('Please Insert Disk 3 To Continue...', ExpandConstant('{src}'),'Setup-5.bin') then break;
if not ISArcExtract ( 0, 15, ExpandConstant('{src}\Setup-5.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;

if not ShowChangeDiskWindow ('Please Insert Disk 4 To Continue...', ExpandConstant('{src}'),'Setup-6.bin') then break;
if not ISArcExtract ( 0, 15, ExpandConstant('{src}\Setup-6.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;

to change text, I think you have translate some parts of english.ini. Google codejock styles to find out how to edit them.

bastien360 13-08-2015 03:30

can someone told me how to change the blue color progress bar to another color plz...thnx in advance

Razor12911 17-08-2015 16:58

edit the cjstyle to change progressbar colour.

xyraclius 18-08-2015 17:41

Help
 
hello guys, how to remove 'Setup need the next disk"
http://s29.postimg.org/6f76ssbnb/image.jpg

Razor12911 19-08-2015 05:17

Edit english.ini

bastien360 21-08-2015 08:22

thnx razor...

ffmla 23-08-2015 02:42

is there any way to add reflate method along with blackbox script
i need arc.ini for arc+reflate+srep+lmza method.it may helpfull in inno installer with freearc.
Thanks in Advance.


All times are GMT -7. The time now is 20:04.

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