Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials

Reply
 
Thread Tools Display Modes
  #1006  
Old 20-04-2015, 04:44
DrakeMcCain DrakeMcCain is offline
Registered User
 
Join Date: Sep 2014
Location: Turkey
Posts: 10
Thanks: 0
Thanked 8 Times in 5 Posts
DrakeMcCain is on a distinguished road
Quote:
Originally Posted by punchao View Post
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.
Reply With Quote
The Following User Says Thank You to DrakeMcCain For This Useful Post:
punchao (21-04-2015)
Sponsored Links
  #1007  
Old 27-04-2015, 04:52
alucard1973 alucard1973 is offline
Registered User
 
Join Date: Apr 2015
Location: Madrid
Posts: 45
Thanks: 1
Thanked 3 Times in 3 Posts
alucard1973 is on a distinguished road
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:


second problem:




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



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

Last edited by alucard1973; 29-04-2015 at 13:01.
Reply With Quote
  #1008  
Old 02-05-2015, 08:16
nhinchihap3 nhinchihap3 is offline
Registered User
 
Join Date: Feb 2014
Location: VietNam
Posts: 13
Thanks: 4
Thanked 2 Times in 2 Posts
nhinchihap3 is on a distinguished road
Hep me
I use freearc and create 2 file
setup-1.bin
setup-2,bin
and i change Archives,ini
Code:
if not ISArcExtract ( 0, 50, ExpandConstant('{src}\setup-1.bin'), ExpandConstant('{app}'), '', false, '', '', ExpandConstant('{app}'), notPCFonFLY {PCFonFLY}) then break;
if not ShowChangeDiskWindow ('Please Insert Next Disk To Continue..', ExpandConstant('{src}'),'Setup-2.bin') then break;
if not ISArcExtract ( 0, 50, ExpandConstant('{src}\setup-2.bin'), ExpandConstant('{app}'), '', false, '', '', ExpandConstant('{app}'), notPCFonFLY {PCFonFLY}) then break;
but error " It is not found any file specified for ISArcExtract "
Reply With Quote
  #1009  
Old 03-05-2015, 11:26
DrakeMcCain DrakeMcCain is offline
Registered User
 
Join Date: Sep 2014
Location: Turkey
Posts: 10
Thanks: 0
Thanked 8 Times in 5 Posts
DrakeMcCain is on a distinguished road
Quote:
Originally Posted by nhinchihap3 View Post
Hep me
I use freearc and create 2 file
setup-1.bin
setup-2,bin
and i change Archives,ini
Code:
if not ISArcExtract ( 0, 50, ExpandConstant('{src}\setup-1.bin'), ExpandConstant('{app}'), '', false, '', '', ExpandConstant('{app}'), notPCFonFLY {PCFonFLY}) then break;
if not ShowChangeDiskWindow ('Please Insert Next Disk To Continue..', ExpandConstant('{src}'),'Setup-2.bin') then break;
if not ISArcExtract ( 0, 50, ExpandConstant('{src}\setup-2.bin'), ExpandConstant('{app}'), '', false, '', '', ExpandConstant('{app}'), notPCFonFLY {PCFonFLY}) then break;
but error " It is not found any file specified for ISArcExtract "
First of all, use Kurutucu Compressor.

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

And secondly, change archives.ini like this:

Code:
if not ShowChangeDiskWindow ('Please Insert Next Disk To Continue..', ExpandConstant('{src}'),'setup-1.bin') then break;
if not ISArcExtract ( 0, 50, ExpandConstant('{src}\setup-1.bin'), ExpandConstant('{app}'), '', false, '', '', ExpandConstant('{app}'), notPCFonFLY {PCFonFLY}) then break;
if not ShowChangeDiskWindow ('Please Insert Next Disk To Continue..', ExpandConstant('{src}'),'setup-2.bin') then break;
if not ISArcExtract ( 0, 50, ExpandConstant('{src}\setup-2.bin'), ExpandConstant('{app}'), '', false, '', '', ExpandConstant('{app}'), notPCFonFLY {PCFonFLY}) then break;
I am not sure; but maybe archive names will be case sensitive.

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

Code:
if not ShowChangeDiskWindow ('Please Insert Disk 1 To Continue..', ExpandConstant('{src}'),'Setup-1.bin') then break;
if not ISArcExtract ( 0, 50, ExpandConstant('{src}\Setup-1.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;
if not ShowChangeDiskWindow ('Please Insert Disk 2 To Continue..', ExpandConstant('{src}'),'Setup-2.bin') then break;
if not ISArcExtract ( 0, 50, ExpandConstant('{src}\Setup-2.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;
Sorry for long post; just only my intent is helping you as I can.
Reply With Quote
  #1010  
Old 04-05-2015, 07:53
nhinchihap3 nhinchihap3 is offline
Registered User
 
Join Date: Feb 2014
Location: VietNam
Posts: 13
Thanks: 4
Thanked 2 Times in 2 Posts
nhinchihap3 is on a distinguished road
Quote:
Originally Posted by DrakeMcCain View Post
First of all, use Kurutucu Compressor.

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

And secondly, change archives.ini like this:

Code:
if not ShowChangeDiskWindow ('Please Insert Next Disk To Continue..', ExpandConstant('{src}'),'setup-1.bin') then break;
if not ISArcExtract ( 0, 50, ExpandConstant('{src}\setup-1.bin'), ExpandConstant('{app}'), '', false, '', '', ExpandConstant('{app}'), notPCFonFLY {PCFonFLY}) then break;
if not ShowChangeDiskWindow ('Please Insert Next Disk To Continue..', ExpandConstant('{src}'),'setup-2.bin') then break;
if not ISArcExtract ( 0, 50, ExpandConstant('{src}\setup-2.bin'), ExpandConstant('{app}'), '', false, '', '', ExpandConstant('{app}'), notPCFonFLY {PCFonFLY}) then break;
I am not sure; but maybe archive names will be case sensitive.

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

Code:
if not ShowChangeDiskWindow ('Please Insert Disk 1 To Continue..', ExpandConstant('{src}'),'Setup-1.bin') then break;
if not ISArcExtract ( 0, 50, ExpandConstant('{src}\Setup-1.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;
if not ShowChangeDiskWindow ('Please Insert Disk 2 To Continue..', ExpandConstant('{src}'),'Setup-2.bin') then break;
if not ISArcExtract ( 0, 50, ExpandConstant('{src}\Setup-2.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;
Sorry for long post; just only my intent is helping you as I can.
Thank bro but i use Kurutucu Compressor with 1 file work but 2 file don't work u can help me ?
And i change compress.bat
Work
Code:
@echo Working Arc+Precomp+Srep+Arc again
arc a -lc8 -ep1 -ed -r -w.\ Data\Data.bin -mprecomp+srep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8 "D:\Data1\*"
pause
After add one more file but don't work
Code:
@echo Working Arc+Precomp+Srep+Arc again
arc a -lc8 -ep1 -ed -r -w.\ Data\Data.bin -mprecomp+srep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8 "D:\Data1\*"
arc a -lc8 -ep1 -ed -r -w.\ Data\Data.bin -mprecomp+srep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8 "D:\Data2\*"
pause
Thankx , sorry my bad english
Reply With Quote
  #1011  
Old 04-05-2015, 09:17
mausschieber's Avatar
mausschieber mausschieber is offline
Conversion Designer
 
Join Date: Jan 2011
Location: germany
Posts: 3,606
Thanks: 5,631
Thanked 10,075 Times in 2,658 Posts
mausschieber is on a distinguished road
Quote:
Originally Posted by nhinchihap3 View Post
Thank bro but i use Kurutucu Compressor with 1 file work but 2 file don't work u can help me ?
And i change compress.bat
Work
Code:
@echo Working Arc+Precomp+Srep+Arc again
arc a -lc8 -ep1 -ed -r -w.\ Data\Data.bin -mprecomp+srep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8 "D:\Data1\*"
pause
After add one more file but don't work
Code:
@echo Working Arc+Precomp+Srep+Arc again
arc a -lc8 -ep1 -ed -r -w.\ Data\Data.bin -mprecomp+srep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8 "D:\Data1\*"
arc a -lc8 -ep1 -ed -r -w.\ Data\Data.bin -mprecomp+srep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8 "D:\Data2\*"
pause
Thankx , sorry my bad english
you must set for Data1 Data1.bin for Data2 Data2.bin etc
Reply With Quote
  #1012  
Old 08-05-2015, 19:32
Amsal Amsal is offline
Registered User
 
Join Date: May 2015
Location: New Delhi
Posts: 237
Thanks: 242
Thanked 41 Times in 28 Posts
Amsal is on a distinguished road
How to Make Repack with this

Please can you give me steps to make a repack with BlackBox v2
Reply With Quote
  #1013  
Old 08-05-2015, 21:55
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,030 Times in 3,083 Posts
pakrat2k2 is on a distinguished road
Quote:
Originally Posted by Amsal View Post
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...
Reply With Quote
  #1014  
Old 09-05-2015, 04:55
nhinchihap3 nhinchihap3 is offline
Registered User
 
Join Date: Feb 2014
Location: VietNam
Posts: 13
Thanks: 4
Thanked 2 Times in 2 Posts
nhinchihap3 is on a distinguished road
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
Reply With Quote
  #1015  
Old 09-05-2015, 09:40
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,746
Thanks: 2,141
Thanked 11,093 Times in 2,295 Posts
Razor12911 is on a distinguished road
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.
Reply With Quote
  #1016  
Old 11-05-2015, 14:29
belzack belzack is offline
Registered User
 
Join Date: Apr 2015
Location: UK
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
belzack is on a distinguished road
I get an error in line138 column1 identifier expected plz help and I didn't change anything
Reply With Quote
  #1017  
Old 13-05-2015, 15:28
alucard1973 alucard1973 is offline
Registered User
 
Join Date: Apr 2015
Location: Madrid
Posts: 45
Thanks: 1
Thanked 3 Times in 3 Posts
alucard1973 is on a distinguished road
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
Reply With Quote
  #1018  
Old 29-05-2015, 05:39
GhostSystem GhostSystem is offline
Registered User
 
Join Date: Jan 2015
Location: India, West Bengal
Posts: 12
Thanks: 5
Thanked 3 Times in 2 Posts
GhostSystem is on a distinguished road
R. Mechanics

This script so much problem. It is not complete blackbox. i want to help you with my script.
Reply With Quote
  #1019  
Old 29-05-2015, 05:45
GhostSystem GhostSystem is offline
Registered User
 
Join Date: Jan 2015
Location: India, West Bengal
Posts: 12
Thanks: 5
Thanked 3 Times in 2 Posts
GhostSystem is on a distinguished road
you need both Setup-1.bin and Setup-2.bin file put the {src} that means where Setup.exe is create.
Reply With Quote
  #1020  
Old 31-05-2015, 10:06
DrakeMcCain DrakeMcCain is offline
Registered User
 
Join Date: Sep 2014
Location: Turkey
Posts: 10
Thanks: 0
Thanked 8 Times in 5 Posts
DrakeMcCain is on a distinguished road
Blackbox Inno Setup Script Update

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.
Attached Files
File Type: rar Script.rar (93.0 KB, 145 views)

Last edited by DrakeMcCain; 02-06-2015 at 12:39.
Reply With Quote
The Following 2 Users Say Thank You to DrakeMcCain For This Useful Post:
Gehrman (04-06-2022), Simorq (31-05-2015)
Reply

Thread Tools
Display Modes

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 01:35.


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