From ffe83503658971f5d5089fea6ee423461b3cd29a Mon Sep 17 00:00:00 2001 From: m0nkrel Date: Mon, 11 Jul 2022 00:42:46 +0300 Subject: [PATCH] Added items to ESP --- cheat-library/src/user/cheat/esp/ESP.cpp | 2 ++ cheat-library/src/user/cheat/game/filters.cpp | 2 ++ cheat-library/src/user/cheat/game/filters.h | 2 ++ 3 files changed, 6 insertions(+) diff --git a/cheat-library/src/user/cheat/esp/ESP.cpp b/cheat-library/src/user/cheat/esp/ESP.cpp index 2165fed..a81f445 100644 --- a/cheat-library/src/user/cheat/esp/ESP.cpp +++ b/cheat-library/src/user/cheat/esp/ESP.cpp @@ -417,6 +417,8 @@ namespace cheat::feature ADD_FILTER_FIELD(collection, RadiantSpincrystal); ADD_FILTER_FIELD(collection, BookPage); ADD_FILTER_FIELD(collection, QuestInteract); + ADD_FILTER_FIELD(collection, WoodenCrate); + ADD_FILTER_FIELD(collection, GeoSigil); ADD_FILTER_FIELD(chest, CommonChest); ADD_FILTER_FIELD(chest, ExquisiteChest); diff --git a/cheat-library/src/user/cheat/game/filters.cpp b/cheat-library/src/user/cheat/game/filters.cpp index d3e54d0..7591011 100644 --- a/cheat-library/src/user/cheat/game/filters.cpp +++ b/cheat-library/src/user/cheat/game/filters.cpp @@ -11,6 +11,8 @@ namespace cheat::game::filters ChestFilter RadiantSpincrystal = ChestFilter(game::Chest::ItemType::BGM); ChestFilter BookPage = ChestFilter(game::Chest::ItemType::BookPage); ChestFilter QuestInteract = ChestFilter(game::Chest::ItemType::QuestInteract); + SimpleFilter WoodenCrate = { app::EntityType__Enum_1::Chest, "Searchpoint_OnWater" }; + SimpleFilter GeoSigil = { app::EntityType__Enum_1::Chest, "Prop_Search_Point" }; } namespace chest diff --git a/cheat-library/src/user/cheat/game/filters.h b/cheat-library/src/user/cheat/game/filters.h index 20617bf..9553cf1 100644 --- a/cheat-library/src/user/cheat/game/filters.h +++ b/cheat-library/src/user/cheat/game/filters.h @@ -10,6 +10,8 @@ namespace cheat::game::filters { extern SimpleFilter Book; extern SimpleFilter Viewpoint; + extern SimpleFilter WoodenCrate; + extern SimpleFilter GeoSigil; extern ChestFilter RadiantSpincrystal; extern ChestFilter BookPage;