Added items to ESP

This commit is contained in:
m0nkrel 2022-07-11 00:42:46 +03:00
parent 83cc1642e2
commit ffe8350365
3 changed files with 6 additions and 0 deletions

View File

@ -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);

View File

@ -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

View File

@ -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;