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
  #61  
Old 12-06-2013, 06:50
danswano danswano is offline
Registered User
 
Join Date: Feb 2013
Location: Luxm
Posts: 314
Thanks: 218
Thanked 27 Times in 22 Posts
danswano is on a distinguished road
Hello,

I have a game with 2 languages and each languages separated in one arc file
How to make 2 radio options inside the installer to allow users to choose what language want to install (the selection must be limited to one language only not both)?

data.arc
english.arc
french.arc

Thanks.
Reply With Quote
Sponsored Links
  #62  
Old 12-06-2013, 07:10
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
use components section and use the default isdone script for this.
Reply With Quote
The Following User Says Thank You to Razor12911 For This Useful Post:
danswano (12-06-2013)
  #63  
Old 13-06-2013, 06:27
danswano danswano is offline
Registered User
 
Join Date: Feb 2013
Location: Luxm
Posts: 314
Thanks: 218
Thanked 27 Times in 22 Posts
danswano is on a distinguished road
Hello,
Precomp 0.3.8 crashes on some file extensions, is it normal?
Reply With Quote
  #64  
Old 13-06-2013, 08:05
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
yea and nah, precomp is kinda unpredictable.

Use precomp 040 is 038 fails.
Reply With Quote
The Following User Says Thank You to Razor12911 For This Useful Post:
danswano (13-06-2013)
  #65  
Old 13-06-2013, 08:21
danswano danswano is offline
Registered User
 
Join Date: Feb 2013
Location: Luxm
Posts: 314
Thanks: 218
Thanked 27 Times in 22 Posts
danswano is on a distinguished road
Thanks, on slow mode who win between those 2 versions or it's unpredictable as well?
Reply With Quote
  #66  
Old 13-06-2013, 09:08
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
the thing is that when I use precomp038 and precomp040, I get better results than when I use precomp042
Reply With Quote
The Following User Says Thank You to Razor12911 For This Useful Post:
danswano (13-06-2013)
  #67  
Old 14-06-2013, 14:39
danswano danswano is offline
Registered User
 
Join Date: Feb 2013
Location: Luxm
Posts: 314
Thanks: 218
Thanked 27 Times in 22 Posts
danswano is on a distinguished road
Hello,

Is it possible to detect the operating system arch 32 or 64 bit and depend on what detects it extracts a specific arc file?

Thanks.
Reply With Quote
  #68  
Old 14-06-2013, 14:51
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
yep, just use 'ISWin64' or 'not ISWin64'
Reply With Quote
The Following User Says Thank You to Razor12911 For This Useful Post:
danswano (14-06-2013)
  #69  
Old 14-06-2013, 15:55
danswano danswano is offline
Registered User
 
Join Date: Feb 2013
Location: Luxm
Posts: 314
Thanks: 218
Thanked 27 Times in 22 Posts
danswano is on a distinguished road
aren't these flags just for reg entries? how to use them with ISArcExtract?
Reply With Quote
  #70  
Old 14-06-2013, 16:08
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
Example

if ISWin64 then
ISArcExtract.....

if not ISWin64 then
ISArcExtract......

Think fast. they are flags for reg entries and the also work in code section
Reply With Quote
The Following User Says Thank You to Razor12911 For This Useful Post:
danswano (14-06-2013)
  #71  
Old 14-06-2013, 16:13
danswano danswano is offline
Registered User
 
Join Date: Feb 2013
Location: Luxm
Posts: 314
Thanks: 218
Thanked 27 Times in 22 Posts
danswano is on a distinguished road
Dude, i can't think as fast as you
Just saw the example on the inno docs
http://www.jrsoftware.org/ishelp/ind...sxfunc_iswin64

Thanks, i will try it right now.
Reply With Quote
  #72  
Old 14-06-2013, 16:18
danswano danswano is offline
Registered User
 
Join Date: Feb 2013
Location: Luxm
Posts: 314
Thanks: 218
Thanked 27 Times in 22 Posts
danswano is on a distinguished road
I'm using this flag for VC++ Redist 64bit Install Task
Flags: SkipIfDoesntExist 64bit

on XP i get this is not a 64bit app error, is it because of the flag or because of XP?

Should i use with ISDone:
Flags: SkipIfDoesntExist 64bit
or
Flags: SkipIfDoesntExist IsWin64
Reply With Quote
  #73  
Old 14-06-2013, 16:23
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
just use 'ISWin64' or 'not ISWin64' dont add the skipifdoesntexist

IE

[Files]
Source: x64 \ File.exe; DestDir: {app}; Check: IsWin64
Source: x32 \ File.exe; DestDir: {app}; Check: not IsWin64

Last edited by pakrat2k2; 14-06-2013 at 16:30.
Reply With Quote
  #74  
Old 14-06-2013, 16:29
danswano danswano is offline
Registered User
 
Join Date: Feb 2013
Location: Luxm
Posts: 314
Thanks: 218
Thanked 27 Times in 22 Posts
danswano is on a distinguished road
I didn't mean the SkipIfDoesntExist, i meant "64bit"
I've added SkipIfDoesntExist flag just increase i forgot to include the redist file.
So which flag is really functional for tasks "64bit" or "ISWin64" ??
Reply With Quote
  #75  
Old 14-06-2013, 16:31
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
added additional info.. its just the iswin64 / not iswin64

dont need the SkipIfDoesntExist because if inno doesnt find the file it just jumps over that part..

someone correct me if im wrong

Last edited by pakrat2k2; 14-06-2013 at 16:33. Reason: added info
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



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


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