added Dunlins Tooth to the ESP because im to lazy to remeber the precise location of them

This commit is contained in:
biswop 2022-06-17 21:09:35 +10:00
parent edb3a99e68
commit 38a5679427
3 changed files with 3 additions and 0 deletions

View File

@ -513,6 +513,7 @@ namespace cheat::feature
ADD_FILTER_FIELD(mineral, ScarletQuartz); ADD_FILTER_FIELD(mineral, ScarletQuartz);
ADD_FILTER_FIELD(mineral, StarSilver); ADD_FILTER_FIELD(mineral, StarSilver);
ADD_FILTER_FIELD(mineral, WhiteIronChunk); ADD_FILTER_FIELD(mineral, WhiteIronChunk);
ADD_FILTER_FIELD(mineral, DunlinsTooth);
// Trounce. Arranged by appearance in-game. // Trounce. Arranged by appearance in-game.
ADD_FILTER_FIELD(monster, Dvalin); ADD_FILTER_FIELD(monster, Dvalin);

View File

@ -107,6 +107,7 @@ namespace cheat::game::filters
SimpleFilter ScarletQuartz = { app::EntityType__Enum_1::GatherObject, "_OreDulinsBlood" }; SimpleFilter ScarletQuartz = { app::EntityType__Enum_1::GatherObject, "_OreDulinsBlood" };
SimpleFilter StarSilver = { app::EntityType__Enum_1::GatherObject, "_OreMoonMeteor" }; SimpleFilter StarSilver = { app::EntityType__Enum_1::GatherObject, "_OreMoonMeteor" };
SimpleFilter WhiteIronChunk = { app::EntityType__Enum_1::GatherObject, "_OreMetal" }; SimpleFilter WhiteIronChunk = { app::EntityType__Enum_1::GatherObject, "_OreMetal" };
SimpleFilter DunlinsTooth = { app::EntityType__Enum_1::GatherObject, "_DunlinsTooth" };
} }
namespace monster namespace monster

View File

@ -107,6 +107,7 @@ namespace cheat::game::filters
extern SimpleFilter ScarletQuartz; extern SimpleFilter ScarletQuartz;
extern SimpleFilter StarSilver; extern SimpleFilter StarSilver;
extern SimpleFilter WhiteIronChunk; extern SimpleFilter WhiteIronChunk;
extern SimpleFilter DunlinsTooth;
} }
namespace monster namespace monster