Open Tereneckla opened 1 year ago
Some queries to check this out per map:
-- SSC 0 results rn
SELECT *
FROM `creature_loot_template` AS clt
INNER JOIN `creature` AS ct
ON clt.Entry = ct.id1
WHERE `Item` = 32897 AND `map` = 548;
-- The Eye 7 to 10% ish
SELECT *
FROM `creature_loot_template` AS clt
INNER JOIN `creature` AS ct
ON clt.Entry = ct.id1
WHERE `Item` = 32897 AND `map` = 550;
-- BT 9 to 13.5% ish
SELECT *
FROM `creature_loot_template` AS clt
INNER JOIN `creature` AS ct
ON clt.Entry = ct.id1
WHERE `Item` = 32897 AND `map` = 564;
-- Sunwell 15% on all creatures
SELECT *
FROM `creature_loot_template` AS clt
INNER JOIN `creature` AS ct
ON clt.Entry = ct.id1
WHERE `Item` = 32897 AND `map` = 580;
Current Behaviour
Mark of Illidari drop rates seem rather low
Mark of Illidari drop is missing entirely from Serpentshrine CavernExpected Blizzlike Behaviour
Mark of Illidari drop rates in SSC are around 10% Mark of Illidari drop rates in TK, MH, BT and SWP seem around 20%
Source
https://www.wowhead.com/wotlk/item=32897/mark-of-the-illidari#dropped-by
Steps to reproduce the problem
DB
Extra Notes
https://wowgaming.altervista.org/aowow/?item=32897#dropped-by
AC rev. hash/commit
https://github.com/azerothcore/azerothcore-wotlk/commit/f417a166bc8c626981da612fc5372acb15e19593
Operating system
Windows 10
Custom changes or Modules
No response