mirror of
https://github.com/ZhengPeiRu21/mod-individual-progression
synced 2025-11-29 23:44:51 +08:00
Create optional_vanilla_phasing.sql
This commit is contained in:
35
sql/world/base/optional_vanilla_phasing.sql
Normal file
35
sql/world/base/optional_vanilla_phasing.sql
Normal file
@@ -0,0 +1,35 @@
|
||||
/* This will phase Vanilla/TBC npcs & objects placed in vanilla areas until they were originally added to the game.
|
||||
This includes quest givers and flight paths.
|
||||
*/
|
||||
|
||||
UPDATE `creature_template` SET `ScriptName` = 'npc_ipp_wotlk' WHERE `entry` IN (
|
||||
16288, -- Advisor Sorrelon, The Sepulcher
|
||||
17092, -- Advisor Duskingdawn, Tarren Mill
|
||||
17093, -- Magistrix Elosai, Freewind Post
|
||||
17094, -- Nemeth Hawkeye, Grom'gol Base Camp
|
||||
17095, -- Balandar Brightstar, Brackenwall Village
|
||||
17097, -- Advisor Sarophas, Kargath
|
||||
17106, -- Vindicator Palanaar, Astranaar
|
||||
17109, -- Cersei Dusksinger, Stonard
|
||||
17119, -- Ithania, North Point Tower
|
||||
17194, -- Anchorite Delan, Darkshire
|
||||
17218, -- Huraan, Southshore
|
||||
17223, -- Ambassador Rualeth, Aerie Peak
|
||||
22931, -- Gorrim, Emerald Sanctuary
|
||||
24366, -- Nizzle, Rebel Camp
|
||||
27705, -- Lorrin Foxfire, Stonard
|
||||
37888, -- Frax Bucketdrop, Thondroril River
|
||||
37915 -- Timothy Cunningham, The Bulwark
|
||||
);
|
||||
|
||||
UPDATE `creature_template` SET `ScriptName` = 'npc_ipp_naxx40' WHERE `entry` IN (
|
||||
10583, -- Gryfe, Marshal's Refuge
|
||||
16227 -- Bragok, Ratchet
|
||||
);
|
||||
|
||||
-- phase Flight Path objects
|
||||
UPDATE `gameobject` SET `ScriptName` = 'gobject_ipp_naxx40' WHERE `guid` IN (51272, 51679, 51688, 51944, 54765, 54783, 54796, 54857);
|
||||
|
||||
|
||||
|
||||
-- todo: remove interactions between Cersei, Lorrin and the orcs in Stonard
|
||||
Reference in New Issue
Block a user