diff options
-rw-r--r-- | sql/updates/world/master/2021_11_06_02_world.sql | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sql/updates/world/master/2021_11_06_02_world.sql b/sql/updates/world/master/2021_11_06_02_world.sql new file mode 100644 index 00000000000..1605114015c --- /dev/null +++ b/sql/updates/world/master/2021_11_06_02_world.sql @@ -0,0 +1,12 @@ +-- +UPDATE `creature_template` SET `lootid`=13159 WHERE `entry`=13159; + +DELETE FROM `creature_loot_template` WHERE `Entry`=13159; +INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES +(13159, 1307, 0, 100, 0, 1, 0, 1, 1, 'Gold Pickup Schedule'), +(13159, 57122, 0, 100, 1, 1, 0, 1, 1, 'James Clark\'s Head'); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 1 AND `SourceGroup`=13159 AND `SourceEntry`=1307; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `Comment`) VALUES +(1, 13159, 1307, 0, 0, 14, 0, 123, 0, 0, 0, 'Looter has never finished nor has active quest The Collector (123)'), +(1, 13159, 1307, 0, 0, 6, 0, 469, 0, 0, 0, 'Looter belongs to Alliance'); |