Files
mod-individual-progression/optional/sql/world/zz_optional_remove_heirlooms.sql
Grimfeather 1776703fcf moving optional sql files (#679)
all optional SQL files have been moved to optional/sql/world
this will prevent these files from being run automatically
2025-08-26 17:04:36 +02:00

15 lines
966 B
SQL

/*
Heirloom items are antithetical to Individual Progression, as they are designed to skip progression and speed through content.
This optional file removes all Heirloom vendors and items so they are not available.
If you would like heirlooms to still be available, do not run this file.
*/
DELETE FROM `creature` WHERE `id1` IN (32509, 35507, 35508);
DELETE FROM `creature_addon` WHERE `guid` IN (85227, 88108);
DELETE FROM `npc_vendor` WHERE `item` IN
(38691, 42943, 42944, 42945, 42946, 42947, 42948, 42949, 42950, 42951, 42952, 42984, 42985, 42991, 42992, 44090, 44091, 44092, 44093, 44094,
44095, 44096, 44097, 44098, 44099, 44100, 44101, 44102, 44103, 44105, 44107, 48677, 48683, 48685, 48687, 48689, 48691, 48716, 48718, 50255);
UPDATE `quest_template` SET `RewardChoiceItemID1` = 0, `RewardChoiceItemQuantity1` = 0, `RewardChoiceItemID2` = 0, `RewardChoiceItemQuantity2` = 0, `RewardItem1` = 50287, `RewardAmount1` = 1 WHERE `id` = 24803;