The Unreal library provides you an API to parse/deserialize package files such as .UDK, .UPK, from Unreal Engine games, and provide you the necessary methods to navigate its contents.
At the moment these are all the object classes that are supported by this API:
UObject, UField, UConst, UEnum, UProperty, UStruct, UFunction, UState,
UClass, UTextBuffer, UMetaData, UFont, USound, UPackage
Either use NuGet's package manager console or download from: https://www.nuget.org/packages/Eliot.UELib.dll/
PM> Install-Package Eliot.UELib.dll
See https://github.com/EliotVU/Unreal-Library/wiki/Usage
The latest build is always compatible with the latest UE Explorer's release, and because of that, you can replace the Eliot.UELib.dll in the installation folder with yours.
Below is a table of games that are known to be compatible with the UELib.
Name | Engine | Package/Licensee | Support State |
---|---|---|---|
APB: All Points Bulletin | 3908 | 547/032 | |
Alice Madness Returns | 6760 | 690/000 | |
Alien Rage | Unknown | Unknown | |
Aliens: Colonial Marines | Unknown | 787/047 | |
Alpha Protocol | 3857 | 539/091 | |
AntiChamber | 7977 | 812/000 | |
Battle Territory Battery | Unknown | Unknown | |
Bioshock Infinite | 6829 | 727/075 | |
Blacklight Retribution | 8788 | 841/Unknown | |
Borderlands 2 | 8623/023 | 832/056 | |
Borderlands | Unknown | Unknown | |
Bulletstorm | 7052 | 742/029 | |
CrimeCraft | 4701 | 576/005 | |
Deadlight | 9375 | 854/000 | |
Deus Ex | Unknown | Unknown | |
Dishonored | 9099 | 801/030 | |
Dungeon Defenders | 6262 | 678/002 | |
Gears of War 2 | 4638 | 575/000 | |
Gears of War 3 | 8653 | 828/000 | |
Gears of War | 3329 | 490/009 | |
Gears of War: Judgement | 10566 | 846/000 | |
Hawken | 10681 | 860/004 | |
InMomentum | 8980 | 848/000 | |
Infinity Blade 2 | 9059 | 842/001 | |
Killing Floor | 3369 | 128/029 | |
Medal of Honor: Airborne | 2859 | 421/011 | |
Might & Magic Heroes VII | 12161 | 868/004 | (Signature and custom features are not supported) |
Mirrors Edge | 3716 | 536/043 | |
Monday Night Combat | 5697 | 638/000 | |
MoonBase Alpha | 4947 | 587/000 | |
Mortal Kombat Komplete Edition | 2605 | 472/046 | |
Outlast | Unknown | Unknown | |
Painkiller HD | 9953 | 860/000 | |
Q.U.B.E | 8916 | 845/000 | |
Quantum Conundrum | 8623 | 832/32870 | |
Ravaged | 9641 | 859/000 | |
Red Orchestra 2: Heroes of Stalingrad | 7258 | 765/Unknown | |
Red Orchestra: Ostfront 41-45 | 3323-3369 | 128/029 | |
Remember Me | 8623 | 832/021 | |
Rise of the Triad | Unknown | Unknown | |
Roboblitz | 2306 | 369/006 | |
Rock of Ages | 7748 | 805/000 | |
Sanctum | 7876 | 810/000 | |
Saw | Unknown | 584/003 | |
Sherlock Holmes: Crimes and Punishments | Unknown | Unknown | |
Singularity | 4869 | 584/126 | |
Soldier Front 2 | 6712 | 904/009 | |
Star Trek: The Next Generation: Klingon Honor Guard | Unknown | 61/000 | |
Stargate Worlds | 3004 | 486/007 | |
Super Monday Night Combat | 8364 | 820/000 | |
Swat 4 | Unknown | 129/027 | |
The Ball | 6699 | 706/000 | |
The Exiled Realm of Arborea or TERA | 4206 | 610/014 | |
The Five Cores | 9656 | 859/000 | |
The Haunted: Hells Reach | 8788 | 841/000 | |
Tribes: Ascend | 7748 | 805/Unknown | |
Unmechanical | 9249 | 852/000 | |
Unreal Development Kit | 6094-10246 | 664-860 | |
Unreal II | 829-2001 | 126/2609 | |
Unreal Mission Pack: Return to Na Pali | 226b | 68/000 | |
Unreal Tournament 2003 | 1077-2225 | 119/025 | |
Unreal Tournament 2004 | 3120-3369 | 128/029 | |
Unreal Tournament 3 | 3809 | 512/000 | |
Unreal Tournament | 338-436 | 68/000 | |
Unreal | 100-226 | 61/000 | |
Waves | 8171 | 813/000 | |
XCOM: Enemy Unknown | 8916 | 845/059 | |
XIII | Unknown | 100/058 |
Beware, opening an unsupported package could crash your system! Make sure you have saved everything before opening any file!
Want to add support for a game? See adding support for new Unreal classes
To contribute click the fork button at the top right and follow it by cloning your fork of this repository.
This project uses Visual Studio for development, while it is not restricted to Visual Studio it is recommended to use VS because it has the best support for C#, you can get Visual Studio from https://www.visualstudio.com/ for free, if you already have Visual Studio, it should be atleast Visual Studio 2010+.
The following kind of contributions are welcome:
- Any bug fix or issue as reported under "issues" on this github repository.
- Support for a new game.
- Support for decompression, and/or decryption.
- Documentation on how to use this library.
- General improvements in the decompilation output.
- Mono compatibility.
Any contribution should try to follow the already existing neighbouring code.