FileForums

FileForums (https://fileforums.com/index.php)
-   Conversion Tutorials (https://fileforums.com/forumdisplay.php?f=55)
-   -   BlackBox v2 (https://fileforums.com/showthread.php?t=95595)

nhinchihap3 30-04-2015 05:16

How to use slideshow and video , i can't tick slideshow and video ?

yassineimax 05-05-2015 17:16

1 Attachment(s)
My Ultimate Installer Work Perfectly


Note :
My script only work with this version of inno setup.
to run correctly please remove any previous versions of inno and install this version attached below
hope you enjoy it

Links :
Ultimate Box Script V.1
Inno Setup Unicode Ultra
Compressor v1.2.0

lhanz678 05-05-2015 19:17

Quote:

Originally Posted by yassineimax (Post 440473)
My Ultimate Installer Work Perfectly


Note :
My script only work with this version of inno setup.
to run correctly please remove any previous versions of inno and install this version attached below
hope you enjoy it

Links :
Ultimate Box Script V.1
Inno Setup Unicode Ultra
Compressor v1.2.0

nice sharing mate, good job :)
ps: your script is working on Inno Ultra (enhanced edition)

coveiro 05-05-2015 19:43

It works in the Ultra Arc ?

yassineimax 06-05-2015 13:46

i'm glad you like it
if you face any issues please let me know.
make some tests and share

Stor31 07-05-2015 05:39

Quote:

Originally Posted by coveiro (Post 440479)
It works in the Ultra Arc ?

after test with UltraArc
It does not work
damage :(:(

razor12911 can solve the problem

Razor12911 08-05-2015 06:03

Of course it doesn't work. You can't expect UltraARC to work on any script without implementation.

ravencrow 18-06-2015 11:47

Quote:

Originally Posted by yassineimax (Post 440473)
My Ultimate Installer Work Perfectly


Note :
My script only work with this version of inno setup.
to run correctly please remove any previous versions of inno and install this version attached below
hope you enjoy it

Links :
Ultimate Box Script V.1
Inno Setup Unicode Ultra
Compressor v1.2.0

good job mate

amittp 12-07-2015 22:22

Quote:

Originally Posted by rxlord (Post 429023)
hey i am using this compression method for archives:- -mprecomp+srep64+delta+lzma64:a1:mfbt4:d158m:fb273: mc1000:lc8
and i am getting this error in setup:-
---------------------------
ISDone.dll
---------------------------
An error occurred while unpacking: Unable to read data!
Unarc.dll returned an error code: -6
ERROR: can't open file setup-1.bin
---------------------------
OK
---------------------------

Change the archieve name to "{src}/setup-1.bin"
I too had this problem but by using above name it is solved

babak1 15-07-2015 04:19

Est it possible to change the installation path of the game (not manually):

C:\Program Files (x86)\Publisher Name\Application Name

to

D:\Application Name

???
__________________________________________________ ________________

Ок. I think I figured out.

Need in tab Resources - Output Dir put D:\{app}\

__________________________________________________ ________________

What the hell ... this method does not work anymore. But why.

pakrat2k2 15-07-2015 08:43

don't specify drive letter just {app}

babak1 15-07-2015 08:49

Quote:

Originally Posted by pakrat2k2 (Post 441954)
don't specify drive letter just {app}

I want a steady installation path to the disk D:\

klaroqsim 04-08-2015 16:00

its compatible with ultra arc ?
i get error "incompatible compressed data format ...
an error ocurred when unpacking! unarc.dll returned an error code: -1 , ERROR archive data corrupted (decompression fails)
but with installer creator works

TREGAKLE 05-08-2015 06:51

how to use slideshows and videos i cant use them and please give a full tutorial video on this installer ...please requesting you all ... anyone HELP

TREGAKLE 05-08-2015 07:48

how to solve this error in the following pichttp://s5.postimg.org/ro1yicbp3/problem3.png

ivanlakersss666 06-08-2015 09:32

I should change to select the subfolder game.exe to my desktop shortcut to run me well???


http://s29.postimg.org/hf6omltqf/Sin_t_tulo.jpg

toto621 06-08-2015 10:18

Quote:

Originally Posted by ivanlakersss666 (Post 442351)
I should change to select the subfolder game.exe to my desktop shortcut to run me well???


http://s29.postimg.org/hf6omltqf/Sin_t_tulo.jpg

Actually you will have to change two lines of the [Icons] section of the script to make it work.

Let's say the game exe is in the subfolder bin\release\ for example, you will have to modify those lines :
Code:

Name: "{group}\{#AppName}"; Filename: "{app}\{#AppExec}"; WorkingDir: "{app}"; Check: CheckError
Name: "{commondesktop}\{#AppName}"; Filename: "{app}\{#AppExec}"; WorkingDir: "{app}"; Check: CheckError

to
Code:

Name: "{group}\{#AppName}"; Filename: "{app}\bin\release\{#AppExec}"; WorkingDir: "{app}\bin\release"; Check: CheckError
Name: "{commondesktop}\{#AppName}"; Filename: "{app}\bin\release\{#AppExec}"; WorkingDir: "{app}\bin\release"; Check: CheckError


ivanlakersss666 06-08-2015 11:07

are you sure?

pakrat2k2 06-08-2015 11:14

yes its correct as posted

ivanlakersss666 06-08-2015 11:37

//----------This InstalShouldSkipPageler Uses Inno Setup Unicode Version----------\\
#define AppName "Lords Of The Fallen"
#define AppPublisher "Ivanlakersss666"
#define AppVersion "1.00"
#define AppExec "LordsOfTheFallen.exe"
#define AppURL "https://www.youtube.com"
#define AppSize "18000"
#define SetupName "Setup"
#define SetupOut "Output"

#define PrecompVer "Inside"

[Setup]
AppName={#AppName}
AppPublisher={#AppPublisher}
AppVersion={#AppVersion}
AppComments={#AppName}
DefaultDirName=C:\Program Files (x86)\Juegos\Lords of the Fallen
DefaultGroupName={#AppName}
OutputBaseFilename={#SetupName}
OutputDir={#SetupOut}
SetupIconFile=Style\Setup.ico
WizardImageFile=Style\Background.bmp
WizardSmallImageFile=Style\smallbitmap.bmp
//////////////
Compression=none

[Icons]
Name: {group}\Uninstall {#AppName}; Filename: {app}\unins000.exe; WorkingDir: {app}; Check: CheckError
Name: "{group}\{#AppName}"; Filename: "{app}\bin\{#AppExec}"; WorkingDir: "{app}\bin"; Check: CheckError
Name: "{commondesktop}\{#AppName}"; Filename: "{app}\bin\{#AppExec}"; WorkingDir: "{app}\bin"; Check: CheckError


Are ok this???

ivanlakersss666 07-08-2015 01:51

Any help?

Razor12911 07-08-2015 01:59

Quote:

Originally Posted by ivanlakersss666 (Post 442384)
Any help?

Just be patient bro. Your question will be answered in time.
AppExec should be equal to the subdirectory + executable. "bin\game.exe", no need to edit [Icon]

toto621 07-08-2015 02:09

Quote:

Originally Posted by Razor12911 (Post 442385)
Just be patient bro. Your question will be answered in time.
AppExec should be equal to the subdirectory + executable. "bin\game.exe", no need to edit [Icon]

If you just add subdirectory in AppExec, will the shortcut not be faulty because WorkingDir point only to {app} and not the right subdirectory ?

Razor12911 07-08-2015 02:21

I forgot about that. Either way, I could make it work. It is very simple.
Make two functions name them GetAppExec and GetAppDir.
The result in GetAppExec must be ExpandConstant ('{#AppExec}');
The result in GetAppDir must be
ExtractFileDir(ExpandConstant ('{#AppExec}'));
then under Icon section.
the filename must be {code:GetAppExec}
and WorkingDir must be {code:GetAppDir}
Simple as that.

ivanlakersss666 07-08-2015 06:30

You can correct me my share so that you can work for me either scripts M.r Razor??Thank you!!!

http://www64.zippyshare.com/v/wOpDN0SS/file.html

TREGAKLE 07-08-2015 07:03

atlast i was succesfull making my own repack but i got one error all the time whenever i run the setup.exe it runs well but in the middle of installation of a game or program whenever i click on my logo the installation got stuck at XX.X%(e.g.-34.9%) and thus the installer cant continue and i have to close it from the task manager...please fix this ...and please update this blackbox installer setup so that we can use slideshows and videos and as well as we can attach our links to the installer.....please reply

ivanlakersss666 07-08-2015 23:41

Can you edit my scripts mr.razor??

ivanlakersss666 15-08-2015 02:07

Quote:

Originally Posted by Razor12911 (Post 442388)
I forgot about that. Either way, I could make it work. It is very simple.
Make two functions name them GetAppExec and GetAppDir.
The result in GetAppExec must be ExpandConstant ('{#AppExec}');
The result in GetAppDir must be
ExtractFileDir(ExpandConstant ('{#AppExec}'));
then under Icon section.
the filename must be {code:GetAppExec}
and WorkingDir must be {code:GetAppDir}
Simple as that.


[Icons]
Name: {group}\Uninstall {#AppName}; Filename: {app}\unins000.exe; WorkingDir: {app}; Check: CheckError
Name: {group}\{#AppName}; Filename: {app}\{#AppExec}; WorkingDir: {app}; Check: CheckError
Name: {commondesktop}\{#AppName}; Filename: {app}\{#AppExec}; WorkingDir: {app}; Check: CheckError

Edit me this please....i need you suport M,R Razor :( :( for the game Lord of Fallen

Razor12911 17-08-2015 09:07

Bro, toto621 already explained it to you, The inno setup documentation explains it too.

Razor12911 17-08-2015 16:46

Quote:

Originally Posted by toto621 (Post 442352)
Actually you will have to change two lines of the [Icons] section of the script to make it work.
Let's say the game exe is in the subfolder bin\release\ for example, you will have to modify those lines :
Code:

Name: "{group}\{#AppName}"; Filename: "{app}\{#AppExec}"; WorkingDir: "{app}"; Check: CheckError
Name: "{commondesktop}\{#AppName}"; Filename: "{app}\{#AppExec}"; WorkingDir: "{app}"; Check: CheckError

to
Code:

Name: "{group}\{#AppName}"; Filename: "{app}\bin\release\{#AppExec}"; WorkingDir: "{app}\bin\release"; Check: CheckError
Name: "{commondesktop}\{#AppName}"; Filename: "{app}\bin\release\{#AppExec}"; WorkingDir: "{app}\bin\release"; Check: CheckError


Quote:

Originally Posted by ivanlakersss666 (Post 442354)
are you sure?

Quote:

Originally Posted by pakrat2k2 (Post 442355)
yes its correct as posted

Quote:

Originally Posted by ivanlakersss666 (Post 442356)
//----------This InstalShouldSkipPageler Uses Inno Setup Unicode Version----------\\
#define AppName "Lords Of The Fallen"
#define AppPublisher "Ivanlakersss666"
#define AppVersion "1.00"
#define AppExec "LordsOfTheFallen.exe"
#define AppURL "https://www.youtube.com"
#define AppSize "18000"
#define SetupName "Setup"
#define SetupOut "Output"
#define PrecompVer "Inside"
[Setup]
AppName={#AppName}
AppPublisher={#AppPublisher}
AppVersion={#AppVersion}
AppComments={#AppName}
DefaultDirName=C:\Program Files (x86)\Juegos\Lords of the Fallen
DefaultGroupName={#AppName}
OutputBaseFilename={#SetupName}
OutputDir={#SetupOut}
SetupIconFile=Style\Setup.ico
WizardImageFile=Style\Background.bmp
WizardSmallImageFile=Style\smallbitmap.bmp
//////////////
Compression=none
[Icons]
Name: {group}\Uninstall {#AppName}; Filename: {app}\unins000.exe; WorkingDir: {app}; Check: CheckError
Name: "{group}\{#AppName}"; Filename: "{app}\bin\{#AppExec}"; WorkingDir: "{app}\bin"; Check: CheckError
Name: "{commondesktop}\{#AppName}"; Filename: "{app}\bin\{#AppExec}"; WorkingDir: "{app}\bin"; Check: CheckError

Are ok this???

Quote:

Originally Posted by ivanlakersss666 (Post 442384)
Any help?


Question was answered a long time ago, What more do you want? Plus, you are asking this question in the wrong thread, your script has nothing to do with BlackBox v2.

ivanlakersss666 18-08-2015 07:21

I fix with the repack blackbox v1.8 kucuruku.No problem.Thanxxx :P

Vincendre 29-09-2015 12:49

Hey,
I've already ask some questions here (http://www.fileforums.com/showthread.php?t=96298&page=4) about the DLG_S_&_C software and RePacks of Games in general.
But this time, I have only one question about BlackBox v2 Designer :

Does It's possible to change the English text by French during installation ?
(Can I edit english text somewhere ?)

I saw that's there is a french file in installation folder here : BlackBox v2 Designer\Script\Include\Languages\French.isl
But what is it for ?

Thanks, and sorry for my bad English.

Edit : And also, why this BlackBox V2 won't extract and install my Setup.bin files, whats the right steps for install a game from setup.bin files ?
Edit 2 : I found my solution, everything works ! (But still no idea for translate text..)

gatosky1620 29-09-2015 14:52

Quote:

Originally Posted by Vincendre (Post 443563)
Hey,
I've already ask some questions here (http://www.fileforums.com/showthread.php?t=96298&page=4) about the DLG_S_&_C software and RePacks of Games in general.
But this time, I have only one question about BlackBox v2 Designer :

Does It's possible to change the English text by French during installation ?
(Can I edit english text somewhere ?)

I saw that's there is a french file in installation folder here : BlackBox v2 Designer\Script\Include\Languages\French.isl
But what is it for ?

Thanks, and sorry for my bad English.

the same question for spanish, and can you add more redistributables

Razor12911 19-10-2015 13:43

guys, you can't change between languages in this installer.

FabyGaming 31-10-2015 10:58

how to change the installer language?

pakrat2k2 31-10-2015 11:47

look up 1 post from yours for the answer :rolleyes:

symbianizer 11-12-2015 01:38

Please update support for ultraarc :)

ChieftFat 15-12-2015 04:48

can you give original logo of black box repack along with original about repack

sasisoman 30-12-2015 09:35

How do we compress files using the compresser provided?

Steps to how to use the compresser to compress. Settings please

Stor31 06-01-2016 09:49

Please update support for ultraarc :(


All times are GMT -7. The time now is 12:32.

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