PDA

View Full Version : Blackbox Inno Setup Script


Pages : 1 2 3 4 [5]

Razor12911
14-02-2015, 05:02
http://fileforums.com/showpost.php?p=418281&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
WizardForm.TasksList.CheckItem(0,IconCB.Checked);

to

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

At CurPageID=wpInstalling.

DrakeMcCain
18-04-2015, 11:52
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
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/04/29//15042908463313335913218848.jpg
http://nsm08.casimages.com/img/2015/04/27//15042701355713335913210989.jpg
second problem:
http://nsm08.casimages.com/img/2015/04/27//15042701361613335913210990.jpg
http://nsm08.casimages.com/img/2015/04/27//15042701362713335913210991.jpg
http://nsm08.casimages.com/img/2015/04/27//15042701364413335913210992.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/04/27//15042701503913335913211020.jpg
http://nsm08.casimages.com/img/2015/04/27//15042701370013335913210997.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
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
Hep me
I use freearc and create 2 file
setup-1.bin
setup-2,bin
and i change Archives,ini
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:

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:

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
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:

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:

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
@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
@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
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
@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
@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
Please can you give me steps to make a repack with BlackBox v2

pakrat2k2
08-05-2015, 21:55
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
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
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
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
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
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
HELP ! ! ! ! !
I m getting this error while compiling Main.iss

mausschieber
09-06-2015, 08:29
HELP ! ! ! ! !
I m getting this error while compiling Main.iss

use Inno Setup Enhanced Unicode that should help you

link is here (http://fileforums.com/showpost.php?p=437536&postcount=1)

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
use Inno Setup Enhanced Unicode that should help you

link is here (http://fileforums.com/showpost.php?p=437536&postcount=1)

Thanks man, it really works :D

ZeD1818
12-06-2015, 10:14
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
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
I have a few questions:

How do we edit cjstyle files??

How do I translate these texts?

12022

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
I have a few questions:

How do we edit cjstyle files??

How do I translate these texts?

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
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.

photuong1994
29-08-2015, 21:21
I must put Video.mp4 where directory ? Because I test Video background, video didn't run :(. Please help me.

bastien360
30-08-2015, 10:38
can you give me a tutorial...i want the progress to be default color...green windows 7 theme

ffmla
31-08-2015, 02:12
can you give me a tutorial...i want the progress to be default color...green windows 7 theme

Hi bro,
if you want green progress while installing you can edit skin.cjstyle with the help of ISSkin Setup.

Link:http://isskin.codejock.com/downloads/ISSkinExample.zip

read the post #813
link: http://fileforums.com/showpost.php?p=432157&postcount=813

Also read the post no #693 ʶ
Link:http://fileforums.com/showthread.php?t=94425&page=47

Password for themestyle.rar is Fileforums attachment in post #693

if you read the above post you can learn how to edit *.cjstyle file

All thanks goes to respective post Members.

Here my mac style green prograss bar:)

nhinchihap3
31-08-2015, 06:21
How to add more images in slides ?

photuong1994
31-08-2015, 20:17
How to add more images in slides ?

thì cứ tải về bình thường rồi chỉnh lại số thứ tự tiếp theo.

Ví dụ: trong đó có 7 hình, muốn thêm 1 hình nữa thì quăng vào rename thành "8". Rồi cứ tiếp tục.

Đang điên cái Video.mp4. Quăng vào mà chạy setup thử ở Compact mode, nó ko chạy Video.

photuong1994
31-08-2015, 20:20
Someone can show me how to Play video background when I run setup.
I put Video.mp4 in source, and compile.

But when I test to run setup, choose Video background, it didn't run video. :(

http://www.upsieutoc.com/images/2015/09/01/Capture65127.png

http://www.upsieutoc.com/images/2015/09/01/119bd2.png

photuong1994
31-08-2015, 21:27
http://www.upsieutoc.com/images/2015/09/01/Capture1148d.png

What is error ? :(

ffmla
15-09-2015, 22:20
my blackbox script is works fine{kurutuku}
But each time when i click the buttons{back,Next}, the bottom of installer window size is reduced.is there any way to fix this?.

y_thelastknight
16-09-2015, 08:49
my blackbox script is works fine{kurutuku}
But each time when i click the buttons{back,Next}, the bottom of installer window size is reduced.is there any way to fix this?.

yes, there is a code in the procedure CurPageChanged(CurPageID: Integer); which reduce the size of the windows. remove that.

ffmla
18-09-2015, 01:35
yes, there is a code in the procedure CurPageChanged(CurPageID: Integer); which reduce the size of the windows. remove that.

Thanks for your reply,
In the script I edit to remove the following section
Procedure CurPageChanged(CurPageID: integer);
begin
CurPageChanged1(CurPageID);
end
But the installer wizard make all page information to one
page. (All page wizards mixed in to single page)
How to fix it.
Thanks in advance. :)

y_thelastknight
18-09-2015, 10:42
Thanks for your reply,
In the script I edit to remove the following section

But the installer wizard make all page information to one
page. (All page wizards mixed in to single page)
How to fix it.
Thanks in advance. :)

can you share the script file, i will fix it for u.
i don't know how to explain it :/

ffmla
19-09-2015, 00:35
Hello Bro,
Thanks for fixing my script.
I've attach my script.
@y_thelastknight
thanks for fixing & sorry for late reply.:)

kannasuki
22-09-2015, 18:42
Please help, installing my repack with archives.ini show "ISDone.dll An error ocurred when unpacking!
Unarc.dll returned an error code:-1
ERROR: archive data corrupted (decrompresion fails)

Razor12911
22-09-2015, 19:21
Please help, installing my repack with archives.ini show "ISDone.dll An error ocurred when unpacking!
Unarc.dll returned an error code:-1
ERROR: archive data corrupted (decrompresion fails)

make sure arc.exe you used is compatible with unarc.dll.

kannasuki
23-09-2015, 04:12
If archives.ini have only Data1-4 works, but with Data5 fails in different percentage.

if not ISArcExtract ( 0, 20, ExpandConstant('{src}\Data1.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;
if not ShowChangeDiskWindow ('Please Insert Disk 2 To Continue..', ExpandConstant('{src}'),'Data2.bin') then break;
if not ISArcExtract ( 0, 20, ExpandConstant('{src}\Data2.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;
if not ShowChangeDiskWindow ('Please Insert Disk 2 To Continue..', ExpandConstant('{src}'),'Data3.bin') then break;
if not ISArcExtract ( 0, 20, ExpandConstant('{src}\Data3.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;
if not ShowChangeDiskWindow ('Please Insert Disk 2 To Continue..', ExpandConstant('{src}'),'Data4.bin') then break;
if not ISArcExtract ( 0, 20, ExpandConstant('{src}\Data4.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;
if not ShowChangeDiskWindow ('Please Insert Disk 2 To Continue..', ExpandConstant('{src}'),'Data5.bin') then break;
if not ISArcExtract ( 0, 20, ExpandConstant('{src}\Data5.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;

punchao
23-09-2015, 05:14
if not ISArcExtract ( 0, 20, ExpandConstant('{src}\Data1.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;
if not ShowChangeDiskWindow ('Please Insert Disk 2 To Continue..', ExpandConstant('{src}'),'Data2.bin') then break;
if not ISArcExtract ( 0, 20, ExpandConstant('{src}\Data2.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;
if not ShowChangeDiskWindow ('Please Insert Disk 3 To Continue..', ExpandConstant('{src}'),'Data3.bin') then break;
if not ISArcExtract ( 0, 20, ExpandConstant('{src}\Data3.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;
if not ShowChangeDiskWindow ('Please Insert Disk 4To Continue..', ExpandConstant('{src}'),'Data4.bin') then break;
if not ISArcExtract ( 0, 20, ExpandConstant('{src}\Data4.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;
if not ShowChangeDiskWindow ('Please Insert Disk 5 To Continue..', ExpandConstant('{src}'),'Data5.bin') then break;
if not ISArcExtract ( 0, 20, ExpandConstant('{src}\Data5.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;

kannasuki
23-09-2015, 06:07
if not ISArcExtract ( 0, 20, ExpandConstant('{src}\Data1.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;
if not ShowChangeDiskWindow ('Please Insert Disk 2 To Continue..', ExpandConstant('{src}'),'Data2.bin') then break;
if not ISArcExtract ( 0, 20, ExpandConstant('{src}\Data2.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;
if not ShowChangeDiskWindow ('Please Insert Disk 3 To Continue..', ExpandConstant('{src}'),'Data3.bin') then break;
if not ISArcExtract ( 0, 20, ExpandConstant('{src}\Data3.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;
if not ShowChangeDiskWindow ('Please Insert Disk 4To Continue..', ExpandConstant('{src}'),'Data4.bin') then break;
if not ISArcExtract ( 0, 20, ExpandConstant('{src}\Data4.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;
if not ShowChangeDiskWindow ('Please Insert Disk 5 To Continue..', ExpandConstant('{src}'),'Data5.bin') then break;
if not ISArcExtract ( 0, 20, ExpandConstant('{src}\Data5.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;

Thanks, but Data1-3 are DVD1 and 4-5 DVD2, i tried putting it like that but fails to change discs, this problem was only at the end

vibhutech512
24-10-2015, 04:19
HELLO, I am new at Repacking GAMES.
I have created Bins for "COD:ADVANCED WARFARE".
I am have 7 .Bin files and created the setup via Script provided and also edited the Archives.ini but still it is extracting only 3 Bin files and leave the rest of them.
I have correctly renamed then as {setup-1,setup-2,setup-3,setup-4,setup-5,setup-6,setup-7}

Kindly HELP ME in Fixing this !!

This is the Archives.ini that i am using right now ! ~
" if not ShowChangeDiskWindow ('Please locate the Installation Files...', ExpandConstant('{src}'),'Setup-1.bin') then break;
if not ISArcExtract ( 0, 100, 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, 80, 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, 60, 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, 40, 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, 20, 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, 15, ExpandConstant('{src}\Setup-6.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;
if not ShowChangeDiskWindow ('Please Insert Disk 7 To Continue...', ExpandConstant('{src}'),'Setup-7.bin') then break;
if not ISArcExtract ( 0, 10, ExpandConstant('{src}\Setup-7.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;
//if not IS7ZipExtract ( 0, 100, ExpandConstant('{src}\Setup-1.bin'), ExpandConstant('{app}'), false, '') then break;
//if not ISRarExtract ( 0, 100, ExpandConstant('{src}\Setup-1.bin'), ExpandConstant('{app}'), false, '') then break; "

ramazan19833
30-10-2015, 08:41
Please Help We're copying the Video.wmv File black_box script_by_kurutuc V1.8 folder and Maine (the compact.mo + Slideshow & Video) .iss File Inno Ultra I open setup.exe file form I setup when the video instead I edia request may cause black screen please help .. .

#ifexist "Video.avi"
ExtractTemporaryFile('Video.avi');
#endif
#ifexist "Video.mp4"
ExtractTemporaryFile('Video.MP4');
#endif
#ifexist "Video.mpeg"
ExtractTemporaryFile('Video.mpeg');
#endif
#ifexist "Video.mpg"
ExtractTemporaryFile('Video.mpg');
#endif
#ifexist "Video.wmv"
ExtractTemporaryFile('Video.wmv');[/QUOTE]

pakrat2k2
30-10-2015, 19:47
HELLO, I am new at Repacking GAMES.
I have created Bins for "COD:ADVANCED WARFARE".
I am have 7 .Bin files and created the setup via Script provided and also edited the Archives.ini but still it is extracting only 3 Bin files and leave the rest of them.
I have correctly renamed then as {setup-1,setup-2,setup-3,setup-4,setup-5,setup-6,setup-7}

Kindly HELP ME in Fixing this !!

This is the Archives.ini that i am using right now ! ~
" if not ShowChangeDiskWindow ('Please locate the Installation Files...', ExpandConstant('{src}'),'Setup-1.bin') then break;
if not ISArcExtract ( 0, 100, 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, 80, 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, 60, 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, 40, 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, 20, 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, 15, ExpandConstant('{src}\Setup-6.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;
if not ShowChangeDiskWindow ('Please Insert Disk 7 To Continue...', ExpandConstant('{src}'),'Setup-7.bin') then break;
if not ISArcExtract ( 0, 10, ExpandConstant('{src}\Setup-7.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;
//if not IS7ZipExtract ( 0, 100, ExpandConstant('{src}\Setup-1.bin'), ExpandConstant('{app}'), false, '') then break;
//if not ISRarExtract ( 0, 100, ExpandConstant('{src}\Setup-1.bin'), ExpandConstant('{app}'), false, '') then break; "

First of all you have to set the setup-#.bin files properly according to how many fit on each disk. Then deal with the numbers ( 0, 100, .. the 100 would be correct IF only 1 file, you have 7 files so 100/7 = 14, so each of your 7 files
the number should be ( 0, 14 so that the % works properly when extracting the files until the end. IF I remember this correctly, if wrong then someone else jump in & correct it.

Also read Note #2 first post.

Please Help We're copying the Video.wmv File black_box script_by_kurutuc V1.8 folder and Maine (the compact.mo + Slideshow & Video) .iss File Inno Ultra I open setup.exe file form I setup when the video instead I edia request may cause black screen please help .. .

#ifexist "Video.avi"
ExtractTemporaryFile('Video.avi');
#endif
#ifexist "Video.mp4"
ExtractTemporaryFile('Video.MP4');
#endif
#ifexist "Video.mpeg"
ExtractTemporaryFile('Video.mpeg');
#endif
#ifexist "Video.mpg"
ExtractTemporaryFile('Video.mpg');
#endif
#ifexist "Video.wmv"
ExtractTemporaryFile('Video.wmv');

EDIT

I re-read your post & see the issue, it doesn't even ask if you want picture background or video background. Use this archive set I know it works.

ramazan19833
30-10-2015, 20:29
I tried the video does not show a black screen ..

ramazan19833
30-10-2015, 20:33
Please Help We're copying the Video.wmv File black_box script_by_kurutuc V1.8 folder and Maine (the compact.mo + Slideshow & Video) .iss File Inno Ultra I open setup.exe file form I setup when the video instead I edia request may cause black screen please help .. .
http://i65.tinypic.com/2zzrj84.jpg
http://www.dosya.tc/server4/6g39ya/Main_Compact.Mode_Slideshow___Video_.rar.html

pakrat2k2
31-10-2015, 09:24
I tried the video does not show a black screen ..

then install k-lite codec pack, then video will show.

Please Help We're copying the Video.wmv File black_box script_by_kurutuc V1.8 folder and Maine (the compact.mo + Slideshow & Video) .iss File Inno Ultra I open setup.exe file form I setup when the video instead I edia request may cause black screen please help .. .



I already told you Kurutucu v1.8 doesn't seem to work with video, use the archive I uploaded & copy over the image files from your folders into the archive folders I uploaded
then the video should work fine, ive tested all video extensions & they play just fine. ( I do have klite codec pack installed tho )

ramazan19833
31-10-2015, 13:14
PLEASE HELP SETUP DOES NOT SEE VIDEO
:confused:http://i.hizliresim.com/7P1d3L.jpg
:confused:http://i.hizliresim.com/p9NVqN.jpg
:confused:http://i.hizliresim.com/B4bNgp.jpg

pakrat2k2
31-10-2015, 13:18
DELETE the setup.exe & re-run the ISS script, to generate NEW setup.exe. IF it still doesn't play, then use archive I uploaded it DOES work.

ramazan19833
31-10-2015, 13:31
:eek:HELP PLEASE DO NOT ARCHIVE DOWNLOADS in

senying
06-11-2015, 17:22
@pakrat2k2
hey.. i have a question, how can i split 1 big file with this blackbox inno setup script?

so the problem is, i try to compress a game that has 1 big file around 10GB
after compressing with this, it's still big around 8GB.. so i want the result of the compression to split, so it can be contain in a DVD-5 size..

can u help me pls ? :D or anyone else can help me ?

rinaldo
07-11-2015, 05:48
@pakrat2k2
hey.. i have a question, how can i split 1 big file with this blackbox inno setup script?

so the problem is, i try to compress a game that has 1 big file around 10GB
after compressing with this, it's still big around 8GB.. so i want the result of the compression to split, so it can be contain in a DVD-5 size..

can u help me pls ? :D or anyone else can help me ?

use this (http://fileforums.com/showpost.php?p=444287&postcount=1)

sasisoman
30-12-2015, 03:50
Hi i am using

if not ShowChangeDiskWindow ('Please Insert Disk To Continue...', ExpandConstant('{src}'),'Setup-1.bin') then break;
if not ISArcExtract ( 0, 45, 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, 40, 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 IS7ZipExtract ( 0, 100, ExpandConstant('{src}\Setup-1.bin'), ExpandConstant('{app}'), false, '') then break;
if not ISRarExtract ( 0, 100, ExpandConstant('{src}\Setup-1.bin'), ExpandConstant('{app}'), false, '') then break;

along with compression method of Freearc+Precomp+Srep Compressor.


I have trouble in repacking. But while extracting the game i am facing the error. ISDoNE.dll

How to fix it

inatha3
11-04-2016, 02:57
sory my english not good , im newbie

after instalation pro evolution soccer 2016
why dt00_win.cpk - dt70_win not insert in folder data ?

my Archieves.ini

if not ShowChangeDiskWindow ('Mohon Masukan DVD untuk melanjutkan...', 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 ('mohon masukan DVD 2 untuk melanjutkan..', 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;

if not ShowChangeDiskWindow ('mohon masukan DVD 2 untuk melanjutkan..', ExpandConstant('{src}'),'Setup-3.bin') then break;

if not ISArcExtract ( 0, 50, ExpandConstant('{src}\Setup-3.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;


im using 2 dvd , What should I do if using 3 dvd or more ?
thanks

ffmla
12-04-2016, 20:16
sory my english not good , im newbie

after instalation pro evolution soccer 2016
why dt00_win.cpk - dt70_win not insert in folder data ?

my Archieves.ini




im using 2 dvd , What should I do if using 3 dvd or more ?
thanks


Hey edit your Archives.ini file .
Ie .total progress is 100.
You need to separate the progress with isdone extraction.
ISArcextract(0,40 for setup-1.bin
ISArcextract(0,40 for setup-2.bin
ISArcextract(0,20 for setup-3.bin
if you create more bin files allocate their progress value total of 100.

These type of questions asked and answers before. So youread all previous threads and know much things. Be effective not lazy:)
Read this thread
http://fileforums.com/showpost.php?p=418281&postcount=89

inatha3
15-04-2016, 11:50
Hey edit your Archives.ini file .
Ie .total progress is 100.
You need to separate the progress with isdone extraction.
ISArcextract(0,40 for setup-1.bin
ISArcextract(0,40 for setup-2.bin
ISArcextract(0,20 for setup-3.bin
if you create more bin files allocate their progress value total of 100.

These type of questions asked and answers before. So youread all previous threads and know much things. Be effective not lazy:)
Read this thread
http://fileforums.com/showpost.php?p=418281&postcount=89

im sory .
I've read but still do not understand , now problem solved hehe thanks .
i can make installer :D

Edioscote
18-04-2016, 16:32
it is possible to change the installer language?

gauravxstore
22-04-2016, 12:35
whenever i create a repack any game and after installed the game it create installed game folder's shortcut on desktop not playable exe game shortcut. plz help me out,,,,,

nizcoz
26-04-2016, 12:46
Hi! i am new. How do I change ¨kurutucu fileforums¨ in the beginning of the setup? Thanks.

felice2011
26-04-2016, 23:55
Hi! i am new. How do I change ¨kurutucu fileforums¨ in the beginning of the setup? Thanks.

Create a new custom logo and replace it to that existing in the style folder.

nizcoz
27-04-2016, 04:35
Create a new custom logo and replace it to that existing in the style folder.

Thanks!!!!!

Gracias!!!

nizcoz
27-04-2016, 04:54
Other question...... I eliminated the tasks. ¿How change the name (and the function) next button on previous page (rename folder, direct access,etc) by install button?

PD: sorry for my bad english.

inatha3
03-05-2016, 11:57
How to Open URL after finish instalation and how to roll back install if corupt or eror ? thanks

anoop1507
04-05-2016, 10:04
I compiled the setup but when try to install it shows setup has stopped working tried many times please help!

Carldric Clement
04-05-2016, 20:38
How to Open URL after finish instalation and how to roll back install if corupt or eror ? thanks

Use This:

procedure CurStepChanged(CurStep: TSetupStep);
var
URL: integer;
begin
if (CurStep = ssPostInstall) and ISDoneError then
begin
Exec2(ExpandConstant('{uninstallexe}'), '/VERYSILENT', false);
end;
if (CurStep=ssPostInstall) and not (ISDoneError) then
begin
ShellExec('open', 'http://your.app.url/', '', '', SW_SHOW, ewNoWait, URL);
end;
end;

inatha3
05-05-2016, 04:02
Use This:

procedure CurStepChanged(CurStep: TSetupStep);
var
URL: integer;
begin
if (CurStep = ssPostInstall) and ISDoneError then
begin
Exec2(ExpandConstant('{uninstallexe}'), '/VERYSILENT', false);
end;
if (CurStep=ssPostInstall) and not (ISDoneError) then
begin
ShellExec('open', 'http://your.app.url/', '', '', SW_SHOW, ewNoWait, URL);
end;
end;


still not working .
can you help me edit my script ? heheh

Razor12911
07-05-2016, 15:14
Try this

Vivekkumar07032003
22-05-2016, 00:10
I am facing a problem whiceinstalling
It shows error 14 could not extract

ffmla
25-05-2016, 10:24
I am facing a problem whiceinstalling
It shows error 14 could not extract

Hello Bro,
Check your compression.
Also make arc.ini file for the decompression process.
That'll helpfull

TsubasaHP
01-06-2016, 06:33
Hi, how we could add music function during installation in UltraARC Script?!

hpmbot149
07-06-2016, 06:10
Okay you can...........Simply add a loopable MP3 file called music.mp3 to the /Style folder in script folder.

I am asking how to use an MP4 video as the setup background?
I enabled the option "Video Background" in script and added a Video.MP4 to /Style but I got a black screen........
Any ideas on fixing that?:)

Vivekkumar07032003
06-07-2016, 10:31
I firstly had a problem with archives, but tried and got a fix…
But now when I compile the setup, the setup launches with the tasks page.
Does not show any welcome or dirselection pagepage

Please help

Prince4
06-07-2016, 22:46
I firstly had a problem with archives, but tried and got a fix…
But now when I compile the setup, the setup launches with the tasks page.
Does not show any welcome or dirselection pagepage

Please help

Check :
[Code]
function ShouldSkipPage1 (PageID: Integer): Boolean;
begin
if (PageID=wpSelectProgramGroup) or (PageID=wpReady) or (PageID=wpSelectComponents) then Result:=true;
end;

Prince4
06-07-2016, 23:00
I firstly had a problem with archives, but tried and got a fix…
But now when I compile the setup, the setup launches with the tasks page.
Does not show any welcome or dirselection pagepage

Please help

Check :
[Code]
function ShouldSkipPage1 (PageID: Integer): Boolean;
begin
if (PageID=wpSelectProgramGroup) or (PageID=wpReady) or (PageID=wpSelectComponents) then Result:=true;
end;

Vivekkumar07032003
06-07-2016, 23:21
I tried and deleted the command but that led to a problem in back button
It is seen but does not work

Vivekkumar07032003
08-07-2016, 21:01
Some times the dir page opens , however 1 out of 20 times , please send me a video to how to fix it.
I am unable to compile e setup with welcome page,

I am using inno 5 Unicode and on win 10 64 bit.


Please , if your setups are all right send me the version which you are using

Vivekkumar07032003
09-07-2016, 03:19
Please tell me about the sections which serializes the pages

Jawahir95
16-07-2016, 01:33
Hi, can any one tell me the code of compact view? Please. Thanks.

mikey26
15-09-2016, 04:06
omg @ramazan19833 everywhere u just spam and never clear about your problems if you actually have any.you created a new thread with this same post wtf dude?

Grumpy
15-09-2016, 06:04
omg @ramazan19833 everywhere u just spam and never clear about your problems if you actually have any.you created a new thread with this same post wtf dude?

He was warned about the spamming, he is now banned for 1 Month to give him enough time to read the Forum Rules. ;)

Razor12911
17-09-2016, 18:17
Phew, at least now my PM box will rest.

52098994
04-10-2016, 02:54
Can help me to solve this error
Thank you very much:)

http://hoop8.com/1610A/MXPGfGEU.png

JRD!
04-10-2016, 03:35
Can help me to solve this error
Thank you very much:)

http://hoop8.com/1610A/MXPGfGEU.png

Your define is not correct: {#AppName} and you have an exclamation mark after the end bracket...

Changes like this:

WizardForm.Caption:= 'Select Dir «{#AppName}»';

If you want display chinese characters look this:

https://hachinouta.wordpress.com/2010/07/12/display-unicode-characters-in-innosetup/

52098994
04-10-2016, 04:12
Your define is not correct: {#AppName} and you have an exclamation mark after the end bracket...

Changes like this:

WizardForm.Caption:= 'Select Dir «{#AppName}»';

If you want display chinese characters look this:

https://hachinouta.wordpress.com/2010/07/12/display-unicode-characters-in-innosetup/

Thank you very much:p

52098994
04-10-2016, 04:15
Your define is not correct: {#AppName} and you have an exclamation mark after the end bracket...

Changes like this:

WizardForm.Caption:= 'Select Dir «{#AppName}»';

If you want display chinese characters look this:

https://hachinouta.wordpress.com/2010/07/12/display-unicode-characters-in-innosetup/

Ask you a question
Automatically choose the biggest drive installation directory?

coliotte
06-11-2016, 05:49
..

lolaya
06-11-2016, 09:56
..

xD

Fakhruddinmaruf_
08-11-2016, 01:29
Why there is no About Button?
how if you make it?

Meireles Silva
18-12-2016, 13:22
Command line invalid when installing DirectX..
how to solve?

Skhakz
20-12-2016, 21:41
How can i extract encrypted bin archive through blackbox script. Can u show the script part to add password in installer.

prince8889
03-01-2017, 07:29
Can I Use pZlib library by Razor12911 With This Script ??

pakrat2k2
03-01-2017, 08:31
test & post back your results.

Abin Antony
16-01-2017, 02:59
I.m not getting the welcome window .After the splash, this is what I get is this(<attachment>).Pleases look into it.

rambohazard
16-01-2017, 05:12
you need add "DisableWelcomePage=false" in inno. Sorry for my bad english

Abin Antony
17-01-2017, 04:55
you need add "DisableWelcomePage=false" in inno. Sorry for my bad english
Is there any specific line or column

Abin Antony
17-01-2017, 05:06
you need add "DisableWelcomePage=false" in inno. Sorry for my bad english

Not working.(Be a bit accurate about where to add).

Fakhruddinmaruf_
17-01-2017, 13:30
help. Why the progress on my setup is more than 100%?

pakrat2k2
17-01-2017, 13:54
help. Why the progress on my setup is more than 100%?

See original post #2, It shows ( 0,100 ...

The 100 is %, so if only 1 file that would be correct, IF 2 files the number has to be 50, all depends on how many files you ended up with..

READ the entire first post until you understand it.

MRMAF
26-01-2017, 09:37
Hello ....Please how can i enable slidshow in

BlackBox v2 Designer it's always disabled .....

Thanks

rambohazard
27-01-2017, 02:30
Is there any specific line or column

In "[Setup]" section, you can add this line: "DisableWelcomePage=false". The newers versions of inno have the Welcome Page disabled by default.
Once again, sorry for the english, i'm brazilian

Abin Antony
28-01-2017, 02:40
Thank you it is working.But now I am not seeing the second page.:confused:
:confused:

Abin Antony
03-02-2017, 07:59
I need to unpack 4 .bin files compressed with arc,precomp,serp,arc.Help

r4ve
05-02-2017, 04:47
How can I remove the CommonRedist folder in my Repacks ?
Even when I uncheck install commonredist, it installs it

Is there any ways to stop installing it with my setups ?

(I use the BlackBox Script (Main One) )

Thanks

rinaldo
05-02-2017, 07:13
you want to remove redist from the main.iss ?
because everything else works :rolleyes:

r4ve
05-02-2017, 09:32
I'm trying to stop the _CommonRedist File to get installed even if the user isn't wanting to have it

Abin Antony
17-02-2017, 02:04
I'm having problems.
I have 4.bin files and I have added proper codes in Archives.ini,but only 1 .bin file is extracted.

rinaldo
17-02-2017, 03:02
mmhh...
then you should never name file Setup-1.bin , as it is the anthem default setup files .. so always erase the file every time you create a new setup.exe rename your Data-1.bin it's better

Abin Antony
17-02-2017, 03:16
Can I extract multiple .bin files without any "Archves.ini" by editing the Script.
If there is any method can you break down it to me in clear steps?
And thankyou for the quick reply :)

And how should I edit the script for making setup.bin to data.bin

rinaldo
17-02-2017, 04:28
Can I extract multiple .bin files without any "Archves.ini" by editing the Script.
If there is any method can you break down it to me in clear steps?
And thankyou for the quick reply :)

And how should I edit the script for making setup.bin to data.bin

no editing
change name Setup-1.bin to Data-1.bin

Abin Antony
17-02-2017, 20:53
Can I extract multiple .bin files without any "Archves.ini" by editing the Script.
If there is any method can you break down it to me in clear steps?
And thankyou for the quick reply :)

And how should I edit the script for making setup.bin to data.bin
What about my first question?

rinaldo
17-02-2017, 21:08
change #include 'Archives.ini'
with code in Archives.ini

Abin Antony
17-02-2017, 23:27
Problem installing directx

rinaldo
18-02-2017, 00:17
use switch Silent

Abin Antony
18-02-2017, 01:47
Please make it clear

rinaldo
18-02-2017, 01:51
old not working
Exec2 (ExpandConstant('{src}\Redist\DirectX\DXSETUP.exe' ),'/q',false)
new ok
Exec2 (ExpandConstant('{src}\Redist\DirectX\DXSETUP.exe' ),'/Silent',false)

ramazan19833
26-02-2017, 09:26
Black_Box_Script_By_Kurutucu_V1.8 Help

supporting video file

#ifexist "Video.avi"
Source: Video.avi; DestDir: {tmp}; Flags: dontcopy
#endif
#ifexist "Video.mp4"
Source: Video.mp4; DestDir: {tmp}; Flags: dontcopy
#endif
#ifexist "Video.mpeg"
Source: Video.mpeg; DestDir: {tmp}; Flags: dontcopy
#endif
#ifexist "Video.mpg"
Source: Video.mpg; DestDir: {tmp}; Flags: dontcopy
#endif
#ifexist "Video.wmv"
Source: Video.wmv; DestDir: {tmp}; Flags: dontcopy
#endif

Game ınstalled video Not playing video
Black screen instead of video Help
http://i.hizliresim.com/ld0bGk.jpg (http://hizliresim.com/ld0bGk)
http://dosya.co/xhbe5r6r47w8/Black_Box_Script_By_Kurutucu_V1.8.7z.html

Stor31
27-02-2017, 07:25
works very well with bzlip 3 by Razor .... :):):):)
but how add Second shortcut ???
thxxxx
plz version for UltraARC !!!!!!!
And how to place a folder in my document
At the end of the installation ????
thx :) :) :)

Abin Antony
06-03-2017, 07:23
Please help I cannot see the second window in installation

Abin Antony
06-03-2017, 07:24
Thank you it is working.But now I am not seeing the second page.:confused:
:confused:

Again.

Stor31
06-03-2017, 12:19
Please help I cannot see the second window in installation
Develops !!!! :confused::confused:
What the second window in installation ?????
Screenshot to better understand your problem :) :)

Abin Antony
15-03-2017, 05:35
Is there any way that the installation can create a registry entry for your game?

Stor31
15-03-2017, 06:25
Is there any way that the installation can create a registry entry for your game?
yes exp :

http://nsa38.casimages.com/img/2017/03/15/170315035107300732.jpg

[Registry]
Root: HKLM; SubKey: SOFTWARE\Wow6432Node\EA Games; Flags: uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Wow6432Node\EA Games\Need for Speed(TM) Most Wanted; ValueType: string; ValueName: Locale; ValueData: fr_FR; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Wow6432Node\EA Games\Need for Speed(TM) Most Wanted; ValueType: string; ValueName: DisplayName; ValueData: Need for Speed Most Wanted; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Wow6432Node\EA Games\Need for Speed(TM) Most Wanted; ValueType: string; ValueName: GameExplorer; ValueData: {{37D18D3E-61F0-4297-A179-6CA7124B7C54}; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\Wow6432Node\EA Games\Need for Speed(TM) Most Wanted; ValueType: string; ValueName: GDFBinary; ValueData: C:\Program Files (x86)\Need for Speed Most Wanted Limited EditionGDFBinary_fr_FR.dll; Flags:
Root: HKLM; SubKey: SOFTWARE\Wow6432Node\EA Games\Need for Speed(TM) Most Wanted; ValueType: string; ValueName: Product GUID; ValueData: {{FB0127F3-985B-44CE-AE29-378CAF60B361}; Flags: uninsdeletevalue uninsdeletekeyifempty

Root: HKLM; SubKey: SOFTWARE\EA Games; Flags: uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\EA Games\Need for Speed(TM) Most Wanted; ValueType: string; ValueName: Locale; ValueData: fr_FR; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\EA Games\Need for Speed(TM) Most Wanted; ValueType: string; ValueName: DisplayName; ValueData: Need for Speed Most Wanted; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\EA Games\Need for Speed(TM) Most Wanted; ValueType: string; ValueName: GameExplorer; ValueData: {{37D18D3E-61F0-4297-A179-6CA7124B7C54}; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\EA Games\Need for Speed(TM) Most Wanted; ValueType: string; ValueName: GDFBinary; ValueData: C:\Program Files\Need for Speed Most Wanted Limited EditionGDFBinary_fr_FR.dll; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM; SubKey: SOFTWARE\EA Games\Need for Speed(TM) Most Wanted; ValueType: string; ValueName: Product GUID; ValueData: {{FB0127F3-985B-44CE-AE29-378CAF60B361}; Flags: uninsdeletevalue uninsdeletekeyifempty

Abin Antony
15-03-2017, 08:48
Is this for every game .If it is not , how should I edit it.I think I saw "MOST WANTED "and"EA" somewhere.��

Stor31
15-03-2017, 09:38
Is this for every game .If it is not , how should I edit it.I think I saw "MOST WANTED "and"EA" somewhere.��
It's just an example :rolleyes::rolleyes:

1-start menu
2-taper regedit
3-searched key
4-right click
5-export to desktop
6-convert to ino (tools by pakrat2k2 thx)
http://fileforums.com/showpost.php?p=410165&postcount=2
7-copy and paste into the script section [Registry] looks picture ...
Enjoy

Jiva newstone
05-04-2017, 09:15
iam jiva , i have a error in unpacking archieves in inno i use this method srep64+delta+exe+lzma

Abin Antony
15-04-2017, 09:42
It's just an example :rolleyes::rolleyes:

1-start menu
2-taper regedit
3-searched key
4-right click
5-export to desktop
6-convert to ino (tools by pakrat2k2 thx)
http://fileforums.com/showpost.php?p=410165&postcount=2
7-copy and paste into the script section [Registry] looks picture ...
Enjoy
I have tried it.But this one creates a registry entry for a single installation location.It will not work if I wanted a different directory.Is there any way I can do that.Most of the repacks I have seen would create a registry entry entry for any location.I believe you can help me with this.:(:(:(

78372
15-04-2017, 21:31
I have tried it.But this one creates a registry entry for a single installation location.It will not work if I wanted a different directory.Is there any way I can do that.Most of the repacks I have seen would create a registry entry entry for any location.I believe you can help me with this.:(:(:(

Change the C:\Program files to {app}

Abin Antony
17-04-2017, 02:58
Change the C:\Program files to {app}

Can you be bit more precise

Abin Antony
17-04-2017, 03:13
In the setup I am not getting the second page- the page asking the destination of installation, for blackbox setup I made.Please help.

78372
24-04-2017, 10:05
Can you be bit more precise

Give me a registry file as example and I will convert it for you. See that example and you will understand

mortezaali
24-06-2017, 01:34
Hi
I make a Setup with Black Box v2 Designer, size of this setup is 11mb
But, the setup which maked by black box have 2mb
i want to create a setup with small size

Stor31
29-06-2017, 10:18
Help and thanks ....
How to add more shortcuts in Blackbox Inno Setup Script ???

buntionly4u
19-08-2017, 06:06
Help needed
Want to enable or disable program group through checkbox as it is in blackbox's script.

ravencrow
20-08-2017, 09:31
Help needed
Want to enable or disable program group through checkbox as it is in blackbox's script.

from where did you get this script?

buntionly4u
20-08-2017, 09:51
from where did you get this script?

From here:
http://fileforums.com/showthread.php?t=96242&highlight=corepack

ravencrow
20-08-2017, 10:00
From here:
http://fileforums.com/showthread.php?t=96242&highlight=corepack

i don't think so, look at the watermark and stuff in lockscreen ;)

buntionly4u
20-08-2017, 13:00
i don't think so, look at the watermark and stuff in lockscreen ;)

I have made many changes in that script that you can see..:rolleyes:

Can u help me out?
Since I am not from IT background so don't know much about programming. In this script I am not able to link the 'no start menu folder checkbox' with the 'start group selection'. if checkbox is checked then no start menu folder and disabled start group selection and if not then start menu folder.

Pl have a look at the code:

function CheckError:boolean;
begin
if ISDoneError = True then
Result := False
else
Result := True;
end;

function CreateGI:boolean;
begin
if CheckError = True then
begin
if NoIconsCheck.IsChecked then
Result:=True
else
Result:=False;
end;
end;

procedure NoIconsCheckOnClick(Sender: TObject);
begin
if NoIconsCheck.IsChecked=True then begin
WizardForm.GroupEdit.Enabled:= false;
WizardForm.GroupBrowseButton.Enabled:= false;
ButtonSetEnabled(GroupBtn, false);
end else begin
WizardForm.GroupEdit.Enabled:= true;
WizardForm.GroupBrowseButton.Enabled:= true;
ButtonSetEnabled(GroupBtn, true);
end;
WizardForm.GroupEdit.Color:= clblack;
end;

-NORO-
20-08-2017, 14:59
I have made many changes in that script that you can see..:rolleyes:

Can u help me out?
Since I am not from IT background so don't know much about programming. In this script I am not able to link the 'no start menu folder checkbox' with the 'start group selection'. if checkbox is checked then no start menu folder and disabled start group selection and if not then start menu folder.

Pl have a look at the code:

function CheckError:boolean;
begin
if ISDoneError = True then
Result := False
else
Result := True;
end;

function CreateGI:boolean;
begin
if CheckError = True then
begin
if NoIconsCheck.IsChecked then
Result:=True
else
Result:=False;
end;
end;

procedure NoIconsCheckOnClick(Sender: TObject);
begin
if NoIconsCheck.IsChecked=True then begin
WizardForm.GroupEdit.Enabled:= false;
WizardForm.GroupBrowseButton.Enabled:= false;
ButtonSetEnabled(GroupBtn, false);
end else begin
WizardForm.GroupEdit.Enabled:= true;
WizardForm.GroupBrowseButton.Enabled:= true;
ButtonSetEnabled(GroupBtn, true);
end;
WizardForm.GroupEdit.Color:= clblack;
end;
Hello
Can you tell me, from where you got it ? , am curious because there is my name in watermark and i shared it only to few people.
Btw your functions to analyze hard disk and give informations arent working when you choose another drive like D ,F , etc.

ravencrow
21-08-2017, 03:32
I have made many changes in that script that you can see..:rolleyes:

Can u help me out?
Since I am not from IT background so don't know much about programming. In this script I am not able to link the 'no start menu folder checkbox' with the 'start group selection'. if checkbox is checked then no start menu folder and disabled start group selection and if not then start menu folder.

Pl have a look at the code:

function CheckError:boolean;
begin
if ISDoneError = True then
Result := False
else
Result := True;
end;

function CreateGI:boolean;
begin
if CheckError = True then
begin
if NoIconsCheck.IsChecked then
Result:=True
else
Result:=False;
end;
end;

procedure NoIconsCheckOnClick(Sender: TObject);
begin
if NoIconsCheck.IsChecked=True then begin
WizardForm.GroupEdit.Enabled:= false;
WizardForm.GroupBrowseButton.Enabled:= false;
ButtonSetEnabled(GroupBtn, false);
end else begin
WizardForm.GroupEdit.Enabled:= true;
WizardForm.GroupBrowseButton.Enabled:= true;
ButtonSetEnabled(GroupBtn, true);
end;
WizardForm.GroupEdit.Color:= clblack;
end;

you say you have no it background and programming knowledge, yet you managed to make all these changes to the script? and why did you put my name and NORO's name into your script? it doesn't make sense

buntionly4u
21-08-2017, 03:38
you say you have no it background and programming knowledge, yet you managed to make all these changes to the script? and why did you put my name and NORO's name into your script? it doesn't make sense

I will remove all the names from the script once I done with the script.

Kobi Blade
21-08-2017, 03:41
you say you have no it background and programming knowledge, yet you managed to make all these changes to the script? and why did you put my name and NORO's name into your script? it doesn't make sense
Clearly someone leaked it, any other bugs we should know about to fix it and use? (NORO did say he shared with few people, big mistake) :p

I will remove all the names from the script once I done with the script.
That won't solve the problem of you stealing others work and claiming to be your own, and now you just admitted you're going to remove the credits (no wonder everyone is closing their sources and/or stopping development).

buntionly4u
21-08-2017, 04:06
Clearly someone leaked it, any other bugs we should know about to fix it and use? (NORO did say he shared with few people, big mistake) :p


That won't solve the problem of you stealing others work and claiming to be your own, and now you just admitted you're going to remove the credits (no wonder everyone is closing their sources and/or stopping development).

where the question of stealing others work comes from when someone made his work open for public. pl check the below link for god sake

http://fileforums.com/showthread.php?t=96242&highlight=corepack

Kobi Blade
21-08-2017, 04:19
where the question of stealing others work comes from when someone made his work open for public. pl check the below link for god sake

http://fileforums.com/showthread.php?t=96242&highlight=corepack
That is from Razor12911 in order to share with other developers how it's done, what you have is a custom EDIT from ravencrow!

That is not the base of the problem though, is the fact you claim it's your work and admitted you're going to remove the credits of those who spent hours/days/weeks/months/years working on it. It's because of people like you that developers don't cooperate and improve their projects (sharing their sources), leeches taking credit of others work.

I hope no one helps you with that, cause clearly you don't deserve it. If you truly had a hand in that script you could fix it alone with no effort, much like I did (at least I won't take credit for others work).

buntionly4u
21-08-2017, 04:21
That is from Razor12911 in order to share to others how it's done, what you have is a custom EDIT from ravencrow!

That is not the base of the problem though, is the fact you claim it's your work and admitted you're going to remove the credits of those who spent hours/days/weeks/months/years working on it.

I haven't removed but they don't want to include...

do the changes way you want and post the script..

Kobi Blade
21-08-2017, 04:28
I haven't removed but they don't want to include...

do the changes way you want and post the script..
I'm not going to post anything (no way I'm helping leeches), this is ravencrow work! The fixes I make are for my own use, unless ravencrow states otherwise.

buntionly4u
21-08-2017, 05:00
I'm not going to post anything (no way I'm helping leeches), this is ravencrow work! The fixes I make are for my own use, unless ravencrow states otherwise.


first of all this is not ravencrow's script. It is shared by razor12911. I have done the changes. check #1155 and see.

the only real leeche is you who took the work or razor and mine and edited the way you want and even keep giving me moral lecture.

I don't need your help there are other peoples or eventually I will do it myself as i did other modification but it took too much time.

KaktoR
21-08-2017, 05:04
the only real leeche is you who took the work or razor and mine and edited the way you want and even keep giving me moral lecture.

As long as "Kobi Blade" giving proper credits from where the base script come from, i see no problem here.

And i guess that's the way when people decide to public their source code.

Edit: And if anyone shaing their work and don't want people to edit them and share them all over the internet, then the initial creator is in mandatory to say that explicit. Over this, there are many ways to protect the work from stealing. Otherwise initial creator acted negligently, as he should know that the internet is not a place for safety.

Kobi Blade
21-08-2017, 05:32
As long as "Kobi Blade" giving proper credits from where the base script come from, i see no problem here.

And i guess that's the way when people decide to public their source code.

Edit: And if anyone shaing their work and don't want people to edit them and share them all over the internet, then the initial creator is in mandatory to say that explicit. Over this, there are many ways to protect the work from stealing. Otherwise initial creator acted negligently, as he should know that the internet is not a place for safety.
I do always, not even give myself credit in any of the scripts. I may make my own changes and fixes, but the credit is all for Razor12911!

I'm sorry if I caused any problem with the little rant I had, it's just frustrating to see others work (credit) being taken like that.

buntionly4u
22-08-2017, 01:22
Hello
Can you tell me, from where you got it ? , am curious because there is my name in watermark and i shared it only to few people.
Btw your functions to analyze hard disk and give informations arent working when you choose another drive like D ,F , etc.

can u pl tell how to remove this bug

-NORO-
22-08-2017, 02:20
can u pl tell how to remove this bug

I guess you didnt answer to my question first

Grumpy
22-08-2017, 05:02
I'm sorry if I caused any problem with the little rant I had, it's just frustrating to see others work (credit) being taken like that.

No problems caused, I agree with everything you said in that 'rant'. ;)

buntionly4u
22-08-2017, 06:03
I guess you didnt answer to my question first

i have already mentioned from where i got this script and secondly your names were included unintentionally. i showed this script to my frnd who done some changes including your name (coz i have given him corepack's installer inwhich your names were mentioned). I haven't noticed until you pointed out.

buntionly4u
23-08-2017, 10:24
No problems caused, I agree with everything you said in that 'rant'. ;)

there are some peoples you wil find them frustrated all the time, lecturing others, talking about morals but on the ground these persons are useless and I call this unique kind as loosers. so kobi is a looser and you are his big brother. I look at these peoples as barking dogs better be ignored..

Grumpy
23-08-2017, 19:03
there are some peoples you wil find them frustrated all the time, lecturing others, talking about morals but on the ground these persons are useless and I call this unique kind as loosers. so kobi is a looser and you are his big brother. I look at these peoples as barking dogs better be ignored..

Here's the thing, I dont have time for your shit .... cya ;)

nishara95
12-09-2017, 05:56
i am made black box setup and it not shown select dir and welcome page...plzz help me

nordi
14-11-2017, 09:25
@nishara95

I had the same error with Inno Setup (Vers. innosetup-5.5.9-unicode.exe).
Pls can you try this Version: innosetup 5.5.5-unicode

For my prob it`s ok now...

Edit: Ohhh, last post same month ago...

fanzhong
27-11-2017, 20:04
I can not speak English
please help me
http://chuantu.biz/t6/160/1511841750x-1404817722.png

fanzhong
29-11-2017, 22:38
I can not speak English
please help me
http://chuantu.biz/t6/160/1511841750x-1404817722.png

@pakrat2k2
@Kurutucu

pakrat2k2
25-12-2017, 22:28
its asking for next disk

Sonansyach_10
26-12-2017, 00:24
how to make this blackbox setup support internal compression ??

Kral
18-08-2018, 03:07
What is shown in the picture Elapsed time elapsed time installation% how many have been completed I want to do the same as in the picture,http://hizliresim.net/i/2018/08/18/elapsed-time_76650389.jpg

Kral
22-02-2019, 07:04
Only Slide Show Code emergency

Kral
28-02-2019, 09:17
I have adapted the skin with the .vsf extension to my own Setup file but it is getting the ISDone.dll Error or the setup pointing out when the files are ekisk but the font does not appear. Link to image error: https://i.hizliresim.com/YQpYW6.png

CANNIBAL
02-03-2019, 08:09
Can Someone Add "Split" Module For Ultraarc Support

Kral
07-03-2019, 06:10
Well, in a way that does not exceed 100% of the .bin files in the components section of the elective I'm going to choose which language to install the game according to that language will be how it will be

Do NOT quote first posts ever !

y_thelastknight
14-03-2019, 09:59
Can Someone Add "Split" Module For Ultraarc Support

where are you from Sri Lanka? send me a private msg if you need help.

pakrat2k2
15-03-2019, 09:27
^^ wow!! long time no see... glad to see ya around..

y_thelastknight
15-03-2019, 16:03
^^ wow!! long time no see... glad to see ya around..

haha, i check forum some times.
how are you mate?

Kaiba
16-03-2019, 05:02
its asking for next disk

I have this problem as well.
Anyone got a fix?

Behnam2018
15-05-2019, 09:29
install_script music and time code Inno Setup Compiler?

Behnam2018
15-05-2019, 09:55
How do I install the music and the clock I've added to the program to installer Inno Setup
Compiler?

ثقبشد2هددخ
09-08-2019, 22:27
هچکودوم فارسی بلدن

NickX700K
09-08-2019, 22:52
هچکودوم فارسی بلدن

نه داداش اینا بلد نیستن
درضمن خوش اومدی
من خیلی وقته اینجام
چیزی میخوایی از من بپرس

Th3Raven
13-08-2019, 13:28
هچکودوم فارسی بلدن

نه داداش اینا بلد نیستن
درضمن خوش اومدی
من خیلی وقته اینجام
چیزی میخوایی از من بپرس

English please.

NickX700K
18-08-2019, 22:43
English please.

dont worry friend
i just asked him to speak in english and i told him welcome