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
  #31  
Old 18-11-2011, 09:58
kranmer kranmer is offline
Registered User
 
Join Date: May 2008
Location: Europe
Posts: 17
Thanks: 0
Thanked 0 Times in 0 Posts
kranmer is on a distinguished road
@d00m3d well i don't have Win 7 x64 but the way inno works using {commonappdata} should make it install to the correct folder regardless (that way it should work on both XP and Vista/7 systems), but you could always make a small installer with just 1 file to test it (make a dummy file and make a inno installer install just that 1 dummy file to
{commonappdata}\Rockstar Games\L.A. Noire\
and if it appears in
C:\ProgramData\Rockstar Games\L.A. Noire\
you will know it is working correctly
Reply With Quote
Sponsored Links
  #32  
Old 18-11-2011, 10:08
ademulia ademulia is offline
Registered User
 
Join Date: Nov 2009
Location: Jakarta
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
ademulia is on a distinguished road
Wink am I correct?

Quote:
Originally Posted by zyo View Post
Updated script!

tested and works on my windows 7 pc
thanks kranmer for spotting the missing regkeys
You need to install DirectX, .net 3.5 and VC++ which you can find in the original disc, I cant be bothered to put these into the script, the setup installs rockstar social club 1.0.5.0 automatically


open the script in innosetup, change outputdir to whatever you like, requires 13GB of space. Change Source: "C:\Program Files\Rockstar Games\L.A. Noire\*"; to whatever you installed your game to and compile.

after that you should get Setup 1a - Setup 3c in outputdir just pack each 3 into one disc in ultraiso
Thanks for script zyo
pardon my language because I use google translator
There are some things I do not understand

If you see this code:
Code:
[Run]
Filename: {app}\Social Club v1.0.5.0 Setup.exe; Flags: waituntilterminated; StatusMsg: ˇ°Please Wait...ˇ±
what does it mean "before" doing the conversion, we have to copying files Social Club Setup.exe to the installation folder?

Is there any effect if we use the code:
Code:
[Run]
Filename: {src}\Social Club\Social Club v1.0.5.0 Setup.exe; Flags: waituntilterminated; StatusMsg: ˇ°Please Wait...ˇ±
Filename: {src}\dotnetfx35\dotnetfx35.exe; Flags: waituntilterminated; StatusMsg: ˇ°Please Wait...ˇ±
Filename: {src}\vcredist_x86\vcredist_x86.exe; Flags: waituntilterminated; StatusMsg: ˇ°Please Wait...ˇ±
Filename: {src}\DXSETUP\DXSETUP.exe; Flags: waituntilterminated; StatusMsg: ˇ°Please Wait...ˇ±
Note: on last DVD create the appropriate folder with the code above, and copy the files into that folder.

so programs that need to be able to directly perform the installation from the last dvd after the installation games is completed

am I correct?

thank you
Reply With Quote
  #33  
Old 18-11-2011, 10:41
sstanke sstanke is offline
Registered User
 
Join Date: Jun 2009
Location: Belgrade
Posts: 31
Thanks: 0
Thanked 1 Time in 1 Post
sstanke is on a distinguished road
Can somebody answer on my post, i have this error when i try to run icon of the game, or to just start the game:

Reply With Quote
  #34  
Old 18-11-2011, 12:38
kranmer kranmer is offline
Registered User
 
Join Date: May 2008
Location: Europe
Posts: 17
Thanks: 0
Thanked 0 Times in 0 Posts
kranmer is on a distinguished road
@sstanke it says you are missing the DLL for the rockstar social club which is needed for installation, if you install the social club it should fix the problem (you can find it on your original DVD or if you use the latest patch it should appear in the games directory)
Reply With Quote
  #35  
Old 18-11-2011, 14:06
d00m3d d00m3d is offline
Registered User
 
Join Date: Dec 2008
Location: Internet
Posts: 32
Thanks: 0
Thanked 0 Times in 0 Posts
d00m3d is on a distinguished road
Quote:
Originally Posted by kranmer View Post
@d00m3d well i don't have Win 7 x64 but the way inno works using {commonappdata} should make it install to the correct folder regardless (that way it should work on both XP and Vista/7 systems), but you could always make a small installer with just 1 file to test it (make a dummy file and make a inno installer install just that 1 dummy file to
{commonappdata}\Rockstar Games\L.A. Noire\
and if it appears in
C:\ProgramData\Rockstar Games\L.A. Noire\
you will know it is working correctly
Just did that, and indeed it appeared in the correct place! Thanks
Reply With Quote
  #36  
Old 18-11-2011, 15:22
houdaifas's Avatar
houdaifas houdaifas is offline
Registered User
 
Join Date: Mar 2010
Location: France
Posts: 9
Thanks: 0
Thanked 0 Times in 0 Posts
houdaifas is on a distinguished road
I have This Message Before the Compression ??



The source is : G:\Rockstar Games\L.A. Noire

Reply With Quote
  #37  
Old 18-11-2011, 18:26
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 ademulia View Post
Thanks for script zyo
pardon my language because I use google translator
There are some things I do not understand

If you see this code:
Code:
[Run]
Filename: {app}\Social Club v1.0.5.0 Setup.exe; Flags: waituntilterminated; StatusMsg: ˇ°Please Wait...ˇ±
what does it mean "before" doing the conversion, we have to copying files Social Club Setup.exe to the installation folder?

Is there any effect if we use the code:
Code:
[Run]
Filename: {src}\Social Club\Social Club v1.0.5.0 Setup.exe; Flags: waituntilterminated; StatusMsg: ˇ°Please Wait...ˇ±
Filename: {src}\dotnetfx35\dotnetfx35.exe; Flags: waituntilterminated; StatusMsg: ˇ°Please Wait...ˇ±
Filename: {src}\vcredist_x86\vcredist_x86.exe; Flags: waituntilterminated; StatusMsg: ˇ°Please Wait...ˇ±
Filename: {src}\DXSETUP\DXSETUP.exe; Flags: waituntilterminated; StatusMsg: ˇ°Please Wait...ˇ±
Note: on last DVD create the appropriate folder with the code above, and copy the files into that folder.

so programs that need to be able to directly perform the installation from the last dvd after the installation games is completed

am I correct?

thank you
your last section is the better of the 2, and yes to your first question the social club exe needs to be in installed game folder.
Reply With Quote
  #38  
Old 18-11-2011, 18:29
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 houdaifas View Post
I have This Message Before the Compression ??



The source is : G:\Rockstar Games\L.A. Noire

did you change the source to match your installed location ?
AND are you using ansi version of INNO ?
Reply With Quote
  #39  
Old 18-11-2011, 18:44
sstanke sstanke is offline
Registered User
 
Join Date: Jun 2009
Location: Belgrade
Posts: 31
Thanks: 0
Thanked 1 Time in 1 Post
sstanke is on a distinguished road
What is ansi version of inno?
Reply With Quote
  #40  
Old 18-11-2011, 21:53
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
ansi version of INNO setup are for languages like english, french, german, italian, spanish, polish etc.
unicode version is for languages like russian, chinese, vietnamese, arabic, farsi etc, ones that use a different code page then would normally be used.

just suffice it to say get the ansi version of inno setup, you'll have less issues to worry about
Reply With Quote
  #41  
Old 19-11-2011, 09:13
Fabioddq's Avatar
Fabioddq Fabioddq is offline
Die Hard Member
 
Join Date: Oct 2011
Location: Earth
Posts: 1,221
Thanks: 336
Thanked 2,147 Times in 427 Posts
Fabioddq is on a distinguished road
Works fine for me, so my final temp has an additional archive: Setup-4a.bin.
So, i had to use 4 DVD's and copy autorun & LAN_icon from the directory and edit correctly. This is my final project:

DVD1 = 4,37GB (archives: autorun.ini, LAN_icon, Setup.exe, Setup-1a.bin, Setup-1b.bin, Setup-1c.bin).
DVD2 = 4,37GB (archives: autorun.ini, LAN_icon, Setup-2a.bin, Setup-2b.bin, Setup-2c.bin).
DVD3 = 4,37GB (archives: autorun.ini, LAN_icon, Setup-3a.bin, Setup-3b.bin, Setup-3c.bin).
DVD4 = 1,04GB (archives: autorun.ini, LAN_icon, Setup-4a.bin).

After installation, i get the error:


I just click OK and finish installation. The game is not run, off course, because i don't no installed the Social Club. So, i just installed Social Club v1.0.5.0 and the game works perfectly! Sorry my english. Thanks for the conversion!
Reply With Quote
The Following User Says Thank You to Fabioddq For This Useful Post:
Cosplay (27-01-2019)
  #42  
Old 19-11-2011, 09:59
kranmer kranmer is offline
Registered User
 
Join Date: May 2008
Location: Europe
Posts: 17
Thanks: 0
Thanked 0 Times in 0 Posts
kranmer is on a distinguished road
@Fabioddq its odd that yours has additional archives, if you used Zyo's script it should only be 3 DVDs (unless you included other things that are not needed or unless you changed the compression type).
Also the error is because you did not update the game before using Zyo's script, if you had used the latest update you would have had Social Club v1.0.5.0 Setup.exe in your L.A.Noire directory (i think Zyo did write this in his original post but since he edited his post the info is no longer there),
since the file isn't there you could rebuild the installer and just make sure it exists before you rebuild it (just make a copy of the setup off your DVD and put it in your games folder then edit the script to match the filename before recompiling) or edit that line out and just include the setup on your last DVD and install it manually every time you reinstall.
Reply With Quote
  #43  
Old 19-11-2011, 12:54
zyo zyo is offline
Registered User
 
Join Date: Jun 2007
Location: Shanghai
Posts: 116
Thanks: 2
Thanked 5 Times in 5 Posts
zyo is on a distinguished road
Quote:
Originally Posted by kranmer View Post
@Fabioddq its odd that yours has additional archives, if you used Zyo's script it should only be 3 DVDs (unless you included other things that are not needed or unless you changed the compression type).
Also the error is because you did not update the game before using Zyo's script, if you had used the latest update you would have had Social Club v1.0.5.0 Setup.exe in your L.A.Noire directory (i think Zyo did write this in his original post but since he edited his post the info is no longer there),
since the file isn't there you could rebuild the installer and just make sure it exists before you rebuild it (just make a copy of the setup off your DVD and put it in your games folder then edit the script to match the filename before recompiling) or edit that line out and just include the setup on your last DVD and install it manually every time you reinstall.
will do an update version based on latest update soon.
Reply With Quote
  #44  
Old 19-11-2011, 22:02
Fabioddq's Avatar
Fabioddq Fabioddq is offline
Die Hard Member
 
Join Date: Oct 2011
Location: Earth
Posts: 1,221
Thanks: 336
Thanked 2,147 Times in 427 Posts
Fabioddq is on a distinguished road
I compiled again with the update and worked perfectly. 3 dvd's, no errors about Social Club.
Thanks for the help guys!
Reply With Quote
  #45  
Old 20-11-2011, 13:17
damar15's Avatar
damar15 damar15 is offline
Registered User
 
Join Date: Jul 2010
Location: jordan
Posts: 189
Thanks: 184
Thanked 165 Times in 41 Posts
damar15 is an unknown quantity at this point
work for me good thanks but my another ico not Launcher tell me con't open

unable to go to Social Club i open the launcher it too slow can you answer

thanks......................
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
L.A. Noire 2DVD9 --> 3DVD5 [INNOSetup] DonHomerone PC Games - CD/DVD Conversions 60 03-10-2012 20:00
Napoleon: Total War (2DVD9 to 3DVD5) *INNO SETUP* REV0 PC Games - CD/DVD Conversions 1 23-08-2012 04:50
Shogun Total War 2 for 2dvd9 3dvd5 by inno car_l30n PC Games - CD/DVD Conversions 11 15-03-2012 10:58
Call of Duty Modern Warfare 3 - (2DVD9 to 3DVD5) SP Only REV0 PC Games - CD/DVD Conversions 33 23-02-2012 22:22



All times are GMT -7. The time now is 15:51.


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