Getting Started with Hogwarts Legacy Modding
The ~mods folder, pak file installs, UE4SS, and Vortex management
Hogwarts Legacy modding is conceptually simple — drop pak files into a folder — but limited in scope compared to games with official mod support. This guide walks the standard install on the current Hogwarts Legacy version.
Step 1 — Find the ~mods folder
The pak-mods folder is at Phoenix/Content/Paks/~mods/. Inside your Hogwarts Legacy install directory, the path is:
<Hogwarts Legacy install>/Phoenix/Content/Paks/~mods/
Create the ~mods folder if it doesn't exist. The tilde prefix is critical — it ensures UE4 loads this folder last, overriding base game content.
Step 2 — Install your first mod
Three popular pak mods:
- Cleaner Lighting — visual mod adjusting interior lighting.
- All Outfits Unlockable — removes house restrictions on outfits.
- Faster Brooms — broom-speed adjustment.
Download from Nexus Mods. Each mod is one or more .pak files. Drop them directly into ~mods/.
Step 3 — Launch
Hogwarts Legacy loads pak mods from ~mods/ on startup. No mod manager, no in-game toggles — installed mods apply automatically.
To disable a mod, remove or rename its .pak file.
Step 4 — Optional: install UE4SS
UE4SS (Unreal Engine 4 Scripting System) is the community framework for deeper modding. Required for any mod that uses Lua scripting against the game's runtime.
Install per the UE4SS README. The framework hooks into the UE4 runtime at launch.
After install, Lua-based mods (typically distributed alongside pak mods that depend on them) can be installed by dropping Lua files into the UE4SS mods folder.
Step 5 — Manage with Vortex (optional)
For mod lists larger than a handful, Vortex handles the install paths and load ordering. Configure for Hogwarts Legacy.
Common gotchas
- Mod doesn't appear in-game. Confirm the
.pakis in~mods/(with the tilde), not inPaks/directly. Loading order matters. - Patch broke mods. UE4 asset references are version-locked. After a Hogwarts Legacy patch, some pak mods may need updating.
- UE4SS mod doesn't load. UE4SS version mismatch is the common cause. Update to match the current game patch.
- Two cosmetic mods conflict. Both replace the same outfit/character asset. Only one can win; later-loaded pak takes effect.
- Performance dropped. Visual overhauls especially can hit GPU. Test on your hardware.
Hogwarts Legacy's modding scene is mature for its age but constrained by the game's architecture. Expect the catalogue to remain primarily cosmetic with selected gameplay tweaks rather than full overhauls.