Lua scripting system platform, C++ Modding API, SDK generator, blueprint mod loader, live property editor and other dumping utilities for UE4/5 games.
- Lua Scripting API: Write lua mods based on the UE object system
- Blueprint Modloading: Spawn blueprint mods automatically without editing/replacing game files
- C++ Modding API: Write C++ mods based on the UE object system
- Live Property Viewer and Editor: Search, view, edit & watch the properties of every loaded object, great for debugging mods or figuring out how values are changed during runtime
- UHT Dumper: Generate Unreal Header Tool compatible C++ headers for creating a mirror .uproject for your game
- C++ Header Dumper: Generate standard C++ headers from reflected classes and blueprints, with offsets
- Universal UE Mods: Unlock the game console and other universal mods
- Dumpers for File Parsing: Generate
.usmap
mapping files for unversioned properties - UMAP Recreation Dumper: Dump all loaded actors to file to generate
.umaps
in-editor - Other Features, including Experimental features at times
The goal of UE4SS is not to be a plug-n-play solution that always works with every game. The goal is to have an underlying system that works for most games. You may need to update AOBs on your own, and there's a guide for that below.
The easiest installation is via downloading the non-dev version of the latest non-experimental build from Releases and extracting the zip content to /{Gameroot}/GameName/Binaries/Win64/
.
If your game is in the custom config list, extract the contents from the relevant folder to Win64
as well.
If you are planning on doing mod development using UE4SS, you can do the same as above but download the zDEV version instead.
Generating UHT compatible headers
Creating Compatible Blueprint Mods
Unreal Engine Modding Discord Server Invite
- A computer running Windows.
- Linux support might happen at some point but not soon.
- A version of MSVC that supports C++20, including std::format.
- Visual Studio 2019 (recent versions), and Visual Studio 2022 will work.
- More compilers will hopefully be supported in the future.
- Rust toolchain 1.73.0 or greater
- Clone the repo.
- Execute this command:
git submodule update --init --recursive
Make sure your Github account is linked to your Epic Games account for UE source access. Do not use the--remote
option because that will force third-party dependencies to update to the latest commit, and that can break things. You will need your github account to be linked to an Epic games account to pull the Unreal pseudo code submodule. - There are three different ways you can build UE4SS.
- Execute this command:
build_auto.bat <BuildMode> <Target>
, example:build_auto.bat Release ue4ss
Valid build modes areRelease
andDebug
, and valid targets areue4ss
andxinput1_3
. Parallel compilation is enabled for this build method. - Open the root UE4SS directory in CLion, select
ue4ss
orxinput1_3
from the target list and hit the build button. Parallel compilation is NOT enabled for this build method. - Execute
VS_Solution/generate_vs_solution.bat
to generate a Visual Studio solution file. Open the solution with Visual Studio 2019 or Visual Studio 2022, select the build type and build theue4ss
project. Parallel compilation is enabled for this build method.
- Execute this command:
If you want to update dependencies, you do so one of three ways:
- You can execute
remote_update_first_party_submodules.bat
to update all first-party dependencies. - You can also choose to update dependencies one by one, by executing
git submodule update --init --recursive vendor/<RepoOwner>/<Repo>
. Remember to not use the--remote
option unless you actually want to update to the latest commit. - If you would rather pick a specific commit or branch to update a dependency to then
cd
into the submodule directory for that dependency and executegit checkout <branch name or commit>
.
Note that you should also commit & push the submodules that you've updated if the reason why you updated was not because someone else pushed an update, and you're just catching up to it.
All contributors since the project became open source: https://github.com/UE4SS-RE/RE-UE4SS/graphs/contributors
- Original Creator The original creator no longer wishes to be involved in or connected to this project. Please respect their wishes, and avoid using their past usernames in connection with this project.
- Archengius
- UHT compatible header generator
- CasualGamer
- Injector code & aob scanner is heavily based on his work, 90% of that code is his.
- SunBeam
- Extra signature for function 'GetFullName' for UE4.25.
- Regex to check for proper signature format when loaded from ini.
- Lots and lots of work on signatures
- tomsa
- const char* to vector<int> converter
- tomsa: Idea & most of the code
- Original Creator: Nibblet support
- const char* to vector<int> converter
- boop / usize
- New UFunction hook method
- RussellJ
- Blueprint Modloader inspiration
- Narknon
- Certain features and maintenance/rehosting of the project
- DeadMor0z
- Certain features and Lua updates/maintenance
- OutTheShade
- Unreal Mappings (USMAP) Generator
- DmgVol
- Inspiration for map dumper
- Buckminsterfullerene
- Rewriting the documentation, various fixes
- trumank
- Lua bindings generator, various fixes, automation & improvements
- localcc
- C++ API
- GreenHouse
- Otis_Inf
- SunBeam
- Motoson
- hooter
- Synopis
- Buckminsterfullerene