-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New installer version, v0.2.6 Changes: - lsao_cached.pad MD5 check moved to occur during the main installation step of the installer (instead of when user checks box when selecting which components to install). - homefront exe MD5 check also moved to occur in main installation. (fileExists check still happens earlier, as does with lsao_cached) - Setup process now logs useful debugging information to a text file. That text file is located BOTH in the user's Temp folder (%UserProfile%\AppData\Local\Temp\) and a copy is saved right next to the installer exe for convenience. Example log filename: TS2-Redux-Setup Log 2022-01-15.txt - Minor tweaks to messages
- Loading branch information
1 parent
1e390c8
commit 279cfe5
Showing
3 changed files
with
115 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
gamehf2\bundle.pak | ||
gamehf2\chunkmap.pak | ||
gamehf2\content | ||
gamehf2\core_patch.pak | ||
gamehf2\gamedata.pak | ||
gamehf2\levels | ||
gamehf2\lsao_cached.pak | ||
gamehf2\prefabs.pak | ||
gamehf2\scripts.pak | ||
gamehf2\texturesui.pak | ||
gamehf2\_activitycache | ||
gamehf2\_fastload | ||
gamehf2\_levelcache | ||
gamehf2\levels\philly | ||
gamehf2\levels\philly\level.pak | ||
gamehf2\levels\philly\levelmm.pak | ||
gamehf2\_fastload\engineboot.pak | ||
gamehf2\_fastload\frontend.pak | ||
gamehf2\_fastload\intromovies.pak | ||
localization\english_xml.pak |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
@echo off | ||
|
||
if "%~1"=="" echo Missing install path && exit /b 1 | ||
set "installpath=%~1" | ||
if "%~2"=="" echo Missing Steam username && exit /b 1 | ||
set "steamuser=%~2" | ||
if "%~3"=="" echo Missing Steam password && exit /b 1 | ||
set "steampass=%~3" | ||
|
||
%~dp0DepotDownloader.exe -app 223100 -depot 223101 -manifest 103344760119053156 -username %steamuser% -password %steampass% -dir "%installpath%" | ||
%~dp0DepotDownloader.exe -app 223100 -depot 223102 -manifest 3243358074883441516 -username %steamuser% -password %steampass% -dir "%installpath%" | ||
%~dp0DepotDownloader.exe -app 223100 -depot 223103 -manifest 8582653993015227315 -username %steamuser% -password %steampass% -dir "%installpath%" -filelist %~dp0223103-content.txt | ||
%~dp0DepotDownloader.exe -app 223100 -depot 223106 -manifest 1385625310001200108 -username %steamuser% -password %steampass% -dir "%installpath%" | ||
|
||
echo Done! | ||
pause | ||
exit /b 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters