From 14c367038be0f12379de2faa858704c62db3687f Mon Sep 17 00:00:00 2001 From: FawazTakhji <56781705+FawazTakhji@users.noreply.github.com> Date: Wed, 18 May 2022 01:05:08 +0300 Subject: [PATCH] add enkanomia guides to esp --- cheat-library/src/user/cheat/esp/ESP.cpp | 4 ++++ cheat-library/src/user/cheat/game/filters.cpp | 4 ++++ cheat-library/src/user/cheat/game/filters.h | 4 ++++ 3 files changed, 12 insertions(+) diff --git a/cheat-library/src/user/cheat/esp/ESP.cpp b/cheat-library/src/user/cheat/esp/ESP.cpp index 23edc7c..6456f22 100644 --- a/cheat-library/src/user/cheat/esp/ESP.cpp +++ b/cheat-library/src/user/cheat/esp/ESP.cpp @@ -462,11 +462,15 @@ namespace cheat::feature ADD_FILTER_FIELD(featured, TimeTrialChallenge); ADD_FILTER_FIELD(guide, CampfireTorch); + ADD_FILTER_FIELD(guide, DayNightSwitchingMechanism); + ADD_FILTER_FIELD(guide, EnkanomiyaPhaseGate); ADD_FILTER_FIELD(guide, MysteriousCarvings); ADD_FILTER_FIELD(guide, PhaseGate); + ADD_FILTER_FIELD(guide, PlacesofEssenceWorship); ADD_FILTER_FIELD(guide, Pot); ADD_FILTER_FIELD(guide, RuinBrazier); ADD_FILTER_FIELD(guide, Stormstone); + ADD_FILTER_FIELD(guide, TriangularMechanism); ADD_FILTER_FIELD(living, BakeDanuki); ADD_FILTER_FIELD(living, BirdEgg); diff --git a/cheat-library/src/user/cheat/game/filters.cpp b/cheat-library/src/user/cheat/game/filters.cpp index 8cc6087..1ba0863 100644 --- a/cheat-library/src/user/cheat/game/filters.cpp +++ b/cheat-library/src/user/cheat/game/filters.cpp @@ -47,11 +47,15 @@ namespace cheat::game::filters namespace guide { SimpleFilter CampfireTorch = { app::EntityType__Enum_1::Gadget, "_FireBasin" }; + SimpleFilter DayNightSwitchingMechanism = { app::EntityType__Enum_1::Field, "_CircleConsole" }; + SimpleFilter EnkanomiyaPhaseGate = { app::EntityType__Enum_1::Gadget, "_Singularity" }; SimpleFilter MysteriousCarvings = { app::EntityType__Enum_1::Gadget, "_ReginStatue" }; SimpleFilter PhaseGate = { app::EntityType__Enum_1::Field, "_TeleportHighway" }; + SimpleFilter PlacesofEssenceWorship = { app::EntityType__Enum_1::Field, "_EnergySource" }; SimpleFilter Pot = { app::EntityType__Enum_1::Gadget, "_Cooking_" }; SimpleFilter RuinBrazier = { app::EntityType__Enum_1::Gadget, "_AncientHeatSource" }; SimpleFilter Stormstone = { app::EntityType__Enum_1::Gadget, "_ReginLamp" }; + SimpleFilter TriangularMechanism = { app::EntityType__Enum_1::Field, "_TuningFork" }; } namespace living diff --git a/cheat-library/src/user/cheat/game/filters.h b/cheat-library/src/user/cheat/game/filters.h index 712197a..8c67af9 100644 --- a/cheat-library/src/user/cheat/game/filters.h +++ b/cheat-library/src/user/cheat/game/filters.h @@ -50,11 +50,15 @@ namespace cheat::game::filters namespace guide { extern SimpleFilter CampfireTorch; + extern SimpleFilter DayNightSwitchingMechanism; + extern SimpleFilter EnkanomiyaPhaseGate; extern SimpleFilter MysteriousCarvings; extern SimpleFilter PhaseGate; + extern SimpleFilter PlacesofEssenceWorship; extern SimpleFilter Pot; extern SimpleFilter RuinBrazier; extern SimpleFilter Stormstone; + extern SimpleFilter TriangularMechanism; } namespace living