|
#11
|
||||
|
||||
|
Quote:
To remove the save folder inside the Saved Games folder using the key SaveGameFolder#= use {sd} to set a system drive: SaveGameFolder3={sd}\Users\{username}\Saved Games\Metro Exodus I will include a constant {savedgames} in the next CIU update. If you want to change it in the current CIU script the text in red color. Code:
function GetSavedGameFolder: String;
begin
Result := ExpandConstant('{userdocs}\My Games');
RegQueryStringValue(HKEY_CURRENT_USER, 'Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders', '{4C5C32FF-BB9D-43B0-B5B4-2D72E54EAAA4}', Result);
end;
function UpdateConstant(Current: String) : String;
begin
Result := Current;
if UninstallMode then
StringChangeEx(Result, '{app}', UninstallPath, True)
else
StringChangeEx(Result, '{app}', WizardForm.DirEdit.Text, True);
StringChangeEx(Result, '{savedgames}', GetSavedGameFolder, True);
StringChangeEx(Result, '{win}', ExpandConstant('{win}'), True);
StringChangeEx(Result, '{sys}', ExpandConstant('{sys}'), True);
...///The code goes on...
Last edited by Cesar82; 12-12-2019 at 01:53. |
| The Following 3 Users Say Thank You to Cesar82 For This Useful Post: | ||
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| INDEX - Conversion Tutorial Index | Razor12911 | Conversion Tutorials | 5 | 11-06-2020 02:05 |
| [GSERIES] Custom Installer Ultimate V2g | Gupta | Conversion Tutorials | 226 | 01-06-2018 13:12 |
| Crysis 3 DVD9 to 3xDVD5 Custom Installer | spawniectes | PC Games - CD/DVD Conversions | 79 | 31-08-2017 07:19 |