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

Reply
 
Thread Tools Search this Thread Display Modes
  #106  
Old 08-04-2014, 22:38
altef_4's Avatar
altef_4 altef_4 is offline
Registered User
 
Join Date: Mar 2012
Location: Ukraine
Posts: 361
Thanks: 248
Thanked 1,022 Times in 239 Posts
altef_4 is on a distinguished road
Quote:
Originally Posted by EA-Games View Post
a very important question ..
when i split the game to 2xDVD5 .. i put Redist folder in first dvd .. when i install the game from CD-Rom . he ask me the second dvd .. but when the game finish installing he not install the directx and vcredist_x86.exe from redist folder ..
please help .
put redist on second dvd
Reply With Quote
The Following 2 Users Say Thank You to altef_4 For This Useful Post:
EA-Games (10-04-2014), papas (03-10-2016)
Sponsored Links
  #107  
Old 09-04-2014, 01:40
aj12345 aj12345 is offline
Registered User
 
Join Date: Oct 2013
Location: bih
Posts: 29
Thanks: 46
Thanked 3 Times in 3 Posts
aj12345 is on a distinguished road
How to add DirectX,vcredist and other program recomendet for games.

Last edited by aj12345; 13-04-2014 at 06:38.
Reply With Quote
  #108  
Old 10-04-2014, 08:17
Btx's Avatar
Btx Btx is offline
Registered User
 
Join Date: Nov 2012
Location: Anywhere
Posts: 105
Thanks: 622
Thanked 41 Times in 38 Posts
Btx is on a distinguished road
Hi, I'm using 1.0.0.6 CIU. I would like to know how to put a button that appears at the beginning, the autorun and take me to my website. I can not find where to place the image as a button and add the line of code to Setup.ini ... Pelase Help!
Reply With Quote
  #109  
Old 10-04-2014, 13:35
EA-Games EA-Games is offline
Registered User
 
Join Date: Oct 2013
Location: palestine
Posts: 11
Thanks: 7
Thanked 1 Time in 1 Post
EA-Games is on a distinguished road
Quote:
Originally Posted by altef_4 View Post
put redist on second dvd
i will try and tell you ..
Reply With Quote
  #110  
Old 10-04-2014, 16:17
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 Btx View Post
Hi, I'm using 1.0.0.6 CIU. I would like to know how to put a button that appears at the beginning, the autorun and take me to my website. I can not find where to place the image as a button and add the line of code to Setup.ini ... Pelase Help!
doesn't exist in 1006 ( not as far as ive been able to find )
Reply With Quote
  #111  
Old 28-04-2014, 14:48
aj12345 aj12345 is offline
Registered User
 
Join Date: Oct 2013
Location: bih
Posts: 29
Thanks: 46
Thanked 3 Times in 3 Posts
aj12345 is on a distinguished road
How to add percent % in progres bar.
Reply With Quote
  #112  
Old 29-04-2014, 06:20
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,749
Thanks: 2,170
Thanked 11,206 Times in 2,307 Posts
Razor12911 is on a distinguished road
You have to make a label, a timer and do some calculations.

for example if using Inno Setup Enhanced Edition

var
Timer: TTimer;
PGPC: TLabel;

procedure PBTimer(Sender: TObject);
begin
if WizardForm.ProgressGauge.Max <> 0 then
PGPC.Caption:= IntToStr((WizardForm.ProgressGauge.Position * 100) div WizardForm.ProgressGauge.Max) + '%';
end;

procedure InitializeWizard;
begin
PGPC:= TLabel.Create(WizardForm);
with PGPC do begin
SetBounds(Left,Top,Width,Height);
Parent:=WizardForm;
end;
Timer:=TTimer.Create(WizardForm);
with Timer do begin
OnTimer:=@PBTimer;
Interval:=500;
Enabled:=True;
end;
end;

Use Curpage to show and hide label.

Last edited by Razor12911; 29-04-2014 at 06:23.
Reply With Quote
  #113  
Old 29-04-2014, 07:28
aj12345 aj12345 is offline
Registered User
 
Join Date: Oct 2013
Location: bih
Posts: 29
Thanks: 46
Thanked 3 Times in 3 Posts
aj12345 is on a distinguished road
Quote:
Originally Posted by Razor12911 View Post
You have to make a label, a timer and do some calculations.

for example if using Inno Setup Enhanced Edition

var
Timer: TTimer;
PGPC: TLabel;

procedure PBTimer(Sender: TObject);
begin
if WizardForm.ProgressGauge.Max <> 0 then
PGPC.Caption:= IntToStr((WizardForm.ProgressGauge.Position * 100) div WizardForm.ProgressGauge.Max) + '%';
end;

procedure InitializeWizard;
begin
PGPC:= TLabel.Create(WizardForm);
with PGPC do begin
SetBounds(Left,Top,Width,Height);
Parent:=WizardForm;
end;
Timer:=TTimer.Create(WizardForm);
with Timer do begin
OnTimer:=@PBTimer;
Interval:=500;
Enabled:=True;
end;
end;

Use Curpage to show and hide label.
I use inno setup ultra.
This is my script https://www.mediafire.com/?bz8so92s0i6bioy.
Can yu insert percent I do not know.

Last edited by aj12345; 29-04-2014 at 13:51.
Reply With Quote
  #114  
Old 29-04-2014, 09:39
Snipunk's Avatar
Snipunk Snipunk is offline
Registered User
 
Join Date: Apr 2014
Location: Andromeda
Posts: 6
Thanks: 2
Thanked 1 Time in 1 Post
Snipunk is on a distinguished road
Can any one post what or where I could find the application called "yener's CI"?

I googled it many times but google just shows me comments on filefourm.com.

anyone, please?
__________________
Its better to die with a full stomach than live with an empty one.
Reply With Quote
The Following User Says Thank You to Snipunk For This Useful Post:
jamel2013 (29-04-2014)
  #115  
Old 02-05-2014, 00:44
dar29 dar29 is offline
Registered User
 
Join Date: Feb 2012
Location: in my home
Posts: 128
Thanks: 44
Thanked 18 Times in 16 Posts
dar29 is on a distinguished road
Anyone have convertion for Wargame Red Dragon?
Reply With Quote
The Following User Says Thank You to dar29 For This Useful Post:
wit (24-05-2014)
  #116  
Old 25-05-2014, 09:42
UNCAL KEMBU UNCAL KEMBU is offline
Registered User
 
Join Date: Mar 2014
Location: I LIVE IN BANDUNG
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
UNCAL KEMBU is on a distinguished road
Help me

Hi .. Please tell me how to make a game conversion?? Thank you
Reply With Quote
  #117  
Old 25-05-2014, 09:52
jamel2013's Avatar
jamel2013 jamel2013 is offline
Registered User
 
Join Date: Nov 2013
Location: ALG
Posts: 140
Thanks: 185
Thanked 171 Times in 41 Posts
jamel2013 is on a distinguished road
Quote:
Originally Posted by UNCAL KEMBU View Post
Hi .. Please tell me how to make a game conversion?? Thank you
__________________________________________________ ______________

http://fileforums.com/showthread.php?t=94605
Carry this program you'll learn everything

Reply With Quote
  #118  
Old 01-07-2014, 03:21
thenokiottos's Avatar
thenokiottos thenokiottos is offline
Registered User
 
Join Date: Aug 2012
Location: Italy
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
thenokiottos is on a distinguished road
Is there a script to unpack an archive compressed using this method -mprecomp+srep+lzma:a1:mfbt4:d256m:fb273:mc1000:lc8?
Reply With Quote
  #119  
Old 11-07-2014, 15:04
Cale2201 Cale2201 is offline
Registered User
 
Join Date: Nov 2008
Location: Srbija
Posts: 33
Thanks: 6
Thanked 4 Times in 4 Posts
Cale2201 is on a distinguished road
I Have This Problem When Install From Image, Please Help!

http://www.hizliresimyukle.com/image/TG7

MotoGP 14 Compression -msrep...(3xDVD 5) IC2.3 By_(Razor12911) - houcine80
Sniper Elite III Africa Dark Installation(3xDVD 5) _IC-2.3.. - houcine80
Sniper Elite 3 [3xDVD5, Srep64, IC 2.5.1] - Inge

when install from folder everything is working fine

Sorry For My Bad English!
Reply With Quote
  #120  
Old 11-07-2014, 15:35
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,749
Thanks: 2,170
Thanked 11,206 Times in 2,307 Posts
Razor12911 is on a distinguished road
Quote:
Originally Posted by thenokiottos View Post
Is there a script to unpack an archive compressed using this method -mprecomp+srep+lzma:a1:mfbt4:d256m:fb273:mc1000:lc8?
yes there is or are, Installer Creator can do this, BlackBOX, EI and etc...
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
Frequently Asked Questions Joe Forster/STA PC Games - Frequently Asked Questions 0 29-11-2005 09:48
soft mod - opinions, questions dneray22 XBox Games 2 01-08-2003 06:36
A few questions I need answered. rms2001 XBox Games 5 05-12-2002 12:55
Newbie with 1,000 questions ( not really 1,000, but close enough) tdoran70 PS2 Games 3 29-05-2002 00:47
A few questions, PLLeaase Read Bill-Something PSX Games 6 18-08-2001 08:18



All times are GMT -7. The time now is 10:50.


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