Thread: Gta4 (dvd5x2)
View Single Post
  #3  
Old 07-08-2013, 20:05
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 mausschieber View Post
@Pakrat2k2

how you have made the list
by hand or by software
very easily.

open command prompt ( in folder where you want list )

type in dir /b /s >>C:\list.txt

- the /b is bare list ( no files sizes, type of file etc )
- the /s is all subdirectories
- >> means send to output file+location ( that can be any name or location ) IF not specified it will put the filelist in same dir where command was run. You can also type dir /? for list of all commands. it just old dos commands.

sentinelks

In ScriptS.rar the installerscript.iss [registry] section:
Code:
Root: HKLM; SubKey: "SOFTWARE\{code:GetAppPublisher}\{code:GetAppName}"; ValueName: INSTALL_LANG; ValueData: 1033; ValueType: string; Flags: uninsdeletevalue uninsdeletekeyifempty;
The BOLD section highlighted will need to be changed for every version of the game that is NOT English.

You will need to add this to first post so that users who install game in another language,
will know to change that value to match what language they installed it in. Otherwise the
game will be in English not what they installed it in.

Setup.ini needs correcting:
Code:
[LauncherSettings]
InstallRedist=1
Launch1=DirectX
Launch164=0
Launch1BeforeInstall=1
LaunchCom1=DVD1\Redist\DirectX\DXSETUP.exe
LaunchArg1=/silent
Change to

Code:
[LauncherSettings]
InstallRedist=1
Launch1=DirectX
Launch164=0
Launch1BeforeInstall=1
LaunchCom1={src}\Redist\DirectX\DXSETUP.exe
LaunchArg1=/silent

Last edited by pakrat2k2; 07-08-2013 at 20:21. Reason: added note for sentinelk
Reply With Quote
The Following 2 Users Say Thank You to pakrat2k2 For This Useful Post:
mausschieber (08-08-2013), Razor12911 (09-08-2013)