diff options
author | Dr-J <daniel.jarrott0@gmail.com> | 2014-08-22 12:36:35 +0100 |
---|---|---|
committer | Dr-J <daniel.jarrott0@gmail.com> | 2014-08-22 12:36:35 +0100 |
commit | a8ff0c990b68eda2bf3c22bbf4d72331bc8842b9 (patch) | |
tree | e8714f65675e0d8759bd000c644e9b1a90df43b9 | |
parent | dae9be08c3d7371987bbfd7662235e440f565ffb (diff) |
DB/Misc: Fix Conqueror Krenna/Gorgonna Phasing
Fix phasing on Conqueror Krenna/Gorgonna in Conquest Hold (Grizzly Hills) so once The Conquest Pit: Final Showdown is turned in Conqueror Krenna and her 2 side parts disappear and Gorgonna replaces Conqueror Krenna as leader of conquest hold.
-rw-r--r-- | sql/updates/world/2014_08_22_03_world_misc.sql | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/sql/updates/world/2014_08_22_03_world_misc.sql b/sql/updates/world/2014_08_22_03_world_misc.sql new file mode 100644 index 00000000000..74823327793 --- /dev/null +++ b/sql/updates/world/2014_08_22_03_world_misc.sql @@ -0,0 +1,24 @@ +SET @CGUID := 29974; + +DELETE FROM `creature_addon` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+2; +DELETE FROM `creature_addon` WHERE `guid` IN (118456,118301,118183,117164); +INSERT INTO `creature_addon` (`guid`, `mount`, `bytes1`, `bytes2`, `auras`) VALUES +(@CGUID+0, 0, 0x10000, 0x1, '49415'), -- 27102 - 49415 +(@CGUID+1, 0, 0x10000, 0x101, '49415'), -- 26839 - 49415 +(@CGUID+2, 0, 0x10000, 0x101, '49415'), -- 26839 - 49415 + +(118456, 0, 0x10000, 0x1, '49414'), -- 26863 - 49414 +(118301, 0, 0x10000, 0x101, '49414'), -- 26862 - 49414 +(118183, 0, 0x10000, 0x1, '49414'), -- 26860 - 49414 +(117164, 0, 0x10000, 0x1, '49414'); -- 27102 - 49414 + +DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+2; +INSERT INTO `creature` (`guid`, `id`, `map`, `spawnMask`, `phaseMask`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `MovementType`) VALUES +(@CGUID+0, 27102, 571, 1, 1, 3270.905, -2197.24, 117.4559, 4.101524, 120, 0, 0), -- 27102 (Area: 394) +(@CGUID+1, 26839, 571, 1, 1, 3268.641, -2195.643, 117.4559, 4.34587, 120, 0, 0), -- 26839 (Area: 394) +(@CGUID+2, 26839, 571, 1, 1, 3273.251, -2197.424, 117.4559, 4.066617, 120, 0, 0); -- 26839 (Area: 394) + +DELETE FROM `spell_area` WHERE `spell` IN(49417,49416) AND `area`=4206; +INSERT INTO `spell_area` (`spell`, `area`, `quest_start`, `quest_end`, `aura_spell`, `racemask`, `gender`, `autocast`, `quest_start_status`, `quest_end_status`) VALUES +(49417,4206, 12431, 0, 0, 0, 2, 1, 64, 11), +(49416,4206, 0, 12431, 0, 0, 2, 1, 64, 11); |