Скрипты Inno Setup. Помощь и советы [часть 9]
-
Tiarn
Re: Скрипты Inno Setup. Помощь и советы [часть 9]
Здравствуйте!
Не распаковывается 7zip архив, если в пути есть пробелы. Подскажите пожалуйста как исправить.
[Run]
Filename: {app}\7z.exe; Parameters: "x {src}\data1.7z-y"
Не распаковывается 7zip архив, если в пути есть пробелы. Подскажите пожалуйста как исправить.
[Run]
Filename: {app}\7z.exe; Parameters: "x {src}\data1.7z-y"
-
Tiarn
Re: Скрипты Inno Setup. Помощь и советы [часть 9]
Tiarn, Пути с пробелами берутся в кавычки, а азы из документации гласят, что символ кавычкек " вставляется в строку как удвоенная кавычка "". Итого получаем
Код:
Код:
Код: Выделить всё
Filename: {app}\7z.exe; Parameters: "x ""{src}\data1.7z-y"""-
nik1967
Re: Скрипты Inno Setup. Помощь и советы [часть 9]
web_form, там заморочек много. С переключением языка на лету.
-
habib2302
Re: Скрипты Inno Setup. Помощь и советы [часть 9]
Доброе время суток. Необходимо удалить настройки проги во время деинсталляции через код с выводом MsgBox, но проблема в том, что в пути к настройкам есть символ "одинарная кавычка" или ' . Как можно обойти ошибку из-за этой кавычки? Пример Friday's program
Код:
Код:
Код: Выделить всё
[Code]
procedure CurUninstallStepChanged(CurUninstallStep: TUninstallStep);
begin
case CurUninstallStep of
usPostUninstall:
if DirExists(AddBackslash(ExpandConstant('{userappdata}')) + 'Friday's program') then
begin
if MsgBoxEx(0, 'Удалить настройки программы', 'Удаление настроек', $00000004 or $00000020, 0, 0) = IDYES then
DelTree(AddBackslash(ExpandConstant('{userappdata}')) + 'Friday's program', True, True, True);
end;
end;
end;
-
iglezz
Re: Скрипты Inno Setup. Помощь и советы [часть 9]
Цитата gosnitsse:
Вы мне сказали что 32 инсталяторы к 64 битным системам обращаются иначе
В ОС x64:
Код:
Цитата:
Значения корневых ключей с суффиксом 32 (например, HKLM32) приводятся к 32-разрядному представлению реестра; значения корневых ключей с суффиксом 64 (например, HKLM64) приводятся к 64-разрядному представлению реестра.
Значения корневых ключей с суффиксом 64 могут использоваться только в 64-разрядном Windows, иначе произойдет ошибка. На инсталляторе, поддерживающем и 32-разрядные и 64-разрядные архитектуры, можно избежать ошибки, добавляя параметр Check: IsWin64, который заставит тихо пропустить запись, работая при этом на 32-разрядном Windows.
Значения корневых ключей без суффиксов (например, HKLM) эквивалентны значений корневых ключей с суффиксом 32 (например, HKLM32), если инсталлятор не работает в
Вы мне сказали что 32 инсталяторы к 64 битным системам обращаются иначе
Скрипты Inno Setup. Помощь и советы [часть 9]
В ОС x64:
Код:
Код: Выделить всё
HKEY_LOCAL_MACHINE\SOFTWARE\ - Для x64 параметров
HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node - Для x32 параметровСведения о реестре Windows для опытных пользователей
Цитата:
Значения корневых ключей с суффиксом 32 (например, HKLM32) приводятся к 32-разрядному представлению реестра; значения корневых ключей с суффиксом 64 (например, HKLM64) приводятся к 64-разрядному представлению реестра.
Значения корневых ключей с суффиксом 64 могут использоваться только в 64-разрядном Windows, иначе произойдет ошибка. На инсталляторе, поддерживающем и 32-разрядные и 64-разрядные архитектуры, можно избежать ошибки, добавляя параметр Check: IsWin64, который заставит тихо пропустить запись, работая при этом на 32-разрядном Windows.
Значения корневых ключей без суффиксов (например, HKLM) эквивалентны значений корневых ключей с суффиксом 32 (например, HKLM32), если инсталлятор не работает в
64-разрядном режиме установки
, иначе они эквивалентны значений корневых ключей с суффиксом 64 (например, HKLM64).-
iglezz
Re: Скрипты Inno Setup. Помощь и советы [часть 9]
Nordek,
Код:
Благодаря вам я ну уже почти близок к цели, вот прям чуть-чуть осталось, не охота бросать после стольких проделанных действий, я бы не против помощи в дискорде, мне 20 лет, если для вас есть значение возраста просто теперь игра на чёрном экране и не запускается
мне уже смешно)))
SEGosnits
#3242
А если само приложение 32bit но мы ставим в реестре 64 так как система, ничего не будет?
Код:
Код: Выделить всё
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: string; ValueName: Game Registry; ValueData: SOFTWARE\Electronic Arts\The Battle for Middle-earth II; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: dword; ValueName: Restart; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: dword; ValueName: DirectX Installed; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: dword; ValueName: Installed; ValueData: $00000001; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: string; ValueData: "{app}\lotrbfme2.exe"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: string; ValueName: Path; ValueData: "{app}"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: string; ValueName: Game Registry; ValueData: SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: dword; ValueName: Restart; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: dword; ValueName: DirectX Installed; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: dword; ValueName: Installed; ValueData: $00000001; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: string; ValueData: "{app}\Ep1\lotrbfme2ep1.exe"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: string; ValueName: Path; ValueData: "{app}\Ep1"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts; Flags: uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\Electronic Arts; Flags: uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: Language; ValueData: russian; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: InstallPath; ValueData: "{app}"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II; ValueType: dword; ValueName: Version; ValueData: $00010006; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II; ValueType: dword; ValueName: MapPackVersion; ValueData: $00010000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II; ValueType: dword; ValueName: UseLocalUserMaps; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: UserDataLeafName; ValueData: Битва за Средиземье - Мои файлы; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II\ergc; ValueType: string; ValueData: J7F79F9MHXQFBFKGHKAW; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: Language; ValueData: russian; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: InstallPath; ValueData: "{app}\Ep1\"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: dword; ValueName: Version; ValueData: $00020001; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: dword; ValueName: MapPackVersion; ValueData: $00020000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: dword; ValueName: UseLocalUserMaps; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: UserDataLeafName; ValueData: Властелин Колец, Под знаменем Короля-чародея - Мои файлы; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\ergc; ValueType: string; ValueData: SEW6Y8K88UQB3GRZEE9M; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: DisplayName; ValueData: Битва за Средиземье™ II; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: Installed From; ValueData: H:\; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: Registration; ValueData: SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II\ergc; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: CacheSize; ValueData: 5441287168; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: SwapSize; ValueData: 0; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: Language; ValueData: Russian; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: Locale; ValueData: ru; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: CD Drive; ValueData: H:\; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: Install Dir; ValueData: C:\PROGRA~1\LORDOF~1\; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: Product GUID; ValueData: {{2A9F95AB-65A3-432c-8631-B8BC5BF7477A}; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: Region; ValueData: NorthAmerica; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: Folder; ValueData: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Electronic Arts\Битва за Средиземье™ II\; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: Patch URL; ValueData: https://vk.com/bfme_tood2; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Battle for Middle-earth II; ValueType: string; ValueName: Suppression Exe; ValueData: rtsi.exe; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Battle for Middle-earth II\1.0; ValueType: dword; ValueName: Language; ValueData: $00000010; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Battle for Middle-earth II\1.0; ValueType: string; ValueName: DisplayName; ValueData: Битва за Средиземье™ II; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Battle for Middle-earth II\1.0; ValueType: string; ValueName: LanguageName; ValueData: Russian; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: DisplayName; ValueData: Под знаменем Короля-чародея™; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: Installed From; ValueData: H:\; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: Registration; ValueData: SOFTWARE\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\ergc; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: CacheSize; ValueData: 3139187712; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: SwapSize; ValueData: 0; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: Language; ValueData: Russian; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: Locale; ValueData: ru; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: CD Drive; ValueData: H:\; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: Install Dir; ValueData: C:\PROGRA~1\LORDOF~1\Ep1\; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: Product GUID; ValueData: {{B931FB80-537A-4600-00AD-AC5DEDB6C25B}; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: Region; ValueData: NorthAmerica; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: Folder; ValueData: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Electronic Arts\Под знаменем Короля-чародея™\; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: Patch URL; ValueData: https://vk.com/bfme_tood2; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; ValueType: string; ValueName: Suppression Exe; ValueData: rtsi.exe; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\1.0; ValueType: dword; ValueName: Language; ValueData: $00000010; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\1.0; ValueType: string; ValueName: DisplayName; ValueData: Под знаменем Короля-чародея™; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\1.0; ValueType: string; ValueName: LanguageName; ValueData: Russian; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: string; ValueName: Game Registry; ValueData: SOFTWARE\Electronic Arts\The Battle for Middle-earth II; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: dword; ValueName: Restart; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: dword; ValueName: DirectX Installed; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: dword; ValueName: Installed; ValueData: $00000001; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: string; ValueData: "{app}\lotrbfme2.exe"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe; ValueType: string; ValueName: Path; ValueData: "{app}"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: string; ValueName: Game Registry; ValueData: SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: dword; ValueName: Restart; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: dword; ValueName: DirectX Installed; ValueData: $00000000; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: dword; ValueName: Installed; ValueData: $00000001; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: string; ValueData: "{app}\Ep1\lotrbfme2ep1.exe"; Flags: uninsdeletevalue uninsdeletekeyifempty
Root: HKLM64; SubKey: SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe; ValueType: string; ValueName: Path; ValueData: "{app}\Ep1"; Flags: uninsdeletevalue uninsdeletekeyifemptyБлагодаря вам я ну уже почти близок к цели, вот прям чуть-чуть осталось, не охота бросать после стольких проделанных действий, я бы не против помощи в дискорде, мне 20 лет, если для вас есть значение возраста просто теперь игра на чёрном экране и не запускается
мне уже смешно))) SEGosnits
#3242
А если само приложение 32bit но мы ставим в реестре 64 так как система, ничего не будет?
-
Beavimo
Re: Скрипты Inno Setup. Помощь и советы [часть 9]
iglezz
Зделал так, все работает, тока теперь при разных хеш, програма закрывается
code
[spoiler]Код: [/spoiler]
как его побороть?
Зделал так, все работает, тока теперь при разных хеш, програма закрывается
code
[spoiler]Код: [/spoiler]
Код: Выделить всё
function InitializeSetup(): Boolean;
var
FileName: String;
SHA1: String;
begin
FileName := ExpandConstant('{reg:HKLM\SOFTWARE\Code,PATH_APPLICATION}') +'\Test.exe';
if Not FileExists(FileName) then begin
MsgBox('Установка Прекращена' #13#13 'Установите сначала Программу!', mbCriticalError, MB_OK);
Result := False;
Exit;
end;
SHA1 := GetSHA1OfFile(FileName);
if SHA1 = 'ad030d5606a2dcfa75ebc425a70730f23e7f07ab' then // буквы должны быть маленькими
begin
Result := MsgBox('Программа уже Установлена' #13#13 'Продолжить Установить?', mbInformation, MB_YESNO) = IDYES;
end
end;как его побороть?
-
Iska
Re: Скрипты Inno Setup. Помощь и советы [часть 9]
Цитата gosnitsse:
я не знаю уже что и как добавлять чтобы заработало, ужас.
gosnitsse, просто Copy/Paste
Скрытый текст
[spoiler]Код: [/spoiler]
я не знаю уже что и как добавлять чтобы заработало, ужас.
Скрипты Inno Setup. Помощь и советы [часть 9]
gosnitsse, просто Copy/Paste
Скрытый текст
[spoiler]Код: [/spoiler]
Код: Выделить всё
[Registry]
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts"; Flags: uninsdeletekeyifempty
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\Electronic Arts"; Flags: uninsdeletekeyifempty
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II"; Flags: uninsdeletekey
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: Language; ValueData: russian
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: InstallPath; ValueData: {app}
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II"; ValueType: dword; ValueName: Version; ValueData: $00010006
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II"; ValueType: dword; ValueName: MapPackVersion; ValueData: $00010000
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II"; ValueType: dword; ValueName: UseLocalUserMaps; ValueData: $00000000
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: UserDataLeafName; ValueData: "Битва за Средиземье - Мои файлы"
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II\ergc"; ValueType: string; ValueData: J7F79F9MHXQFBFKGHKAW
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; Flags: uninsdeletekey
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: Language; ValueData: russian
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: InstallPath; ValueData: {app}\Ep1\
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: dword; ValueName: Version; ValueData: $00020001
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: dword; ValueName: MapPackVersion; ValueData: $00020000
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: dword; ValueName: UseLocalUserMaps; ValueData: $00000000
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: UserDataLeafName; ValueData: "Властелин Колец, Под знаменем Короля-чародея - Мои файлы"
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\ergc"; ValueType: string; ValueData: SEW6Y8K88UQB3GRZEE9M
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; Flags: uninsdeletekey
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: DisplayName; ValueData: "Битва за Средиземье™ II"
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "Installed From"; ValueData: H:\
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: Registration; ValueData: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II\ergc"
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: CacheSize; ValueData: 5441287168
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: SwapSize; ValueData: 0
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: Language; ValueData: Russian
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: Locale; ValueData: ru
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "CD Drive"; ValueData: H:\
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "Install Dir"; ValueData: {app}\
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "Product GUID"; ValueData: {{2A9F95AB-65A3-432c-8631-B8BC5BF7477A}
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: Region; ValueData: NorthAmerica
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: Folder; ValueData: "{commonprograms}\Electronic Arts\Битва за Средиземье™ II\"
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "Patch URL"; ValueData: https://vk.com/bfme_tood2
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "Suppression Exe"; ValueData: rtsi.exe
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II\1.0"; ValueType: dword; ValueName: Language; ValueData: $00000010
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II\1.0"; ValueType: string; ValueName: DisplayName; ValueData: "Битва за Средиземье™ II"
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II\1.0"; ValueType: string; ValueName: LanguageName; ValueData: Russian
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; Flags: uninsdeletekey
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: DisplayName; ValueData: "Под знаменем Короля-чародея™"
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: "Installed From"; ValueData: H:\
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: Registration; ValueData: "SOFTWARE\Electronic Arts\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\ergc"
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: CacheSize; ValueData: 3139187712
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: SwapSize; ValueData: 0
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: Language; ValueData: Russian
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: Locale; ValueData: ru
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: "CD Drive"; ValueData: H:\
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: "Install Dir"; ValueData: {app}\Ep1\
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: "Product GUID"; ValueData: {{B931FB80-537A-4600-00AD-AC5DEDB6C25B}
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: Region; ValueData: NorthAmerica
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: Folder; ValueData: "{commonprograms}\Electronic Arts\Под знаменем Короля-чародея™\"
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: "Patch URL"; ValueData: https://vk.com/bfme_tood2
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"; ValueType: string; ValueName: "Suppression Exe"; ValueData: rtsi.exe
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\1.0"; ValueType: dword; ValueName: Language; ValueData: $00000010
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\1.0"; ValueType: string; ValueName: DisplayName; ValueData: "Под знаменем Короля-чародея™"
Root: HKLM; SubKey: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king\1.0"; ValueType: string; ValueName: LanguageName; ValueData: Russian
Root: HKLM; SubKey: "SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe"; Flags: uninsdeletekey
Root: HKLM; SubKey: "SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe"; ValueType: string; ValueData: {app}\lotrbfme2.exe
Root: HKLM; SubKey: "SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe"; ValueType: string; ValueName: "Game Registry"; ValueData: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"
Root: HKLM; SubKey: "SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe"; ValueType: dword; ValueName: Restart; ValueData: $00000000
Root: HKLM; SubKey: "SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe"; ValueType: dword; ValueName: "DirectX Installed"; ValueData: $00000000
Root: HKLM; SubKey: "SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe"; ValueType: dword; ValueName: Installed; ValueData: $00000001
Root: HKLM; SubKey: "SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2.exe"; ValueType: string; ValueName: Path; ValueData: {app}
Root: HKLM; SubKey: "SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe"; Flags: uninsdeletekey
Root: HKLM; SubKey: "SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe"; ValueType: string; ValueData: {app}\Ep1\lotrbfme2ep1.exe
Root: HKLM; SubKey: "SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe"; ValueType: string; ValueName: "Game Registry"; ValueData: "SOFTWARE\Electronic Arts\The Lord of the Rings, The Rise of the Witch-king"
Root: HKLM; SubKey: "SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe"; ValueType: dword; ValueName: Restart; ValueData: $00000000
Root: HKLM; SubKey: "SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe"; ValueType: dword; ValueName: "DirectX Installed"; ValueData: $00000000
Root: HKLM; SubKey: "SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe"; ValueType: dword; ValueName: Installed; ValueData: $00000001
Root: HKLM; SubKey: "SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\lotrbfme2ep1.exe"; ValueType: string; ValueName: Path; ValueData: {app}\Ep1
-
Iska
Re: Скрипты Inno Setup. Помощь и советы [часть 9]
Цитата gosnitsse:
просто теперь игра на чёрном экране и не запускается
Вы хотя бы черновую копию подраздела реестра игры сделали?
Заинтересовало что вы там слепить пытаетесь.
На сколько я понял вы хотите 2 игры в одну собрать.
Скачал одну, поработал 5, от силы 10 минут, итог:
Скрытый текст
[spoiler]Код: [/spoiler]
просто теперь игра на чёрном экране и не запускается
Скрипты Inno Setup. Помощь и советы [часть 9]
Вы хотя бы черновую копию подраздела реестра игры сделали?
Заинтересовало что вы там слепить пытаетесь.
На сколько я понял вы хотите 2 игры в одну собрать.
Скачал одну, поработал 5, от силы 10 минут, итог:
Скрытый текст
[spoiler]Код: [/spoiler]
Код: Выделить всё
[Setup]
AppId=LotR_TBFMEII
AppName=Властелин Колец(tm) - Битва за Средиземье™ II
AppVersion=1.5
AppVerName=The Lord of the Rings: The Battle for Middle-earth II
AppPublisher=My Company, Inc.
AppPublisherURL=http://www.example.com/
AppSupportURL=http://www.example.com/
AppUpdatesURL=http://www.example.com/
DefaultDirName={pf}\LotR_Battle_for_ME_II
DefaultGroupName=LotR - The Battle for Middle-earth II
OutputDir=.
OutputBaseFilename=setup
Compression=lzma
SolidCompression=yes
[Languages]
Name: "english"; MessagesFile: "compiler:Default.isl"
[Tasks]
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
[Files]
Source: "LotR\Battle_for_ME_II\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
[Icons]
Name: "{group}\Властелин Колец™ - Битва за Средиземье™ II"; Filename: "{app}\lotrbfme2.exe"
Name: "{group}\{cm:UninstallProgram,Властелин Колец™ - Битва за Средиземье™ II}"; Filename: "{uninstallexe}"
Name: "{commondesktop}\Властелин Колец™ - Битва за Средиземье™ II"; Filename: "{app}\lotrbfme2.exe"; Tasks: desktopicon
[Run]
Filename: "{app}\lotrbfme2.exe"; Description: "{cm:LaunchProgram,Властелин Колец(tm) - Битва за Средиземье(tm) II}"; Flags: nowait postinstall skipifsilent
[Registry]
;
Root: "HKLM"; SubKey: SOFTWARE\Electronic Arts; Flags: uninsdeletekeyifempty
Root: "HKLM"; SubKey: SOFTWARE\Electronic Arts\Electronic Arts; Flags: uninsdeletekeyifempty
;
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "Language"; ValueData: "russian"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "InstallPath"; ValueData: "{app}"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II"; ValueType: dword; ValueName: "Version"; ValueData: "$00010006"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II"; ValueType: dword; ValueName: "MapPackVersion"; ValueData: "$00010000"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II"; ValueType: dword; ValueName: "UseLocalUserMaps"; ValueData: "$00000000"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "UserDataLeafName"; ValueData: "Битва за Средиземье"; Flags: uninsdeletekey
; Ключ (Правилами форума запрещено выкладывать, заменил на XXXXXXXXXXXXXXXXXXXX. Используйте свой.)
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II\ergc"; ValueType: string; ValueData: "XXXXXXXXXXXXXXXXXXXX"; Flags: uninsdeletekey
;
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "DisplayName"; ValueData: "Битва за Средиземье™ II"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "Installed From"; ValueData: "{src}"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "Registration"; ValueData: "SOFTWARE\Electronic Arts\Electronic Arts\The Battle for Middle-earth II\ergc"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "CacheSize"; ValueData: "5441287168"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "SwapSize"; ValueData: "0"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "Language"; ValueData: "Russian"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "Locale"; ValueData: "ru"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "CD Drive"; ValueData: "{src}"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "Install Dir"; ValueData: "{app}"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "Product GUID"; ValueData: "{{2A9F95AB-65A3-432c-8631-B8BC5BF7477A}"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "Region"; ValueData: "NorthAmerica"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "Patch URL"; ValueData: "http://transtest.ea.com/Electronic Arts/The Battle for Middle-earth 2/NorthAmerica"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II"; ValueType: string; ValueName: "Suppression Exe"; ValueData: "rtsi.exe"; Flags: uninsdeletekey
;
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II\1.0"; ValueType: dword; ValueName: "Language"; ValueData: "$00000010"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II\1.0"; ValueType: string; ValueName: "DisplayName"; ValueData: "Битва за Средиземье™ II"; Flags: uninsdeletekey
Root: "HKLM"; Subkey: "SOFTWARE\Electronic Arts\The Battle for Middle-earth II\1.0"; ValueType: string; ValueName: "LanguageName"; ValueData: "Russian"; Flags: uninsdeletekey-
Nordek
Re: Скрипты Inno Setup. Помощь и советы [часть 9]
хех, господи, да, вы правы. Я хочу в игру которую вы скачали, установить мод
HTML код:
.
Код:
Если по верх игры скачать и поставить
HTML код:
. то игра работать будет (СО ВСЕМИ ТЕКСТУРКАМИ (ЕСЛИ ЗАЙТИ В СРАЖЕНИЕ)), но если потом создать репак этой же игры с модом, а мод - это просто файлы, то увы в сражении и даже при в ходе в игру будет розовый экран который подтверждает что текстурок нет, а в сражении так вообще половины игры не будет, разрешите я позже запишу свои действия на видео, загружу в вк и там вы уже всё увидите. Сейчас я всё равно планировал переустановку системы делать. ))))
HTML код:
Код: Выделить всё
https://drive.google.com/file/d/1c91cQ9-C8up6Oiis7E3wSVjt4rrKXCLx/view.
Код:
Код: Выделить всё
C:\Users\Gosni\AppData\Roaming\Властелин Колец, Под знаменем Короля-чародея - Мои файлы\Options.ini -без этого игра работать не будет если его удалить, я коде я указал чтобы он его копировал вместе с папкойЕсли по верх игры скачать и поставить
HTML код:
Код: Выделить всё
https://drive.google.com/file/d/1c91cQ9-C8up6Oiis7E3wSVjt4rrKXCLx/view. то игра работать будет (СО ВСЕМИ ТЕКСТУРКАМИ (ЕСЛИ ЗАЙТИ В СРАЖЕНИЕ)), но если потом создать репак этой же игры с модом, а мод - это просто файлы, то увы в сражении и даже при в ходе в игру будет розовый экран который подтверждает что текстурок нет, а в сражении так вообще половины игры не будет, разрешите я позже запишу свои действия на видео, загружу в вк и там вы уже всё увидите. Сейчас я всё равно планировал переустановку системы делать. ))))