diff options
author | robinsch <robinsch@users.noreply.github.com> | 2024-02-09 08:17:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-09 08:17:46 +0100 |
commit | 2a8a7aec9038509e75ebba14cc076a2b1d7f0f5f (patch) | |
tree | 7581987148ca00e70b7154330a48521d881db354 /Patcher/Patcher.cpp | |
parent | fd7790f0ee2eb61bc35c2a500eb42841f5883da2 (diff) |
Added blue moon color patch
Diffstat (limited to 'Patcher/Patcher.cpp')
-rw-r--r-- | Patcher/Patcher.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Patcher/Patcher.cpp b/Patcher/Patcher.cpp index e258fd1..e4416be 100644 --- a/Patcher/Patcher.cpp +++ b/Patcher/Patcher.cpp @@ -96,6 +96,9 @@ int main(int argc, char** argv) // patch area trigger timer to be more precise (250ms -> 50ms) write_pos<uint8_t>(0x1DB241, 50); + // Return of "The Blue Moon" + write_pos(0x4CFBC0, { 0xC7, 0x05, 0x74, 0x8E, 0xD3, 0x00, 0xFF, 0xFF, 0xFF, 0xFF }); + std::cout << "World of Warcraft exe has been patched!\n"; return 0; } |