From 9807a3fb60e18529b2b1ebbb2235e25d855091f1 Mon Sep 17 00:00:00 2001 From: Poszer <41213210+poszer@users.noreply.github.com> Date: Fri, 12 Jul 2019 11:29:48 +0200 Subject: [PATCH] fix(DB/Creature): High Overlord Saurfang (#2034) * fix(DB/Creature): High Overlord Saurfang - Adding UNIT_FLAG_IMMUNE_TO_NPC (disables combat/assistance with NonPlayerCharacters (NPC)) to creature High Overlord Saurfang in icc. - Will fix issue with attacking creatures inside, and issue with DB errors about missing text. * fix(DB/Creature): High Overlord Saurfang Improvement. Fix issue with DB text. Thanks to @Stoabrogga --- .../pending_db_world/rev_1561967531437429600.sql | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1561967531437429600.sql diff --git a/data/sql/updates/pending_db_world/rev_1561967531437429600.sql b/data/sql/updates/pending_db_world/rev_1561967531437429600.sql new file mode 100644 index 000000000..d6536c576 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1561967531437429600.sql @@ -0,0 +1,11 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1561967531437429600'); + +UPDATE `creature` SET `unit_flags` = 512 WHERE `guid` = 200984; + +DELETE FROM `creature_text` WHERE `CreatureID` = 32315 AND `GroupID` BETWEEN 15 AND 18; +INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) +VALUES +(32315,15,0,'The paladin still lives? Is it possible, Highlord? Could he have survived?',12,0,0,6,0,17107,37051,0,'High Overlord Saurfang - SAY_SAURFANG_INTRO_1'), +(32315,16,0,'Then we must save him! If we rescue Bolvar Fordragon, we may quell the unrest between the Alliance and the Horde.',12,0,0,5,0,17108,37053,0,'High Overlord Saurfang - SAY_SAURFANG_INTRO_2'), +(32315,17,0,'Our mission is now clear: The Lich King will answer for his crimes and we will save Highlord Bolvar Fordragon!',12,0,0,15,0,17109,37054,0,'High Overlord Saurfang - SAY_SAURFANG_INTRO_3'), +(32315,18,0,'Kor\'kron, prepare Orgrim\'s Hammer for its final voyage! Champions, our gunship will find a point to dock on the upper reaches of the citadel. Meet us there!',14,0,0,22,0,17110,37055,0,'High Overlord Saurfang - SAY_SAURFANG_INTRO_4');