Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials
Register FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 08-06-2015, 08:41
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,043 Times in 3,086 Posts
pakrat2k2 is on a distinguished road
Quote:
Originally Posted by ct-723d View Post
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.
Reply With Quote
Sponsored Links
  #2  
Old 09-06-2015, 07:04
ZeD1818 ZeD1818 is offline
Registered User
 
Join Date: Aug 2014
Location: Home
Posts: 9
Thanks: 5
Thanked 0 Times in 0 Posts
ZeD1818 is on a distinguished road
HELP ! ! ! ! !
I m getting this error while compiling Main.iss
Attached Images
File Type: jpg error.jpg (183.8 KB, 375 views)
Reply With Quote
  #3  
Old 09-06-2015, 08:29
mausschieber's Avatar
mausschieber mausschieber is offline
Conversion Designer
 
Join Date: Jan 2011
Location: germany
Posts: 4,324
Thanks: 6,767
Thanked 11,733 Times in 3,238 Posts
mausschieber is on a distinguished road
Quote:
Originally Posted by ZeD1818 View Post
HELP ! ! ! ! !
I m getting this error while compiling Main.iss
use Inno Setup Enhanced Unicode that should help you

link is here
Reply With Quote
The Following User Says Thank You to mausschieber For This Useful Post:
ZeD1818 (12-06-2015)
  #4  
Old 12-06-2015, 10:10
ZeD1818 ZeD1818 is offline
Registered User
 
Join Date: Aug 2014
Location: Home
Posts: 9
Thanks: 5
Thanked 0 Times in 0 Posts
ZeD1818 is on a distinguished road
Quote:
Originally Posted by mausschieber View Post
use Inno Setup Enhanced Unicode that should help you

link is here
Thanks man, it really works
Reply With Quote
  #5  
Old 10-06-2015, 03:00
n00b9100 n00b9100 is offline
Registered User
 
Join Date: Jun 2015
Location: hell
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
n00b9100 is on a distinguished road
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.

Last edited by n00b9100; 12-06-2015 at 00:25.
Reply With Quote
  #6  
Old 12-06-2015, 10:14
ZeD1818 ZeD1818 is offline
Registered User
 
Join Date: Aug 2014
Location: Home
Posts: 9
Thanks: 5
Thanked 0 Times in 0 Posts
ZeD1818 is on a distinguished road
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'

Last edited by Grumpy; 12-06-2015 at 19:15.
Reply With Quote
  #7  
Old 12-06-2015, 11:02
punchao's Avatar
punchao punchao is offline
Registered User
 
Join Date: Apr 2014
Location: Barcelona
Posts: 156
Thanks: 112
Thanked 44 Times in 36 Posts
punchao is on a distinguished road
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;
Reply With Quote
The Following 2 Users Say Thank You to punchao For This Useful Post:
Grumpy (12-06-2015), ZeD1818 (12-06-2015)
  #8  
Old 15-06-2015, 09:03
punchao's Avatar
punchao punchao is offline
Registered User
 
Join Date: Apr 2014
Location: Barcelona
Posts: 156
Thanks: 112
Thanked 44 Times in 36 Posts
punchao is on a distinguished road
i need a correct .bat to use msc+srep with kurutucu conpressor
Reply With Quote
  #9  
Old 19-06-2015, 12:12
Pasq92 Pasq92 is offline
Registered User
 
Join Date: Jun 2015
Location: Italy
Posts: 9
Thanks: 4
Thanked 1 Time in 1 Post
Pasq92 is on a distinguished road
I have a few questions:

How do we edit cjstyle files??

How do I translate these texts?

Immagine.jpg

Quote:
Originally Posted by punchao View Post
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;

Last edited by Pasq92; 20-06-2015 at 02:55.
Reply With Quote
  #10  
Old 27-07-2015, 16:30
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,751
Thanks: 2,181
Thanked 11,211 Times in 2,309 Posts
Razor12911 is on a distinguished road
Quote:
Originally Posted by Pasq92 View Post
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.
Reply With Quote
  #11  
Old 13-08-2015, 03:30
bastien360 bastien360 is offline
Registered User
 
Join Date: Jul 2014
Location: Rodrigues,Mauritius
Posts: 26
Thanks: 19
Thanked 0 Times in 0 Posts
bastien360 is on a distinguished road
can someone told me how to change the blue color progress bar to another color plz...thnx in advance
Reply With Quote
  #12  
Old 17-08-2015, 16:58
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,751
Thanks: 2,181
Thanked 11,211 Times in 2,309 Posts
Razor12911 is on a distinguished road
edit the cjstyle to change progressbar colour.
Reply With Quote
  #13  
Old 18-08-2015, 17:41
xyraclius xyraclius is offline
Registered User
 
Join Date: Aug 2015
Location: Indonesia
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
xyraclius is on a distinguished road
Help

hello guys, how to remove 'Setup need the next disk"
Reply With Quote
  #14  
Old 19-08-2015, 05:17
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,751
Thanks: 2,181
Thanked 11,211 Times in 2,309 Posts
Razor12911 is on a distinguished road
Edit english.ini
Reply With Quote
The Following User Says Thank You to Razor12911 For This Useful Post:
Bilawal (19-08-2015)
  #15  
Old 21-08-2015, 08:22
bastien360 bastien360 is offline
Registered User
 
Join Date: Jul 2014
Location: Rodrigues,Mauritius
Posts: 26
Thanks: 19
Thanked 0 Times in 0 Posts
bastien360 is on a distinguished road
thnx razor...
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
INNO TROUBLESHOOT - Tutorials and Answers about INNO Setup REV0 Conversion Tutorials 129 21-05-2021 05:51
INNO TUTORIAL - Using Unicode and ANSI Versions of INNO Setup REV0 Conversion Tutorials 51 26-03-2015 06:57
Copy file with Inno Setup Script emrahcey Software 1 02-07-2010 08:24



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


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