From 8df29338a67508c3ea205fcc0a837ca53fbc3e69 Mon Sep 17 00:00:00 2001 From: GoLang <87151713+GoLang1337@users.noreply.github.com> Date: Wed, 20 Oct 2021 18:43:32 +0200 Subject: [PATCH] Added BloodHunt (#44) --- Dumper/engine.cpp | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/Dumper/engine.cpp b/Dumper/engine.cpp index 1931f02..d178fd3 100644 --- a/Dumper/engine.cpp +++ b/Dumper/engine.cpp @@ -318,7 +318,13 @@ struct { {"\x48\x8D\x0D\x00\x00\x00\x00\xE8\x00\x00\x00\x00\xC6\x05\x00\x00\x00\x00\x01\x0F\x10\x03\x4C\x8D\x44\x24\x20\x48\x8B\xC8", 30}, {"\x48\x8B\x05\x00\x00\x00\x00\x48\x8B\x0C\xC8\x48\x8D\x1C\xD1\xEB\x03\x49\x8B\xDD", 20}, nullptr - } + }, + { // Tiger-Win64-Shipping.exe + &Default, + {"\x48\x8D\x35\x00\x00\x00\x00\xEB\x16", 9}, + {"\x48\x8d\x1d\x00\x00\x00\x00\x39\x44\x24\x68", 11}, + nullptr + }, }; std::unordered_map games = { @@ -332,7 +338,8 @@ std::unordered_map games = { {"POLYGON-Win64-Shipping", &engines[4]}, {"FortniteClient-Win64-Shipping", &engines[5]}, {"TheIsleClient-Win64-Shipping", &engines[6]}, - {"PortalWars-Win64-Shipping", &engines[7]} + {"PortalWars-Win64-Shipping", &engines[7]}, + {"Tiger-Win64-Shipping", &engines[0]} }; STATUS EngineInit(std::string game, void* image) {