From 539c55082877bdcddea056a71ecb0c04a1c04167 Mon Sep 17 00:00:00 2001 From: Grimfeather <88028633+Grimfeather@users.noreply.github.com> Date: Sat, 26 Apr 2025 15:42:04 +0200 Subject: [PATCH 1/2] dalaran wizard's robe fix dalaran wizard's robe (5110) dropped by incorrect creatures --- sql/world/base/zone_silverpine.sql | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/sql/world/base/zone_silverpine.sql b/sql/world/base/zone_silverpine.sql index 99c03e1..65a2f02 100644 --- a/sql/world/base/zone_silverpine.sql +++ b/sql/world/base/zone_silverpine.sql @@ -1,2 +1,20 @@ -- Call of Water (Shaman) -UPDATE `quest_template` SET `LogDescription`='Speak to the Minor Manifestation of Water in Silverpine Forest.' WHERE `ID`=100; \ No newline at end of file +UPDATE `quest_template` SET `LogDescription`='Speak to the Minor Manifestation of Water in Silverpine Forest.' WHERE `ID`=100; + +-- dalaran wizard's robe dropped by incorrect creatures +-- it's part of reference_loot_template 1011415, 1011515, 1011516, 1011616 +DELETE FROM `reference_loot_template` WHERE `item` = 5110; + +DELETE FROM `creature_loot_template` WHERE `Item` = 5110; +INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES +(1867, 5110, 0, 3, 0, 1, 0, 1, 1, 'Dalaran Apprentice - Dalaran Wizard\'s Robe'), +(1888, 5110, 0, 4, 0, 1, 0, 1, 1, 'Dalaran Watcher - Dalaran Wizard\'s Robe'), +(1889, 5110, 0, 4, 0, 1, 0, 1, 1, 'Dalaran Wizard - Dalaran Wizard\'s Robe'), +(1912, 5110, 0, 3, 0, 1, 0, 1, 1, 'Dalaran Protector - Dalaran Wizard\'s Robe'), +(1913, 5110, 0, 4, 0, 1, 0, 1, 1, 'Dalaran Warder - Dalaran Wizard\'s Robe'), +(1914, 5110, 0, 3, 0, 1, 0, 1, 1, 'Dalaran Mage - Dalaran Wizard\'s Robe'), +(1915, 5110, 0, 4, 0, 1, 0, 1, 1, 'Dalaran Conjuror - Dalaran Wizard\'s Robe'), +(1920, 5110, 0, 1.6, 0, 1, 0, 1, 1, 'Dalaran Spellscribe - Dalaran Wizard\'s Robe'), +(2120, 5110, 0, 1.8, 0, 1, 0, 1, 1, 'Archmage Ataeric - Dalaran Wizard\'s Robe'), +(3577, 5110, 0, 4, 0, 1, 0, 1, 1, 'Dalaran Brewmaster - Dalaran Wizard\'s Robe'), +(3578, 5110, 0, 3, 0, 1, 0, 1, 1, 'Dalaran Miner - Dalaran Wizard\'s Robe'); From 6271a7db9ed2b570fb2e1bae6159f8349bac4946 Mon Sep 17 00:00:00 2001 From: Grimfeather <88028633+Grimfeather@users.noreply.github.com> Date: Sat, 26 Apr 2025 15:45:15 +0200 Subject: [PATCH 2/2] Update zone_silverpine.sql --- sql/world/base/zone_silverpine.sql | 2 -- 1 file changed, 2 deletions(-) diff --git a/sql/world/base/zone_silverpine.sql b/sql/world/base/zone_silverpine.sql index 65a2f02..5f717ba 100644 --- a/sql/world/base/zone_silverpine.sql +++ b/sql/world/base/zone_silverpine.sql @@ -2,9 +2,7 @@ UPDATE `quest_template` SET `LogDescription`='Speak to the Minor Manifestation of Water in Silverpine Forest.' WHERE `ID`=100; -- dalaran wizard's robe dropped by incorrect creatures --- it's part of reference_loot_template 1011415, 1011515, 1011516, 1011616 DELETE FROM `reference_loot_template` WHERE `item` = 5110; - DELETE FROM `creature_loot_template` WHERE `Item` = 5110; INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES (1867, 5110, 0, 3, 0, 1, 0, 1, 1, 'Dalaran Apprentice - Dalaran Wizard\'s Robe'),