diff options
author | robinsch <hello@robinsch.com> | 2023-12-02 12:25:21 +0100 |
---|---|---|
committer | robinsch <hello@robinsch.com> | 2023-12-02 12:25:21 +0100 |
commit | 2545ee0127818680876fb9e82ecb0e1128690ca1 (patch) | |
tree | 5bd3e0afc6b30447b3f8fb167d69dfb1614940cc | |
parent | 3b323813009c62a236c26901afdc9eedf6740099 (diff) |
Added a fix that no longer requires you to use /reload or wait 1 minute to receive new mail ingame.
-rw-r--r-- | Patcher.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Patcher.cpp b/Patcher.cpp index 8196d21..496d948 100644 --- a/Patcher.cpp +++ b/Patcher.cpp @@ -82,11 +82,14 @@ int main(int argc, char** argv) //// naked character issue write_pos(0x1DDC5D, 0xEB); - //// patches missiles impacting with terrain + // patches missiles impacting with terrain write_pos(0x1FC99E, 0x00); write_pos(0x1FC8C7, 0x00); write_pos(0x1FC735, 0x00); + // patch mail request timeout + write_pos(0x6D899, { 0x05, 0x01, 0x00, 0x00, 0x00 }); + std::cout << "World of Warcraft exe has been patched!\n"; return 0; } |