View Single Post
  #5  
Old 30-10-2015, 19:47
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 vibhutech512 View Post
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.

Quote:
Originally Posted by ramazan19833 View 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.
Attached Files
File Type: rar Black_Box_Script_By_Kurutucu_V1.8-y_thelastknight.rar (8.79 MB, 142 views)

Last edited by pakrat2k2; 30-10-2015 at 20:03.
Reply With Quote
The Following User Says Thank You to pakrat2k2 For This Useful Post:
Gehrman (04-06-2022)