Created
April 25, 2026 20:59
-
-
Save mjuopperi/6cd5ab7246c19ca73a8c6a245a2e7db9 to your computer and use it in GitHub Desktop.
UE4SS custom AOB signatures for UE 5.7 games (FName_Constructor + StaticConstructObject)
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
| == Create these files in: ue4ss/UE4SS_Signatures/ == | |
| == File 1: FName_Constructor.lua == | |
| function Register() | |
| return "40 53 48 83 EC 30 48 8B D9 48 89 54 24 20 33 C9 4C 8B CA 44 8B C1 48 85 D2 74 27 0F B7 02 66 85" | |
| end | |
| function OnMatchFound(MatchAddress) | |
| return MatchAddress | |
| end | |
| == File 2: StaticConstructObject.lua == | |
| function Register() | |
| return "4C 8B 47 10 48 8D 44 24 64 48 89 44 24" | |
| end | |
| function OnMatchFound(MatchAddress) | |
| local v1 = 0xD3 | |
| return MatchAddress - v1 | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment