Skip to content

Commit 29275db

Browse files
committed
Added support for Dark Hours
1 parent 5732da8 commit 29275db

File tree

3 files changed

+17
-13
lines changed

3 files changed

+17
-13
lines changed

README.md

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,22 @@ Usage of UESigPatch with games, especially in regard to those which implement an
77
### Instructions:
88
Download the compiled ASI from the [latest release](https://github.com/Irastris/UESigPatch/releases/latest), or clone the repository and compile the solution in Visual Studio 2022. To utilize, the ASI should be injected into supported Unreal games using an ASI injector, this repo recommends [Ultimate ASI Loader](https://github.com/ThirteenAG/Ultimate-ASI-Loader).
99

10-
### Supported Games [^1]:
11-
- Asterigos: Curse of the Stars
12-
- Black Myth Wukong
13-
- Bramble: The Mountain King
14-
- DRAGON BALL Sparking! ZERO
15-
- Fast Food Simulator Prologue
16-
- Harry Potter Quidditch Champions
17-
- inZOI Character Studio Demo
18-
- Mortal Kombat 1
19-
- Sifu
20-
- Slackers - Carts of Glory
10+
### Supported Games:
11+
- Asterigos: Curse of the Stars[^1]
12+
- Black Myth Wukong [^1]
13+
- Bramble: The Mountain King [^1]
14+
- Dark Hours [^3]
15+
- DRAGON BALL Sparking! ZERO [^1]
16+
- Fast Food Simulator Prologue [^1]
17+
- Harry Potter Quidditch Champions [^1]
18+
- inZOI Character Studio Demo [^1]
19+
- Mortal Kombat 1 [^1]
20+
- Sifu [^1]
21+
- Slackers - Carts of Glory [^2]
2122

2223
### Known Limitations:
2324
At this time, this new UESigPatch V2 has no wildcards for any of its AOBs. This means that any game updates which affect the executable are highly likely to result in UESigPatch needing an update as well. A solution for this is being researched.
2425

25-
[^1]: The supported games list represents compatibility as it stood on December 1st, 2024. Any subsequent games updates may result in this list no longer being accurate.
26+
[^1]: Compatibility with this game was last checked on December 1st, 2024. Any subsequent updates that may have released since then may result in incompatibility. If this is the case, please open an issue.
27+
[^2]: Compatibility with this game was last checked on December 6th, 2024. Any subsequent updates that may have released since then may result in incompatibility. If this is the case, please open an issue.
28+
[^3]: Compatibility with this game was last checked on January 10th, 2025. Any subsequent updates that may have released since then may result in incompatibility. If this is the case, please open an issue.

UESigPatch/dllmain.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// #include "SDK/Basic.hpp"
1212
// using namespace SDK;
1313

14-
constexpr const char* ASI_VERSION = "2.0.1";
14+
constexpr const char* ASI_VERSION = "2.0.2";
1515

1616
bool bPauseOnStart = false;
1717
bool bShowConsole = false;

UESigPatch/gamesupport.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ const char* GetPatternFromExecutableName() {
2121
if (path == "BlueClient-Win64-Shipping.exe") return "48 83 EC 28 65 48 8B 04 25 58 00 00 00 8B 0D 29 4C F6 08 BA 04 11 00 00";
2222
if (path == "b1-Win64-Shipping.exe") return "48 83 EC 28 65 48 8B 04 25 58 00 00 00 8B 0D 45 CB 64 11 BA 1C 04 00 00";
2323
if (path == "CartOfGlory-Win64-Shipping.exe") return "48 83 EC 28 65 48 8B 04 25 58 00 00 00 8B 0D 05 1C D7 03 BA 08 01 00 00";
24+
if (path == "darkhours-Win64-Shipping.exe") return "48 83 EC 28 8B 0D 2A 57 DA 07 65 48 8B 04 25 58 00 00 00 BA EC 0E 00 00";
2425
if (path == "Genesis-Win64-Shipping.exe") return "48 83 EC 28 65 48 8B 04 25 58 00 00 00 8B 0D FD E2 41 04 BA 08 01 00 00";
2526
if (path == "MK12.exe") return "48 83 EC 28 65 48 8B 04 25 58 00 00 00 8B 0D C5 E4 70 05 BA 40 01 00 00";
2627
if (path == "ProjectBakery-Win64-Shipping.exe") return "48 83 EC 28 65 48 8B 04 25 58 00 00 00 8B 0D 69 6C 7E 06 BA 6C 0E 00 00";

0 commit comments

Comments
 (0)