https://github.com/umbra999/uedumpparser
Convert C++ UE Dumps to C# Dumps
https://github.com/umbra999/uedumpparser
dumper parser ue4 unreal unreal-engine-4
Last synced: 10 months ago
JSON representation
Convert C++ UE Dumps to C# Dumps
- Host: GitHub
- URL: https://github.com/umbra999/uedumpparser
- Owner: Umbra999
- Archived: true
- Created: 2023-06-22T09:29:20.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-07-25T14:15:15.000Z (over 2 years ago)
- Last Synced: 2025-02-16T14:03:23.820Z (12 months ago)
- Topics: dumper, parser, ue4, unreal, unreal-engine-4
- Language: C#
- Homepage:
- Size: 2.76 MB
- Stars: 9
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# UEDumpParser
Convert C++ UE Dumps to C# Dumps
This Tool is a simple helper to convert the output from Unreal Dumper to C#, this way you have a easy way of managing the Offsets in your Externals without updating them by Hand
Known Issues:
- Since its converting raw Dump, some names might be doubled in some Games, for now you can just rename them in your Offset class by Hand it should not be that much
- Not all types are supported yet, stuff MIGHT be missing
Future Plans:
- SDK generator, this way you dont need to mess with offsets ever again and can work with full classes
- Method calling, right now it only works on props/fields/classes
Requirements: NET 7.0 https://dotnet.microsoft.com/en-us/download/dotnet/7.0
Usage:
1. Download or Compile the UEParser
2. Create a folder called "Input" next to it
3. Put all .h classes from UEDumper into the Input folder
4. Run the Parser
5. A Folder called Output should be created with 3 classes. Enums, Classes and Structs
6. Put the 3 Classes inside your Project
7. Now you can use it something like this: 
