This file contains hidden or 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
| # This script downgrades the Epic Games version to a previous version using the 3rd party client Legendary | |
| # 1. Download Legendary | |
| # 2. Install with the provided manifest | |
| # 3. Optionally update a registry key for HogWarp | |
| # 4. If this script instantly closes after running, open the path that contains this file in PowerShell and run: powershell -NoProfile -ExecutionPolicy Bypass -File .\DowngradeEpic.ps1 | |
| $ErrorActionPreference = 'Continue' | |
| Write-Host -BackgroundColor Red "Downloading Legendary, please wait..." |
This file contains hidden or 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
| import os | |
| import shutil | |
| # Get the path to the user's Documents folder | |
| documents_folder = os.path.expanduser('~/Documents') | |
| # Define source and destination paths | |
| source_path = os.path.join(documents_folder, 'Hogwarts Legacy', 'Mods', '87986') | |
| destination_path = r'E:\SteamLibrary\steamapps\common\Hogwarts Legacy\Phoenix\Mods' |
This file contains hidden or 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
| :: REQUIRES REPAK https://github.com/trumank/repak/ | |
| :: Process a single .pak file or all .pak files in a directory | |
| @echo off | |
| setlocal enabledelayedexpansion | |
| cls | |
| title TrimPak | |
| echo Select an option: |