TDB 905.21071 - 2021/07/04

Port From (https://github.com/TrinityCore/TrinityCore/commit/6b8bb270a8b316504289dad654e5aef88cd8d27f)
This commit is contained in:
hondacrx
2021-07-04 20:07:35 -04:00
parent 868bbf9edd
commit 970ac30730
470 changed files with 13265 additions and 31 deletions
@@ -1,4 +0,0 @@
-- TDB 837.20101 world
UPDATE `version` SET `db_version`='TDB 837.20101', `cache_id`=20101 LIMIT 1;
UPDATE `updates` SET `state`='ARCHIVED',`speed`=0;
REPLACE INTO `updates_include` (`path`, `state`) VALUES ('$/sql/old/8.x/world', 'ARCHIVED');
@@ -1,44 +0,0 @@
-- Add waypoints and script of Lieutenant Tomathren and Ranger Valanna
SET @GUID_1 := 82035; -- Lieutenant Tomathren
SET @ENTRY_1 := 16217;
SET @ENTRY_1_A := @ENTRY_1 * 100;
SET @ENTRY_2 := 16219; -- Ranger Valanna
SET @PATHID := @GUID_1 * 10;
UPDATE `creature` SET `position_x`=7935.186, `position_y`=-7572.151, `position_z`=145.281, `orientation`=2.8516, `MovementType`=2 WHERE `guid`=@GUID_1;
DELETE FROM `creature_addon` WHERE `guid`=@GUID_1;
INSERT INTO `creature_addon` (`guid`, `path_id`, `bytes2`) VALUES (@GUID_1, @PATHID, 4098);
DELETE FROM `waypoint_data` WHERE `id`=@PATHID;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`) VALUES
(@PATHID, 1, 7934.20, -7571.73, 145.426),
(@PATHID, 2, 7932.95, -7570.95, 145.614),
(@PATHID, 3, 7932.98, -7569.02, 145.620),
(@PATHID, 4, 7934.05, -7566.79, 145.608),
(@PATHID, 5, 7936.55, -7565.71, 145.534),
(@PATHID, 6, 7938.52, -7566.83, 145.492),
(@PATHID, 7, 7938.93, -7570.77, 144.967),
(@PATHID, 8, 7936.23, -7572.49, 145.117);
DELETE FROM `creature_text` WHERE `CreatureID` IN (@ENTRY_1, @ENTRY_2);
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Probability`, `BroadcastTextId`, `comment`) VALUES
(@ENTRY_1, 0, 0, "Take that!", 12, 100, 12544, "Lieutenant Tomathren - Out of combat"),
(@ENTRY_1, 0, 1, "This isnt Silvermoon City! Where are we? Oh, I was confused there for a moment.", 12, 100, 12542, "Lieutenant Tomathren - Out of combat"),
(@ENTRY_1, 0, 2, "I tell you now, when we get back to Farstrider Enclave there will be a full accounting of your actions, Ranger Valanna! You alone were responsible for our losses and Im certain that the captain will see it my way.", 12, 100, 12543, "Lieutenant Tomathren - Out of combat"),
(@ENTRY_1, 0, 3, "Im sure to receive a commendation upon our return. We may have suffered a few losses, but overall I think we did quite nicely, dont you, Valanna?", 12, 100, 12545, "Lieutenant Tomathren - Out of combat"),
(@ENTRY_1, 0, 4, "Did I not yell at them? Pull back! Pull back and regroup with suppressing fire!!", 12, 100, 12541, "Lieutenant Tomathren - Out of combat"),
(@ENTRY_1, 0, 5, "They should have listened to me. Then Id receive all of the accolades that are my due!", 12, 100, 12540, "Lieutenant Tomathren - Out of combat"),
(@ENTRY_2, 0, 0, "You have got to be the most incompetent officer I have ever met!", 12, 100, 22242, "Ranger Valanna - Out of combat"),
(@ENTRY_2, 0, 1, "Remind me once again why it is that I dont just leave?", 12, 100, 22241, "Ranger Valanna - Out of combat"),
(@ENTRY_2, 0, 2, "Uh huh. Whatever you say.", 12, 100, 22238, "Ranger Valanna - Out of combat"),
(@ENTRY_2, 0, 3, "Idiot.", 12, 100, 22239, "Ranger Valanna - Out of combat"),
(@ENTRY_2, 0, 4, "Would you please shut up?!", 12, 100, 22240, "Ranger Valanna - Out of combat"),
(@ENTRY_2, 0, 5, "With all due respect, sir, stick it!", 12, 100, 22243, "Ranger Valanna - Out of combat");
-- Lieutenant Tomathren SAI + Actionlist
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY_1;
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (@ENTRY_1) AND `source_type` IN (0);
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (1621700) AND `source_type` IN (9);
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(16217, 0, 0, 0, 1, 0, 100, 0, 2000, 20000, 120000, 180000, 80, 1621700, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Lieutenant Tomathren - Out Of Combat - Call Actionlist"),
(1621700, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Lieutenant Tomathren - On Script - Talk 0"),
(1621700, 9, 1, 0, 0, 0, 100, 0, 8000, 8000, 0, 0, 1, 0, 0, 0, 0, 0, 0, 19, 16219, 0, 0, 0, 0, 0, 0, "Lieutenant Tomathren - On Script - Talk 0 (Ranger Valanna)");
@@ -1,9 +0,0 @@
-- Update Tempers gossip to show different texts depending on class
DELETE FROM `gossip_menu` WHERE `MenuID`=7378 AND `TextID`=8830;
INSERT INTO `gossip_menu` (`MenuID`, `TextID`) VALUES
(7378, 8830);
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=14 AND `SourceGroup`=7378;
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
(14, 7378, 8832, 0, 0, 15, 0, 64, 0, 0, 0, 0, 0, "", "Show gossip text if class is shaman"),
(14, 7378, 8830, 0, 0, 15, 0, 64, 0, 0, 1, 0, 0, "", "Show gossip text if class isn't shaman");
@@ -1,2 +0,0 @@
-- Item - Icecrown Reputation Ring Healer Trigger, spell should proc on cast
UPDATE `spell_proc` SET `SpellPhaseMask`=1 WHERE `SpellId`=72419;
@@ -1,22 +0,0 @@
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` IN (19,20) AND `SourceEntry`IN(12451,12161,12425, 11175,11406,12182,12189,11573,11995,12469,12542,11996,12511,12208,12210);
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
(19, 0, 11175, 0, 0, 14, 0, 11176, 0, 0, 0, 0, 0, '', 'My Daughter is optional BreadCrumb Quest'),
(19, 0, 11406, 0, 0, 14, 0, 11269, 0, 0, 0, 0, 0, '', 'Everything Must Be Ready is optional BreadCrumb Quest'),
(19, 0, 12182, 0, 0, 14, 0, 12188, 0, 0, 0, 0, 0, '', 'To Venomspite! is optional BreadCrumb Quest'),
(19, 0, 12189, 0, 0, 14, 0, 12188, 0, 0, 0, 0, 0, '', 'Imbeciles Abound! is optional BreadCrumb Quest'),
(19, 0, 11573, 0, 0, 14, 0, 11504, 0, 0, 0, 0, 0, '', 'Orfus of Kamagua is optional BreadCrumb Quest'),
(19, 0, 11995, 0, 0, 14, 0, 12000, 0, 0, 0, 0, 0, '', 'Your Presence is Required at Stars'' Rest is optional BreadCrumb Quest'),
(19, 0, 12469, 0, 0, 14, 0, 12044, 0, 0, 0, 0, 0, '', 'Return to Sender is optional BreadCrumb Quest'),
(19, 0, 12542, 0, 0, 14, 0, 12545, 0, 0, 0, 0, 0, '', 'The Call Of The Crusade is optional BreadCrumb Quest'),
(19, 0, 11996, 0, 0, 14, 0, 11999, 0, 0, 0, 0, 0, '', 'Your Presence is Required at Agmar''s Hammer is optional BreadCrumb Quest'),
(19, 0, 12511, 0, 0, 14, 0, 12292, 0, 0, 0, 0, 0, '', 'The Hills Have Us is optional BreadCrumb Quest'),
(19, 0, 12208, 0, 0, 14, 0, 11984, 0, 0, 0, 0, 0, '', 'Good Troll Hunting is optional BreadCrumb Quest'),
(19, 0, 12210, 0, 0, 14, 0, 11984, 0, 0, 0, 0, 0, '', 'Troll Season! is optional BreadCrumb Quest'),
(19, 0, 12451, 0, 0, 14, 0, 12195, 0, 0, 0, 0, 0, '', 'Onward to Camp Oneqwah is optional BreadCrumb Quest'),
(19, 0, 12161, 0, 0, 14, 0, 12328, 0, 0, 0, 0, 0, '', 'Ruuna the Blind is optional BreadCrumb Quest'),
(19, 0, 12425, 0, 0, 14, 0, 12328, 0, 0, 0, 0, 0, '', 'Ruuna the Blind is optional BreadCrumb Quest');
@@ -1,11 +0,0 @@
-- Thrallmar: Report to Nazgrel (10875)
UPDATE `quest_offer_reward` SET `RewardText`= "It is good to hear of all your moves against the fel orcs, $N. The apothecaries have spent much time and resources studying the cause of their corruption, and although such information is invaluable... my orc blood burns to strike a severe blow against these betrayers!$b$bListen close, and I will explain my task..." WHERE `ID`=10875;
-- Shadowmoon Village: Chief Apothecary Hildagard, Spectrecles (10625)
UPDATE `quest_offer_reward` SET `RewardText`="Gorefiend? T... Teron Gorefiend? But... How?$b$bHow could Gorefiend be here? This is impossible!$b$bThe legend of Teron Gorefiend is one that causes even the Forsaken to tremble in fear. By all accounts, Gorefiend was a warlock of Gul'dan - extremely powerful in his own right. When Gorefiend was slain by Orgrim Doomhammer, Gul'dan took the soul of the fallen warlock and placed it inside the broken shell of a slain knight of Stormwind. And so was born the first death knight of the Horde." WHERE `ID`=10625;
-- Researcher Tiorus, Felspine the Greater (10673)
UPDATE `quest_request_items` SET `CompletionText`="Snap to it! That gnome's appetite knows no limit!" WHERE `ID`=10673;
-- Before Darkness Falls (10878)
UPDATE `quest_offer_reward` SET `RewardText`="I can breathe a sigh of relief for now, $N. The Shadow Council will be held off for the time being.$b$bThey are murderers and cowards and your display of courage will keep them at bay." WHERE `ID`=10878;
@@ -1,92 +0,0 @@
-- Dawnstart Spire overhaul
SET @GUID_1 := 81865; -- Arcane Reaver #1
SET @GUID_2 := 81867; -- Arcane Reaver #2
SET @GUID_3 := 81869; -- Arcane Reaver #3
SET @GUID_4 := 81860; -- Arcane Reaver #4
SET @PATHID_1 := @GUID_1 * 10;
SET @PATHID_2 := @GUID_2 * 10;
SET @PATHID_3 := @GUID_3 * 10;
SET @PATHID_4 := @GUID_4 * 10;
UPDATE `creature` SET `spawndist`=0, `MovementType`=0 WHERE `guid` IN (81863, 81861, 81859, 81858);
UPDATE `creature` SET `position_x`=7818.52, `position_y`=-7875.30, `position_z`=167.145, `orientation`=1.7218, `spawndist`=0, `MovementType`=0 WHERE `guid`=81938;
UPDATE `creature` SET `position_x`=7830.56, `position_y`=-7877.31, `position_z`=169.147, `orientation`=4.6435, `spawndist`=0, `MovementType`=2 WHERE `guid`=@GUID_1;
UPDATE `creature` SET `position_x`=7830.46, `position_y`=-7883.70, `position_z`=169.238, `orientation`=4.6435, `spawndist`=0, `MovementType`=2 WHERE `guid`=@GUID_2;
UPDATE `creature` SET `position_x`=7788.29, `position_y`=-7866.93, `position_z`=167.249, `orientation`=1.6346, `spawndist`=0, `MovementType`=2 WHERE `guid`=@GUID_3;
UPDATE `creature` SET `position_x`=7866.38, `position_y`=-7865.52, `position_z`=169.709, `orientation`=1.7868, `spawndist`=0, `MovementType`=2 WHERE `guid`=@GUID_4;
DELETE FROM `creature` WHERE `guid` IN (81868, 81862);
DELETE FROM `creature_addon` WHERE `guid` IN (@GUID_1, @GUID_2, @GUID_3, @GUID_4);
INSERT INTO `creature_addon` (`guid`, `path_id`, `bytes2`) VALUES
(@GUID_1, @PATHID_1, 4097),
(@GUID_2, @PATHID_2, 4097),
(@GUID_3, @PATHID_3, 4097),
(@GUID_4, @PATHID_4, 4097);
DELETE FROM `waypoint_data` WHERE `id` IN (@PATHID_1, @PATHID_2, @PATHID_3, @PATHID_4);
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`) VALUES
(@PATHID_1, 1, 7830.25, -7906.69, 169.243),
(@PATHID_1, 2, 7826.57, -7907.71, 169.240),
(@PATHID_1, 3, 7824.40, -7911.16, 169.240),
(@PATHID_1, 4, 7808.62, -7917.26, 169.244),
(@PATHID_1, 5, 7812.92, -7927.34, 170.889),
(@PATHID_1, 6, 7821.23, -7932.56, 173.071),
(@PATHID_1, 7, 7830.24, -7934.47, 175.291),
(@PATHID_1, 8, 7838.78, -7932.69, 177.055),
(@PATHID_1, 9, 7847.03, -7928.16, 178.839),
(@PATHID_1, 10, 7851.27, -7920.12, 180.428),
(@PATHID_1, 11, 7854.10, -7911.47, 180.429),
(@PATHID_1, 12, 7867.72, -7911.44, 180.715),
(@PATHID_1, 13, 7878.59, -7911.82, 182.803),
(@PATHID_1, 14, 7867.72, -7911.44, 180.715),
(@PATHID_1, 15, 7854.10, -7911.47, 180.429),
(@PATHID_1, 16, 7851.27, -7920.12, 180.428),
(@PATHID_1, 17, 7847.03, -7928.16, 178.839),
(@PATHID_1, 18, 7838.78, -7932.69, 177.055),
(@PATHID_1, 19, 7830.24, -7934.47, 175.291),
(@PATHID_1, 20, 7821.23, -7932.56, 173.071),
(@PATHID_1, 21, 7812.92, -7927.34, 170.889),
(@PATHID_1, 22, 7808.62, -7917.26, 169.244),
(@PATHID_1, 23, 7824.40, -7911.16, 169.240),
(@PATHID_1, 24, 7826.57, -7907.71, 169.240),
(@PATHID_1, 25, 7830.25, -7906.69, 169.243),
(@PATHID_1, 26, 7830.56, -7877.31, 169.147),
(@PATHID_2, 1, 7830.90, -7842.99, 169.391),
(@PATHID_2, 2, 7846.70, -7841.67, 170.134),
(@PATHID_2, 3, 7846.84, -7824.87, 170.581),
(@PATHID_2, 4, 7835.30, -7817.69, 170.466),
(@PATHID_2, 5, 7800.81, -7815.93, 170.603),
(@PATHID_2, 6, 7795.67, -7818.42, 170.734),
(@PATHID_2, 7, 7794.67, -7834.75, 169.453),
(@PATHID_2, 8, 7808.46, -7840.24, 168.951),
(@PATHID_2, 9, 7821.20, -7833.64, 170.003),
(@PATHID_2, 10, 7827.38, -7834.57, 170.058),
(@PATHID_2, 11, 7830.90, -7842.99, 169.391),
(@PATHID_2, 12, 7830.46, -7883.70, 169.238),
(@PATHID_2, 13, 7830.90, -7842.99, 169.391),
(@PATHID_2, 14, 7827.38, -7834.57, 170.058),
(@PATHID_2, 15, 7821.20, -7833.64, 170.003),
(@PATHID_2, 16, 7808.46, -7840.24, 168.951),
(@PATHID_2, 17, 7794.67, -7834.75, 169.453),
(@PATHID_2, 18, 7795.67, -7818.42, 170.734),
(@PATHID_2, 19, 7800.81, -7815.93, 170.603),
(@PATHID_2, 20, 7835.30, -7817.69, 170.466),
(@PATHID_2, 21, 7846.84, -7824.87, 170.581),
(@PATHID_2, 22, 7846.70, -7841.67, 170.134),
(@PATHID_2, 23, 7830.90, -7842.99, 169.391),
(@PATHID_2, 24, 7830.46, -7883.70, 169.238),
(@PATHID_3, 1, 7785.77, -7833.79, 170.696),
(@PATHID_3, 2, 7788.42, -7818.38, 171.033),
(@PATHID_3, 3, 7785.77, -7833.79, 170.696),
(@PATHID_3, 4, 7788.29, -7866.93, 167.249),
(@PATHID_3, 5, 7791.01, -7896.47, 166.752),
(@PATHID_3, 6, 7792.55, -7906.87, 167.080),
(@PATHID_3, 7, 7791.01, -7896.47, 166.752),
(@PATHID_3, 8, 7788.29, -7866.93, 167.249),
(@PATHID_4, 1, 7857.40, -7825.82, 170.856),
(@PATHID_4, 2, 7866.38, -7865.52, 169.704),
(@PATHID_4, 3, 7870.51, -7891.75, 167.853),
(@PATHID_4, 4, 7870.07, -7903.79, 167.394),
(@PATHID_4, 5, 7870.51, -7891.75, 167.852),
(@PATHID_4, 6, 7866.38, -7865.52, 169.703);
@@ -1,50 +0,0 @@
-- Add waypoints, formation and condition of Drak'aguul
SET @GUID := 99649;
SET @PATHID := @GUID * 10;
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry`=52457;
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `comment`) VALUES
(13, 1, 52457, 0, 1, 31, 0, 3, 26797, 0, 0, 0, 0, "Spell 'Drak'aguul's Soldiers' only hits Drakkari Protector"),
(13, 1, 52457, 0, 2, 31, 0, 3, 26795, 0, 0, 0, 0, "Spell 'Drak'aguul's Soldiers' only hits Drakkari Oracle");
DELETE FROM `creature_formations` WHERE `leaderGUID`=@GUID;
INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`) VALUES
(@GUID, @GUID, 4, 0, 515),
(@GUID, 112163, 4, 45, 515),
(@GUID, 112352, 4, 315, 515);
UPDATE `creature_addon` SET `path_id`=@PATHID WHERE `guid`=@GUID;
UPDATE `creature` SET `spawndist`=0, `MovementType`=2 WHERE `guid` IN (@GUID);
UPDATE `creature` SET `spawndist`=0, `MovementType`=0 WHERE `guid` IN (112163, 112352);
DELETE FROM `waypoint_data` WHERE `id`=@PATHID;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`) VALUES
(@PATHID, 1, 4475.12, -4909.09, 15.846),
(@PATHID, 2, 4476.58, -4895.84, 23.675),
(@PATHID, 3, 4476.62, -4889.59, 25.291),
(@PATHID, 4, 4474.50, -4880.82, 25.309),
(@PATHID, 5, 4474.56, -4865.42, 25.309),
(@PATHID, 6, 4474.50, -4880.82, 25.309),
(@PATHID, 7, 4476.62, -4889.59, 25.291),
(@PATHID, 8, 4476.58, -4895.84, 23.675),
(@PATHID, 9, 4475.12, -4909.09, 15.846),
(@PATHID, 10, 4474.54, -4923.89, 14.257),
(@PATHID, 11, 4475.81, -4938.72, 14.205),
(@PATHID, 12, 4475.48, -4955.87, 14.043),
(@PATHID, 13, 4475.82, -4966.02, 10.969),
(@PATHID, 14, 4475.77, -4976.62, 11.276),
(@PATHID, 15, 4475.82, -4966.02, 10.969),
(@PATHID, 16, 4475.48, -4955.87, 14.043),
(@PATHID, 17, 4475.81, -4938.72, 14.205),
(@PATHID, 18, 4474.54, -4923.89, 14.257);
-- Remove old SAI and weapon of Drakkari Oracle
SET @ENTRY := 26795;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,0,0,0,100,0,0,0,3500,5000,11,9532,64,0,0,0,0,2,0,0,0,0,0,0,0,"Drakkari Oracle - In Combat CMC - Cast 'Lightning Bolt'"),
(@ENTRY,0,1,0,0,0,100,0,6000,8000,12000,16000,11,52431,32,0,0,0,0,5,0,0,0,0,0,0,0,"Drakkari Oracle - In Combat - Cast 'Warped Body'"),
(@ENTRY,0,2,0,0,0,100,0,8000,10000,12000,16000,11,52430,32,0,0,0,0,5,0,0,0,0,0,0,0,"Drakkari Oracle - In Combat - Cast 'Warped Mind'");
DELETE FROM `creature_equip_template` WHERE `CreatureID`=@ENTRY;
UPDATE `creature` SET `equipment_id`=0 WHERE `id`=@ENTRY;
@@ -1,433 +0,0 @@
--
SET @cguid:=146981;
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+53;
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES
(@CGUID+0, 25419, 571, 0, 0, '0', 0, 0, 0, 4419.61, 5952.447, 57.03477, 1.121153, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25419 (Area: -1)
(@CGUID+1, 25419, 571, 0, 0, '0', 0, 0, 0, 4448.788, 5916.716, 57.72005, 5.721869, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25419 (Area: -1)
(@CGUID+2, 25419, 571, 0, 0, '0', 0, 0, 0, 4448.035, 5957.813, 57.98078, 1.14177, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25419 (Area: -1)
(@CGUID+3, 25419, 571, 0, 0, '0', 0, 0, 0, 4461.483, 5886.482, 61.893, 3.48094, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25419 (Area: -1)
(@CGUID+4, 25419, 571, 0, 0, '0', 0, 0, 0, 4413.073, 5904.856, 56.37568, 4.019106, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25419 (Area: -1)
(@CGUID+5, 25419, 571, 0, 0, '0', 0, 0, 0, 4382.702, 5905.957, 55.72123, 2.909203, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25419 (Area: -1)
(@CGUID+6, 25419, 571, 0, 0, '0', 0, 0, 0, 4421.654, 5896.283, 55.94137, 4.782922, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25419 (Area: -1)
(@CGUID+7, 25419, 571, 0, 0, '0', 0, 0, 0, 4348.286, 5917.032, 60.72934, 5.387158, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25419 (Area: 4134)
(@CGUID+8, 25419, 571, 0, 0, '0', 0, 0, 0, 4451.888, 5851.77, 69.95783, 6.034452, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25419 (Area: 4134)
(@CGUID+9, 25417, 571, 0, 0, '0', 0, 0, 0, 4393.225, 5881.099, 55.97466, 4.578428, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25417 (Area: 4134)
(@CGUID+10, 25419, 571, 0, 0, '0', 0, 0, 0, 4386.144, 5881.497, 55.75355, 3.575644, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25419 (Area: 4134)
(@CGUID+11, 25419, 571, 0, 0, '0', 0, 0, 0, 4384.099, 5850.214, 69.215, 0.3004377, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25419 (Area: 4134)
(@CGUID+12, 25419, 571, 0, 0, '0', 0, 0, 0, 4320.845, 5906.834, 57.5699, 5.094295, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25419 (Area: 4134)
(@CGUID+13, 25419, 571, 0, 0, '0', 0, 0, 0, 4343.608, 5851.565, 56.67913, 1.960553, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25419 (Area: 4134)
(@CGUID+14, 25417, 571, 0, 0, '0', 0, 0, 0, 4313.515, 5889.598, 56.97303, 0.8698314, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25417 (Area: 4134)
(@CGUID+15, 25419, 571, 0, 0, '0', 0, 0, 0, 4344.71, 5882.019, 56.23266, 5.41927, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25419 (Area: 4134)
(@CGUID+16, 25419, 571, 0, 0, '0', 0, 0, 0, 4315.075, 5880.785, 56.03077, 1.569275, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25419 (Area: 4134)
(@CGUID+17, 25419, 571, 0, 0, '0', 0, 0, 0, 4284.087, 5915.679, 57.39619, 2.622871, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25419 (Area: 4134)
(@CGUID+18, 25419, 571, 0, 0, '0', 0, 0, 0, 4386.544, 5815.437, 71.95725, 5.795134, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25419 (Area: 4134)
(@CGUID+19, 25419, 571, 0, 0, '0', 0, 0, 0, 4315.096, 5840.36, 58.56625, 5.083281, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25419 (Area: 4134)
(@CGUID+20, 25419, 571, 0, 0, '0', 0, 0, 0, 4285.949, 5883.651, 58.90496, 0.1985445, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25419 (Area: 4134)
(@CGUID+21, 25417, 571, 0, 0, '0', 0, 0, 0, 4417.659, 5814.049, 73.62916, 2.305409, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25417 (Area: 4134)
(@CGUID+22, 25419, 571, 0, 0, '0', 0, 0, 0, 4347.293, 5797.105, 70.4449, 3.9803, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25419 (Area: 4134)
(@CGUID+23, 25417, 571, 0, 0, '0', 0, 0, 0, 4287.359, 5808.424, 65.015, 1.333162, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25417 (Area: 4134)
(@CGUID+24, 25419, 571, 0, 0, '0', 0, 0, 0, 4315.808, 5817.751, 63.17729, 1.716837, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25419 (Area: 4134)
(@CGUID+25, 25419, 571, 0, 0, '0', 0, 0, 0, 4295.346, 5844.404, 59.16083, 5.644846, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25419 (Area: 4134)
(@CGUID+26, 25417, 571, 0, 0, '0', 0, 0, 0, 4313.68, 5790.48, 68.38795, 3.758053, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25417 (Area: 4134)
(@CGUID+27, 25417, 571, 0, 0, '0', 0, 0, 0, 4306.196, 5755.188, 74.17075, 0.4614642, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25417 (Area: 4134)
(@CGUID+28, 25417, 571, 0, 0, '0', 0, 0, 0, 4285.329, 5785.763, 69.6144, 6.263107, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25417 (Area: 4134)
(@CGUID+29, 25417, 571, 0, 0, '0', 0, 0, 0, 4380.976, 5786.691, 76.09017, 5.706718, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25417 (Area: 4134)
(@CGUID+30, 25417, 571, 0, 0, '0', 0, 0, 0, 4345.296, 5780.17, 74.79289, 2.769791, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25417 (Area: 4134)
(@CGUID+31, 25417, 571, 0, 0, '0', 0, 0, 0, 4380.676, 5750.541, 81.36572, 2.86511, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25417 (Area: 4134)
(@CGUID+32, 25417, 571, 0, 0, '0', 0, 0, 0, 4277.169, 5757.782, 68.8129, 0.09976582, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25417 (Area: 4134)
(@CGUID+33, 25417, 571, 0, 0, '0', 0, 0, 0, 4350.86, 5749.646, 82.05293, 4.125741, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25417 (Area: 4134)
(@CGUID+34, 25419, 571, 0, 0, '0', 0, 0, 0, 4411.514, 5790.069, 76.78316, 3.849571, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25419 (Area: 4134)
(@CGUID+35, 25417, 571, 0, 0, '0', 0, 0, 0, 4413.009, 5788.343, 77.10886, 5.096886, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25417 (Area: 4134)
(@CGUID+36, 25417, 571, 0, 0, '0', 0, 0, 0, 4351.502, 5714.72, 86.44733, 4.789735, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25417 (Area: 4134)
(@CGUID+37, 25417, 571, 0, 0, '0', 0, 0, 0, 4373.826, 5713.223, 85.16576, 3.343639, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25417 (Area: 4134)
(@CGUID+38, 25417, 571, 0, 0, '0', 0, 0, 0, 4317.503, 5711.320, 89.224, 4.042527, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25417 (Area: 4133)
(@CGUID+39, 25417, 571, 0, 0, '0', 0, 0, 0, 4250.292, 5746.842, 66.42384, 1.142227, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25417 (Area: 4133)
(@CGUID+40, 25417, 571, 0, 0, '0', 0, 0, 0, 4309.887, 5676.108, 92.774, 5.29737, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25417 (Area: 4133)
(@CGUID+41, 25417, 571, 0, 0, '0', 0, 0, 0, 4315.956, 5653.785, 94.06521, 3.442963, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25417 (Area: 4133)
(@CGUID+42, 25417, 571, 0, 0, '0', 0, 0, 0, 4255.53, 5709.95, 56.70618, 2.291923, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25417 (Area: 4133)
(@CGUID+43, 25417, 571, 0, 0, '0', 0, 0, 0, 4242.124, 5780.734, 66.33765, 3.578308, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25417 (Area: 4133)
(@CGUID+44, 25417, 571, 0, 0, '0', 0, 0, 0, 4218.904, 5751.581, 65.40733, 1.580321, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25417 (Area: 4133)
(@CGUID+45, 25419, 571, 0, 0, '0', 0, 0, 0, 4420.043, 5841.368, 67.582, 1.580321, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25417 (Area: 4133)
-- water eles
(@CGUID+46, 25419, 571, 0, 0, '0', 0, 0, 0, 4456.091, 5874.284, 64.093, 1.580321, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25417 (Area: 4133)
(@CGUID+47, 25419, 571, 0, 0, '0', 0, 0, 0, 4456.091, 5874.284, 64.093, 1.580321, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25417 (Area: 4133)
(@CGUID+48, 25419, 571, 0, 0, '0', 0, 0, 0, 4325.170, 5855.809, 57.569, 1.580321, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25417 (Area: 4133)
(@CGUID+49, 25419, 571, 0, 0, '0', 0, 0, 0, 4325.170, 5855.809, 57.569, 1.580321, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25417 (Area: 4133)
-- fire eles
(@CGUID+50, 25417, 571, 0, 0, '0', 0, 0, 0, 4348.101, 5731.171, 83.638, 1.580321, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25417 (Area: 4133)
(@CGUID+51, 25417, 571, 0, 0, '0', 0, 0, 0, 4348.101, 5731.171, 83.638, 1.580321, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25417 (Area: 4133)
(@CGUID+52, 25417, 571, 0, 0, '0', 0, 0, 0, 4348.101, 5731.171, 83.638, 1.580321, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420), -- 25417 (Area: 4133)
(@CGUID+53, 25417, 571, 0, 0, '0', 0, 0, 0, 4348.101, 5731.171, 83.638, 1.580321, 120, 0, 0, 0, 0, 0, 0, 0, 0, 23420); -- 25417 (Area: 4133)
DELETE FROM `creature_addon` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+53;
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `auras`) VALUES
(@CGUID+0, 0, 0, 0, 1, 0, ''), -- 25415
(@CGUID+1, 0, 0, 0, 1, 0, ''), -- 25419
(@CGUID+2, 0, 0, 0, 1, 0, ''), -- 25419
(@CGUID+3, 0, 0, 0, 1, 0, ''), -- 25419
(@CGUID+4, 0, 0, 0, 1, 0, ''), -- 25419
(@CGUID+5, 0, 0, 0, 1, 0, ''), -- 25419
(@CGUID+6, 0, 0, 0, 1, 0, ''), -- 25418
(@CGUID+7, 0, 0, 0, 1, 0, ''), -- 25419
(@CGUID+8, 0, 0, 0, 1, 0, ''), -- 25419
(@CGUID+9, 0, 0, 0, 1, 0, ''), -- 25419
(@CGUID+10, 0, 0, 0, 1, 0, ''), -- 25419
(@CGUID+11, 0, 0, 0, 1, 0, ''), -- 25417
(@CGUID+12, 0, 0, 0, 1, 0, ''), -- 25419
(@CGUID+13, 0, 0, 0, 1, 0, ''), -- 25419
(@CGUID+14, 0, 0, 0, 1, 0, ''), -- 25419
(@CGUID+15, 0, 0, 0, 1, 0, ''), -- 25419
(@CGUID+16, 0, 0, 0, 1, 0, ''), -- 25417
(@CGUID+17, 0, 0, 0, 1, 0, ''), -- 25419
(@CGUID+18, 0, 0, 0, 1, 0, ''), -- 25419
(@CGUID+19, 0, 0, 0, 1, 0, ''), -- 25419
(@CGUID+20, 0, 0, 0, 1, 0, ''), -- 25419
(@CGUID+21, 0, 0, 0, 1, 0, ''), -- 25419
(@CGUID+22, 0, 0, 0, 1, 0, ''), -- 25419
(@CGUID+23, 0, 0, 0, 1, 0, ''), -- 25417
(@CGUID+24, 0, 0, 0, 1, 0, ''), -- 25419
(@CGUID+25, 0, 0, 0, 1, 0, ''), -- 25417
(@CGUID+26, 0, 0, 0, 1, 0, ''), -- 25419
(@CGUID+27, 0, 0, 0, 1, 0, ''), -- 25419
(@CGUID+28, 0, 0, 0, 1, 0, ''), -- 25417
(@CGUID+29, 0, 0, 0, 1, 0, ''), -- 25417
(@CGUID+30, 0, 0, 0, 1, 0, ''), -- 25417
(@CGUID+31, 0, 0, 0, 1, 0, ''), -- 25417
(@CGUID+32, 0, 0, 0, 1, 0, ''), -- 25417
(@CGUID+33, 0, 0, 0, 1, 0, ''), -- 31685
(@CGUID+34, 0, 0, 0, 1, 0, ''), -- 25417
(@CGUID+35, 0, 0, 0, 1, 0, ''), -- 25417
(@CGUID+36, 0, 0, 0, 1, 0, ''), -- 25417
(@CGUID+37, 0, 0, 0, 1, 0, ''), -- 25419
(@CGUID+38, 0, 0, 0, 1, 0, ''), -- 25417
(@CGUID+39, 0, 0, 0, 1, 0, ''), -- 25417
(@CGUID+40, 0, 0, 0, 1, 0, ''), -- 25417
(@CGUID+41, 0, 0, 0, 1, 0, ''), -- 25417
(@CGUID+42, 0, 0, 0, 1, 0, ''), -- 25417
(@CGUID+43, 0, 0, 0, 1, 0, ''), -- 25417
(@CGUID+44, 0, 0, 0, 1, 0, ''), -- 25417
(@CGUID+45, 0, 0, 0, 1, 0, ''), -- 25417
(@CGUID+46, 0, 0, 0, 1, 0, ''), -- 25417
(@CGUID+47, 0, 0, 0, 1, 0, ''), -- 25417
(@CGUID+48, 0, 0, 0, 1, 0, ''), -- 25416
(@CGUID+49, 0, 0, 0, 1, 0, ''), -- 24613
(@CGUID+50, 0, 0, 0, 1, 0, ''), -- 24613
(@CGUID+51, 0, 0, 0, 1, 0, ''), -- 24613
(@CGUID+52, 0, 0, 0, 1, 0, ''), -- 24614
(@CGUID+53, 0, 0, 0, 1, 0, ''); -- 31685
UPDATE `creature` SET `spawntimesecs` = 300 , `spawndist` = 10 , `curhealth` = 1 , `MovementType` = 1 WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+53;
UPDATE `creature` SET `spawntimesecs` = 300 , `spawndist` = 4 , `curhealth` = 1 , `MovementType` = 1 WHERE `guid` = @CGUID+11;
-- delete water eles
DELETE FROM `creature` WHERE `guid` BETWEEN 102648 AND 102652;
DELETE FROM `creature` WHERE `guid` BETWEEN 102661 AND 102666;
DELETE FROM `creature` WHERE `guid` IN (102645, 102626);
DELETE FROM `creature_addon` WHERE `guid` BETWEEN 102648 AND 102652;
DELETE FROM `creature_addon` WHERE `guid` BETWEEN 102661 AND 102666;
DELETE FROM `creature_addon` WHERE `guid` IN (102645, 102626);
UPDATE `creature` SET `position_x` = 4309.695 , `position_y` = 5633.367 , `position_z` = 94.87403 , `orientation` = 1.413717 WHERE `guid` = 200013;
-- air eles
UPDATE `creature` SET `spawndist` = 10 WHERE `guid` BETWEEN 102437 AND 102442;
UPDATE `creature` SET `spawndist` = 10 WHERE `guid` BETWEEN 102471 AND 102485;
UPDATE `creature` SET `spawndist` = 10 WHERE `guid` = 102452;
-- Pathing for Enraged Tempest Entry: 25415 'TDB FORMAT'
SET @NPC := 102479;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=4582.429,`position_y`=5916.411,`position_z`=56.099 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES (@NPC,@PATH,0,0,1,0, '');
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(@PATH,1,4582.429,5916.411,56.099,0,0,0,0,100,0), -- 20:25:05
(@PATH,2,4567.213,5933.478,62.72065,0,0,0,0,100,0), -- 20:25:16
(@PATH,3,4550.817,5949.297,68.55141,0,0,0,0,100,0), -- 20:25:25
(@PATH,4,4542.173,5982.366,71.99318,0,0,0,0,100,0), -- 20:25:36
(@PATH,5,4563.726,6018.92,78.21175,0,0,0,0,100,0), -- 20:25:51
(@PATH,6,4586.041,6047.054,81.09695,0,0,0,0,100,0), -- 20:26:09
(@PATH,7,4606.639,6079.772,79.38864,0,0,0,0,100,0), -- 20:26:23
(@PATH,8,4602.986,6101.729,78.74768,0,0,0,0,100,0), -- 20:26:37
(@PATH,9,4582.914,6126.627,81.2157,0,0,0,0,100,0), -- 20:26:49
(@PATH,10,4556.886,6142.86,81.20538,0,0,0,0,100,0), -- 20:27:03
(@PATH,11,4572.895,6134.833,81.22743,0,0,0,0,100,0), -- 20:27:16
(@PATH,12,4600.353,6109.119,78.72827,0,0,0,0,100,0), -- 20:27:26
(@PATH,13,4604.147,6095.896,79.12968,0,0,0,0,100,0), -- 20:27:39
(@PATH,14,4600.552,6070.209,81.15663,0,0,0,0,100,0), -- 20:27:52
(@PATH,15,4570.93,6028.483,79.49257,0,0,0,0,100,0), -- 20:28:07
(@PATH,16,4542.822,5986.35,72.76584,0,0,0,0,100,0), -- 20:28:19
(@PATH,17,4550.624,5951.442,69.22236,0,0,0,0,100,0), -- 20:28:38
(@PATH,18,4564.791,5935.697,64.15934,0,0,0,0,100,0), -- 20:28:54
(@PATH,19,4582.332,5916.214,55.95428,0,0,0,0,100,0); -- 20:29:03
-- Pathing for Enraged Tempest Entry: 25415 'TDB FORMAT'
SET @NPC := 102473;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=4497.891,`position_y`=6137.541,`position_z`=80.16054 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES (@NPC,@PATH,0,0,1,0, '');
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(@PATH,1,4497.891,6137.541,80.16054,0,0,0,0,100,0), -- 20:26:22
(@PATH,2,4497.828,6131.405,79.64149,0,0,0,0,100,0), -- 20:26:30
(@PATH,3,4499.488,6112.93,80.19643,0,0,0,0,100,0), -- 20:26:35
(@PATH,4,4491.456,6088.593,78.08659,0,0,0,0,100,0), -- 20:26:45
(@PATH,5,4505.488,6055.596,76.68158,0,0,0,0,100,0), -- 20:26:52
(@PATH,6,4491.953,6023.114,67.60138,0,0,0,0,100,0), -- 20:27:07
(@PATH,7,4514.078,5986.287,68.74522,0,0,0,0,100,0), -- 20:27:21
(@PATH,8,4500.425,5965.788,63.89717,0,0,0,0,100,0), -- 20:27:39
(@PATH,9,4503.254,5931.495,61.60934,0,0,0,0,100,0), -- 20:27:57
(@PATH,10,4489.393,5948.091,63.07407,0,0,0,0,100,0), -- 20:28:15
(@PATH,11,4513.931,5982.552,67.93922,0,0,0,0,100,0), -- 20:28:30
(@PATH,12,4494.02,6016.712,67.46692,0,0,0,0,100,0), -- 20:28:48
(@PATH,13,4501.351,6044.861,75.96799,0,0,0,0,100,0), -- 20:29:05
(@PATH,14,4492.195,6082.638,77.78274,0,0,0,0,100,0), -- 20:29:21
(@PATH,15,4500.411,6098.807,79.48975,0,0,0,0,100,0), -- 20:29:35
(@PATH,16,4498.477,6122.489,79.74394,0,0,0,0,100,0), -- 20:29:41
(@PATH,17,4497.76,6137.652,80.19916,0,0,0,0,100,0); -- 20:29:51
-- paths water eles
SET @NPC := @CGUID+46;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=4456.091,`position_y`=5874.284,`position_z`=64.093 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES (@NPC,@PATH,0,0,1,0, '');
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(@PATH,1,4456.091,5874.284,64.093,0,0,1,0,100,0), -- 20:26:22
(@PATH,2,4418.135,5826.952,70.059,0,0,1,0,100,0), -- 20:26:30
(@PATH,3,4364.599,5757.606,80.218,0,0,1,0,100,0), -- 20:26:35
(@PATH,4,4312.593,5704.205,90.690,0,0,1,0,100,0), -- 20:26:45
(@PATH,5,4309.625,5638.164,94.449,0,0,1,0,100,0), -- 20:26:45
(@PATH,6,4312.593,5704.205,90.690,0,0,1,0,100,0), -- 20:26:45
(@PATH,7,4364.599,5757.606,80.218,0,0,1,0,100,0), -- 20:26:35
(@PATH,8,4418.135,5826.952,70.059,0,0,1,0,100,0), -- 20:26:30
(@PATH,9,4456.091,5874.284,64.093,0,0,1,0,100,0); -- 20:26:22
SET @NPC := @CGUID+47;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=4408.679,`position_y`=5920.878,`position_z`=55.669 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES (@NPC,@PATH,0,0,1,0, '');
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(@PATH,1,4408.679,5920.878,55.669,0,0,1,0,100,0), -- 20:26:22
(@PATH,2,4453.867,5900.081,59.354,0,0,1,0,100,0), -- 20:26:22
(@PATH,3,4456.091,5874.284,64.093,0,0,1,0,100,0), -- 20:26:22
(@PATH,4,4418.135,5826.952,70.059,0,0,1,0,100,0), -- 20:26:30
(@PATH,5,4364.599,5757.606,80.218,0,0,1,0,100,0), -- 20:26:35
(@PATH,6,4312.593,5704.205,90.690,0,0,1,0,100,0), -- 20:26:45
(@PATH,7,4309.625,5638.164,94.449,0,0,1,0,100,0), -- 20:26:45
(@PATH,8,4312.593,5704.205,90.690,0,0,1,0,100,0), -- 20:26:45
(@PATH,9,4364.599,5757.606,80.218,0,0,1,0,100,0), -- 20:26:35
(@PATH,10,4418.135,5826.952,70.059,0,0,1,0,100,0), -- 20:26:30
(@PATH,11,4456.091,5874.284,64.093,0,0,1,0,100,0), -- 20:26:22
(@PATH,12,4453.867,5900.081,59.354,0,0,1,0,100,0), -- 20:26:22
(@PATH,13,4408.679,5920.878,55.669,0,0,1,0,100,0); -- 20:26:22
SET @NPC := @CGUID+48;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=4325.170,`position_y`=5855.809,`position_z`=57.569 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES (@NPC,@PATH,0,0,1,0, '');
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(@PATH,1,4325.170,5855.809,57.569,0,0,1,0,100,0), -- 20:26:22
(@PATH,2,4331.969,5789.342,70.842,0,0,1,0,100,0), -- 20:26:30
(@PATH,3,4340.155,5758.681,79.466,0,0,1,0,100,0), -- 20:26:35
(@PATH,4,4312.593,5704.205,90.690,0,0,1,0,100,0), -- 20:26:45
(@PATH,5,4309.625,5638.164,94.449,0,0,1,0,100,0), -- 20:26:45
(@PATH,6,4312.593,5704.205,90.690,0,0,1,0,100,0), -- 20:26:45
(@PATH,7,4340.155,5758.681,79.466,0,0,1,0,100,0), -- 20:26:35
(@PATH,8,4331.969,5789.342,70.842,0,0,1,0,100,0), -- 20:26:30
(@PATH,9,4325.170,5855.809,57.569,0,0,1,0,100,0); -- 20:26:22
SET @NPC := @CGUID+49;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=4370.834,`position_y`=5889.521,`position_z`=55.853 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES (@NPC,@PATH,0,0,1,0, '');
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(@PATH,1,4370.834,5889.521,55.853,0,0,1,0,100,0), -- 20:26:22
(@PATH,2,4325.170,5855.809,57.569,0,0,1,0,100,0), -- 20:26:22
(@PATH,3,4331.969,5789.342,70.842,0,0,1,0,100,0), -- 20:26:30
(@PATH,4,4340.155,5758.681,79.466,0,0,1,0,100,0), -- 20:26:35
(@PATH,5,4312.593,5704.205,90.690,0,0,1,0,100,0), -- 20:26:45
(@PATH,6,4309.625,5638.164,94.449,0,0,1,0,100,0), -- 20:26:45
(@PATH,7,4312.593,5704.205,90.690,0,0,1,0,100,0), -- 20:26:45
(@PATH,8,4340.155,5758.681,79.466,0,0,1,0,100,0), -- 20:26:35
(@PATH,9,4331.969,5789.342,70.842,0,0,1,0,100,0), -- 20:26:30
(@PATH,10,4325.170,5855.809,57.569,0,0,1,0,100,0); -- 20:26:22
SET @NPC := @CGUID+34;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=4400.289,`position_y`=5853.771,`position_z`=64.700 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES (@NPC,@PATH,0,0,1,0, '');
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(@PATH,1,4400.289,5853.771,64.700,0,0,1,0,100,0), -- 20:26:22
(@PATH,2,4406.379,5794.868,75.189,0,0,1,0,100,0), -- 20:26:30
(@PATH,3,4364.599,5757.606,80.218,0,0,1,0,100,0), -- 20:26:35
(@PATH,4,4312.593,5704.205,90.690,0,0,1,0,100,0), -- 20:26:45
(@PATH,5,4309.625,5638.164,94.449,0,0,1,0,100,0), -- 20:26:45
(@PATH,6,4312.593,5704.205,90.690,0,0,1,0,100,0), -- 20:26:45
(@PATH,7,4364.599,5757.606,80.218,0,0,1,0,100,0), -- 20:26:35
(@PATH,8,4406.379,5794.868,75.189,0,0,1,0,100,0), -- 20:26:30
(@PATH,9,4400.289,5853.771,64.700,0,0,1,0,100,0); -- 20:26:22
SET @NPC := @CGUID+19;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=4325.170,`position_y`=5855.809,`position_z`=57.569 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES (@NPC,@PATH,0,0,1,0, '');
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(@PATH,1,4325.170,5855.809,57.569,0,0,1,0,100,0), -- 20:26:22
(@PATH,2,4301.863,5794.378,67.805,0,0,1,0,100,0), -- 20:26:30
(@PATH,3,4340.155,5758.681,79.466,0,0,1,0,100,0), -- 20:26:35
(@PATH,4,4312.593,5704.205,90.690,0,0,1,0,100,0), -- 20:26:45
(@PATH,5,4309.625,5638.164,94.449,0,0,1,0,100,0), -- 20:26:45
(@PATH,6,4312.593,5704.205,90.690,0,0,1,0,100,0), -- 20:26:45
(@PATH,7,4340.155,5758.681,79.466,0,0,1,0,100,0), -- 20:26:35
(@PATH,8,4301.863,5794.378,67.805,0,0,1,0,100,0), -- 20:26:30
(@PATH,9,4325.170,5855.809,57.569,0,0,1,0,100,0); -- 20:26:22
-- fire eles paths
SET @NPC := @CGUID+50;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=4309.625,`position_y`=5638.164,`position_z`=94.449 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES (@NPC,@PATH,0,0,1,0, '');
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(@PATH,1,4309.625,5638.164,94.449,0,0,1,0,100,0), -- 20:26:45
(@PATH,2,4312.593,5704.205,90.690,0,0,1,0,100,0), -- 20:26:45
(@PATH,3,4364.599,5757.606,80.218,0,0,1,0,100,0), -- 20:26:35
(@PATH,4,4418.135,5826.952,70.059,0,0,1,0,100,0), -- 20:26:30
(@PATH,5,4456.091,5874.284,64.093,0,0,1,0,100,0), -- 20:26:22
(@PATH,6,4453.867,5900.081,59.354,0,0,1,0,100,0), -- 20:26:22
(@PATH,7,4408.679,5920.878,55.669,0,0,1,0,100,0), -- 20:26:22
(@PATH,8,4453.867,5900.081,59.354,0,0,1,0,100,0), -- 20:26:22
(@PATH,9,4456.091,5874.284,64.093,0,0,1,0,100,0), -- 20:26:22
(@PATH,10,4418.135,5826.952,70.059,0,0,1,0,100,0), -- 20:26:30
(@PATH,11,4364.599,5757.606,80.218,0,0,1,0,100,0), -- 20:26:35
(@PATH,12,4312.593,5704.205,90.690,0,0,1,0,100,0), -- 20:26:45
(@PATH,13,4309.625,5638.164,94.449,0,0,1,0,100,0); -- 20:26:45
SET @NPC := @CGUID+51;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=4347.967,`position_y`=5730.564,`position_z`=83.739 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES (@NPC,@PATH,0,0,1,0, '');
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(@PATH,1,4347.967,5730.564,83.739,0,0,1,0,100,0), -- 20:26:35
(@PATH,2,4364.599,5757.606,80.218,0,0,1,0,100,0), -- 20:26:35
(@PATH,3,4418.135,5826.952,70.059,0,0,1,0,100,0), -- 20:26:30
(@PATH,4,4456.091,5874.284,64.093,0,0,1,0,100,0), -- 20:26:22
(@PATH,5,4453.867,5900.081,59.354,0,0,1,0,100,0), -- 20:26:22
(@PATH,6,4408.679,5920.878,55.669,0,0,1,0,100,0), -- 20:26:22
(@PATH,7,4453.867,5900.081,59.354,0,0,1,0,100,0), -- 20:26:22
(@PATH,8,4456.091,5874.284,64.093,0,0,1,0,100,0), -- 20:26:22
(@PATH,9,4418.135,5826.952,70.059,0,0,1,0,100,0), -- 20:26:30
(@PATH,10,4364.599,5757.606,80.218,0,0,1,0,100,0), -- 20:26:35
(@PATH,11,4347.967,5730.564,83.739,0,0,1,0,100,0); -- 20:26:35
SET @NPC := 102601;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=4400.118,`position_y`=5793.260,`position_z`=75.037 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES (@NPC,@PATH,0,0,1,0, '');
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(@PATH,1,4400.118,5793.260,75.037,0,0,1,0,100,0), -- 20:26:35
(@PATH,2,4400.289,5853.771,64.700,0,0,1,0,100,0), -- 20:26:22
(@PATH,3,4456.091,5874.284,64.093,0,0,1,0,100,0), -- 20:26:22
(@PATH,4,4453.867,5900.081,59.354,0,0,1,0,100,0), -- 20:26:22
(@PATH,5,4391.264,5878.812,55.666,0,0,1,0,100,0), -- 20:26:22
(@PATH,6,4356.525,5896.896,56.012,0,0,1,0,100,0), -- 20:26:22
(@PATH,7,4391.264,5878.812,55.666,0,0,1,0,100,0), -- 20:26:22
(@PATH,8,4453.867,5900.081,59.354,0,0,1,0,100,0), -- 20:26:22
(@PATH,9,4456.091,5874.284,64.093,0,0,1,0,100,0), -- 20:26:22
(@PATH,10,4400.289,5853.771,64.700,0,0,1,0,100,0), -- 20:26:22
(@PATH,11,4400.118,5793.260,75.037,0,0,1,0,100,0); -- 20:26:35
SET @NPC := @CGUID+52;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=4309.625,`position_y`=5638.164,`position_z`=94.449 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES (@NPC,@PATH,0,0,1,0, '');
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(@PATH,1,4309.625,5638.164,94.449,0,0,1,0,100,0), -- 20:26:45
(@PATH,2,4312.593,5704.205,90.690,0,0,1,0,100,0), -- 20:26:45
(@PATH,3,4347.967,5730.564,83.739,0,0,1,0,100,0), -- 20:26:35
(@PATH,4,4340.155,5758.681,79.466,0,0,1,0,100,0), -- 20:26:35
(@PATH,5,4331.969,5789.342,70.842,0,0,1,0,100,0), -- 20:26:30
(@PATH,6,4325.170,5855.809,57.569,0,0,1,0,100,0), -- 20:26:22
(@PATH,7,4356.525,5896.896,56.012,0,0,1,0,100,0), -- 20:26:22
(@PATH,8,4325.170,5855.809,57.569,0,0,1,0,100,0), -- 20:26:22
(@PATH,9,4331.969,5789.342,70.842,0,0,1,0,100,0), -- 20:26:30
(@PATH,10,4340.155,5758.681,79.466,0,0,1,0,100,0), -- 20:26:35
(@PATH,11,4347.967,5730.564,83.739,0,0,1,0,100,0), -- 20:26:35
(@PATH,12,4312.593,5704.205,90.690,0,0,1,0,100,0), -- 20:26:45
(@PATH,13,4309.625,5638.164,94.449,0,0,1,0,100,0); -- 20:26:45
SET @NPC := @CGUID+53;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=4347.967,`position_y`=5730.564,`position_z`=83.739 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES (@NPC,@PATH,0,0,1,0, '');
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(@PATH,1,4347.967,5730.564,83.739,0,0,1,0,100,0), -- 20:26:35
(@PATH,2,4340.155,5758.681,79.466,0,0,1,0,100,0), -- 20:26:35
(@PATH,3,4331.969,5789.342,70.842,0,0,1,0,100,0), -- 20:26:30
(@PATH,4,4325.170,5855.809,57.569,0,0,1,0,100,0), -- 20:26:22
(@PATH,5,4356.525,5896.896,56.012,0,0,1,0,100,0), -- 20:26:22
(@PATH,6,4325.170,5855.809,57.569,0,0,1,0,100,0), -- 20:26:22
(@PATH,7,4331.969,5789.342,70.842,0,0,1,0,100,0), -- 20:26:30
(@PATH,8,4340.155,5758.681,79.466,0,0,1,0,100,0), -- 20:26:35
(@PATH,9,4347.967,5730.564,83.739,0,0,1,0,100,0); -- 20:26:35
SET @NPC := 102600;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=4319.603,`position_y`=5784.604,`position_z`=69.714 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES (@NPC,@PATH,0,0,1,0, '');
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(@PATH,1,4319.603,5784.604,69.714,0,0,1,0,100,0), -- 20:26:35
(@PATH,2,4325.170,5855.809,57.569,0,0,1,0,100,0), -- 20:26:22
(@PATH,3,4356.525,5896.896,56.012,0,0,1,0,100,0), -- 20:26:22
(@PATH,4,4325.170,5855.809,57.569,0,0,1,0,100,0), -- 20:26:22
(@PATH,5,4319.603,5784.604,69.714,0,0,1,0,100,0);
-- Boiling Spirit SAI
SET @ENTRY := 25419;
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,0,0,0,100,0,3000,5000,15000,20000,11,50206,0,0,0,0,0,2,0,0,0,0,0,0,0,"Boiling Spirit - In Combat - Cast 'Scalding Steam'");
-- Raging Boiler SAI
SET @ENTRY := 25417;
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,0,0,0,100,0,3000,5000,15000,20000,11,50207,0,0,0,0,0,2,0,0,0,0,0,0,0,"Raging Boiler - In Combat - Cast 'Boiling Blood'");
UPDATE `creature_template` SET `DamageModifier` = 1.2 WHERE `entry` = 25417;
-- Enraged Tempest SAI
SET @ENTRY := 25415;
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,0,2,0,100,0,0,50,120000,120000,11,50420,0,0,0,0,0,1,0,0,0,0,0,0,0,"Enraged Tempest - Between 0-50% Health - Cast 'Enrage'"),
(@ENTRY,0,1,0,6,0,100,0,0,0,0,0,11,50215,0,0,0,0,0,1,0,0,0,0,0,0,0,"Enraged Tempest - On Just Died - Cast 'Zephyr'");
@@ -1,80 +0,0 @@
ALTER TABLE `creature_template` DROP `FadeRegionRadius`;
ALTER TABLE `playerchoice_response`
ADD `ResponseIdentifier` smallint(5) unsigned NOT NULL AFTER `ResponseId`,
ADD `UiTextureKitID` int(11) NOT NULL DEFAULT '0' AFTER `GroupID`;
--
-- Table structure for table `playerchoice_response_reward_item_choice`
--
DROP TABLE IF EXISTS `playerchoice_response_reward_item_choice`;
CREATE TABLE `playerchoice_response_reward_item_choice` (
`ChoiceId` int(11) NOT NULL,
`ResponseId` int(11) NOT NULL,
`Index` int(10) unsigned NOT NULL,
`ItemId` int(10) unsigned NOT NULL DEFAULT '0',
`BonusListIDs` text,
`Quantity` int(11) NOT NULL DEFAULT '0',
`VerifiedBuild` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`ChoiceId`,`ResponseId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Table structure for table `playerchoice_response_maw_power`
--
DROP TABLE IF EXISTS `playerchoice_response_maw_power`;
CREATE TABLE `playerchoice_response_maw_power` (
`ChoiceId` int(11) NOT NULL,
`ResponseId` int(11) NOT NULL,
`TypeArtFileID` int(11) DEFAULT '0',
`Rarity` int(11) DEFAULT '0',
`RarityColor` int(10) unsigned DEFAULT '0',
`SpellID` int(11) DEFAULT '0',
`MaxStacks` int(11) DEFAULT '0',
`VerifiedBuild` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`ChoiceId`,`ResponseId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
ALTER TABLE `quest_poi` ADD `NavigationPlayerConditionID` int(11) NOT NULL DEFAULT '0' AFTER `PlayerConditionID`;
ALTER TABLE `quest_poi_points` ADD `Z` int(11) NOT NULL DEFAULT '0' AFTER `Y`;
--
-- Table structure for table `quest_reward_choice_items`
--
DROP TABLE IF EXISTS `quest_reward_choice_items`;
CREATE TABLE `quest_reward_choice_items` (
`QuestID` int(10) unsigned NOT NULL,
`Type1` tinyint(3) unsigned DEFAULT '0',
`Type2` tinyint(3) unsigned DEFAULT '0',
`Type3` tinyint(3) unsigned DEFAULT '0',
`Type4` tinyint(3) unsigned DEFAULT '0',
`Type5` tinyint(3) unsigned DEFAULT '0',
`Type6` tinyint(3) unsigned DEFAULT '0',
`VerifiedBuild` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`QuestID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Table structure for table `quest_reward_display_spell`
--
DROP TABLE IF EXISTS `quest_reward_display_spell`;
CREATE TABLE `quest_reward_display_spell` (
`QuestID` int(10) unsigned NOT NULL,
`Idx` int(10) unsigned NOT NULL,
`SpellID` int(10) unsigned DEFAULT '0',
`PlayerConditionID` int(10) unsigned DEFAULT '0',
`VerifiedBuild` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`QuestID`,`Idx`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
ALTER TABLE `quest_template`
ADD `ContentTuningID` int(10) unsigned NOT NULL DEFAULT '0' AFTER `QuestPackageID`,
DROP `QuestLevel`,
DROP `ScalingFactionGroup`,
DROP `MaxScalingLevel`,
DROP `MinLevel`;
ALTER TABLE `scenario_poi` ADD `NavigationPlayerConditionID` int(11) NOT NULL DEFAULT '0' AFTER `PlayerConditionID`;
ALTER TABLE `scenario_poi_points` ADD `Z` int(11) NOT NULL DEFAULT '0' AFTER `Y`;
@@ -1,2 +0,0 @@
-- Frankal Stonebridge & Rutgar Glyphshaper
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`= 14 AND `SourceGroup` IN (6534, 6533);
@@ -1,9 +0,0 @@
-- Vish Kozus
DELETE FROM `gossip_menu` WHERE `MenuID`=6531 AND `TextID`=7751;
INSERT INTO `gossip_menu` (`MenuID`, `TextID`, `VerifiedBuild`) VALUES
(6531,7751,0);
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`= 14 AND `SourceGroup`= 6531;
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
(14,6531,7751,0,0,9,0,8283,0,0,0,0,0,"","Show Gossip Menu Text 7751 if Quest 'Wanted - Deathclasp, Terror of the Sands' is taken"),
(14,6531,7751,0,1,28,0,8283,0,0,0,0,0,"","Show Gossip Menu Text 7751 if Quest 'Wanted - Deathclasp, Terror of the Sands' is completed");
@@ -1,9 +0,0 @@
-- Geologist Larksbane
-- DELETE FROM `gossip_menu` WHERE `MenuID`=6532 AND `TextID`=7748;
-- INSERT INTO `gossip_menu` (`MenuID`, `TextID`, `VerifiedBuild`) VALUES
-- (6532,7748,0);
-- gossip_menu already exists in master
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`= 14 AND `SourceGroup`= 6532;
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
(14,6532,7748,0,0,28,0,8285,0,0,0,0,0,"","Show Gossip Menu Text 7748 if Quest 'The Deserter' is completed");
@@ -1,9 +0,0 @@
-- Hermit Ortell
-- DELETE FROM `gossip_menu` WHERE `MenuID`=6596 AND `TextID`=7817;
-- INSERT INTO `gossip_menu` (`MenuID`, `TextID`, `VerifiedBuild`) VALUES
-- (6596,7817,0);
-- gossip_menu already exists in master
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`= 14 AND `SourceGroup`= 6596;
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
(14,6596,7817,0,0,8,0,8285,0,0,0,0,0,"","Show Gossip Menu Text 7817 if Quest 'The Deserter' is rewarded");
@@ -1,5 +0,0 @@
-- Bor Wildmane
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`= 14 AND `SourceGroup`= 6583;
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
(14,6583,7839,0,0,8,0,8361,0,0,0,0,0,"","Show Gossip Menu Text 7839 if Quest 'Abyssal Contacts' is rewarded"),
(14,6583,7839,0,0,5,0,609,224,0,0,0,0,"","Show Gossip Menu Text 7839 if player is honored, revered or exalted with Cenarion Circle");
@@ -1,51 +0,0 @@
-- Lesser Wind Stone
DELETE FROM `gossip_menu` WHERE `MenuID`=6540 AND `TextID`=7744;
INSERT INTO `gossip_menu` (`MenuID`, `TextID`, `VerifiedBuild`) VALUES
(6540,7744,0);
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`= 14 AND `SourceGroup`= 6540;
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
(14,6540,7771,0,0,1,0,24746,0,0,0,0,0,"","Show Gossip Menu Text 7771 if player has aura 'Twilight Cultist Disguise (I)'"),
(14,6540,7744,0,0,1,0,24746,0,0,1,0,0,"","Show Gossip Menu Text 7744 if player has NOT aura 'Twilight Cultist Disguise (I)'");
-- Wind Stone
DELETE FROM `gossip_menu` WHERE `MenuID`=6542 AND `TextID` IN (7749, 7773);
INSERT INTO `gossip_menu` (`MenuID`, `TextID`, `VerifiedBuild`) VALUES
(6542,7749,0),
(6542,7773,0);
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`= 14 AND `SourceGroup`= 6542;
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
(14,6542,7773,0,0,1,0,24746,0,0,0,0,0,"","Show Gossip Menu Text 7773 if player has aura 'Twilight Cultist Disguise (I)'"),
(14,6542,7773,0,0,1,0,24748,0,0,0,0,0,"","Show Gossip Menu Text 7773 if player has aura 'Twilight Cultist Disguise (II)'"),
(14,6542,7772,0,0,1,0,24746,0,0,0,0,0,"","Show Gossip Menu Text 7772 if player has aura 'Twilight Cultist Disguise (I)'"),
(14,6542,7772,0,0,1,0,24748,0,0,1,0,0,"","Show Gossip Menu Text 7772 if player has NOT aura 'Twilight Cultist Disguise (II)'"),
(14,6542,7749,0,0,1,0,24746,0,0,1,0,0,"","Show Gossip Menu Text 7749 if player has NOT aura 'Twilight Cultist Disguise (I)'");
-- Greater Wind Stone
DELETE FROM `gossip_menu` WHERE `MenuID`=6543 AND `TextID` IN (7774, 7754, 7775);
INSERT INTO `gossip_menu` (`MenuID`, `TextID`, `VerifiedBuild`) VALUES
(6543,7774,0),
(6543,7754,0),
(6543,7775,0);
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`= 14 AND `SourceGroup`= 6543;
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
(14,6543,7774,0,0,1,0,24746,0,0,0,0,0,"","Show Gossip Menu Text 7774 if player has aura 'Twilight Cultist Disguise (I)'"),
(14,6543,7774,0,0,1,0,24748,0,0,0,0,0,"","Show Gossip Menu Text 7774 if player has aura 'Twilight Cultist Disguise (II)'"),
(14,6543,7774,0,0,1,0,24782,0,0,0,0,0,"","Show Gossip Menu Text 7774 if player has aura 'Twilight Cultist Disguise (III)'"),
(14,6543,7775,0,0,1,0,24746,0,0,0,0,0,"","Show Gossip Menu Text 7775 if player has aura 'Twilight Cultist Disguise (I)'"),
(14,6543,7775,0,0,1,0,24748,0,0,0,0,0,"","Show Gossip Menu Text 7775 if player has aura 'Twilight Cultist Disguise (II)'"),
(14,6543,7775,0,0,1,0,24782,0,0,1,0,0,"","Show Gossip Menu Text 7775 if player has NOT aura 'Twilight Cultist Disguise (III)'"),
(14,6543,7776,0,0,1,0,24746,0,0,0,0,0,"","Show Gossip Menu Text 7776 if player has aura 'Twilight Cultist Disguise (I)'"),
(14,6543,7776,0,0,1,0,24748,0,0,1,0,0,"","Show Gossip Menu Text 7776 if player has NOT aura 'Twilight Cultist Disguise (II)'"),
(14,6543,7754,0,0,1,0,24746,0,0,1,0,0,"","Show Gossip Menu Text 7754 if player has NOT aura 'Twilight Cultist Disguise (I)'");
-- master misses the entry
-- UPDATE `npc_text` SET `text0_0`="A thunderous voice bellows from the stone...$B$BI sense your Medallion of Station, cultist, but you have no ring of lordship? Are you truly a commander of the Twilight's Hammer, or do you merely run errands for your betters?", `text0_1`="A thunderous voice bellows from the stone...$B$BI sense your Medallion of Station, cultist, but you have no ring of lordship? Are you truly a commander of the Twilight's Hammer, or do you merely run errands for your betters?", `BroadcastTextID0`=10749 WHERE `ID`=7775;
-- add missing stuff to master
DELETE FROM `npc_text` WHERE `ID` In (7774, 7775);
INSERT INTO `npc_text` (`ID`, `Probability0`, `Probability1`, `Probability2`, `Probability3`, `Probability4`, `Probability5`, `Probability6`, `Probability7`, `BroadcastTextID0`, `BroadcastTextID1`, `BroadcastTextID2`, `BroadcastTextID3`, `BroadcastTextID4`, `BroadcastTextID5`, `BroadcastTextID6`, `BroadcastTextID7`, `VerifiedBuild`) VALUES
(7774, 1, 0, 0, 0, 0, 0, 0, 0, 10706, 0, 0, 0, 0, 0, 0, 0, 0),
(7775, 1, 0, 0, 0, 0, 0, 0, 0, 10749, 0, 0, 0, 0, 0, 0, 0, 0);
@@ -1,135 +0,0 @@
-- D.E.H.T.A. Enforcer
DELETE FROM `creature_text` WHERE `CreatureID`= 25808 AND `ID`>=0;
INSERT INTO `creature_text` (`CreatureID`, `groupid`, `id`, `text`, `type`, `language`, `probability`, `emote`, `duration`, `sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(25808,0,0,' Do you think us fools! You\'re covered in animal blood!',12,0,100,5,4000,0,25052,0,'D.E.H.T.A. Enforcer'),
(25808,0,1,' BUTCHER! DIE!',12,0,100,5,4000,0,25053,0,'D.E.H.T.A. Enforcer'),
(25808,0,2,' Calf killer! Murderer! You will pay for this!',12,0,100,5,4000,0,25054,0,'D.E.H.T.A. Enforcer');
-- Archdruid Lathorius <D.E.H.T.A.>
DELETE FROM `creature_text` WHERE `CreatureID`= 25809 AND `ID`>=0;
INSERT INTO `creature_text` (`CreatureID`, `groupid`, `id`, `text`, `type`, `language`, `probability`, `emote`, `duration`, `sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(25809,0,0,' Do you think us fools! You\'re covered in animal blood!',12,0,100,5,4000,0,25052,0,'Archdruid Lathorius <D.E.H.T.A.>'),
(25809,0,1,' BUTCHER! DIE!',12,0,100,5,4000,0,25053,0,'Archdruid Lathorius <D.E.H.T.A.>'),
(25809,0,2,' Calf killer! Murderer! You will pay for this!',12,0,100,5,4000,0,25054,0,'Archdruid Lathorius <D.E.H.T.A.>');
-- Hierophant Cenius <D.E.H.T.A.>
DELETE FROM `creature_text` WHERE `CreatureID`= 25810 AND `ID`>=0;
INSERT INTO `creature_text` (`CreatureID`, `groupid`, `id`, `text`, `type`, `language`, `probability`, `emote`, `duration`, `sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(25810,0,0,' Do you think us fools! You\'re covered in animal blood!',12,0,100,5,4000,0,25052,0,'Hierophant Cenius <D.E.H.T.A.>'),
(25810,0,1,' BUTCHER! DIE!',12,0,100,5,4000,0,25053,0,'Hierophant Cenius <D.E.H.T.A.>'),
(25810,0,2,' Calf killer! Murderer! You will pay for this!',12,0,100,5,4000,0,25054,0,'Hierophant Cenius <D.E.H.T.A.>');
-- Zaza <D.E.H.T.A.>
DELETE FROM `creature_text` WHERE `CreatureID`=25811 AND `ID`>=0;
INSERT INTO `creature_text` (`CreatureID`, `groupid`, `id`, `text`, `type`, `language`, `probability`, `emote`, `duration`, `sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(25811,0,0,' Do you think us fools! You\'re covered in animal blood!',12,0,100,5,4000,0,25052,0,'Zaza <D.E.H.T.A.>'),
(25811,0,1,' BUTCHER! DIE!',12,0,100,5,4000,0,25053,0,'Zaza <D.E.H.T.A.>'),
(25811,0,2,' Calf killer! Murderer! You will pay for this!',12,0,100,5,4000,0,25054,0,'Zaza <D.E.H.T.A.>');
-- Killinger the Den Watcher <D.E.H.T.A.>
DELETE FROM `creature_text` WHERE `CreatureID`= 25812 AND `ID`>=0;
INSERT INTO `creature_text` (`CreatureID`, `groupid`, `id`, `text`, `type`, `language`, `probability`, `emote`, `duration`, `sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(25812,0,0,' Do you think us fools! You\'re covered in animal blood!',12,0,100,5,4000,0,25052,0,'Killinger the Den Watcher <D.E.H.T.A.>'),
(25812,0,1,' BUTCHER! DIE!',12,0,100,5,4000,0,25053,0,'Killinger the Den Watcher <D.E.H.T.A.>'),
(25812,0,2,' Calf killer! Murderer! You will pay for this!',12,0,100,5,4000,0,25054,0,'Killinger the Den Watcher <D.E.H.T.A.>');
-- D.E.H.T.A. Enforcer (BIRD)
DELETE FROM `creature_text` WHERE `CreatureID`= 25819 AND `ID`>=0;
INSERT INTO `creature_text` (`CreatureID`, `groupid`, `id`, `text`, `type`, `language`, `probability`, `emote`, `duration`, `sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(25819,0,0,' Do you think us fools! You\'re covered in animal blood!',12,0,100,5,4000,0,25052,0,'D.E.H.T.A. Enforcer'),
(25819,0,1,' BUTCHER! DIE!',12,0,100,5,4000,0,25053,0,'D.E.H.T.A. Enforcer'),
(25819,0,2,' Calf killer! Murderer! You will pay for this!',12,0,100,5,4000,0,25054,0,'D.E.H.T.A. Enforcer');
-- Hierophant Liandra <D.E.H.T.A.>
DELETE FROM `creature_text` WHERE `CreatureID`= 25838 AND `ID`>=0;
INSERT INTO `creature_text` (`CreatureID`, `groupid`, `id`, `text`, `type`, `language`, `probability`, `emote`, `duration`, `sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(25838,0,0,' Do you think us fools! You\'re covered in animal blood!',12,0,100,5,4000,0,25052,0,'Hierophant Liandra <D.E.H.T.A.>'),
(25838,0,1,' BUTCHER! DIE!',12,0,100,5,4000,0,25053,0,'Hierophant Liandra <D.E.H.T.A.>'),
(25838,0,2,' Calf killer! Murderer! You will pay for this!',12,0,100,5,4000,0,25054,0,'Hierophant Liandra <D.E.H.T.A.>');
-- D.E.H.T.A. Enforcer SAI
SET @ENTRY := 25808;
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,0,4,0,100,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"D.E.H.T.A. Enforcer - On Aggro - Say Line 0"),
(@ENTRY,0,1,0,10,0,100,0,1,20,0,0,49,2,0,0,0,0,0,25,20,1,0,0,0,0,0,"D.E.H.T.A. Enforcer - Within 1-20 Range Out of Combat LoS - Start Attacking");
-- D.E.H.T.A. Enforcer SAI
SET @ENTRY := 25819;
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,0,4,0,100,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"D.E.H.T.A. Enforcer - On Aggro - Say Line 0"),
(@ENTRY,0,1,0,10,0,100,0,1,20,0,0,49,0,0,0,0,0,0,25,20,1,0,0,0,0,0,"D.E.H.T.A. Enforcer - Within 1-20 Range Out of Combat LoS - Start Attacking");
-- Arch Druid Lathorius SAI
SET @ENTRY := 25809;
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,0,4,0,100,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Arch Druid Lathorius - On Aggro - Say Line 0"),
(@ENTRY,0,1,0,4,0,100,0,0,0,0,0,83,3,0,0,0,0,0,1,0,0,0,0,0,0,0,"Arch Druid Lathorius - On Aggro - Remove Npc Flags Gossip & Questgiver"),
(@ENTRY,0,2,0,10,0,100,0,1,20,0,0,49,0,0,0,0,0,0,25,20,1,0,0,0,0,0,"Arch Druid Lathorius - Within 1-20 Range Out of Combat LoS - Start Attacking"),
(@ENTRY,0,3,0,25,0,100,0,0,0,0,0,81,3,0,0,0,0,0,1,0,0,0,0,0,0,0,"Arch Druid Lathorius - On Reset - Set Npc Flags Gossip & Questgiver");
-- Zaza SAI
SET @ENTRY := 25811;
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,0,4,0,100,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Zaza - On Aggro - Say Line 0"),
(@ENTRY,0,1,0,4,0,100,0,0,0,0,0,83,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Zaza - On Aggro - Remove Npc Flag Questgiver"),
(@ENTRY,0,2,0,10,0,100,0,1,20,0,0,49,0,0,0,0,0,0,25,20,1,0,0,0,0,0,"Zaza - Within 1-20 Range Out of Combat LoS - Start Attacking"),
(@ENTRY,0,3,0,25,0,100,0,0,0,0,0,81,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Zaza - On Reset - Set Npc Flag Questgiver");
-- Hierophant Cenius SAI
SET @ENTRY := 25810;
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,0,4,0,100,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Hierophant Cenius - On Aggro - Say Line 0"),
(@ENTRY,0,1,0,4,0,100,0,0,0,0,0,83,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Hierophant Cenius - On Aggro - Remove Npc Flag Questgiver"),
(@ENTRY,0,2,0,10,0,100,0,1,20,0,0,49,0,0,0,0,0,0,25,20,1,0,0,0,0,0,"Hierophant Cenius - Within 1-20 Range Out of Combat LoS - Start Attacking"),
(@ENTRY,0,3,0,25,0,100,0,0,0,0,0,81,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Hierophant Cenius - On Reset - Set Npc Flag Questgiver");
-- Killinger the Den Watcher SAI
SET @ENTRY := 25812;
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,0,4,0,100,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Killinger the Den Watcher - On Aggro - Say Line 0"),
(@ENTRY,0,1,0,4,0,100,0,0,0,0,0,83,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Killinger the Den Watcher - On Aggro - Remove Npc Flag Questgiver"),
(@ENTRY,0,2,0,10,0,100,0,1,20,0,0,49,0,0,0,0,0,0,25,20,1,0,0,0,0,0,"Killinger the Den Watcher - Within 1-20 Range Out of Combat LoS - Start Attacking"),
(@ENTRY,0,3,0,25,0,100,0,0,0,0,0,81,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Killinger the Den Watcher - On Reset - Set Npc Flag Questgiver");
-- Hierophant Liandra SAI
SET @ENTRY := 25838;
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,0,4,0,100,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Hierophant Liandra - On Aggro - Say Line 0"),
(@ENTRY,0,1,0,4,0,100,0,0,0,0,0,83,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Hierophant Liandra - On Aggro - Remove Npc Flag Questgiver"),
(@ENTRY,0,2,0,10,0,100,0,1,25,0,0,49,0,0,0,0,0,0,25,25,1,0,0,0,0,0,"Hierophant Liandra - Within 1-25 Range Out of Combat LoS - Start Attacking"),
(@ENTRY,0,3,0,25,0,100,0,0,0,0,0,81,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Hierophant Liandra - On Reset - Set Npc Flag Questgiver"),
(@ENTRY,0,4,0,4,0,100,0,0,0,0,0,91,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Hierophant Liandra - On Aggro - Remove Flag Standstate Sit Down"),
(@ENTRY,0,5,0,25,0,100,0,0,0,0,0,90,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Hierophant Liandra - On Reset - Set Flag Standstate Sit Down");
UPDATE `creature_template` SET `InhabitType`=4 WHERE `entry` IN (29894, 25819);
UPDATE `creature` SET `MovementType`=0, `spawndist`=0 WHERE `id`=25819;
SET @NPC:=132984;
UPDATE `creature` SET `spawndist`=0,`MovementType`=2 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES (@NPC,1329840,0,0,0,0, '');
DELETE FROM `waypoint_data` WHERE `id`=1329840;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(1329840,1,3197.389, 5262.509, 59.1744, 5.665670,0,0,0,100,0),
(1329840,2,3205.473, 5261.450, 59.1744, 0.418089,0,0,0,100,0),
(1329840,3,3213.649, 5266.860, 59.1744, 0.630147,0,0,0,100,0),
(1329840,4,3220.222, 5276.440, 59.1744, 1.021275,0,0,0,100,0),
(1329840,5,3219.638, 5285.621, 59.1744, 1.939406,0,0,0,100,0),
(1329840,6,3211.313, 5295.542, 59.1744, 2.873245,0,0,0,100,0),
(1329840,7,3199.114, 5292.031, 59.1744, 3.573035,0,0,0,100,0),
(1329840,8,3193.253, 5282.330, 59.1744, 4.762128,0,0,0,100,0),
(1329840,9,3195.002, 5273.082, 59.1744, 4.700867,0,0,0,100,0);
@@ -1,4 +0,0 @@
-- Mana Wyrm SAI
DELETE FROM `smart_scripts` WHERE `entryorguid`=15274 AND `source_type`=0 AND `id`=3;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(15274,0,3,0,0,0,100,0,4000,8000,8000,12000,11,25602,0,0,0,0,0,5,0,0,0,0,0,0,0,"Mana Wyrm - In Combat - Cast 'Faerie Fire'");
@@ -1,9 +0,0 @@
-- Vindicator Palanaar
DELETE FROM `gossip_menu` WHERE `MenuID`=7367 AND `TextID`=8803;
INSERT INTO `gossip_menu` (`MenuID`, `TextID`, `VerifiedBuild`) VALUES
(7367,8803,0);
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=14 AND `SourceGroup`=7367;
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
(14,7367,8802,0,0,16,0,767,0,0,0,0,0,"","Show gossip text 8802 if player is not a Draenei"),
(14,7367,8803,0,0,16,0,1024,0,0,0,0,0,"","Show gossip text 8803 if player is a Draenei");
@@ -1,50 +0,0 @@
-- Beetix Ficklespragg & Noggle Ficklespragg
DELETE FROM `gossip_menu` WHERE `MenuID`=6544 AND `TextID`=7752;
INSERT INTO `gossip_menu` (`MenuID`, `TextID`, `VerifiedBuild`) VALUES
(6544,7752,0);
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`= 14 AND `SourceGroup`= 6544;
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
(14,6544,7753,0,0,8,0,8278,0,0,1,0,0,"","Show Gossip Menu Text 7753 if Quest 'Noggle's Last Hope' is NOT rewarded"),
(14,6544,7752,0,0,8,0,8278,0,0,0,0,0,"","Show Gossip Menu Text 7752 if Quest 'Noggle's Last Hope' is rewarded");
DELETE FROM `creature_text` WHERE `CreatureID` IN (15189, 15190);
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(15189,0,0,"You were always the troublemaker in the family, Noggle. Always!",12,0,100,0,0,0,10751,0,"Beetix Ficklespragg"),
(15190,0,0,"Yes! I'm cured! I'm cure... whoa, got up too fast!",12,0,100,0,0,0,10675,0,"Noggle Ficklespragg"),
(15190,1,0,"Thanks for finding my reagents! *yawn* That poison's made me... a bit tired...",12,0,100,0,0,0,10676,0,"Noggle Ficklespragg"),
(15190,2,0,"Wha... where am I? So... weak..",12,0,100,0,0,0,10672,0,"Noggle Ficklespragg");
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry` IN (15189, 15190);
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (15189, 15190) AND `source_type`=0;
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (1519000, 1519001, 1519002) AND `source_type`=9;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(15189,0,0,0,1,0,100,0,1000,15000,150000,180000,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Beetix Ficklespragg - Out of Combat - Say Line 0"),
(15189,0,1,0,20,0,100,0,8277,0,0,0,45,1,1,0,0,0,0,19,15190,0,0,0,0,0,0,"Beetix Ficklespragg - On Quest 'Deadly Desert Venom' Finished - Set Data 1"),
(15189,0,2,0,20,0,100,0,8278,0,0,0,45,2,2,0,0,0,0,19,15190,0,0,0,0,0,0,"Beetix Ficklespragg - On Quest 'Noggle's Last Hope' Finished - Set Data 2"),
(15190,0,0,0,25,0,100,0,0,0,0,0,22,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Noggle Ficklespragg - On Reset - Set Event Phase 1"),
(15190,0,1,0,38,1,100,0,1,1,0,0,80,1519000,0,0,0,0,0,1,0,0,0,0,0,0,0,"Noggle Ficklespragg - On Data 1 Set - Run Script 1 (Phase 1)"),
(15190,0,2,0,38,1,100,0,2,2,0,0,80,1519001,0,0,0,0,0,1,0,0,0,0,0,0,0,"Noggle Ficklespragg - On Data 2 Set - Run Script 2 (Phase 1)"),
(15190,0,3,0,20,1,100,0,8282,0,0,0,80,1519002,0,0,0,0,0,1,0,0,0,0,0,0,0,"Noggle Ficklespragg - On Quest 'Noggle's Lost Satchel' Finished - Run Script 3 (Phase 1)"),
(1519000,9,0,0,0,0,100,0,0,0,0,0,22,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Noggle Ficklespragg - On Script 1 - Set Event Phase 0"),
(1519000,9,1,0,0,0,100,0,0,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Noggle Ficklespragg - On Script 1 - Say Line 2"),
(1519000,9,2,0,0,0,100,0,0,0,0,0,91,7,0,0,0,0,0,1,0,0,0,0,0,0,0,"Noggle Ficklespragg - On Script 1 - Remove Flag Standstate Dead"),
(1519000,9,3,0,0,0,100,0,0,0,0,0,17,64,0,0,0,0,0,1,0,0,0,0,0,0,0,"Noggle Ficklespragg - On Script 1 - Set Emote State Stun"),
(1519000,9,4,0,0,0,100,0,5000,5000,0,0,17,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Noggle Ficklespragg - On Script 1 - Set Emote State None"),
(1519000,9,5,0,0,0,100,0,0,0,0,0,90,7,0,0,0,0,0,1,0,0,0,0,0,0,0,"Noggle Ficklespragg - On Script 1 - Set Flag Standstate Dead"),
(1519000,9,6,0,0,0,100,0,0,0,0,0,22,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Noggle Ficklespragg - On Script 1 - Set Event Phase 1"),
(1519001,9,0,0,0,0,100,0,0,0,0,0,22,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Noggle Ficklespragg - On Script 2 - Set Event Phase 0"),
(1519001,9,1,0,0,0,100,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Noggle Ficklespragg - On Script 2 - Say Line 0"),
(1519001,9,2,0,0,0,100,0,0,0,0,0,91,7,0,0,0,0,0,1,0,0,0,0,0,0,0,"Noggle Ficklespragg - On Script 2 - Remove Flag Standstate Dead"),
(1519001,9,3,0,0,0,100,0,0,0,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,"Noggle Ficklespragg - On Script 2 - Play Emote Cheer"),
(1519001,9,4,0,0,0,100,0,10000,10000,0,0,90,7,0,0,0,0,0,1,0,0,0,0,0,0,0,"Noggle Ficklespragg - On Script 2 - Set Flag Standstate Dead"),
(1519001,9,5,0,0,0,100,0,0,0,0,0,22,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Noggle Ficklespragg - On Script 2 - Set Event Phase 1"),
(1519002,9,0,0,0,0,100,0,0,0,0,0,22,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Noggle Ficklespragg - On Script 3 - Set Event Phase 0"),
(1519002,9,1,0,0,0,100,0,0,0,0,0,91,7,0,0,0,0,0,1,0,0,0,0,0,0,0,"Noggle Ficklespragg - On Script 3 - Remove Flag Standstate Dead"),
(1519002,9,2,0,0,0,100,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Noggle Ficklespragg - On Script 1 - Say Line 3"),
(1519002,9,3,0,0,0,100,0,0,0,0,0,90,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Noggle Ficklespragg - On Script 3 - Set Flag Standstate Sit"),
(1519002,9,4,0,0,0,100,0,10000,10000,0,0,91,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Noggle Ficklespragg - On Script 3 - Remove Flag Standstate Sit"),
(1519002,9,5,0,0,0,100,0,1000,1000,0,0,90,7,0,0,0,0,0,1,0,0,0,0,0,0,0,"Noggle Ficklespragg - On Script 3 - Set Flag Standstate Dead"),
(1519002,9,6,0,0,0,100,0,0,0,0,0,22,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Noggle Ficklespragg - On Script 3 - Set Event Phase 1");
UPDATE `smart_scripts` SET `event_param3`=6000,`event_param4`=8000, `action_param2`=0 WHERE `entryorguid`=11319 AND `source_type`=0 AND `id`=0;
@@ -1,22 +0,0 @@
--
-- DELETE FROM `gossip_menu_option` WHERE `MenuID` IN (7582,7583,7585);
-- INSERT INTO `gossip_menu_option` (`MenuID`, `OptionID`, `OptionIcon`, `OptionText`, `OptionBroadcastTextID`, `OptionType`, `OptionNpcFlag`, `ActionMenuID`, `ActionPoiID`, `BoxCoded`, `BoxMoney`, `BoxText`, `BoxBroadcastTextID`, `VerifiedBuild`) VALUES
-- (7582,0,0,'Greetings, elder. It is time for your people to end their hostility toward the draenei and their allies.',14872,1,3,7583,0,0,0,'',0,-1),
-- (7583,0,0,'I did not mean to deceive you, elder. The draenei of Telredor thought to approach you in a way that would be familiar to you.',14874,1,3,7585,0,0,0,'',0,-1),
-- (7585,0,0,'I will tell them. Farewell, elder.',14879,1,3,7586,0,0,0,'',0,-1);
-- update existing entries
UPDATE `gossip_menu_option` SET `OptionType`=1, `OptionNpcFlag`=3 WHERE `MenuId`=7582 AND `OptionIndex`=0;
UPDATE `gossip_menu_option` SET `OptionType`=1, `OptionNpcFlag`=3 WHERE `MenuId`=7583 AND `OptionIndex`=0;
UPDATE `gossip_menu_option` SET `OptionType`=1, `OptionNpcFlag`=3 WHERE `MenuId`=7585 AND `OptionIndex`=0;
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` = 18197;
DELETE FROM `smart_scripts` WHERE (source_type = 0 AND entryorguid = 18197);
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(18197, 0, 0, 0, 62, 0, 100, 0, 7585, 0, 0, 0, 11, 32152, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Elder Kuruti - On Gossip Option 0 Selected - Add \'Elder Kuruti\'s Response\'');
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 15 AND `SourceGroup` = 7582;
INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES
(15,7582,0,0,1,8,0,9803,0,0,1,0,'','Elder Kuruti - Show Gossip Option 0 if Quest 9803 is not rewarded'),
(15,7582,0,0,1,9,0,9803,0,0,0,0,'','Elder Kuruti - Show Gossip Option 0 if Quest 9803 is taken'),
(15,7582,0,0,1,2,0,24573,1,0,1,0,'','Elder Kuruti - Show Gossip Option 0 if player does not have item 24573 in inventory');
@@ -1,2 +0,0 @@
ALTER TABLE `gameobject_template` ADD `ContentTuningId` int(11) NOT NULL DEFAULT '0' AFTER `Data33`;
ALTER TABLE `gameobject_template` DROP `RequiredLevel`;
@@ -1,6 +0,0 @@
ALTER TABLE `quest_template`
CHANGE COLUMN `RewardFactionCapIn1` `RewardFactionCapIn1` INT(10) NOT NULL DEFAULT '0' AFTER `RewardFactionOverride1`,
CHANGE COLUMN `RewardFactionCapIn2` `RewardFactionCapIn2` INT(10) NOT NULL DEFAULT '0' AFTER `RewardFactionOverride2`,
CHANGE COLUMN `RewardFactionCapIn3` `RewardFactionCapIn3` INT(10) NOT NULL DEFAULT '0' AFTER `RewardFactionOverride3`,
CHANGE COLUMN `RewardFactionCapIn4` `RewardFactionCapIn4` INT(10) NOT NULL DEFAULT '0' AFTER `RewardFactionOverride4`,
CHANGE COLUMN `RewardFactionCapIn5` `RewardFactionCapIn5` INT(10) NOT NULL DEFAULT '0' AFTER `RewardFactionOverride5`;
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,457 +0,0 @@
DELETE FROM `gameobject_template` WHERE `entry`=268813;
INSERT INTO `gameobject_template` (`entry`, `type`, `displayId`, `name`, `IconName`, `castBarCaption`, `unk1`, `size`, `Data0`, `Data1`, `Data2`, `Data3`, `Data4`, `Data5`, `Data6`, `Data7`, `Data8`, `Data9`, `Data10`, `Data11`, `Data12`, `Data13`, `Data14`, `Data15`, `Data16`, `Data17`, `Data18`, `Data19`, `Data20`, `Data21`, `Data22`, `Data23`, `Data24`, `Data25`, `Data26`, `Data27`, `Data28`, `Data29`, `Data30`, `Data31`, `Data32`, `Data33`, `ContentTuningId`, `VerifiedBuild`) VALUES
(268813, 3, 41590, 'Moon Lily', 'questinteract', 'Collecting', '', 0.5, 2173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19676, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72325, 1, 0, 0, 0, 27377); -- Moon Lily
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=216150; -- Horde Supply Crate
UPDATE `gameobject_template` SET `Data6`=0, `Data26`=1, `VerifiedBuild`=27377 WHERE `entry`=215870; -- Frog Island
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=216322; -- Bounty Board
UPDATE `gameobject_template` SET `Data6`=0, `Data26`=1, `VerifiedBuild`=27377 WHERE `entry`=216177; -- Domination Point Lumber
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=216178; -- Energized Iron
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=216176; -- "Distilled" Fuel
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=216149; -- Beastmaster Pit - Horde - Crane Cage
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=216148; -- Beastmaster Pit - Horde - Crab Cage
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=216147; -- Beastmaster Pit - Horde - Tiger Cage
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=216419; -- Undisturbed Soil
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=214966; -- Water Bucket
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=216357; -- Doodad_PA_Alliance_Arena_Gate002
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=216358; -- Doodad_PA_Alliance_Arena_Gate001
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=216354; -- Doodad_PA_Alliance_Arena_Gate005
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=216356; -- Doodad_PA_Alliance_Arena_Gate003
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=216355; -- Doodad_PA_Alliance_Arena_Gate004
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=216359; -- Doodad_PA_Alliance_Arena_Gate006
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=216874; -- Alliance Flag
UPDATE `gameobject_template` SET `Data7`=1, `VerifiedBuild`=27377 WHERE `entry`=216680; -- Night Elf Crate
UPDATE `gameobject_template` SET `Data7`=1, `VerifiedBuild`=27377 WHERE `entry`=216681; -- Stormwind Crate
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=216671; -- Root Barricade 2
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=216670; -- Root Barricade
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=216609; -- Flare Launcher
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=216781; -- Alliance Wagon 01
UPDATE `gameobject_template` SET `Data1`=0, `Data2`=1, `Data30`=41232, `VerifiedBuild`=27377 WHERE `entry`=210228; -- Jar of Pigment
UPDATE `gameobject_template` SET `Data1`=0, `Data2`=1, `Data30`=43146, `VerifiedBuild`=27377 WHERE `entry`=214394; -- Ancient Guo-Lai Artifact
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213852; -- Bonfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211719; -- Violet Citron
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211721; -- Violet Citron
UPDATE `gameobject_template` SET `Data1`=0, `Data18`=680, `Data26`=81040, `Data30`=42929, `VerifiedBuild`=27377 WHERE `entry`=213844; -- Amber Encased Moth
UPDATE `gameobject_template` SET `Data7`=5793, `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=215856; -- Mazu's Bounty
UPDATE `gameobject_template` SET `Data7`=5793, `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=215857; -- Mazu's Bounty
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=213071; -- Empty Crab Pot
UPDATE `gameobject_template` SET `Data7`=5793, `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=213031; -- Ancient Amber Chunk
UPDATE `gameobject_template` SET `IconName`='interact', `Data10`=121922, `Data22`=17099, `Data23`=1, `Data26`=1, `VerifiedBuild`=27377 WHERE `entry`=212980; -- Ancient Amber Chunk
UPDATE `gameobject_template` SET `Data1`=0, `Data4`=1, `Data5`=1, `Data18`=680, `Data19`=8, `Data26`=81040, `Data30`=42946, `VerifiedBuild`=27377 WHERE `entry`=213970; -- Bloodsoaked Chitin Fragment
UPDATE `gameobject_template` SET `name`='Bonfire', `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=212906; -- Doodad_bonfirenorthrend_001
UPDATE `gameobject_template` SET `Data6`=1, `VerifiedBuild`=27377 WHERE `entry`=212794; -- Dreadbrew
UPDATE `gameobject_template` SET `name`='Brazier', `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213874; -- Doodad_mantid_brazier009
UPDATE `gameobject_template` SET `name`='Brazier', `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213875; -- Doodad_mantid_brazier010
UPDATE `gameobject_template` SET `name`='Brazier', `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213870; -- Doodad_mantid_brazier005
UPDATE `gameobject_template` SET `name`='Brazier', `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213871; -- Doodad_mantid_brazier006
UPDATE `gameobject_template` SET `castBarCaption`='Recovering', `Data14`=55091, `VerifiedBuild`=27377 WHERE `entry`=212556; -- Lost Picnic Supplies
UPDATE `gameobject_template` SET `castBarCaption`='Recovering', `Data14`=55091, `VerifiedBuild`=27377 WHERE `entry`=212555; -- Lost Picnic Supplies
UPDATE `gameobject_template` SET `castBarCaption`='Recovering', `Data14`=55091, `VerifiedBuild`=27377 WHERE `entry`=212554; -- Lost Picnic Supplies
UPDATE `gameobject_template` SET `castBarCaption`='Recovering', `Data1`=0, `Data2`=1, `Data14`=55091, `Data30`=42660, `VerifiedBuild`=27377 WHERE `entry`=212553; -- Lost Picnic Supplies
UPDATE `gameobject_template` SET `castBarCaption`='Recovering', `Data1`=0, `Data2`=1, `Data14`=55091, `Data30`=42660, `VerifiedBuild`=27377 WHERE `entry`=212552; -- Lost Picnic Supplies
UPDATE `gameobject_template` SET `castBarCaption`='Recovering', `Data1`=0, `Data2`=1, `Data14`=55091, `Data30`=42658, `VerifiedBuild`=27377 WHERE `entry`=212540; -- Lost Keg
UPDATE `gameobject_template` SET `castBarCaption`='Recovering', `Data14`=55091, `VerifiedBuild`=27377 WHERE `entry`=212551; -- Lost Mug
UPDATE `gameobject_template` SET `castBarCaption`='Recovering', `Data14`=55091, `VerifiedBuild`=27377 WHERE `entry`=212550; -- Lost Mug
UPDATE `gameobject_template` SET `castBarCaption`='Recovering', `Data14`=55091, `VerifiedBuild`=27377 WHERE `entry`=212549; -- Lost Mug
UPDATE `gameobject_template` SET `castBarCaption`='Recovering', `Data14`=55091, `VerifiedBuild`=27377 WHERE `entry`=212548; -- Lost Mug
UPDATE `gameobject_template` SET `castBarCaption`='Recovering', `Data14`=55091, `VerifiedBuild`=27377 WHERE `entry`=212547; -- Lost Mug
UPDATE `gameobject_template` SET `castBarCaption`='Recovering', `Data14`=55091, `VerifiedBuild`=27377 WHERE `entry`=212546; -- Lost Mug
UPDATE `gameobject_template` SET `castBarCaption`='Recovering', `Data14`=55091, `VerifiedBuild`=27377 WHERE `entry`=212545; -- Lost Mug
UPDATE `gameobject_template` SET `castBarCaption`='Recovering', `Data14`=55091, `VerifiedBuild`=27377 WHERE `entry`=212544; -- Lost Mug
UPDATE `gameobject_template` SET `castBarCaption`='Recovering', `Data14`=55091, `VerifiedBuild`=27377 WHERE `entry`=212543; -- Lost Mug
UPDATE `gameobject_template` SET `castBarCaption`='Recovering', `Data14`=55091, `VerifiedBuild`=27377 WHERE `entry`=212542; -- Lost Mug
UPDATE `gameobject_template` SET `castBarCaption`='Recovering', `Data14`=55091, `VerifiedBuild`=27377 WHERE `entry`=212541; -- Lost Mug
UPDATE `gameobject_template` SET `Data8`=1, `VerifiedBuild`=27377 WHERE `entry`=212389; -- Scroll of Auspice
UPDATE `gameobject_template` SET `Data1`=0, `Data4`=1, `Data5`=1, `Data18`=680, `Data19`=8, `Data26`=81040, `Data30`=42944, `VerifiedBuild`=27377 WHERE `entry`=213968; -- Swarming Cleaver of Ka'roz
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=216360; -- Untamed Amber
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213249; -- Sha Effect
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=212104; -- Crocolisk Eggs
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=212099; -- Crocolisk Eggs
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=212105; -- Crocolisk Eggs
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=212100; -- Crocolisk Eggs
UPDATE `gameobject_template` SET `Data7`=5793, `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=212915; -- Ancient Amber Chunk
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213410; -- Mantid Society
UPDATE `gameobject_template` SET `Data6`=0, `Data26`=1, `VerifiedBuild`=27377 WHERE `entry`=212933; -- Sonar Tower
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=212046; -- Bonfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=212045; -- Bonfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=212044; -- Bonfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=212043; -- Bonfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213329; -- The Deserters
UPDATE `gameobject_template` SET `Data1`=0, `Data6`=0, `Data18`=680, `Data26`=81040, `Data30`=42947, `VerifiedBuild`=27377 WHERE `entry`=213971; -- Swarmkeeper's Medallion
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213887; -- Bonfire
UPDATE `gameobject_template` SET `Data1`=0, `Data2`=1, `Data30`=42850, `VerifiedBuild`=27377 WHERE `entry`=213454; -- Soggy's Footlocker
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=212987; -- Spiny Starfish
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=212988; -- Spiny Starfish
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=214614; -- Bonfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=214062; -- Glowing Amber
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213885; -- Bonfire
UPDATE `gameobject_template` SET `Data1`=0, `Data4`=1, `Data5`=1, `Data18`=680, `Data19`=8, `Data26`=81040, `Data30`=42945, `VerifiedBuild`=27377 WHERE `entry`=213969; -- Dissector's Staff of Mutation
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213444; -- Undisturbed Soil
UPDATE `gameobject_template` SET `IconName`='questinteract', `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=212923; -- Amber Collector
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213973; -- Klaxxi Sonic Relay
UPDATE `gameobject_template` SET `name`='Brazier', `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213877; -- Doodad_mantid_brazier012
UPDATE `gameobject_template` SET `name`='Brazier', `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213876; -- Doodad_mantid_brazier011
UPDATE `gameobject_template` SET `name`='Brazier', `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213879; -- Doodad_mantid_brazier014
UPDATE `gameobject_template` SET `name`='Brazier', `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213878; -- Doodad_mantid_brazier013
UPDATE `gameobject_template` SET `name`='Brazier', `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213872; -- Doodad_mantid_brazier007
UPDATE `gameobject_template` SET `name`='Brazier', `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213873; -- Doodad_mantid_brazier008
UPDATE `gameobject_template` SET `Data1`=0, `Data18`=680, `Data26`=81040, `Data30`=42948, `VerifiedBuild`=27377 WHERE `entry`=213972; -- Blade of the Poisoned Mind
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213267; -- Dreadshade
UPDATE `gameobject_template` SET `Data1`=0, `Data2`=1, `Data6`=0, `Data30`=42707, `VerifiedBuild`=27377 WHERE `entry`=212902; -- Solidified Amber
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=214630; -- Brazier
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=214631; -- Brazier
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=214641; -- Door
UPDATE `gameobject_template` SET `Data1`=0, `Data6`=0, `Data18`=680, `Data26`=81040, `Data30`=42942, `VerifiedBuild`=27377 WHERE `entry`=213966; -- Amber Encased Necklace
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213412; -- The Empress
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=215459; -- Doodad_Mantid_Amber_Door001
UPDATE `gameobject_template` SET `Data6`=0, `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=212738; -- Enormous Landslide
UPDATE `gameobject_template` SET `Data6`=0, `Data26`=1, `VerifiedBuild`=27377 WHERE `entry`=215762; -- Central Feeder
UPDATE `gameobject_template` SET `Data6`=0, `Data26`=1, `VerifiedBuild`=27377 WHERE `entry`=215700; -- Northeast Feeder
UPDATE `gameobject_template` SET `Data1`=0, `Data18`=680, `Data26`=81040, `Data30`=42941, `VerifiedBuild`=27377 WHERE `entry`=213964; -- Malik's Stalwart Spear
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=214978; -- Meeting Stone
UPDATE `gameobject_template` SET `type`=50, `Data0`=2867, `Data3`=0, `Data4`=75, `Data5`=75, `Data6`=30, `Data12`=680, `Data13`=1, `Data18`=10, `Data19`=0, `Data23`=0, `Data24`=0, `VerifiedBuild`=27377 WHERE `entry`=209329; -- Rich Kyparite Deposit
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=214292; -- Kunchong Cage
UPDATE `gameobject_template` SET `Data6`=0, `Data8`=1, `Data10`=1, `VerifiedBuild`=27377 WHERE `entry`=214442; -- Instance Portal (Raid 4 Difficulties)
UPDATE `gameobject_template` SET `Data5`=18126, `Data6`=1, `VerifiedBuild`=27377 WHERE `entry`=214674; -- Ancient Amber Chunk
UPDATE `gameobject_template` SET `Data4`=1, `Data5`=17715, `Data6`=1, `VerifiedBuild`=27377 WHERE `entry`=212524; -- Inactive Sonic Relay
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=214640; -- Brazier
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=214639; -- Brazier
UPDATE `gameobject_template` SET `Data10`=124718, `Data13`=1, `Data22`=18127, `Data23`=1, `VerifiedBuild`=27377 WHERE `entry`=213250; -- Silent Beacon
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=214511; -- Broken Amber
UPDATE `gameobject_template` SET `Data7`=5793, `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=212869; -- Ancient Amber Chunk
UPDATE `gameobject_template` SET `Data1`=0, `Data6`=0, `Data18`=680, `Data26`=81040, `Data30`=42949, `VerifiedBuild`=27377 WHERE `entry`=213962; -- Wind-Reaver's Dagger of Quick Strikes
UPDATE `gameobject_template` SET `Data5`=16720, `Data6`=1, `VerifiedBuild`=27377 WHERE `entry`=212868; -- Ancient Amber Chunk
UPDATE `gameobject_template` SET `castBarCaption`='Collecting', `VerifiedBuild`=27377 WHERE `entry`=212230; -- Shiny Egg
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213585; -- Shan'ze Cage
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213584; -- Shan'ze Cage
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=214480; -- Shiny Egg
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213583; -- Shan'ze Cage
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213591; -- Shan'ze Cage
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213587; -- Shan'ze Cage
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213586; -- Shan'ze Cage
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213582; -- Shan'ze Cage
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213588; -- Shan'ze Cage
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213590; -- Shan'ze Cage
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213589; -- Shan'ze Cage
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213581; -- Shan'ze Cage
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213580; -- Shan'ze Cage
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213579; -- Shan'ze Cage
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213578; -- Shan'ze Cage
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213577; -- Shan'ze Cage
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213574; -- Shan'ze Cage
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213576; -- Shan'ze Cage
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213575; -- Shan'ze Cage
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213573; -- Shan'ze Cage
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213572; -- Shan'ze Cage
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213571; -- Shan'ze Cage
UPDATE `gameobject_template` SET `castBarCaption`='Placing', `VerifiedBuild`=27377 WHERE `entry`=213305; -- Sra'thik Idol
UPDATE `gameobject_template` SET `Data1`=0, `Data18`=680, `Data26`=81040, `Data30`=42936, `VerifiedBuild`=27377 WHERE `entry`=213956; -- Fragment of Dread
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=211680; -- Kri'thik Supplies
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=214756; -- Totemfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=214758; -- Totemfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=212779; -- Defiled Yaungol Remains
UPDATE `gameobject_template` SET `Data1`=0, `Data18`=680, `Data26`=81040, `Data30`=42937, `VerifiedBuild`=27377 WHERE `entry`=213959; -- Hardened Sap of Kri'vess
UPDATE `gameobject_template` SET `Data4`=1, `VerifiedBuild`=27377 WHERE `entry`=218932; -- Teleport Visual
UPDATE `gameobject_template` SET `Data4`=1, `Data6`=1, `VerifiedBuild`=27377 WHERE `entry`=218837; -- Teleport to Za'Tual
UPDATE `gameobject_template` SET `Data4`=1, `VerifiedBuild`=27377 WHERE `entry`=218416; -- Rope Ladder
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=218849; -- IoTTK - Mini Sunwell
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=218730; -- Mogu Door
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=218744; -- The Swollen Vault
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=218728; -- Mogu Door
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=218698; -- Mogu Door
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=218697; -- Mogu Door
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=218696; -- Mogu Door
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=218628; -- Mogu Door
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=218717; -- Mogu Door
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=218729; -- Mogu Door
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213846; -- Campfire
UPDATE `gameobject_template` SET `type`=50, `Data0`=2867, `Data3`=0, `Data4`=75, `Data5`=75, `Data6`=30, `Data12`=680, `Data13`=1, `Data18`=10, `Data19`=0, `Data23`=0, `Data24`=0, `VerifiedBuild`=27377 WHERE `entry`=209329; -- Rich Kyparite Deposit
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=212538; -- Wu Kao Spyglass
UPDATE `gameobject_template` SET `Data5`=1, `Data10`=129048, `Data23`=1, `VerifiedBuild`=27377 WHERE `entry`=214848; -- Tasty Brew
UPDATE `gameobject_template` SET `Data1`=0, `Data2`=1, `Data6`=0, `Data30`=42510, `VerifiedBuild`=27377 WHERE `entry`=212134; -- Shado-Pan Crossbow Bolt Bundle
UPDATE `gameobject_template` SET `Data8`=0, `Data9`=1, `VerifiedBuild`=27377 WHERE `entry`=212322; -- Sik'vess Door
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=214641; -- Door
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=215459; -- Doodad_Mantid_Amber_Door001
UPDATE `gameobject_template` SET `Data1`=0, `Data18`=680, `Data26`=81040, `Data30`=42929, `VerifiedBuild`=27377 WHERE `entry`=213844; -- Amber Encased Moth
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211687; -- Shado-pan Spike Trap
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211719; -- Violet Citron
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211721; -- Violet Citron
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213852; -- Bonfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=214973; -- Brazier
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=214972; -- Brazier
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=214970; -- Brazier
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=214971; -- Brazier
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211507; -- Pitch Pot
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211506; -- Pitch Pot
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211553; -- Drywood Cage
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=214749; -- Totemfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=214748; -- Totemfire
UPDATE `gameobject_template` SET `Data26`=1, `VerifiedBuild`=27377 WHERE `entry`=215594; -- Yaungol Pile
UPDATE `gameobject_template` SET `Data4`=1, `Data5`=3, `VerifiedBuild`=27377 WHERE `entry`=211560; -- Slippery Banana
UPDATE `gameobject_template` SET `Data6`=0, `Data26`=1, `VerifiedBuild`=27377 WHERE `entry`=211365; -- Ball and Chain
UPDATE `gameobject_template` SET `Data1`=0, `Data4`=1, `Data5`=1, `Data17`=17801, `Data18`=680, `Data19`=6, `Data26`=81040, `Data30`=42913, `VerifiedBuild`=27377 WHERE `entry`=213769; -- Hozen Treasure Cache
UPDATE `gameobject_template` SET `Data10`=115261, `Data22`=15766, `Data23`=1, `VerifiedBuild`=27377 WHERE `entry`=211276; -- Tak Tak's Altar
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=210930; -- Broken Monkey Idol
UPDATE `gameobject_template` SET `castBarCaption`='Destroying', `Data10`=115208, `Data14`=24585, `Data22`=15767, `Data23`=1, `VerifiedBuild`=27377 WHERE `entry`=210931; -- Dak Dak's Altar
UPDATE `gameobject_template` SET `Data10`=115260, `Data22`=15768, `Data23`=1, `VerifiedBuild`=27377 WHERE `entry`=211275; -- Ko Ko's Altar
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211686; -- Grummle Gear
UPDATE `gameobject_template` SET `Data4`=1, `Data5`=1, `Data17`=18778, `Data18`=680, `Data19`=1, `Data26`=130453, `VerifiedBuild`=27377 WHERE `entry`=214407; -- Mo-Mo's Treasure Chest
UPDATE `gameobject_template` SET `Data10`=115512, `Data22`=15815, `Data23`=1, `VerifiedBuild`=27377 WHERE `entry`=211307; -- Grummle Cage
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211361; -- Campfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211346; -- Four Winds Flour
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211345; -- Townlong Spices
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211344; -- Kun-Lai Wool
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211342; -- Jade Forest Rice
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211559; -- Treasure Sack
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=216414; -- Mogu Crypt Door
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=212506; -- Campfire
UPDATE `gameobject_template` SET `Data1`=0, `Data17`=17802, `Data18`=680, `Data26`=81040, `Data30`=42914, `VerifiedBuild`=27377 WHERE `entry`=213770; -- Stolen Sprite Treasure
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211269; -- Stolen Supplies
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211270; -- Stolen Supplies
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211268; -- Stolen Supplies
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211266; -- Stolen Supplies
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211568; -- Snow Lily Incense
UPDATE `gameobject_template` SET `Data1`=0, `Data6`=0, `Data18`=680, `Data26`=81040, `Data30`=42927, `VerifiedBuild`=27377 WHERE `entry`=213842; -- Stash of Yaungol Weapons
UPDATE `gameobject_template` SET `Data26`=1, `VerifiedBuild`=27377 WHERE `entry`=186459; -- Stratholme Fire Medium
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=211327; -- Fire Shield Collision Wall
UPDATE `gameobject_template` SET `Data18`=680, `VerifiedBuild`=27377 WHERE `entry`=213782; -- Terracotta Head
UPDATE `gameobject_template` SET `Data1`=0, `Data18`=680, `Data26`=81040, `Data30`=42910, `VerifiedBuild`=27377 WHERE `entry`=213751; -- Sprite's Cloth Chest
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=210915; -- Entrance
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=212506; -- Campfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211559; -- Treasure Sack
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211344; -- Kun-Lai Wool
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211361; -- Campfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211346; -- Four Winds Flour
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211345; -- Townlong Spices
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211342; -- Jade Forest Rice
UPDATE `gameobject_template` SET `Data1`=0, `Data6`=0, `Data18`=680, `Data26`=81040, `Data30`=42911, `VerifiedBuild`=27377 WHERE `entry`=213765; -- Tablet of Ren Yun
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213438; -- Ren Yun the Blind
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211602; -- Shrine of the Seeker's Heart
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211598; -- Cho's Campfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=215797; -- The Emperor's Burden - Part 2
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211601; -- Shrine of the Seeker's Breath
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211597; -- Shrine of the Seeker's Body
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211541; -- Bird of Prey Nest
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=212971; -- Anvil
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=212970; -- Forge
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=212859; -- Meeting Stone
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213803; -- Campfire
UPDATE `gameobject_template` SET `Data8`=30751, `VerifiedBuild`=27377 WHERE `entry`=212003; -- Yaungol Oil Barrel
UPDATE `gameobject_template` SET `Data26`=1, `VerifiedBuild`=27377 WHERE `entry`=215594; -- Yaungol Pile
UPDATE `gameobject_template` SET `Data26`=1, `VerifiedBuild`=27377 WHERE `entry`=186459; -- Stratholme Fire Medium
UPDATE `gameobject_template` SET `Data4`=1, `Data7`=1, `Data14`=1, `VerifiedBuild`=27377 WHERE `entry`=211671; -- Blinding Rage Trap
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211686; -- Grummle Gear
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211568; -- Snow Lily Incense
UPDATE `gameobject_template` SET `Data1`=0, `Data4`=1, `Data5`=1, `Data17`=17805, `Data18`=680, `Data19`=8, `Data26`=81040, `Data30`=42917, `VerifiedBuild`=27377 WHERE `entry`=213774; -- Lost Adventurer's Belongings
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27366 WHERE `entry`=216360; -- Untamed Amber
UPDATE `gameobject_template` SET `Data6`=1, `VerifiedBuild`=27366 WHERE `entry`=215888; -- The Attack on Stoneplow
UPDATE `gameobject_template` SET `Data6`=0, `Data26`=1, `VerifiedBuild`=27366 WHERE `entry`=211445; -- Spare Raft
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27366 WHERE `entry`=213322; -- Campfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27366 WHERE `entry`=213320; -- Campfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27366 WHERE `entry`=213321; -- Campfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27366 WHERE `entry`=211993; -- Hozen Maturity
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27366 WHERE `entry`=211420; -- Lump of Sand
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27366 WHERE `entry`=213323; -- Bonfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27366 WHERE `entry`=213324; -- Bonfire
UPDATE `gameobject_template` SET `Data6`=0, `Data26`=1, `VerifiedBuild`=27366 WHERE `entry`=211392; -- Your Raft
UPDATE `gameobject_template` SET `Data6`=0, `Data26`=1, `VerifiedBuild`=27366 WHERE `entry`=215870; -- Frog Island
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27366 WHERE `entry`=216274; -- Signal Fire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27366 WHERE `entry`=216162; -- Mound of Dirt
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27366 WHERE `entry`=216275; -- Signal Fire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27366 WHERE `entry`=213332; -- The Lost Dynasty
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27366 WHERE `entry`=216307; -- Campfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27366 WHERE `entry`=214966; -- Water Bucket
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27366 WHERE `entry`=214842; -- Ancient Rune of Striking
UPDATE `gameobject_template` SET `castBarCaption`='Collecting', `Data11`=1, `Data14`=19676, `VerifiedBuild`=27366 WHERE `entry`=210229; -- Water of Youth
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27366 WHERE `entry`=214966; -- Water Bucket
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27366 WHERE `entry`=213332; -- The Lost Dynasty
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27366 WHERE `entry`=214842; -- Ancient Rune of Striking
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27366 WHERE `entry`=216781; -- Alliance Wagon 01
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27356 WHERE `entry`=214361; -- Rocks
UPDATE `gameobject_template` SET `Data1`=0, `Data18`=680, `Data26`=81040, `Data30`=42909, `VerifiedBuild`=27356 WHERE `entry`=213750; -- Saurok Stone Tablet
UPDATE `gameobject_template` SET `Data1`=0, `Data2`=1, `Data30`=41232, `VerifiedBuild`=27356 WHERE `entry`=210228; -- Jar of Pigment
UPDATE `gameobject_template` SET `Data1`=0, `Data2`=1, `Data30`=43905, `VerifiedBuild`=27356 WHERE `entry`=215319; -- Rancher's Lariat
UPDATE `gameobject_template` SET `Data1`=0, `Data18`=680, `Data26`=81040, `Data30`=42930, `VerifiedBuild`=27356 WHERE `entry`=213845; -- The Hammer of Folly
UPDATE `gameobject_template` SET `Data26`=1, `VerifiedBuild`=27377 WHERE `entry`=215594; -- Yaungol Pile
UPDATE `gameobject_template` SET `Data26`=1, `VerifiedBuild`=27377 WHERE `entry`=186459; -- Stratholme Fire Medium
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=220069; -- Mailbox
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=214973; -- Brazier
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=214972; -- Brazier
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=214970; -- Brazier
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=214971; -- Brazier
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211541; -- Bird of Prey Nest
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=211549; -- Pandaren Gravestone
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=211548; -- Pandaren Gravestone
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=211547; -- Pandaren Gravestone
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=211550; -- Pandaren Gravestone
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=211551; -- Pandaren Gravestone
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=211552; -- Pandaren Gravestone
UPDATE `gameobject_template` SET `Data10`=120362, `Data23`=1, `Data26`=1, `VerifiedBuild`=27377 WHERE `entry`=211545; -- Incense of Life
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=211544; -- Pandaren Gravestone
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=211543; -- Pandaren Gravestone
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=211542; -- Pandaren Gravestone
UPDATE `gameobject_template` SET `Data22`=54153, `VerifiedBuild`=27377 WHERE `entry`=214171; -- Zandalari Voodoo Cauldron
UPDATE `gameobject_template` SET `castBarCaption`='Disturbing', `Data10`=126331, `Data14`=22339, `Data22`=54153, `VerifiedBuild`=27377 WHERE `entry`=214172; -- Zandalari Voodoo Cauldron
UPDATE `gameobject_template` SET `castBarCaption`='Disturbing', `Data10`=126357, `Data14`=22339, `Data22`=54153, `VerifiedBuild`=27377 WHERE `entry`=214174; -- Zandalari Voodoo Cauldron
UPDATE `gameobject_template` SET `Data22`=54153, `VerifiedBuild`=27377 WHERE `entry`=214173; -- Zandalari Voodoo Cauldron
UPDATE `gameobject_template` SET `Data1`=0, `Data4`=1, `Data5`=1, `Data18`=680, `Data19`=8, `Data26`=81040, `Data30`=42916, `VerifiedBuild`=27377 WHERE `entry`=213771; -- Statue of Xuen
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211999; -- Campfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213301; -- Cannonball Stack
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=212000; -- Campfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211998; -- Campfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211996; -- Campfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211997; -- Campfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=212002; -- Campfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=212001; -- Campfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211521; -- Blackmane Booty Barrel
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=212500; -- Bonfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=212489; -- Cauldron
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=212503; -- Cauldron
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=212499; -- Bonfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211684; -- Volatile Blooms
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=214572; -- Tablet of Thunder
UPDATE `gameobject_template` SET `Data6`=0, `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=214459; -- Mogu Crypt Doors (phased/open)
UPDATE `gameobject_template` SET `IconName`='inspect', `VerifiedBuild`=27377 WHERE `entry`=214830; -- Tablet of Thunder - scene object
UPDATE `gameobject_template` SET `IconName`='inspect', `Data4`=1, `Data5`=16590, `Data6`=1, `VerifiedBuild`=27377 WHERE `entry`=211594; -- Tablet of Thunder
UPDATE `gameobject_template` SET `IconName`='inspect', `VerifiedBuild`=27377 WHERE `entry`=212075; -- Tablet of Thunder
UPDATE `gameobject_template` SET `Data10`=81040, `Data22`=16587, `VerifiedBuild`=27377 WHERE `entry`=211968; -- Top Fragment of Lei Shen's Tablet
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27377 WHERE `entry`=216414; -- Mogu Crypt Door
UPDATE `gameobject_template` SET `Data1`=0, `Data18`=680, `Data26`=81040, `Data30`=42920, `VerifiedBuild`=27377 WHERE `entry`=213793; -- Rikktik's Tiny Chest
UPDATE `gameobject_template` SET `Data1`=0, `Data2`=1, `Data6`=0, `Data30`=42315, `VerifiedBuild`=27377 WHERE `entry`=211794; -- Qiang Dynasty Tablet
UPDATE `gameobject_template` SET `IconName`='questinteract', `castBarCaption`='Tearing Page', `Data1`=0, `Data2`=1, `Data8`=30797, `Data14`=62552, `Data17`=16511, `Data30`=42312, `VerifiedBuild`=27377 WHERE `entry`=211780; -- Curious Text
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211268; -- Stolen Supplies
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211270; -- Stolen Supplies
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211266; -- Stolen Supplies
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211269; -- Stolen Supplies
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=213438; -- Ren Yun the Blind
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211598; -- Cho's Campfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=215797; -- The Emperor's Burden - Part 2
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211602; -- Shrine of the Seeker's Heart
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211601; -- Shrine of the Seeker's Breath
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211597; -- Shrine of the Seeker's Body
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211559; -- Treasure Sack
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211361; -- Campfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211346; -- Four Winds Flour
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211342; -- Jade Forest Rice
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211345; -- Townlong Spices
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27377 WHERE `entry`=211344; -- Kun-Lai Wool
UPDATE `gameobject_template` SET `Data1`=0, `Data2`=1, `Data30`=41422, `VerifiedBuild`=27366 WHERE `entry`=210873; -- Yu-Ping Soup Cauldron
UPDATE `gameobject_template` SET `Data10`=111595, `Data23`=1, `VerifiedBuild`=27366 WHERE `entry`=210535; -- Southwest Oubliette Shackle
UPDATE `gameobject_template` SET `Data10`=111595, `Data23`=1, `VerifiedBuild`=27366 WHERE `entry`=210533; -- Northwest Oubliette Shackle
UPDATE `gameobject_template` SET `Data10`=111595, `Data23`=1, `VerifiedBuild`=27366 WHERE `entry`=210527; -- Northeast Oubliette Shackle
UPDATE `gameobject_template` SET `Data1`=0, `Data18`=680, `Data26`=81040, `Data30`=42909, `VerifiedBuild`=27366 WHERE `entry`=213750; -- Saurok Stone Tablet
UPDATE `gameobject_template` SET `Data1`=0, `Data2`=1, `Data30`=41232, `VerifiedBuild`=27366 WHERE `entry`=210228; -- Jar of Pigment
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27366 WHERE `entry`=210191; -- Memorial Flame of Zhu
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27366 WHERE `entry`=210620; -- Ancient Dynastic Tablet
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27366 WHERE `entry`=210618; -- Ancient Dynastic Tablet
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27366 WHERE `entry`=210619; -- Ancient Dynastic Tablet
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27366 WHERE `entry`=209995; -- Broken Stack of Stone Blocks
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27366 WHERE `entry`=209994; -- Broken Stack of Wooden Planks
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27366 WHERE `entry`=209993; -- Broken Stack of Reeds
UPDATE `gameobject_template` SET `Data1`=0, `Data6`=0, `Data18`=680, `Data26`=81040, `Data30`=42908, `VerifiedBuild`=27366 WHERE `entry`=213749; -- Staff of the Hidden Master
UPDATE `gameobject_template` SET `Data1`=0, `Data2`=1, `Data30`=40538, `VerifiedBuild`=27366 WHERE `entry`=209955; -- Hornbill Strider Egg
UPDATE `gameobject_template` SET `Data4`=1, `Data5`=3, `Data10`=1, `VerifiedBuild`=27366 WHERE `entry`=210232; -- Slippery Banana
UPDATE `gameobject_template` SET `Data4`=1, `Data5`=3, `Data7`=2, `Data10`=1, `VerifiedBuild`=27366 WHERE `entry`=210231; -- Tiny Bubble
UPDATE `gameobject_template` SET `Data5`=1, `Data10`=110183, `Data23`=1, `VerifiedBuild`=27366 WHERE `entry`=210230; -- Empty Keg
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=214723; -- Campfire
UPDATE `gameobject_template` SET `Data1`=0, `Data17`=17788, `Data18`=680, `Data26`=81040, `Data30`=42837, `VerifiedBuild`=27326 WHERE `entry`=213368; -- Lucky Pandaren Coin
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=212965; -- Stool
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=212964; -- Stool
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=212190; -- Campfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=212191; -- Campfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=212185; -- Campfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=214791; -- Campfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=215882; -- Doren's Logs
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=212967; -- Stool
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=212966; -- Stool
UPDATE `gameobject_template` SET `Data1`=0, `Data17`=17787, `Data18`=680, `Data26`=81040, `Data30`=42836, `VerifiedBuild`=27326 WHERE `entry`=213366; -- Ancient Pandaren Tea Pot
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=213004; -- Mailbox
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=212288; -- Campfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=212285; -- Campfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=212287; -- Anvil
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=212286; -- Forge
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=209881; -- Dead Deepriver Slicky Corpse
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=209882; -- Dead Deepriver Slicky Corpse (orange)
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=209883; -- Dead Deepriver Slicky Corpse (bones)
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=212693; -- Campfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=211796; -- Campfire
UPDATE `gameobject_template` SET `Data1`=0, `Data6`=0, `Data18`=680, `Data26`=81040, `Data30`=42904, `VerifiedBuild`=27326 WHERE `entry`=213741; -- Ancient Jinyu Staff
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27326 WHERE `entry`=210982; -- Re-Inforced Jinyu Cage
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27326 WHERE `entry`=213085; -- Doodad_PA_EastTemple_DoorLarge001
UPDATE `gameobject_template` SET `castBarCaption`='Collecting', `Data14`=19676, `Data17`=18430, `VerifiedBuild`=27326 WHERE `entry`=214945; -- Onyx Egg
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=210277; -- Slitherscale Weapons
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=210239; -- Serpent Egg
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=210240; -- Serpent Egg
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=210238; -- Serpent Egg
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=214833; -- Crushed Serpent Egg
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=214865; -- Stolen Boots
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=214866; -- Stolen Boots
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=214867; -- Stolen Boots
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=214868; -- Stolen Boots
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=214903; -- The Tan-Chao
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=214902; -- Tidemist Cap Prop
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=211948; -- Campfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=211941; -- Brazier
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=211951; -- Campfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=211943; -- Campfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=211950; -- Campfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=211944; -- Campfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=211942; -- Brazier
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=211939; -- Brazier
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=211940; -- Brazier
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=211938; -- Brazier
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=211952; -- Campfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=211911; -- Campfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=214904; -- Mogu Statue Base 01
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=214905; -- Mogu Statue Ruined
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=211937; -- Brazier
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=211936; -- Brazier
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=211933; -- Brazier
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=211932; -- Brazier
UPDATE `gameobject_template` SET `Data1`=0, `Data2`=1, `Data30`=40463, `VerifiedBuild`=27326 WHERE `entry`=209700; -- Chipped Ritual Bowl
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=211945; -- Campfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=211935; -- Brazier
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=211934; -- Brazier
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=211931; -- Brazier
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=211930; -- Brazier
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=211949; -- Campfire
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=211947; -- Campfire
UPDATE `gameobject_template` SET `Data1`=0, `Data2`=1, `Data30`=40464, `VerifiedBuild`=27326 WHERE `entry`=209701; -- Pungent Ritual Candle
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=213333; -- Spirit Binders
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=211946; -- Campfire
UPDATE `gameobject_template` SET `Data1`=0, `Data2`=1, `Data30`=40465, `VerifiedBuild`=27326 WHERE `entry`=209699; -- Jade Cong
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=211929; -- Brazier
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=211928; -- Brazier
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=211927; -- Brazier
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=214897; -- Remains of Pei-Zhi
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=211926; -- Brazier
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=214890; -- Soul Jar Stand
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=214892; -- Broken Soul Jar
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=214891; -- Big Soul Jar
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=211925; -- Brazier
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=211924; -- Brazier
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27326 WHERE `entry`=211777; -- Jade Mines Rubble (Mann's Man)
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=27326 WHERE `entry`=211775; -- Jade Mines Rubble Hao Mann (Invs 1)
UPDATE `gameobject_template` SET `Data4`=1628, `VerifiedBuild`=27326 WHERE `entry`=218630; -- Large Pool of Glowing Jade Lungfish
UPDATE `gameobject_template` SET `Data4`=1628, `VerifiedBuild`=27326 WHERE `entry`=218629; -- Glowing Jade Lungfish
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=214960; -- Doodad_hz_cage_012
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=214959; -- Doodad_hz_cage_011
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=214958; -- Doodad_hz_cage_010
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=214957; -- Doodad_hz_cage_009
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=214956; -- Doodad_hz_cage_008
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=214954; -- Doodad_hz_cage_006
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=214955; -- Doodad_hz_cage_007
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=214952; -- Doodad_hz_cage_004
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=214951; -- Doodad_hz_cage_003
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=214844; -- Serpent's Scale
UPDATE `gameobject_template` SET `Data6`=0, `VerifiedBuild`=27326 WHERE `entry`=214843; -- Serpent's Scale
UPDATE `gameobject_template` SET `Data18`=680, `VerifiedBuild`=27326 WHERE `entry`=214338; -- Offering of Remembrance
UPDATE `gameobject_template` SET `castBarCaption`='Collecting', `Data1`=0, `Data2`=1, `Data6`=0, `Data14`=19676, `Data17`=16539, `Data30`=42317, `VerifiedBuild`=27326 WHERE `entry`=209582; -- Scroll of Sorrow
UPDATE `gameobject_template` SET `Data8`=0, `Data10`=1, `VerifiedBuild`=27326 WHERE `entry`=210883; -- Basket
UPDATE `gameobject_template` SET `Data8`=0, `Data10`=1, `VerifiedBuild`=27326 WHERE `entry`=210882; -- Bed Roll
UPDATE `gameobject_template` SET `Data10`=105660, `Data13`=1, `Data23`=1, `VerifiedBuild`=27326 WHERE `entry`=213754; -- Potent Dream Brew
UPDATE `gameobject_template` SET `VerifiedBuild`=27377 WHERE `entry` IN (211343, 213455, 212161, 211566, 214399, 211416, 214388, 213241, 213243, 213242, 213240, 214393, 211838, 211839, 213167, 213160, 213355, 211113, 211114, 213354, 215866, 213417, 211656, 211657, 210503, 211426, 210503, 211497, 211994, 212488, 210929, 211343, 211356, 211185, 211186, 211184, 211182, 211179, 211178, 211177, 211760, 211754, 211772, 211763, 211762, 211761, 211757, 211755, 211688, 211523, 214540, 211264, 211274, 211273, 214768, 215798, 212485, 213804, 214769, 214767, 211657, 211656, 214743, 212482, 214744, 213814, 214745, 215867, 215866, 213815, 213417, 214742, 213160, 213167, 213355, 213354, 211114, 211113, 211096, 211095, 211094, 211093, 211196, 211195, 211194, 214764, 214763, 214765, 214766, 212486, 211537, 211148, 211143, 211147, 211226, 211231, 211508, 211241, 211240, 211230, 211229, 211228, 213806, 211017, 211778, 215865, 215783, 213520, 213516, 213519, 213518, 213517, 216126, 216106, 216255, 216254, 216127, 216103, 216121, 216141, 216461, 216459, 216462, 216135, 216460, 216465, 216134, 216100, 216142, 216138, 216137, 216120, 216105, 216136, 216265, 216264, 216128, 216114, 216113, 216129, 216101, 216133, 216132, 216102, 216323, 215870, 216252, 216124, 216247, 216123, 216314, 216115, 216116, 216130, 216119, 216108, 216112, 216110, 216107, 216125, 216131, 216251, 216146, 216751, 216122, 216304, 214966, 209919, 209918, 214967, 216306, 214989, 215170, 216163, 213863, 211118, 215765, 223184, 216491, 216838, 216845, 216846, 216844, 216708, 216709, 216723, 216886, 216239, 216250, 216249, 216291, 216248, 216284, 216885, 216873, 216476, 207648, 216753, 216675, 216281, 214869, 211195, 216781, 213407, 212694, 210228, 212696, 210080, 210001, 215720, 210957, 213255, 223191, 223192, 223190, 223016, 223015, 223008, 223014, 223013, 223012, 223011, 223010, 223009, 213414, 213352, 210419, 213350, 213353, 213036, 213035, 213799, 214064, 214063, 213303, 214906, 214471, 214393, 214397, 214395, 214396, 214381, 214382, 213243, 213240, 213241, 213242, 211395, 221244, 214388, 214283, 213416, 212954, 212955, 213289, 213082, 213811, 213812, 213084, 213083, 213180, 214380, 213167, 213160, 213156, 213155, 213159, 214535, 214534, 215131, 213354, 213355, 211113, 211114, 218946, 212634, 212558, 215578, 215577, 215570, 215585, 215569, 215571, 215572, 215584, 215573, 215582, 215576, 215575, 215574, 215583, 215580, 215579, 215581, 212224, 212319, 212324, 212318, 214481, 214479, 212228, 213309, 213311, 213310, 213306, 212173, 213304, 213308, 213307, 213502, 211765, 211837, 211836, 211838, 211839, 213445, 212132, 212133, 211766, 212131, 211683, 211677, 214757, 212877, 214755, 214754, 211676, 211675, 214759, 214760, 218947, 218797, 218801, 218639, 217754, 218103, 218104, 218815, 218057, 218058, 211779, 216614, 213816, 213817, 214944, 212539, 214734, 214818, 213851, 212213, 212135, 211623, 212156, 211871, 211872, 213848, 212448, 213850, 212447, 216611, 213847, 213849, 214820, 211863, 214470, 211695, 211514, 215851, 215189, 215194, 214108, 210362, 211583, 213160, 212161, 213420, 213167, 213156, 213155, 214471, 214380, 214741, 211566, 214740, 211525, 214753, 214752, 214750, 211505, 211512, 211524, 213418, 215867, 215866, 211511, 211504, 214751, 211416, 213240, 211838, 211839, 212954, 214380, 213167, 213156, 213160, 213155, 213159, 214535, 214534, 215131, 211196, 211195, 211194, 213806, 211148, 211147, 211143, 211508, 211231, 211230, 211228, 211241, 211240, 211229, 214765, 214766, 212486, 211537, 214764, 214763, 213503, 211546, 212497, 212495, 212494, 212496, 212492, 212493, 212491, 212490, 214103, 214102, 212502, 214104, 212385, 212384, 212013, 211510, 212498, 212501, 213282, 211783, 211264, 211755, 211762, 211688, 211763, 211761, 211772, 211760, 211754, 211523, 211273, 211757, 214540, 211343, 213354, 213355, 211113, 211114, 211838, 211839, 215131, 213160, 214380, 212161, 214740, 214741, 211566, 210362, 214108, 212448, 212447, 212213, 212135, 211871, 211872, 212917, 212749, 212748, 212643, 215164, 212920, 212919, 212388, 216360, 212008, 212012, 215862, 212009, 212018, 213965, 212078, 212079, 213884, 213886, 212294, 213381, 214770, 213508, 214455, 214469, 214549, 214543, 213411, 214466, 215079, 215078, 212642, 212644, 214907, 215868, 213428, 213409, 214562, 212349, 214633, 214427, 214637, 223498, 220068, 214646, 214647, 212071, 214534, 214535, 214739, 214428, 214471, 211695);
UPDATE `gameobject_template` SET `VerifiedBuild`=27366 WHERE `entry` IN (215858, 215855, 209987, 209950, 214647, 212071, 214646, 220068, 223498, 212078, 212079, 215854, 211308, 211310, 211309, 211303, 211304, 214418, 214678, 212154, 214976, 216323, 215387, 216365, 216363, 216287, 216460, 216459, 216281, 210653, 214446, 210417, 210416, 216304, 210418, 215862, 213330, 215864, 215863, 215782, 215073, 215072, 216161, 215831, 213422, 214989, 214967, 216306, 209919, 209918, 216163, 210209, 211474, 210511, 215070, 215071, 213223, 210757, 210758, 210610, 209919, 209918, 214989, 214967, 216306, 211118, 211596, 213466, 213863, 211160, 215170, 210039, 210052, 210037, 210040, 210893, 212931, 213293, 213292, 213291, 213299, 212935, 212932, 210209, 216163, 211474, 210858, 210857, 210348, 215069, 215068, 214440, 212159, 213407, 214869, 211195, 216838, 209907, 215780, 210959, 210968, 210958, 210956, 210970, 210957, 210971, 213767, 214463, 214461, 214465, 210769, 210765, 214418, 210767, 210766, 210763, 210803, 210768, 210764, 210890, 210955, 210811, 210810, 210812, 210760, 210024, 210088, 215397, 210516, 213223, 210758, 210757, 210610, 210511, 215071, 215070, 210080, 210117, 212696, 212694, 210214, 210213, 223184, 215765, 226956, 210022, 210023, 210001, 210002, 214179, 213413, 209954, 209953, 210355, 213330, 210242, 210158, 210159, 215862, 210021, 215720, 215768, 213461, 214979, 212246, 211970, 210142, 210141, 210350, 211592, 211590);
UPDATE `gameobject_template` SET `VerifiedBuild`=27356 WHERE `entry` IN (211592, 211590, 210040, 210039, 210893, 210052, 210037, 210022, 226956, 210021, 214179, 210023, 210024, 210002, 210057, 210056, 210971, 211021, 210811, 210760, 210546, 210606, 210605, 210942, 210938, 211122, 211120, 210350, 215719, 211331, 210582, 212246, 211970, 210001, 215397, 210088, 210117, 210080, 216305, 215780, 212696, 212694, 213517, 213520, 213518, 213519, 213516, 215858, 210282, 209907, 210301, 210299, 210298, 210297, 210296, 210300, 209950, 209987, 211696, 215855, 209844, 209843, 209842, 210281, 209835, 209899, 209898, 209892, 209891, 210280);
UPDATE `gameobject_template` SET `VerifiedBuild`=27326 WHERE `entry` IN (215690, 215709, 215702, 215691, 215647, 215646, 215649, 215650, 215681, 215588, 215694, 215967, 215692, 215695, 219095, 209578, 212900, 215843, 212284, 212283, 214418, 211797, 212404, 209903, 210690, 209345, 209344, 215655, 215883, 215878, 215652, 211700, 211097, 211098, 211701, 211862, 210280, 210921, 211795, 209857, 210977, 210892, 209832, 209831, 209594, 215568, 210004, 210917, 210003, 209996, 212746, 212745, 210225, 212022, 212023, 212024, 214877, 212036, 212021, 212028, 215862, 213327, 212025, 212027, 212032, 212026, 212033, 212031, 212035, 212030, 212034, 212029, 214834, 214831, 214835, 210226, 214832, 215849, 215850, 209550, 210856, 210512, 212188, 212180, 212189, 212179, 212187, 209788, 209787, 209786, 209551, 209825, 211642, 209629, 214898, 209628, 211923, 211922, 211916, 211921, 211915, 211920, 211917, 211957, 211919, 211914, 211954, 211913, 211912, 211910, 211918, 214884, 214878, 214873, 214871, 214870, 214869, 211956, 211955, 209622, 214855, 212149, 214506, 214505, 213976, 209836, 209863, 211651, 210925, 213975, 209870, 210691, 211476, 209951, 209833, 209826, 209833, 209826, 209951, 209889, 213188, 212904, 213190, 211660, 209847, 210859, 211661, 211659, 209845, 213191, 210892, 210891, 211797, 212284, 212283, 209621, 212404, 209903, 209615, 209870, 211476, 209890, 209888, 209887, 209885, 215779, 209853, 209852, 209851, 209850, 210615, 210616, 210674, 210623, 210622, 210613, 210612, 211795, 210614, 210611, 209595, 209586, 215640, 215123, 215122, 211718, 215883, 215878, 215655, 215652, 215653, 215656, 215351, 215657, 215654, 215352, 215354, 215353, 215299, 215305, 215297, 215304, 215303, 215315, 215307, 215306, 215298, 215314, 215300, 215309, 215302, 215313, 215308, 215301, 215293, 215291, 215292, 215287, 215288, 215289, 215295, 215283, 215290, 215256, 215255, 215294, 215279, 215257, 215254, 215281, 215280, 215219, 215224, 215212, 215253, 215223, 215241, 215252, 215251, 215222, 215250, 215227, 215221, 215249, 215248, 215220, 215246, 215245, 215247, 215218, 215243, 215244, 215242, 215214, 215225, 215226, 215213, 215285, 215209, 215234, 215240, 215215, 215217, 215278, 215286, 215210, 215235, 215284, 215276, 215259, 215236, 215216, 215228, 215211, 215233, 215296, 215277, 215260, 215312, 215282, 215237, 215261, 215262, 215232, 215231, 215264, 215263, 215229, 215310, 215230, 215265, 215238, 215270, 215269, 215268, 215267, 215266, 215271, 215205, 215196, 215239, 215204, 215258, 215197, 215274, 215272, 215195, 215201, 215273, 215206, 215311, 215203, 215208, 215202, 215207, 215200, 215199, 215198, 215350, 215349, 215348, 219099, 213763, 215586, 215566, 215567, 215394, 215387, 211717, 215390, 215389, 215388, 215682, 213762, 213764, 215134, 215187, 215185, 215638, 215648);
@@ -1,13 +0,0 @@
-- Fingers of Frost
DELETE FROM `spell_proc` WHERE `SpellId`=44544;
INSERT INTO `spell_proc` (`SpellId`,`SchoolMask`,`SpellFamilyName`,`SpellFamilyMask0`,`SpellFamilyMask1`,`SpellFamilyMask2`,`SpellFamilyMask3`,`ProcFlags`,`SpellTypeMask`,`SpellPhaseMask`,`HitMask`,`AttributesMask`,`DisableEffectsMask`,`ProcsPerMinute`,`Chance`,`Cooldown`,`Charges`) VALUES
(44544,0,3,0,0,0,0x100,0x10000,0,0x4,0x3FFF,0,0,0,100,0,0); -- PROC_FLAG_DONE_SPELL_MAGIC_DMG_CLASS_NEG; PROC_SPELL_PHASE_FINISH; PROC_HIT_MASK_ALL
-- mage ice lance
DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_mage_fingers_of_frost';
DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_mage_ice_lance';
DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_mage_ice_lance_damage';
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
(44544,'spell_mage_fingers_of_frost'),
(30455,'spell_mage_ice_lance'),
(228598,'spell_mage_ice_lance_damage');
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,38 +0,0 @@
DELETE FROM `gameobject_template` WHERE `entry` IN (302954 /*Blacktooth Brawler Stash*/, 291242 /*Barrel of Coal*/);
INSERT INTO `gameobject_template` (`entry`, `type`, `displayId`, `name`, `IconName`, `castBarCaption`, `unk1`, `size`, `Data0`, `Data1`, `Data2`, `Data3`, `Data4`, `Data5`, `Data6`, `Data7`, `Data8`, `Data9`, `Data10`, `Data11`, `Data12`, `Data13`, `Data14`, `Data15`, `Data16`, `Data17`, `Data18`, `Data19`, `Data20`, `Data21`, `Data22`, `Data23`, `Data24`, `Data25`, `Data26`, `Data27`, `Data28`, `Data29`, `Data30`, `Data31`, `Data32`, `Data33`, `ContentTuningId`, `VerifiedBuild`) VALUES
(302954, 3, 51775, 'Blacktooth Brawler Stash', '', 'Opening', '', 1, 57, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 21400, 0, 0, 0, 705, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3287, 93636, 0, 0, 0, 0, 27980), -- Blacktooth Brawler Stash
(291242, 3, 43391, 'Barrel of Coal', 'questinteract', 'Collecting', '', 1, 1690, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19676, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88451, 0, 0, 0, 0, 27980); -- Barrel of Coal
UPDATE `gameobject_template` SET `VerifiedBuild`=27980 WHERE `entry` IN (282629, 282629, 290412, 252998, 234276, 290147, 290138, 291072, 290541, 294174, 284470, 246433, 293341, 291135, 293010, 293009, 290126, 271941, 290132, 281902, 290827, 281908, 281878, 301088, 281886, 281884, 271938, 271939, 302842, 206912, 215457, 278310, 278311, 278330, 278327, 278326, 278325, 278332, 273853, 278324, 278333, 278329, 278331, 273855, 298865, 278328);
DELETE FROM `gameobject_template` WHERE `entry` IN (293802 /*Sweete's Lockbox*/, 293343 /*Sweete's Lockbox*/, 296053 /*Chair*/, 296252 /*Box of Large Azerite Grenades*/, 293134 /*Large Azerite Grenade*/, 302841 /*Ashvane Ship*/, 298962 /*Ashvane Ship*/, 292768 /*Broken Pillar*/, 290547 /*Stone Circle*/, 302812 /*Invisible Door*/, 290543 /*Witch Fog*/, 302835 /*Drust Stone*/, 290546 /*Skull Brazier*/, 290548 /*Drust Stone*/, 290542 /*Witch FX Energy (Large)*/, 292696 /*Fog*/, 294175 /*Portal to the Blighted Lands*/, 293425 /*Drust Effigy*/, 294309 /*Jaina's Staff*/, 294082 /*Lift Ritual Lantern*/, 294083 /*Use Ritual Knife*/, 294081 /*Ring Ritual Bell*/, 294080 /*Scroll of Safe Passage*/, 291260 /*Myra's Favorite Pick*/);
INSERT INTO `gameobject_template` (`entry`, `type`, `displayId`, `name`, `IconName`, `castBarCaption`, `unk1`, `size`, `Data0`, `Data1`, `Data2`, `Data3`, `Data4`, `Data5`, `Data6`, `Data7`, `Data8`, `Data9`, `Data10`, `Data11`, `Data12`, `Data13`, `Data14`, `Data15`, `Data16`, `Data17`, `Data18`, `Data19`, `Data20`, `Data21`, `Data22`, `Data23`, `Data24`, `Data25`, `Data26`, `Data27`, `Data28`, `Data29`, `Data30`, `Data31`, `Data32`, `Data33`, `ContentTuningId`, `VerifiedBuild`) VALUES
(293802, 5, 25466, 'Sweete\'s Lockbox', '', '', '', 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28153), -- Sweete's Lockbox
(293343, 10, 25466, 'Sweete\'s Lockbox', 'questinteract', 'Opening', '', 1, 93, 0, 0, 0, 0, 0, 0, 0, 0, 0, 275309, 0, 0, 0, 21400, 0, 0, 0, 0, 0, 0, 0, 62481, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 28153), -- Sweete's Lockbox
(296053, 7, 648, 'Chair', '', '', '', 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28153), -- Chair
(296252, 3, 49819, 'Box of Large Azerite Grenades', 'questinteract', 'Collecting', '', 1, 43, 0, 1, 0, 0, 0, 0, 0, 52252, 0, 0, 0, 0, 0, 19676, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92414, 1, 0, 0, 0, 28153), -- Box of Large Azerite Grenades
(293134, 3, 50483, 'Large Azerite Grenade', 'questinteract', 'Collecting', '', 1.20000004768371582, 43, 0, 0, 0, 0, 0, 0, 0, 52252, 0, 0, 0, 0, 0, 19676, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89209, 1, 0, 0, 0, 28153), -- Large Azerite Grenade
(302841, 43, 52705, 'Ashvane Ship', '', '', '', 1, -1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28153), -- Ashvane Ship
(298962, 43, 52706, 'Ashvane Ship', '', '', '', 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28153), -- Ashvane Ship
(292768, 5, 50344, 'Broken Pillar', 'questinteract', '', '', 0.33000001311302185, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28153), -- Broken Pillar
(290547, 5, 49535, 'Stone Circle', 'questinteract', '', '', 1.5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28153), -- Stone Circle
(302812, 0, 14501, 'Invisible Door', '', '', '', 1, 0, 0, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28153), -- Invisible Door
(290543, 5, 35067, 'Witch Fog', '', '', '', 1.5, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28153), -- Witch Fog
(302835, 5, 49311, 'Drust Stone', 'questinteract', '', '', 0.660000026226043701, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28153), -- Drust Stone
(290546, 5, 20764, 'Skull Brazier', 'questinteract', '', '', 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28153), -- Skull Brazier
(290548, 5, 46359, 'Drust Stone', 'questinteract', '', '', 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28153), -- Drust Stone
(290542, 5, 49332, 'Witch FX Energy (Large)', 'questinteract', '', '', 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28153), -- Witch FX Energy (Large)
(292696, 5, 50329, 'Fog', '', '', '', 0.5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28153), -- Fog
(294175, 10, 49333, 'Portal to the Blighted Lands', 'questinteract', '', '', 1.5, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 271921, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 63012, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28153), -- Portal to the Blighted Lands
(293425, 10, 45104, 'Drust Effigy', 'questinteract', 'Placing', '', 2.20000004768371582, 1691, 0, 0, 3000, 0, 0, 0, 0, 0, 0, 278043, 0, 0, 0, 35196, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28153), -- Drust Effigy
(294309, 10, 51329, 'Jaina\'s Staff', 'questinteract', 'Searching for Clues', '', 1, 93, 0, 0, 1, 0, 0, 0, 0, 0, 0, 278162, 0, 0, 0, 92145, 0, 0, 0, 0, 0, 1, 0, 64207, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28153), -- Jaina's Staff
(294082, 5, 9806, 'Lift Ritual Lantern', '', '', '', 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28153), -- Lift Ritual Lantern
(294083, 5, 9806, 'Use Ritual Knife', '', '', '', 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28153), -- Use Ritual Knife
(294081, 5, 9806, 'Ring Ritual Bell', '', '', '', 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28153), -- Ring Ritual Bell
(294080, 9, 36780, 'Scroll of Safe Passage', '', '', '', 1, 7818, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28153), -- Scroll of Safe Passage
(291260, 3, 14746, 'Myra\'s Favorite Pick', 'questinteract', 'Retrieving', '', 1, 43, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23645, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88461, 0, 0, 0, 0, 28153); -- Myra's Favorite Pick
UPDATE `gameobject_template` SET `name`='Portal to Exodar' WHERE `entry`=246003; -- Portal to Exodar
UPDATE `gameobject_template` SET `name`='Portal to Ironforge' WHERE `entry`=245998; -- Portal to Ironforge
UPDATE `gameobject_template` SET `VerifiedBuild`=28153 WHERE `entry` IN (296915, 294025, 294027, 294026, 279357, 289447, 289556, 279620, 298982, 298981, 295078, 295077, 295076, 295075, 295422, 295403, 295427, 295404, 295426, 295405, 295413, 295406, 297906, 299321, 279347, 209076, 235882, 197094, 197095, 195141, 267266, 295217, 298982, 298981, 295077, 295075, 295078, 295076, 295422, 295403, 295404, 295427, 295426, 295405, 295413, 295406, 297906, 299321, 279347, 293010, 293009, 278682, 280603, 297149, 297148, 297709, 297142, 297143, 296227, 296226, 293317, 281347, 281346, 281345, 281344, 281342, 281341, 281335, 293327, 293333, 281317, 281343, 281336, 293330, 293328, 293329, 293334, 293332, 293331, 281305, 296874, 281879, 296625, 289556, 289447, 290147, 296381, 207310, 287195, 279882, 279895, 279620, 297935, 297893, 294025, 294027, 294026, 279357, 296915, 291223, 289708, 296694, 296695, 296697, 296696, 296700, 296699, 296711, 296710, 296709, 296708, 296707, 296705, 296704, 273814, 295081, 295082, 295084, 295083, 273766, 277389, 291222, 296918, 272792, 296701, 277352, 278482, 290532, 298982, 298981, 295075, 295077, 295076, 295078, 295427, 295426, 295422, 295403, 295404, 297906, 295405, 295406, 295413, 299321, 279347, 294027, 294026, 294025, 279357, 296915, 298768, 278735, 277727, 296918, 291222, 278738, 273050, 272792, 291223, 277897, 296706, 289701, 277896, 277894, 289708, 296711, 296710, 296709, 296705, 296694, 296695, 296700, 296699, 296697, 296696, 296708, 296707, 296704, 273814, 295081, 295084, 295082, 273766, 295083, 278482, 296701, 277352, 270960, 270961, 270959, 277389, 303037, 303036, 303035, 303034, 303033, 303032, 277459, 289564, 291045, 291042, 289565, 289563, 291044, 289569, 289568, 297826, 292408, 292409, 292407, 292405, 296161, 293892, 294028, 294032, 281635, 281473, 297149, 297148, 297709, 281482, 297142, 297143, 282452, 293208, 289447, 289556, 296625, 288595, 303170, 282151, 281879, 279302, 303039, 185903, 289577, 294173, 290138, 290147, 296381, 207310, 288609);
@@ -1,15 +0,0 @@
--
-- Table structure for table `vehicle_template`
--
DROP TABLE IF EXISTS `vehicle_template`;
CREATE TABLE `vehicle_template` (
`creatureId` int(10) unsigned NOT NULL,
`despawnDelayMs` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`creatureId`)
) ENGINE=MyISAM;
DELETE FROM `command` WHERE `name`='reload vehicle_template';
INSERT INTO `command` (`name`,`permission`,`help`) VALUES
('reload vehicle_template', 881, "Syntax: .reload vehicle_template
Reloads vehicle template definitions from the database.");
@@ -1 +0,0 @@
UPDATE `access_requirement` SET `level_min`=0,`level_max`=0;
@@ -1,116 +0,0 @@
-- The boar hunter requires 12 kills, not 8
-- UPDATE `quest_template` SET `LogDescription`="Talin Keeneye would like you to kill 12 Small Crag Boars.", `RequiredNpcOrGoCount1` = 12 WHERE `ID`=183;
-- Quest Westbrook Garrison Needs Help! has The Jasperlode Mine as prequest
-- DELETE FROM `quest_template_addon` WHERE `ID` = 239;
-- INSERT INTO `quest_template_addon` (`ID`, `PrevQuestID`) VALUES (239, 76);
-- The Everstill Bridge has The Lost Tools as prequest
-- DELETE FROM `quest_template_addon` WHERE `ID` = 89;
-- INSERT INTO `quest_template_addon` (`ID`, `PrevQuestID`) VALUES (89, 125);
-- Flesh Eating Worm and Rotting Worm adjustment
-- UPDATE `creature_template` SET `DamageModifier` = 0.5, `Scale`=0.4 WHERE `Entry` IN (2462,10925);
-- Kurzen Jungle Fighter also drops Jungle Remedy
-- DELETE FROM `creature_loot_template` WHERE `Entry` = 937 AND `Item` = 2633;
-- INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Chance`) VALUES (937,2633,33);
-- Blue Pearls only drop from Vile Reef,STV giant clams game objects.
-- DELETE FROM `gameobject_loot_template` WHERE `Item` = 4611 AND `Entry` IN (2954, 2959);
-- DELETE FROM `creature_loot_template` WHERE `Item` = 4611 AND `Entry` IN (871, 873, 875, 877, 879, 2744);
-- DELETE FROM `spell_loot_template` WHERE `Item` = 4611 AND `Entry` IN (58168, 58172);
-- Spirits of the Stonemaul Hold follows The Essence of Enmity
-- UPDATE `quest_template_addon` SET `PrevQuestId` = 11161 WHERE `ID` = 11159;
-- Bungle in the jungle follows March of the Silithid (alliance: 4493, horde:4494), which follow Rise of the Silithid (alliance: 162, horde: 32)
-- DELETE FROM `quest_template_addon` WHERE `ID` IN (4493,4494);
-- INSERT INTO `quest_template_addon` (`ID`, `PrevQuestID`, `NextQuestID`, `ExclusiveGroup`) VALUES
-- (4493, 162, 4496, 4493),
-- (4494, 32, 4496, 4493);
-- Salve via hunting first time quest for alliance was not rewarding money or xp
-- UPDATE `quest_template` SET RewardXPDifficulty = 4, RewardBonusMoney = 3600 WHERE ID = 4103;
-- Salve via hunting repeatable quest for horde WAS!
-- UPDATE `quest_template` SET RewardXPDifficulty = 0, RewardBonusMoney = 0 WHERE ID = 5887;
-- Atal'ai Artifacts (and 1 mithril deposit) are underground
-- UPDATE `gameobject` SET `position_z`=-15.29 WHERE `guid`=30371;
-- UPDATE `gameobject` SET `position_z`= 14.5 WHERE `guid`=30374;
-- UPDATE `gameobject` SET `position_z`= 31.63 WHERE `guid`=30380;
-- UPDATE `gameobject` SET `position_z`=-16.75 WHERE `guid`=30381;
-- UPDATE `gameobject` SET `position_z`= 19.57 WHERE `guid`=30383;
-- UPDATE `gameobject` SET `position_z`= 10.58 WHERE `guid`=30541;
-- UPDATE `gameobject` SET `position_z`=-19 WHERE `guid`=30542;
-- UPDATE `gameobject` SET `position_z`=-16.9 WHERE `guid`=30543;
-- UPDATE `gameobject` SET `position_z`= 20.2 WHERE `guid`=30546;
-- UPDATE `gameobject` SET `position_z`=-2.2 WHERE `guid`=30547;
-- UPDATE `gameobject` SET `position_z`= 10.5 WHERE `guid`=30550;
-- UPDATE `gameobject` SET `position_z`=-11.9 WHERE `guid`=30551;
-- UPDATE `gameobject` SET `position_z`= 10.91 WHERE `guid`=30554;
-- UPDATE `gameobject` SET `position_z`=-3.56 WHERE `guid`=30556;
-- UPDATE `gameobject` SET `position_z`= 18.70 WHERE `guid`=30558;
-- UPDATE `gameobject` SET `position_z`= 19.1 WHERE `guid`=30559;
-- UPDATE `gameobject` SET `position_z`= 18.66 WHERE `guid`=30561;
-- UPDATE `gameobject` SET `position_z`=-19 WHERE `guid`=30643;
-- UPDATE `gameobject` SET `position_z`=-6 WHERE `guid`=30646;
-- UPDATE `gameobject` SET `position_z`=-10.4 WHERE `guid`=30375;
-- UPDATE `gameobject` SET `position_z`=-8.5 WHERE `guid`=30378;
-- UPDATE `gameobject` SET `position_z`= 19 WHERE `guid`=31029;
-- Atal'ai Artifact twin spawn
-- DELETE FROM `gameobject` WHERE `guid` IN (30593,30594,30587);
-- DELETE FROM `gameobject_addon` WHERE `guid` IN (30593,30594,30587);
-- Trouble in Winterspring! is a breadcrumb quest, not prequest.
-- UPDATE `quest_template_addon` SET `PrevQuestID` = 0 WHERE `ID` = 5082;
-- Raising the drop rate of Thick Yeti Fur
-- UPDATE `creature_loot_template` SET `Chance` = 71 WHERE `Entry` = 7457 AND `Item` = 12366;
-- UPDATE `creature_loot_template` SET `Chance` = 41 WHERE `Entry` = 7458 AND `Item` = 12366;
-- UPDATE `creature_loot_template` SET `Chance` = 43 WHERE `Entry` = 7459 AND `Item` = 12366;
-- UPDATE `creature_loot_template` SET `Chance` = 45 WHERE `Entry` = 7460 AND `Item` = 12366;
-- Raising the drop rate on Forked Mudrock Tongues
-- UPDATE `creature_loot_template` SET `Chance` = 40 WHERE `Entry` = 4397 AND `Item` = 5883;
-- Crimson Crysal Shard is a guaranteed drop
UPDATE `creature_loot_template` SET `Chance` = 100 WHERE `Entry` = 19188 AND `Item` = 29476;
-- Diaphanous wing droprate
UPDATE `creature_loot_template` SET `Chance` = 40 WHERE `Item` = 24372 AND `Entry` IN (18132, 18133, 20197, 20198, 18283);
-- Greater and Young Sporebat also drop eyes.
DELETE FROM `creature_loot_template` WHERE `Entry` IN (20387, 18129) AND `Item` = 24426;
INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Chance`) VALUES
(18129,24426,20),
(20387,24426,20);
-- Escaping the Tomb was missing its goal
-- UPDATE `quest_template` SET `AreaDescription` = 'Escort Akuno' WHERE `ID` = 10887;
-- Redone Slain Auchenai Warrior
-- Redone Slain Sha'tar Vindicator
DELETE FROM `creature` WHERE `id` IN (21859,21846);
DELETE FROM `creature` WHERE `guid` IN (27590,27591,27592,27593,27594,27595,27596,27597,27598,27599,27600,36904,36907,36924,36938,36942);
INSERT INTO `creature` (`guid`,`id`,`map`,`zoneId`,`areaId`,`spawnDifficulties`,`PhaseId`,`modelid`,`equipment_id`,`position_x`,`position_y`,`position_z`,`orientation`,`spawntimesecs`,`spawndist`,`currentwaypoint`,`curhealth`,`curmana`,`MovementType`,`npcflag`,`unit_flags`,`dynamicflags`) VALUES
(27590,21859,530,0,0,'0',0,0,1,-3736, 5333.73,-12.50,2.1171,150,0,0,6986,0,0,0,0,0),
(27591,21859,530,0,0,'0',0,0,1,-3750.4, 5301.33,-17.10,3.6650,150,0,0,6986,0,0,0,0,0),
(27592,21859,530,0,0,'0',0,0,1,-3649.6, 5322.93,-18.15,5.3430,150,0,0,6986,0,0,0,0,0),
(27593,21859,530,0,0,'0',0,0,1,-3779.2, 5225.73,-22.75,2.7725,150,0,0,6986,0,0,0,0,0),
(27594,21859,530,0,0,'0',0,0,1,-3714.4, 5214.93,-21.00,4.2144,150,0,0,6986,0,0,0,0,0),
(27595,21859,530,0,0,'0',0,0,1,-3750.4, 5171.73,-22.15,2.0036,150,0,0,6986,0,0,0,0,0),
(27596,21859,530,0,0,'0',0,0,1,-3764.8, 5128.53,-22.30,3.0938,150,0,0,6986,0,0,0,0,0),
(27597,21859,530,0,0,'0',0,0,1,-3750.4, 5085.33,-18.40,0.6098,150,0,0,6986,0,0,0,0,0),
(27598,21846,530,0,0,'0',0,0,1,-3714.4, 5290.53,-18.75,3.3858,150,0,0,6986,0,0,0,0,0),
(27599,21846,530,0,0,'0',0,0,1,-3714.4, 5225.73,-22.60,4.8247,150,0,0,6986,0,0,0,0,0),
(27600,21846,530,0,0,'0',0,0,1,-3692.8, 5344.53,-13.85,4.8579,150,0,0,6986,0,0,0,0,0),
(36904,21846,530,0,0,'0',0,0,1,-3642.4, 5290.53,-21.35,1.1159,150,0,0,6986,0,0,0,0,0),
(36907,21846,530,0,0,'0',0,0,1,-3750.4, 5268.93,-15.30,0.4874,150,0,0,6986,0,0,0,0,0),
(36924,21846,530,0,0,'0',0,0,1,-3772, 5214.93,-22.70,2.7571,150,0,0,6986,0,0,0,0,0),
(36938,21846,530,0,0,'0',0,0,1,-3736, 5160.93,-22.25,2.7343,150,0,0,6986,0,0,0,0,0),
(36942,21846,530,0,0,'0',0,0,1,-3764.8, 5106.93,-19.80,0.6078,150,0,0,6986,0,0,0,0,0);
-- Drop chance howling wind
UPDATE `creature_loot_template` SET `Chance` = 20 WHERE `Item` = 24504 AND `Entry` IN (17158,17159,17160);
@@ -1,83 +0,0 @@
-- Feral Tender
SET @ENTRY := 15294;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0 AND `id`=2;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,2,0,2,0,100,0,0,45,16000,18000,11,31325,0,0,0,0,0,1,0,0,0,0,0,0,0,"Feral Tender - Between 0-45% Health - Cast 'Renew'");
-- Arcane Wraith
SET @ENTRY := 15273;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0 AND `id`=2;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,2,0,0,0,100,0,6000,15000,6000,15000,11,37361,0,0,0,0,0,2,0,0,0,0,0,0,0,"Arcane Wraith - In Combat - Cast 'Arcane Bolt'");
-- Tainted Arcane Wraith
SET @ENTRY := 15298;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0 AND `id`=2;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,2,0,0,0,100,0,8000,16000,8000,16000,11,25603,0,0,0,0,0,2,0,0,0,0,0,0,0,"Tainted Arcane Wraith - In Combat - Cast 'Slow'");
-- Felendren the Banished
SET @ENTRY := 15367;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0 AND `id`=1;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,1,0,0,0,100,0,6000,9000,9000,12000,11,16568,0,0,0,0,0,2,0,0,0,0,0,0,0,"Felendren the Banished - In Combat - Cast 'Mind Flay'");
-- Correct Felendren's respawn time
UPDATE `creature` SET `spawntimesecs`=60 WHERE `guid`=55165;
-- Slain by the Wretched requires Aiding the Outrunners
UPDATE `quest_template_addon` SET `PrevQuestID`=8347 WHERE `ID`=9704;
-- Felendren the Banished rewards Aiding the Outrunners
UPDATE `quest_template` SET `RewardNextQuest`=8347 WHERE `ID`=8335;
-- Package Recovery rewards Completing the Delivery
UPDATE `quest_template` SET `RewardNextQuest`=8350 WHERE `ID`=9705;
-- Tainted Arcane Sliver is refusable
UPDATE `quest_template_addon` SET `SpecialFlags`=0 WHERE `ID`=8338;
-- Reclaiming Sunstrider Isle
-- Talk on accept
DELETE FROM `quest_details` WHERE `ID`=8325;
INSERT INTO `quest_details` (`ID`, `Emote1`) VALUES (8325, 1);
-- Solanian's Belongings
-- Talk when incomplete. Clap on turn in
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=1 WHERE `ID`=8330;
UPDATE `quest_offer_reward` SET `Emote1`=21 WHERE `ID`=8330;
-- The Shrine of Dath'Remar
-- Talk and point on accept. Bow and talk on turn in
DELETE FROM `quest_details` WHERE `ID`=8345;
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`) VALUES (8345, 1, 25);
UPDATE `quest_offer_reward` SET `Emote1`=2, `Emote2`=1 WHERE `ID`=8345;
-- Felendren the Banished
-- Bow and talk on turn in
UPDATE `quest_offer_reward` SET `Emote1`=2, `Emote2`=1 WHERE `ID`=8335;
-- Thirst Unending
-- Point when incomplete
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=25 WHERE `ID`=8346;
-- Report to Lanthan Perlion
-- Bow and talk on turn in
UPDATE `quest_offer_reward` SET `Emote1`=2, `Emote2`=1 WHERE `ID`=8327;
-- Aggression
-- Talk and point on offer. Point when incomplete. Talk on turn in.
DELETE FROM `quest_details` WHERE `ID`=8334;
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`) VALUES (8334, 1, 25);
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=25 WHERE `ID`=8334;
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=8334;
-- Lynx collars (quest item) always drop
UPDATE `creature_loot_template` SET `Chance`=100 WHERE `Item`=20797;
-- Incorrect ref loot table on all NPCs
DELETE FROM `creature_loot_template` WHERE `Entry` IN (15271,15273,15274,15294,15298,15366,15372) AND `Reference`=44007;
-- Random movement on some Mana Wyrms
UPDATE `creature` SET `spawndist`=5, `MovementType`=1 WHERE `id` IN (15274) AND `MovementType`=0;
-- Fix Mana Wyrm spawning underground
UPDATE `creature` SET `position_z`=30.85 WHERE `guid`=54934;
@@ -1,31 +0,0 @@
--
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` IN (25967,23483,23484);
DELETE FROM `gossip_menu` WHERE `MenuID` = 8752 AND `TextID` = 11085;
INSERT INTO `gossip_menu` (`MenuID`, `TextID`, `VerifiedBuild`) VALUES
(8752,11085,0);
DELETE FROM `gossip_menu_option` WHERE `MenuID` IN (8751,8752);
INSERT INTO `gossip_menu_option` (`MenuID`, `OptionIndex`, `OptionIcon`, `OptionText`, `OptionBroadcastTextID`, `OptionType`, `OptionNpcFlag`, `VerifiedBuild`) VALUES
(8751, 0, 1, 'I have marks to redeem.', 21915, 3, 128, 0),
(8752, 0, 1, 'I have marks to redeem.', 21915, 3, 128, 0);
DELETE FROM `smart_scripts` WHERE (source_type = 0 AND entryorguid = 25967);
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(25967, 0, 0, 0, 62, 0, 100, 0, 9205, 0, 0, 0, 11, 37778, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Zephyr - On Gossip Option 0 Selected - Cast \'Quest - Teleport: Caverns of Time\'');
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` IN (14,15) AND `SourceGroup` IN (8751,8752,9205);
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
(15, 9205, 0, 0, 0, 5, 0, 989, 192, 0, 0, 0, 0, '', 'Show gossip menu 9205 option id 0 if player is Revered or Exalted with faction Keepers of Time.'),
(14, 8751, 11085, 0, 1, 5, 0, 932, 128, 0, 0, 0, 0, '', 'Show gossip menu 8751 text id 11085 if player is Exalted with faction The Aldor.'),
(14, 8751, 11085, 0, 1, 5, 0, 935, 128, 0, 0, 0, 0, '', 'Show gossip menu 8751 text id 11085 if player is Exalted with faction The Sha\'tar.'),
(14, 8751, 11085, 0, 1, 5, 0, 942, 128, 0, 0, 0, 0, '', 'Show gossip menu 8751 text id 11085 if player is Exalted with faction Cenarion Expedition.'),
(14, 8752, 11085, 0, 1, 5, 0, 934, 128, 0, 0, 0, 0, '', 'Show gossip menu 8752 text id 11085 if player is Exalted with faction The Scryers.'),
(14, 8752, 11085, 0, 1, 5, 0, 935, 128, 0, 0, 0, 0, '', 'Show gossip menu 8752 text id 11085 if player is Exalted with faction The Sha\'tar.'),
(14, 8752, 11085, 0, 1, 5, 0, 942, 128, 0, 0, 0, 0, '', 'Show gossip menu 8752 text id 11085 if player is Exalted with faction Cenarion Expedition.'),
(15, 8751, 0, 0, 1, 5, 0, 932, 128, 0, 0, 0, 0, '', 'Show gossip menu 8751 option id 0 if player is Exalted with faction The Aldor.'),
(15, 8751, 0, 0, 1, 5, 0, 935, 128, 0, 0, 0, 0, '', 'Show gossip menu 8751 option id 0 if player is Exalted with faction The Sha\'tar.'),
(15, 8751, 0, 0, 1, 5, 0, 942, 128, 0, 0, 0, 0, '', 'Show gossip menu 8751 option id 0 if player is Exalted with faction Cenarion Expedition.'),
(15, 8752, 0, 0, 1, 5, 0, 934, 128, 0, 0, 0, 0, '', 'Show gossip menu 8752 option id 0 if player is Exalted with faction The Scryers.'),
(15, 8752, 0, 0, 1, 5, 0, 935, 128, 0, 0, 0, 0, '', 'Show gossip menu 8752 option id 0 if player is Exalted with faction The Sha\'tar.'),
(15, 8752, 0, 0, 1, 5, 0, 942, 128, 0, 0, 0, 0, '', 'Show gossip menu 8752 option id 0 if player is Exalted with faction Cenarion Expedition.');
@@ -1,19 +0,0 @@
-- Update boss Toravon the Ice Watcher
UPDATE `creature_template` SET `InhabitType`=11, `ScriptName`='' WHERE `entry`=38461;
-- UPDATE `spell_dbc` SET `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=28, `MaxAffectedTargets`=1 WHERE `Id`=46523;
DELETE FROM `spelleffect_dbc` WHERE `Id`=155917;
INSERT INTO `spelleffect_dbc` (`Id`, `Effect`, `EffectValueMultiplier`, `EffectApplyAuraName`, `EffectAmplitude`, `EffectBasePoints`, `EffectBonusMultiplier`, `EffectDamageMultiplier`, `EffectChainTarget`, `EffectDieSides`, `EffectItemType`, `EffectMechanic`, `EffectMiscValue`, `EffectMiscValueB`, `EffectRadiusIndex`, `EffectRadiusIndexMax`, `EffectRealPointsPerLevel`, `EffectSpellClassMaskA`, `EffectSpellClassMaskB`, `EffectSpellClassMaskC`, `EffectTriggerSpell`, `EffectImplicitTargetA`, `EffectImplicitTargetB`, `EffectSpellId`, `EffectIndex`) VALUES
(155917, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 22, 15, 46523, 0);
UPDATE `spell_dbc` SET `SpellTargetRestrictionsId`=872 WHERE `Id`=46523;
DELETE FROM `creature_template_addon` WHERE `entry`=38461;
INSERT INTO `creature_template_addon` (`entry`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES
(38461,0,0,0,1,0,72094);
DELETE FROM `spell_proc` WHERE `SpellId`=71993;
INSERT INTO `spell_proc` (`SpellId`,`ProcFlags`,`HitMask`,`Cooldown`) VALUES
(71993,4,12287,4000);
DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_toravon_random_aggro';
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
(46523,'spell_toravon_random_aggro');
@@ -1,14 +0,0 @@
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=25522;
DELETE FROM `smart_scripts` WHERE `entryorguid`=25522 AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(25522, 0, 0, 0, 4, 0, 30, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Skadir Raider - On Aggro - Say Line 0");
DELETE FROM `creature_text` WHERE `CreatureID`=25522;
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(25522, 0, 0, "I shall draw your soul into the mist!", 12, 0, 100, 0, 0, 0, 24846, 0, "Skadir Raider"),
(25522, 0, 1, "YAAARRRGH!", 12, 0, 100, 0, 0, 0, 24847, 0, "Skadir Raider"),
(25522, 0, 2, "Be consumed by the mist!", 12, 0, 100, 0, 0, 0, 24848, 0, "Skadir Raider"),
(25522, 0, 3, "Look what's lost its way...", 12, 0, 100, 0, 0, 0, 24849, 0, "Skadir Raider"),
(25522, 0, 4, "I will heave your carcass into the ocean myself!", 12, 0, 100, 0, 0, 0, 24850, 0, "Skadir Raider"),
(25522, 0, 5, "You're not even fit to be fed to Leviroth.", 12, 0, 100, 0, 0, 0, 24851, 0, "Skadir Raider"),
(25522, 0, 6, "You've strayed too far from your comfortable soil, $r.", 12, 0, 100, 0, 0, 0, 24852, 0, "Skadir Raider");
@@ -1,29 +0,0 @@
DELETE FROM `creature_addon` WHERE `guid`=95560;
DELETE FROM `waypoint_data` WHERE `id`=955600;
DELETE FROM `waypoints` WHERE `entry`=24576;
INSERT INTO `waypoints` (`entry`, `pointid`, `position_x`, `position_y`, `position_z`, `point_comment`) VALUES
(24576, 1, 1904.01, 6088.15, -0.689379, "Riplash Myrmidon"),
(24576, 2, 1903.87, 6078.13, 3.32637, "Riplash Myrmidon"),
(24576, 3, 1894.83, 6048.11, 4.13374, "Riplash Myrmidon"),
(24576, 4, 1893.75, 6027.49, 5.05886, "Riplash Myrmidon"),
(24576, 5, 1903.62, 6023.29, 7.5437, "Riplash Myrmidon");
UPDATE `creature` SET `MovementType`=0, `spawndist`=0, `spawntimesecs`=60 WHERE `guid`=95560;
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry` IN (24576, 25521, 25636);
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (-95560, 25521, 25636, 2563600) AND `source_type` IN (0, 9);
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(-95560, 0, 0, 1, 11, 0, 100, 0, 0, 0, 0, 0, 18, 768, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Riplash Myrmidon - On Spawn - Set UnitFlag IMMUNE_TO_PC+NPC"),
(-95560, 0, 1, 0, 61, 0, 100, 0, 0, 0, 0, 0, 53, 1, 24576, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, "Riplash Myrmidon - On Spawn - Start WP"),
(-95560, 0, 2, 3, 40, 0, 100, 0, 4, 0, 0, 0, 19, 768, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Riplash Myrmidon - On WP 4 Reached - Remove UnitFlag IMMUNE_TO_PC+NPC"),
(-95560, 0, 3, 4, 61, 0, 100, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 19, 25521, 0, 0, 0, 0, 0, 0, "Riplash Myrmidon - On WP 4 Reached - Say text (Skadir Longboatsman)"),
(-95560, 0, 4, 0, 61, 0, 100, 0, 00, 0, 0, 0, 49, 0, 0, 0, 0, 0, 0, 19, 25636, 0, 0, 0, 0, 0, 0, "Riplash Myrmidon - On WP 4 Reached - Attack Captured Tuskarr Prisoner"),
(-95560, 0, 5, 6, 6, 0, 100, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 19, 25521, 0, 0, 0, 0, 0, 0, "Riplash Myrmidon - On Death - Say text (Skadir Longboatsman)"),
(-95560, 0, 6, 0, 61, 0, 100, 0, 0, 0, 0, 0, 80, 2563600, 2, 0, 0, 0, 0, 19, 25636, 0, 0, 0, 0, 0, 0, "Riplash Myrmidon - On Death - action list (Captured Tuskarr Prisoner)"),
(25636, 0, 0, 0, 11, 0, 100, 0, 0, 0, 0, 0, 83, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Captured Tuskarr Prisoner - On Spawn - Remove Questgiver Npcflag"),
(2563600, 9, 0, 0, 0, 0, 100, 0, 5000, 5000, 0, 0, 82, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Captured Tuskarr Prisoner - On Script - Add Questgiver Npcflag"),
(2563600, 9, 1, 0, 0, 0, 100, 0, 60000, 60000, 0, 0, 83, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Captured Tuskarr Prisoner - On Script - Remove Questgiver Npcflag");
DELETE FROM `creature_text` WHERE `CreatureID`=25521;
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(25521, 0, 0, "Send in the next pair of prisoners, let them fight to see who lives!", 14, 0, 100, 0, 0, 0, 24823, 0, "Skadir Longboatsman"),
(25521, 1, 0, "You may have survived for our amusement, but now, you shall die at our hands!", 14, 0, 100, 0, 0, 0, 24819, 0, "Skadir Longboatsman");
@@ -1,3 +0,0 @@
-- DB/Quest: Call the Headless Horseman
UPDATE `quest_offer_reward` SET `RewardText` = 'Will you lay the candle down and call the Headless Horseman from his doomed rest?' WHERE `ID` = 11405;
UPDATE `quest_request_items` SET `CompletionText` = 'This dirt has been recently disturbed. Earthworms lie in the topsoil, squirming to escape the dark depths beneath them.' WHERE `ID` = 11405;
@@ -1,3 +0,0 @@
--
UPDATE `creature` SET `position_x`=9715.041, `position_y`=-7311.676, `position_z`=24.84278, `orientation`=4.869469 WHERE `id`=18232;
UPDATE `creature` SET `position_x`=9714.112, `position_y`=-7313.333, `position_z`=24.8485, `orientation`=1.134464 WHERE `id`=18231;
@@ -1,91 +0,0 @@
--
SET @GUID := 52124;
DELETE FROM `creature` WHERE `guid` BETWEEN @GUID AND @GUID+14;
INSERT INTO `creature` (`guid`, `id`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `MovementType`, `spawntimesecs`) VALUES
(@GUID , 24014, 571, 2822.969, -3821.093, 250.2894, 5.283523, 2, 180),
(@GUID+1 , 23991, 571, 2827.572, -3878.741, 244.6476, 0.5759587, 0, 180),
(@GUID+2 , 23991, 571, 2860.433, -3828.301, 244.6628, 3.700098, 0, 180),
(@GUID+3 , 23991, 571, 2873.868, -3847.195, 244.6476, 3.857178, 0, 180),
(@GUID+4 , 23989, 571, 2841.556, -3848.825, 250.2405, 2.234021, 0, 180),
(@GUID+5 , 23991, 571, 2815.462, -3858.984, 244.6625, 0.5934119, 0, 180),
(@GUID+6 , 24014, 571, 2793.005, -3798.1, 255.5297, 1.850049, 0, 180),
(@GUID+7 , 24014, 571, 2811.807, -3785.855, 255.2564, 2.426008, 0, 180),
(@GUID+8 , 23992, 571, 2770.91, -3814.297, 255.1113, 0.6981317, 0, 180),
(@GUID+9 , 23992, 571, 2834.249, -3770.08, 255.1043, 3.630285, 0, 180),
(@GUID+10, 23990, 571, 2896.34, -3891.98, 248.537, 2.16955, 0, 180),
(@GUID+11, 23990, 571, 2861.66, -3916.08, 248.537, 2.15934, 0, 180),
(@GUID+12, 24014, 571, 2864.88, -3898.45, 248.492, 5.31899, 0, 180),
(@GUID+13, 24014, 571, 2879.18, -3888.82, 248.493, 5.32292, 0, 180),
(@GUID+14, 23989, 571, 2887.71, -3881.55, 248.53, 5.3025, 2, 180);
DELETE FROM `creature_addon` WHERE `guid` IN (@GUID, @GUID+14);
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES
(@GUID, 521240),
(@GUID+14, 521380);
DELETE FROM `waypoint_data` WHERE `id` IN (521380, 521240);
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`) VALUES
(521380, 1, 2892.08, -3887.31, 248.54),
(521380, 2, 2859.36, -3909.38, 248.54),
(521380, 3, 2855.12, -3903.63, 248.53),
(521380, 4, 2859.36, -3909.38, 248.54),
(521380, 5, 2892.08, -3887.31, 248.54),
(521380, 6, 2887.71, -3881.55, 248.53),
(521240, 1, 2822.969, -3821.093, 250.2894),
(521240, 2, 2836.028, -3838.971, 244.5654),
(521240, 3, 2860.475, -3838.368, 244.5757),
(521240, 4, 2870.012, -3852.968, 244.5758),
(521240, 5, 2875.005, -3861.569, 244.5763),
(521240, 6, 2858.624, -3839.253, 244.5774),
(521240, 7, 2836.028, -3838.971, 244.5654);
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (24023, 2402300, -74518, -74519, -74520, 2401400, 24014) AND `source_type` IN (0, 9);
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(24023, 0, 0, 0, 1, 0, 100, 0, 0, 0, 1000, 1000, 11, 44473, 0, 0, 0, 0, 0, 19, 29393, 0, 0, 0, 0, 0, 0, "Queen Angerboda - OOC - Cast 'Queen Angerboda: Soul Beam'"),
(24023, 0, 1, 2, 4, 0, 100, 0, 0, 0, 0, 0, 92, 0, 44473, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Queen Angerboda - On Aggro - Interupt Cast"),
(24023, 0, 2, 3, 61, 0, 100, 0, 0, 0, 0, 0, 11, 42808, 0, 0, 0, 0, 0, 19, 24014, 17, 0, 0, 0, 0, 0, "Queen Angerboda - On Aggro - Cast 'Queen Angerboda's On Reaction 2 Beam'"),
(24023, 0, 3, 0, 61, 0, 100, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Queen Angerboda - On Aggro - Say Line 0"),
(24023, 0, 4, 5, 6, 0, 100, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Queen Angerboda - On Death - Say Line 1"),
(24023, 0, 5, 0, 61, 0, 100, 0, 0, 0, 0, 0, 12, 29394, 1, 60000, 0, 0, 0, 8, 0, 0, 0, 2850.26, -3872.01, 248.613, 1.41372, "Queen Angerboda - On Death - Summon 'The Lich King'"),
(24023, 0, 6, 7, 25, 0, 100, 512, 0, 0, 0, 0, 70, 0, 0, 0, 0, 0, 0, 10, 74518, 24014, 0, 0, 0, 0, 0, "Queen Angerboda - On Reset - Respawn Necrolord 1"),
(24023, 0, 7, 8, 61, 0, 100, 512, 0, 0, 0, 0, 70, 0, 0, 0, 0, 0, 0, 10, 74519, 24014, 0, 0, 0, 0, 0, "Queen Angerboda - On Reset - Respawn Necrolord 2"),
(24023, 0, 8, 0, 61, 0, 100, 512, 0, 0, 0, 0, 70, 0, 0, 0, 0, 0, 0, 10, 74520, 24014, 0, 0, 0, 0, 0, "Queen Angerboda - On Reset - Respawn Necrolord 3"),
(24023, 0, 10, 0, 1, 0, 100, 0, 0, 45000, 45000, 90000, 1, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Queen Angerboda - OOC - Say Line 2"),
(24023, 0, 11, 0, 0, 0, 100, 0, 2000, 2000, 3000, 3500, 11, 9053, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Queen Angerboda - IC - Cast Fireball"),
(24023, 0, 12, 0, 0, 0, 100, 0, 4000, 5000, 12000, 15000, 11, 43560, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Queen Angerboda - IC - Cast Anger of Gjalerbron"),
(24023, 0, 13, 0, 0, 0, 100, 0, 3000, 7000, 10000, 20000, 11, 11831, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Queen Angerboda - IC - Cast Frost Nova"),
(-74518, 0, 0, 0, 11, 0, 100, 0, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Necrolord - On Respawn - Set Root On"),
(-74518, 0, 1, 0, 4, 0, 50, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Necrolord - On Aggro - Say Line 0"),
(-74518, 0, 2, 0, 1, 0, 100, 0, 0, 0, 3000, 3000, 11, 44473, 0, 0, 0, 0, 0, 19, 29393, 0, 0, 0, 0, 0, 0, "Necrolord - OOC - Cast Queen Angerboda: Soul Beam"),
(-74518, 0, 3, 0, 8, 0, 100, 1, 42808, 0, 0, 0, 37, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Necrolord - On Data Set - Die"),
(-74518, 0, 4, 0, 0, 0, 100, 0, 2000, 3000, 3000, 3500, 11, 9613, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Necrolord - IC - Cast Shadow Bolt"),
(-74518, 0, 5, 0, 0, 0, 100, 0, 3000, 7000, 10000, 20000, 11, 17173, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Necrolord - IC - Drain Life"),
(-74518, 0, 6, 0, 0, 0, 100, 0, 5000, 8000, 25000, 30000, 11, 18267, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Necrolord - IC - Curse of Weakness"),
(-74519, 0, 0, 0, 11, 0, 100, 0, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Necrolord - On Respawn - Set Root On"),
(-74519, 0, 1, 0, 4, 0, 50, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Necrolord - On Aggro - Say Line 0"),
(-74519, 0, 2, 0, 1, 0, 100, 0, 0, 0, 3000, 3000, 11, 44473, 0, 0, 0, 0, 0, 19, 29393, 0, 0, 0, 0, 0, 0, "Necrolord - OOC - Cast Queen Angerboda: Soul Beam"),
(-74519, 0, 3, 0, 8, 0, 100, 1, 42808, 0, 0, 0, 37, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Necrolord - On Data Set - Die"),
(-74519, 0, 4, 0, 0, 0, 100, 0, 2000, 3000, 3000, 3500, 11, 9613, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Necrolord - IC - Cast Shadow Bolt"),
(-74519, 0, 5, 0, 0, 0, 100, 0, 3000, 7000, 10000, 20000, 11, 17173, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Necrolord - IC - Drain Life"),
(-74519, 0, 6, 0, 0, 0, 100, 0, 5000, 8000, 25000, 30000, 11, 18267, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Necrolord - IC - Curse of Weakness"),
(-74520, 0, 0, 0, 11, 0, 100, 0, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Necrolord - On Respawn - Set Root On"),
(-74520, 0, 1, 0, 4, 0, 50, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Necrolord - On Aggro - Say Line 0"),
(-74520, 0, 2, 0, 1, 0, 100, 0, 0, 0, 3000, 3000, 11, 44473, 0, 0, 0, 0, 0, 19, 29393, 0, 0, 0, 0, 0, 0, "Necrolord - OOC - Cast Queen Angerboda: Soul Beam"),
(-74520, 0, 3, 0, 8, 0, 100, 1, 42808, 0, 0, 0, 37, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Necrolord - On Data Set - Die"),
(-74520, 0, 4, 0, 0, 0, 100, 0, 2000, 3000, 3000, 3500, 11, 9613, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Necrolord - IC - Cast Shadow Bolt"),
(-74520, 0, 5, 0, 0, 0, 100, 0, 3000, 7000, 10000, 20000, 11, 17173, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Necrolord - IC - Drain Life"),
(-74520, 0, 6, 0, 0, 0, 100, 0, 5000, 8000, 25000, 30000, 11, 18267, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Necrolord - IC - Curse of Weakness"),
(24014, 0, 0, 0, 4, 0, 50, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Necrolord - On aggro - Say text 0"),
(24014, 0, 1, 0, 0, 0, 100, 0, 2000, 3000, 3000, 3500, 11, 9613, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Necrolord - IC - Cast Shadow Bolt"),
(24014, 0, 2, 0, 0, 0, 100, 0, 3000, 7000, 10000, 20000, 11, 17173, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Necrolord - IC - Drain Life"),
(24014, 0, 3, 0, 0, 0, 100, 0, 5000, 8000, 25000, 30000, 11, 18267, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Necrolord - IC - Curse of Weakness");
DELETE FROM `creature_template_addon` WHERE `entry`=29393;
INSERT INTO `creature_template_addon` (`entry`, `emote`) VALUES
(29393, 417);
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry` IN(42808);
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
(13, 1, 42808, 0, 0, 31, 0, 3, 24014, 74518, 0, 0, 0, '', 'Queen Angerbodas On Reaction 2 Beam - Targets Necrolord'),
(13, 1, 42808, 0, 1, 31, 0, 3, 24014, 74519, 0, 0, 0, '', 'Queen Angerbodas On Reaction 2 Beam - Targets Necrolord'),
(13, 1, 42808, 0, 2, 31, 0, 3, 24014, 74520, 0, 0, 0, '', 'Queen Angerbodas On Reaction 2 Beam - Targets Necrolord');
@@ -1,5 +0,0 @@
--
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (25596) AND `source_type` IN (0) AND `id`>7;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(25596, 0, 8, 0, 27, 0, 100, 512, 0, 0, 0, 0, 19, 512, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Infected Kodo Beast - On passenger boarded - remove immune to npc"),
(25596, 0, 9, 0, 28, 0, 100, 512, 0, 0, 0, 0, 18, 512, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Infected Kodo Beast - On passenger removed - Set immune to npc");
@@ -1,4 +0,0 @@
-- DB/Spell: Spell 58152, Arcane Lightning should also target NPCs 29321, Ichor Globule
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry`=58152 AND `ElseGroup`=18;
INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition`,`ErrorType`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES
(13,1,58152,0,18,31,0,3,29321,0,0,0,0,'','Defense System - Arcane Lightning');
@@ -1,9 +0,0 @@
-- Advisor Sunsworn
DELETE FROM `gossip_menu` WHERE `MenuID`=7362 AND `TextID`=8795;
INSERT INTO `gossip_menu` (`MenuID`, `TextID`, `VerifiedBuild`) VALUES
(7362,8795,0);
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=14 AND `SourceGroup`=7362;
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
(14,7362,8794,0,0,16,0,512,0,0,1,0,0,"","Show gossip text if player is not a Blood Elf"),
(14,7362,8795,0,0,16,0,512,0,0,0,0,0,"","Show gossip text if player is a Blood Elf");
@@ -1,12 +0,0 @@
DELETE FROM `smart_scripts` WHERE `entryorguid`=26452 AND `id` IN (3, 4) AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(26452, 0, 3, 0, 25, 0, 100, 512, 0, 0, 0, 0, 18, 768, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Leviroth - On Reset - Add Unit flags (Immune to NPC and PC)"),
(26452, 0, 4, 0, 0, 0, 100, 0, 5000, 10000, 7000, 9000, 11, 19643, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Leviroth - In Combat - Cast 'Mortal Strike'");
-- UPDATE `item_template` SET `ScriptName`="" WHERE `entry`=35850;
DELETE FROM `item_script_names` WHERE `Id`=35850;
UPDATE `creature_template` SET `InhabitType`=2 WHERE `entry`=26452;
DELETE FROM `conditions` WHERE `SourceEntry`=47170 AND `SourceTypeOrReferenceId`=17;
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `comment`) VALUES
(17, 0, 47170, 0, 0, 29, 0, 26452, 8, 0, 0, 0, 0, "", "Spell Impale Leviroth can only be used within 8 yards of NPC Leviroth");
@@ -1,15 +0,0 @@
--
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` = 2530;
DELETE FROM `smart_scripts` WHERE `source_type` = 0 AND `entryorguid` = 2530;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(2530, 0, 0, 1, 8, 0, 100, 0, 3607, 0, 0, 0, 17, 64, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Yenniku - On Spellhit \'Yenniku\'s Release\' - Set Emote State Stun'),
(2530, 0, 1, 2, 61, 0, 100, 0, 0, 0, 0, 0, 2, 83, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Yenniku - On Spellhit \'Yenniku\'s Release\' - Set Faction Horde'),
(2530, 0, 2, 0, 61, 0, 100, 0, 0, 0, 0, 0, 67, 0, 60000, 60000, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 'Yenniku - On Spellhit \'Yenniku\'s Release\' - Create Timed Event'),
(2530, 0, 3, 4, 59, 0, 100, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Yenniku - On Timed Event 0 Triggered - Evade'),
(2530, 0, 4, 5, 61, 0, 100, 0, 0, 0, 0, 0, 2, 28, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Yenniku - On Timed Event 0 Triggered - Set Faction Bloodscalp Trolls'),
(2530, 0, 5, 0, 61, 0, 100, 0, 0, 0, 0, 0, 17, 30, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Yenniku - On Timed Event 0 Triggered - Set Emote State Default');
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=22 AND `SourceGroup` IN (1,7) AND `SourceEntry`=2530 AND `SourceId`=0;
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
(22, 1, 2530, 0, 0, 9, 0, 592, 0, 0, 0, 0, 0, '', 'Yenniku SAI event 0 will execute if quest Saving Yenniku has been taken.');
@@ -1,65 +0,0 @@
UPDATE `creature_template` SET `AIName`="SmartAI", `ScriptName`="" WHERE `entry` IN (11056, 11057);
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup` IN (3223, 3224, 3225, 3226, 3227, 3228);
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
(15, 3223, 0, 0, 0, 8, 0, 5230, 0, 0, 0, 0, 0, "", "Gossip option 0 requires quest 'Return to the Bulwark' rewarded"),
(15, 3223, 1, 0, 0, 8, 0, 5230, 0, 0, 0, 0, 0, "", "Gossip option 1 requires quest 'Return to the Bulwark' rewarded"),
(15, 3223, 2, 0, 0, 8, 0, 5232, 0, 0, 0, 0, 0, "", "Gossip option 2 requires quest 'Return to the Bulwark' rewarded"),
(15, 3223, 3, 0, 0, 8, 0, 5234, 0, 0, 0, 0, 0, "", "Gossip option 3 requires quest 'Return to the Bulwark' rewarded"),
(15, 3223, 4, 0, 0, 8, 0, 5236, 0, 0, 0, 0, 0, "", "Gossip option 4 requires quest 'Return to the Bulwark' rewarded"),
(15, 3228, 0, 0, 0, 8, 0, 5217, 0, 0, 0, 0, 0, "", "Gossip option 0 requires quest 'Return to Chillwind Camp' rewarded"),
(15, 3228, 1, 0, 0, 8, 0, 5217, 0, 0, 0, 0, 0, "", "Gossip option 1 requires quest 'Return to Chillwind Camp' rewarded"),
(15, 3228, 2, 0, 0, 8, 0, 5220, 0, 0, 0, 0, 0, "", "Gossip option 2 requires quest 'Return to Chillwind Camp' rewarded"),
(15, 3228, 3, 0, 0, 8, 0, 5223, 0, 0, 0, 0, 0, "", "Gossip option 3 requires quest 'Return to Chillwind Camp' rewarded"),
(15, 3228, 4, 0, 0, 8, 0, 5226, 0, 0, 0, 0, 0, "", "Gossip option 4 requires quest 'Return to Chillwind Camp' rewarded"),
(15, 3224, 0, 0, 0, 2, 0, 13370, 1, 1, 1, 0, 0, "", "Gossip option requires item 'Vitreous Focuser' not in inventory or bank"),
(15, 3225, 0, 0, 0, 2, 0, 13370, 1, 1, 1, 0, 0, "", "Gossip option requires item 'Vitreous Focuser' not in inventory or bank"),
(15, 3226, 0, 0, 0, 2, 0, 13370, 1, 1, 1, 0, 0, "", "Gossip option requires item 'Vitreous Focuser' not in inventory or bank"),
(15, 3227, 0, 0, 0, 2, 0, 13370, 1, 1, 1, 0, 0, "", "Gossip option requires item 'Vitreous Focuser' not in inventory or bank");
DELETE FROM `gossip_menu_option` WHERE `MenuID` IN (3223, 3224, 3225, 3226, 3227, 3228, 3229);
INSERT INTO `gossip_menu_option` (`MenuID`, `OptionIndex`, `OptionIcon`, `OptionText`, `OptionBroadcastTextID`, `OptionType`, `OptionNpcFlag`, `VerifiedBuild`) VALUES
(3223, 0, 1, "I wish to purchase arcane quickener from you.", 6513, 3, 1, 0),
(3223, 1, 0, "What's needed for the cauldron at Felstone Field?", 6516, 1, 1, 0),
(3223, 2, 0, "What's needed for the cauldron at Dalson's Tears?", 6517, 1, 1, 0),
(3223, 3, 0, "What's needed for the cauldron at the Writhing Haunt?", 6518, 1, 1, 0),
(3223, 4, 0, "What's needed for the cauldron at Gahrron's Withering?", 6519, 1, 1, 0),
(3228, 0, 1, "I wish to purchase arcane quickener from you.", 6513, 3, 1, 0),
(3228, 1, 0, "What's needed for the cauldron at Felstone Field?", 6516, 1, 1, 0),
(3228, 2, 0, "What's needed for the cauldron at Dalson's Tears?", 6517, 1, 1, 0),
(3228, 3, 0, "What's needed for the cauldron at the Writhing Haunt?", 6518, 1, 1, 0),
(3228, 4, 0, "What's needed for the cauldron at Gahrron's Withering?", 6519, 1, 1, 0),
(3224, 0, 0, "I need a Vitreous Focuser.", 6531, 1, 1, 0),
(3225, 0, 0, "I need a Vitreous Focuser.", 6531, 1, 1, 0),
(3226, 0, 0, "I need a Vitreous Focuser.", 6531, 1, 1, 0),
(3227, 0, 0, "I need a Vitreous Focuser.", 6531, 1, 1, 0);
DELETE FROM `gossip_menu_option_action` WHERE `MenuId` IN (3223, 3228);
INSERT INTO `gossip_menu_option_action` (`MenuId`, `OptionIndex`, `ActionMenuId`, `ActionPoiId`) VALUES
(3223, 1, 3224, 0),
(3223, 2, 3225, 0),
(3223, 3, 3226, 0),
(3223, 4, 3227, 0),
(3228, 1, 3224, 0),
(3228, 2, 3225, 0),
(3228, 3, 3226, 0),
(3228, 4, 3227, 0);
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (11056, 11057) AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(11056, 0, 0, 1, 62, 0, 100, 0, 3224, 0, 0, 0, 72, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Alchemist Arbington - On Gossip Option Selected - Close Gossip"),
(11056, 0, 1, 0, 61, 0, 100, 0, 0, 0, 0, 0, 11, 17529, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Alchemist Arbington - On Gossip Option Selected - Cast 'Vitreous Focuser'"),
(11056, 0, 2, 3, 62, 0, 100, 0, 3225, 0, 0, 0, 72, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Alchemist Arbington - On Gossip Option Selected - Close Gossip"),
(11056, 0, 3, 0, 61, 0, 100, 0, 0, 0, 0, 0, 11, 17529, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Alchemist Arbington - On Gossip Option Selected - Cast 'Vitreous Focuser'"),
(11056, 0, 4, 5, 62, 0, 100, 0, 3226, 0, 0, 0, 72, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Alchemist Arbington - On Gossip Option Selected - Close Gossip"),
(11056, 0, 5, 0, 61, 0, 100, 0, 0, 0, 0, 0, 11, 17529, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Alchemist Arbington - On Gossip Option Selected - Cast 'Vitreous Focuser'"),
(11056, 0, 6, 7, 62, 0, 100, 0, 3227, 0, 0, 0, 72, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Alchemist Arbington - On Gossip Option Selected - Close Gossip"),
(11056, 0, 7, 0, 61, 0, 100, 0, 0, 0, 0, 0, 11, 17529, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Alchemist Arbington - On Gossip Option Selected - Cast 'Vitreous Focuser'"),
(11057, 0, 0, 1, 62, 0, 100, 0, 3224, 0, 0, 0, 72, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Apothecary Dithers - On Gossip Option Selected - Close Gossip"),
(11057, 0, 1, 0, 61, 0, 100, 0, 0, 0, 0, 0, 11, 17529, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Apothecary Dithers - On Gossip Option Selected - Cast 'Vitreous Focuser'"),
(11057, 0, 2, 3, 62, 0, 100, 0, 3225, 0, 0, 0, 72, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Apothecary Dithers - On Gossip Option Selected - Close Gossip"),
(11057, 0, 3, 0, 61, 0, 100, 0, 0, 0, 0, 0, 11, 17529, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Apothecary Dithers - On Gossip Option Selected - Cast 'Vitreous Focuser'"),
(11057, 0, 4, 5, 62, 0, 100, 0, 3226, 0, 0, 0, 72, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Apothecary Dithers - On Gossip Option Selected - Close Gossip"),
(11057, 0, 5, 0, 61, 0, 100, 0, 0, 0, 0, 0, 11, 17529, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Apothecary Dithers - On Gossip Option Selected - Cast 'Vitreous Focuser'"),
(11057, 0, 6, 7, 62, 0, 100, 0, 3227, 0, 0, 0, 72, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Apothecary Dithers - On Gossip Option Selected - Close Gossip"),
(11057, 0, 7, 0, 61, 0, 100, 0, 0, 0, 0, 0, 11, 17529, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Apothecary Dithers - On Gossip Option Selected - Cast 'Vitreous Focuser'");
@@ -1,38 +0,0 @@
-- Raliq the Drunk
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` = 18585;
DELETE FROM `smart_scripts` WHERE (source_type = 0 AND entryorguid = 18585);
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(18585, 0, 0, 0, 0, 0, 100, 0, 5000, 5000, 15000, 15000, 11, 10966, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 'Raliq the Drunk - In Combat - Cast \'Uppercut\''),
(18585, 0, 1, 2, 62, 0, 100, 0, 7729, 0, 0, 0, 72, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Raliq the Drunk - On Gossip Option 0 Selected - Close Gossip'),
(18585, 0, 2, 3, 61, 0, 100, 0, 0, 0, 0, 0, 2, 45, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Raliq the Drunk - On Gossip Option 0 Selected - Set Faction Ogre'),
(18585, 0, 3, 4, 61, 0, 100, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Raliq the Drunk - On Gossip Option 0 Selected - Say Line 0'),
(18585, 0, 4, 0, 61, 0, 100, 0, 0, 0, 0, 0, 49, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Raliq the Drunk - On Gossip Option 0 Selected - Start Attacking'),
(18585, 0, 5, 0, 25, 0, 100, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Raliq the Drunk - On Reset - Set Default Faction');
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` IN (14,15) AND `SourceGroup` = 7729;
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
(14, 7729, 9440, 0, 0, 9, 0, 10009, 0, 0, 0, 0, 0, '', 'Show gossip menu 7729 text id 9440 if quest Crackin\' Some Skulls has been taken.'),
(15, 7729, 0, 0, 0, 9, 0, 10009, 0, 0, 0, 0, 0, '', 'Show gossip menu 7729 option id 0 if quest Crackin\' Some Skulls has been taken.');
-- Sal\'salabim
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` = 18584;
-- Table smart_scripts
DELETE FROM `smart_scripts` WHERE (source_type = 0 AND entryorguid = 18584);
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(18584, 0, 0, 0, 0, 0, 100, 0, 15000, 15000, 15000, 15000, 11, 31705, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 'Sal\'salabim - In Combat - Cast \'Magnetic Pull\''),
(18584, 0, 1, 2, 62, 0, 100, 0, 7725, 0, 0, 0, 72, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Sal\'salabim - On Gossip Option 0 Selected - Close Gossip'),
(18584, 0, 2, 3, 61, 0, 100, 0, 0, 0, 0, 0, 2, 90, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Sal\'salabim - On Gossip Option 0 Selected - Set Faction Demon'),
(18584, 0, 3, 4, 61, 0, 100, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Sal\'salabim - On Gossip Option 0 Selected - Say Line 0'),
(18584, 0, 4, 5, 61, 0, 100, 0, 0, 0, 0, 0, 49, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Sal\'salabim - On Gossip Option 0 Selected - Start Attacking'),
(18584, 0, 5, 0, 61, 0, 100, 0, 0, 0, 0, 0, 42, 0, 19, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Sal\'salabim - On Gossip Option 0 Selected - Set Invincibility Hp 19%'),
(18584, 0, 6, 7, 2, 0, 100, 1, 0, 20, 0, 0, 15, 10004, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 'Sal\'salabim - On Health Below 20% - Quest Credit \'Patience and Understanding\''),
(18584, 0, 7, 0, 61, 0, 100, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Sal\'salabim - On Health Below 20% - Evade'),
(18584, 0, 8, 0, 25, 0, 100, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Sal\'salabim - On Reset - Set Default Faction');
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` IN (14,15) AND `SourceGroup` = 7725;
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 22 AND `SourceGroup` = 6 AND `SourceEntry` = 18584;
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
(14, 7725, 9435, 0, 0, 9, 0, 10004, 0, 0, 0, 0, 0, '', 'Show gossip menu 7725 text id 9440 if quest Patience and Understanding has been taken.'),
(15, 7725, 0, 0, 0, 9, 0, 10004, 0, 0, 0, 0, 0, '', 'Show gossip menu 7725 option id 0 if quest Patience and Understanding has been taken.');
@@ -1,7 +0,0 @@
--
-- UPDATE `quest_template_addon` SET `PrevQuestID`=364 WHERE `ID`=3096;
-- UPDATE `quest_template_addon` SET `PrevQuestID`=415 WHERE `ID`=413;
-- UPDATE `quest_request_items` SET `CompletionText`='Welcome to Camp Narache, $n. I hear good things about you. Your bloodline is strong, and many of the elders consider you skilled already. But that we will test.$b$bThe plains of Mulgore will be your home for sometime--you should do your best to learn it very well. One day you will travel to unfamilar lands to master greater skills. You must be ready.' WHERE `ID`=3092;
-- UPDATE `quest_offer_reward` SET `RewardText`='And it is my job to make sure you are prepared by teaching you the basics of our profession--how to tame your pet, how to fire your rifle, and many other skills that will become necessary.$b$bHunters are a strong part of our tradition and history, $n. You would do well to remember how important you are to the tribe. You will be respected and revered if you serve our people well.' WHERE `ID`=3092;
UPDATE `quest_offer_reward` SET `RewardText`='Just in time, $N! I was about ready to start digging a hole for our friend here.$B$BMy potion seems to be working; he\'s coming to.$B$BHey, I think he\'s trying to get your attention. Why don\'t you talk to him?' WHERE `ID`=9147;
UPDATE `quest_offer_reward` SET `RewardText`='It was just horrible! Night elves! They conjured their moon crystal here for some nefarious plot, but I snuck away and gathered a larger group of our scouts and casters from the nearby Sanctum of the Sun. We killed most of them and the rest of the group is hunting down the remnants!$B$BI\'m glad that you\'re here now; I was only left a couple of scouts for protection! It\'s not safe out here!$B$BGive me a moment and I\'ll read through these plans to see what the night elves are up to.' WHERE `ID`=9166;
@@ -1,17 +0,0 @@
--
-- Remove unique items from reference table 24076
DELETE FROM `reference_loot_template` WHERE `Item` IN (826, 1211, 1287, 1394, 1926, 1927, 1933, 2088, 4767, 4768, 4771);
-- Add former items from reference table 24076 to their proper NPCs
DELETE FROM `creature_loot_template` WHERE `Item` IN (826, 1211, 1287, 1394, 1926, 1927, 1933, 2088, 4767, 4768, 4771);
INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Chance`, `GroupId`) VALUES
(124, 826, 0.1, 0),
(423, 1211, 0.1, 0),
(442, 1287, 0.1, 0),
(171, 1394, 0.1, 0),
(824, 1926, 0.1, 0),
(594, 1927, 0.1, 0),
(619, 1933, 0.1, 0),
(831, 2088, 0.1, 0),
(3578, 4767, 3, 0),
(3270, 4768, 3, 2),
(3270, 4771, 3, 2);
@@ -1,11 +0,0 @@
--
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` = 10618;
DELETE FROM `gossip_menu_option` WHERE `MenuID` = 3130;
-- TODO check against live for what the actual gossip menu is. Didn't find anything helpful searching the broadcast_text table.
INSERT INTO `gossip_menu_option` (`MenuID`, `OptionIndex`, `OptionIcon`, `OptionText`, `OptionBroadcastTextID`, `OptionType`, `OptionNpcFlag`, `VerifiedBuild`) VALUES
(3130, 0, 1, "I would like to buy from you.", 2583, 3, 128, 0);
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 15 AND `SourceGroup` = 3130;
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
(15, 3130, 0, 0, 0, 5, 0, 589, 128, 0, 0, 0, 0, '', 'Show gossip menu 3130 option id 0 if player is Exalted with faction Wintersaber Trainers.');
@@ -1,19 +0,0 @@
-- Stillpine Hold overhaul
DELETE FROM `creature` WHERE `guid` IN (31934,36944,36956,36957,36958);
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES
(31934, 17432, 530, 0, 0, '0', 0, 0, 1, -3359.00, -12295.73, 21.895, 3.4643, 300, 0, 0, 176, 0, 0, 0, 0, 0, 0),
(36944, 17432, 530, 0, 0, '0', 0, 0, 1, -3362.50, -12403.92, 24.512, 2.2446, 300, 0, 0, 176, 0, 0, 0, 0, 0, 0),
(36956, 17432, 530, 0, 0, '0', 0, 0, 1, -3380.84, -12411.39, 19.330, 2.4017, 300, 0, 0, 176, 0, 0, 0, 0, 0, 0),
(36957, 17437, 530, 0, 0, '0', 0, 0, 1, -3339.58, -12352.24, 22.844, 5.8677, 300, 0, 0, 176, 0, 0, 0, 0, 0, 0),
(36958, 17438, 530, 0, 0, '0', 0, 0, 0, -3336.31, -12352.47, 23.182, 3.6591, 300, 0, 0, 176, 0, 0, 0, 0, 0, 0);
-- Update NPC movement, delete wrong models and ranged weapons, correct angle/distance of formation
UPDATE `creature` SET `spawndist`=0, `MovementType`=0 WHERE `guid` IN (62912, 62911, 62913, 62914, 62878, 62877, 62895, 62893, 62894, 62875, 62874, 62885);
UPDATE `creature_formations` SET `dist`=5, `angle`=270 WHERE `memberGUID`=62891;
-- UPDATE `creature_template` SET `modelid2`=6802, `modelid3`=0, `modelid4`=0 WHERE `entry` IN (17432, 17439, 17437);
UPDATE `creature_addon` SET `bytes2`=4097 WHERE `guid`=62892;
UPDATE `creature_equip_template` SET `ItemID3`=0 WHERE `CreatureID` IN (17432, 17443, 17446, 17445, 17444, 17440, 17442, 17441) AND `ID`=1;
-- Delete four NPCs and all Stillpine Raiders
DELETE FROM `creature` WHERE `guid` IN (62884, 62883, 60792, 60777);
DELETE FROM `creature` WHERE `id`=17495;
@@ -1,15 +0,0 @@
-- Shy-Rotam
DELETE FROM `smart_scripts` WHERE `entryorguid`=10737 AND `source_type`=0 AND `id` IN (3, 4);
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(10737,0,3,0,2,0,100,1,0,50,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Shy-Rotam - Between 0-50% Health - Say Line 0"),
(10737,0,4,0,2,0,100,1,0,50,0,0,12,10741,1,180000,0,0,0,8,0,0,0,8074.84,-3840,690.061,4.6,"Shy-Rotam - Between 0-50% Health - Summon Creature 'Sian-Rotam'"); -- I deleted/re-added this line to change the order of events
-- Sian-Rotam
DELETE FROM `smart_scripts` WHERE `entryorguid`=10741 AND `source_type`=0 AND `id`=4;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(10741,0,4,0,54,0,100,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sian-Rotam - Just Summoned - Say Line 0");
DELETE FROM `creature_text` WHERE `CreatureID` IN (10737, 10741);
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(10737,0,0,"%s roars out for her mate!",16,0,100,0,0,648,6039,0,"Shy-Rotam"),
(10741,0,0,"%s answers the call of Shy-Rotam.",16,0,100,0,0,0,6040,0,"Sian-Rotam");
@@ -1,36 +0,0 @@
-- Eldara Dawnrunner
DELETE FROM `creature_text` WHERE `CreatureID`=25032;
INSERT INTO `creature_text` (`CreatureID`,`GroupID`,`ID`,`Text`,`Type`,`Language`,`Probability`,`Emote`,`Duration`,`Sound`,`BroadcastTextId`,`TextRange`,`comment`) VALUES
(25032,0,0,"$n, it's very good to see you again!", 12,0,100,0,0,0,24086,0,'Eldara Dawnrunner'),
(25032,0,1,"Everyone look, it's $n!", 12,0,100,0,0,0,24087,0,'Eldara Dawnrunner'),
(25032,0,2,"Dawnblade, demons and naga beware, $n is back.", 12,0,100,0,0,0,24088,0,'Eldara Dawnrunner'),
(25032,0,3,"$G Milord : Milady;, $n, we are fortunate to have you here with us.", 12,0,100,0,0,0,24089,0,'Eldara Dawnrunner'),
(25032,0,4,"The Shattered Sun Offensive is lucky to have $n on our side.", 12,0,100,0,0,0,24098,0,'Eldara Dawnrunner'),
(25032,0,5,"If it weren't for $n, we'd all be long dead.", 12,0,100,0,0,0,24099,0,'Eldara Dawnrunner'),
(25032,0,6,"$n, thank you again for helping us. We couldn't have achieved any of this without you.", 12,0,100,0,0,0,24100,0,'Eldara Dawnrunner'),
(25032,0,7,"$Three cheers for $n!", 12,0,100,0,0,0,24102,0,'Eldara Dawnrunner'),
(25032,0,8,"It's an honor to serve with you, $n.", 12,0,100,0,0,0,24103,0,'Eldara Dawnrunner'),
(25032,0,9,"If I were one of those Dawnblade blood elves, I'd be swimming away from the island now that $n is here.", 12,0,100,0,0,0,24106,0,'Eldara Dawnrunner'),
(25032,0,10,"How many wretched do you think $n has put out of their misery?", 12,0,100,0,0,0,24107,0,'Eldara Dawnrunner'),
(25032,0,11,"Snap to attention, $n, one of our finest, is here!", 12,0,100,0,0,0,24108,0,'Eldara Dawnrunner'),
(25032,0,12,"Welcome back, $n.", 12,0,100,0,0,0,24110,0,'Eldara Dawnrunner'),
(25032,0,13,"There's our $g hero : heroine; right there! How are you doing, $n?", 12,0,100,0,0,0,24111,0,'Eldara Dawnrunner'),
(25032,0,14,"I guarantee that without $n, this whole offensive would have been a failure.", 12,0,100,0,0,0,24112,0,'Eldara Dawnrunner'),
(25032,0,15,"No matter what, your efforts will always be exalted here, $n!", 12,0,100,0,0,0,24113,0,'Eldara Dawnrunner'),
(25032,0,16,"Lay waste to the demons on the Dead Scar lately, $n?", 12,0,100,0,0,0,24115,0,'Eldara Dawnrunner'),
(25032,0,17,"$n, one of these days I want to buy you a drink.", 12,0,100,0,0,0,24116,0,'Eldara Dawnrunner'),
(25032,0,18,"$n, you have no idea what a relief it is to see you!", 12,0,100,0,0,0,24119,0,'Eldara Dawnrunner'),
(25032,0,19,"What a coincidence... we were just talking about you, $n!", 12,0,100,0,0,0,24120,0,'Eldara Dawnrunner'),
(25032,0,20,"Who needs sentries? $n is here!", 12,0,100,0,0,0,24121,0,'Eldara Dawnrunner'),
(25032,0,21,"Hey, $n, try to leave some of the glory for us, would ya?", 12,0,100,0,0,0,24122,0,'Eldara Dawnrunner'),
(25032,0,22,"Do not fight the enemy unprepared, $n. I can provide you with very powerful items... provided you have proven yourself to us.", 12,0,100,0,0,0,24302,0,'Eldara Dawnrunner'),
(25032,0,23,"I don't even want to think about what'll happen here if $n ever decides not to come back.", 12,0,100,0,0,0,24117,0,'Eldara Dawnrunner');
UPDATE `creature_template` SET `AIName` = 'SmartAI' WHERE `entry`=25032;
DELETE FROM `smart_scripts` WHERE (`source_type`=0 AND `entryorguid`=25032);
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(25032,0,0,0,10,0,100,0,1,20,120000,120000,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,'Eldara Dawnrunner - OOC LOS - Say Line');
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=22 AND `SourceEntry`=25032;
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
(22, 1, 25032, 0, 0, 5, 0, 1077, 128, 0, 0, 0, 0, '', 'Smart event 0 for Eldara Dawnrunner will execute if the payer is exalted with Shattered Sun');
@@ -1,4 +0,0 @@
--
UPDATE `creature_template` SET `unit_flags`=512, `ScriptName`="npc_captain_tyralius" WHERE `entry`=20787;
UPDATE `creature_template` SET `AIName`="" WHERE `entry`=20825;
DELETE FROM `creature` WHERE `id` IN (20787, 20825);
@@ -1,3 +0,0 @@
--
UPDATE `creature_template_addon` SET `mount`=0 WHERE `entry`=18146;
UPDATE `smart_scripts` SET `action_param6`=2 WHERE `entryorguid`=18146 AND `source_type`=0 AND `id`=0;
@@ -1,24 +0,0 @@
--
DELETE FROM `creature_text` WHERE `CreatureID` IN (18175, 18174);
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(18175, 0, 0, "Matters are so uncertain now that the chamber below is empty...", 12, 1, 100, 1, 0, 0, 14831, 0, "Initiate Emeline"),
(18175, 0, 1, "It's gone. I can't believe it's gone. Who would have thought we'd be betrayed like this?", 12, 1, 100, 1, 0, 0, 14833, 0, "Initiate Emeline"),
(18175, 1, 0, "Our neighbors are positively laughable. Have you seen the way they turn up their noses at us?", 12, 1, 100, 1, 0, 0, 14815, 0, "Initiate Emeline"),
(18175, 1, 1, "The rangers certainly have a high opinion of themselves.", 12, 1, 100, 1, 0, 0, 14818, 0, "Initiate Emeline"),
(18175, 1, 2, "I'm quickly tiring of the haughty attitude I receive from those grubby bowslingers outside.", 12, 1, 100, 1, 0, 0, 14819, 0, "Initiate Emeline"),
(18174, 0, 0, "Lady Liadrin is bound to find a way. She must.", 12, 1, 100, 1, 0, 0, 14838, 0, "Initiate Colin"),
(18174, 0, 1, "Is... it true, what I've heard? That it was the Sun King himself?", 12, 1, 100, 1, 0, 0, 14839, 0, "Initiate Colin"),
(18174, 0, 2, "Still, the Blood Knights will endure through this loss. We have no other choice... we must find another source.", 12, 1, 100, 1, 0, 0, 14840, 0, "Initiate Colin"),
(18174, 1, 0, "Who do they think they are?", 12, 1, 100, 1, 0, 0, 14820, 0, "Initiate Colin"),
(18174, 1, 1, "I know what you mean... they whisper about us when they think we can't hear them. They'll get theirs.", 12, 1, 100, 1, 0, 0, 14821, 0, "Initiate Colin"),
(18174, 1, 2, "Jealous, that's what they are. They're afraid to dedicate themselves to true power.", 12, 1, 100, 1, 0, 0, 14822, 0, "Initiate Colin"),
(18174, 1, 3, "They simply fear what they cannot begin to understand.", 12, 1, 100, 1, 0, 0, 14823, 0, "Initiate Colin");
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=18175;
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (18175, 1817500, 1817501) AND `source_type` IN (0, 9);
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(18175, 0, 0, 0, 1, 0, 100, 0, 10000, 20000, 30000, 180000, 87, 1817500, 1817501, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Initiate Emeline - Out Of Combat - Run Script"),
(1817500, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Initiate Emeline - On Script - Say Line 0"),
(1817500, 9, 1, 0, 0, 0, 100, 0, 5000, 5000, 0, 0, 1, 0, 0, 0, 0, 0, 0, 19, 18174, 0, 0, 0, 0, 0, 0, "Initiate Emeline - On Script - Say Line 0 (Initiate Colin)"),
(1817501, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Initiate Emeline - On Script - Say Line 1"),
(1817501, 9, 1, 0, 0, 0, 100, 0, 5000, 5000, 0, 0, 1, 1, 0, 0, 0, 0, 0, 19, 18174, 0, 0, 0, 0, 0, 0, "Initiate Emeline - On Script - Say Line 1 (Initiate Colin)");
@@ -1,3 +0,0 @@
--
UPDATE `smart_scripts` SET `event_chance`=25 WHERE `entryorguid` IN (23663,23665) AND `id`=4;
UPDATE `smart_scripts` SET `event_chance`=25 WHERE `entryorguid` IN (23664, 23666) AND `id`=3;
@@ -1,107 +0,0 @@
--
UPDATE `creature` SET `spawndist`=0, `MovementType`=0 WHERE `guid` IN (117664, 117670, 117671, 117672, 117677);
DELETE FROM `creature_addon` WHERE `guid` IN (117664, 117670, 117671, 117672, 117677);
INSERT INTO `creature_addon` (`guid`, `emote`) VALUES
(117664, 383),
(117670, 383),
(117671, 383),
(117672, 383),
(117677, 383);
UPDATE `smart_scripts` SET `comment`="Gjalerbron Prisoner - On Data Set - Run Script" WHERE `entryorguid`=24035 AND `source_type`=0 AND `id`=0;
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (2403500, -117691, -117692, -117693, -117694, -117695, -117696, -117697, -117698, -117699, -117700, -117701, -117702, -117703, -117704, -117705, -117708, -117710, -117713, -117714);
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(2403500, 9, 0, 0, 0, 0, 100, 1, 0, 0, 0, 0, 33, 24035, 0, 0, 0, 0, 0, 12, 1, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - On Script - Kill Credit"),
(2403500, 9, 1, 0, 0, 0, 100, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - On Script - Say Line 1"),
(2403500, 9, 2, 0, 0, 0, 100, 1, 3000, 3000, 0, 0, 41, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - On Script - Despawn Instant"),
(-117691, 0, 0, 0, 38, 0, 100, 513, 1, 1, 0, 0, 80, 2403500, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - On Data Set - Run Script"),
(-117691, 0, 1, 0, 1, 0, 25, 0, 20000, 50000, 60000, 120000, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - OOC - Say Line 0"),
(-117692, 0, 0, 0, 38, 0, 100, 513, 1, 1, 0, 0, 80, 2403500, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - On Data Set - Run Script"),
(-117692, 0, 1, 0, 1, 0, 25, 0, 20000, 50000, 60000, 120000, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - OOC - Say Line 0"),
(-117693, 0, 0, 0, 38, 0, 100, 513, 1, 1, 0, 0, 80, 2403500, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - On Data Set - Run Script"),
(-117693, 0, 1, 0, 1, 0, 25, 0, 20000, 50000, 60000, 120000, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - OOC - Say Line 0"),
(-117694, 0, 0, 0, 38, 0, 100, 513, 1, 1, 0, 0, 80, 2403500, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - On Data Set - Run Script"),
(-117694, 0, 1, 0, 1, 0, 25, 0, 20000, 50000, 60000, 120000, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - OOC - Say Line 0"),
(-117695, 0, 0, 0, 38, 0, 100, 513, 1, 1, 0, 0, 80, 2403500, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - On Data Set - Run Script"),
(-117695, 0, 1, 0, 1, 0, 25, 0, 20000, 50000, 60000, 120000, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - OOC - Say Line 0"),
(-117696, 0, 0, 0, 38, 0, 100, 513, 1, 1, 0, 0, 80, 2403500, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - On Data Set - Run Script"),
(-117696, 0, 1, 0, 1, 0, 25, 0, 20000, 50000, 60000, 120000, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - OOC - Say Line 0"),
(-117697, 0, 0, 0, 38, 0, 100, 513, 1, 1, 0, 0, 80, 2403500, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - On Data Set - Run Script"),
(-117697, 0, 1, 0, 1, 0, 25, 0, 20000, 50000, 60000, 120000, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - OOC - Say Line 0"),
(-117698, 0, 0, 0, 38, 0, 100, 513, 1, 1, 0, 0, 80, 2403500, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - On Data Set - Run Script"),
(-117698, 0, 1, 0, 1, 0, 25, 0, 20000, 50000, 60000, 120000, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - OOC - Say Line 0"),
(-117699, 0, 0, 0, 38, 0, 100, 513, 1, 1, 0, 0, 80, 2403500, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - On Data Set - Run Script"),
(-117699, 0, 1, 0, 1, 0, 25, 0, 20000, 50000, 60000, 120000, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - OOC - Say Line 0"),
(-117700, 0, 0, 0, 38, 0, 100, 513, 1, 1, 0, 0, 80, 2403500, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - On Data Set - Run Script"),
(-117700, 0, 1, 0, 1, 0, 25, 0, 20000, 50000, 60000, 120000, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - OOC - Say Line 0"),
(-117701, 0, 0, 0, 38, 0, 100, 513, 1, 1, 0, 0, 80, 2403500, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - On Data Set - Run Script"),
(-117701, 0, 1, 0, 1, 0, 25, 0, 20000, 50000, 60000, 120000, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - OOC - Say Line 0"),
(-117702, 0, 0, 0, 38, 0, 100, 513, 1, 1, 0, 0, 80, 2403500, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - On Data Set - Run Script"),
(-117702, 0, 1, 0, 1, 0, 25, 0, 20000, 50000, 60000, 120000, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - OOC - Say Line 0"),
(-117703, 0, 0, 0, 38, 0, 100, 513, 1, 1, 0, 0, 80, 2403500, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - On Data Set - Run Script"),
(-117703, 0, 1, 0, 1, 0, 25, 0, 20000, 50000, 60000, 120000, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - OOC - Say Line 0"),
(-117704, 0, 0, 0, 38, 0, 100, 513, 1, 1, 0, 0, 80, 2403500, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - On Data Set - Run Script"),
(-117704, 0, 1, 0, 1, 0, 25, 0, 20000, 50000, 60000, 120000, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - OOC - Say Line 0"),
(-117705, 0, 0, 0, 38, 0, 100, 513, 1, 1, 0, 0, 80, 2403500, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - On Data Set - Run Script"),
(-117705, 0, 1, 0, 1, 0, 25, 0, 20000, 50000, 60000, 120000, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - OOC - Say Line 0"),
(-117708, 0, 0, 0, 38, 0, 100, 513, 1, 1, 0, 0, 80, 2403500, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - On Data Set - Run Script"),
(-117708, 0, 1, 0, 1, 0, 25, 0, 20000, 50000, 60000, 120000, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - OOC - Say Line 0"),
(-117710, 0, 0, 0, 38, 0, 100, 513, 1, 1, 0, 0, 80, 2403500, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - On Data Set - Run Script"),
(-117710, 0, 1, 0, 1, 0, 25, 0, 20000, 50000, 60000, 120000, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - OOC - Say Line 0"),
(-117713, 0, 0, 0, 38, 0, 100, 513, 1, 1, 0, 0, 80, 2403500, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - On Data Set - Run Script"),
(-117713, 0, 1, 0, 1, 0, 25, 0, 20000, 50000, 60000, 120000, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - OOC - Say Line 0"),
(-117714, 0, 0, 0, 38, 0, 100, 513, 1, 1, 0, 0, 80, 2403500, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - On Data Set - Run Script"),
(-117714, 0, 1, 0, 1, 0, 25, 0, 20000, 50000, 60000, 120000, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Gjalerbron Prisoner - OOC - Say Line 0");
UPDATE `creature_template` SET `InhabitType`=5 WHERE `entry`=24035;
DELETE FROM `creature_text` WHERE `CreatureID`=24035;
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(24035, 0, 0, "Please, let me out of here!", 12, 0, 100, 0, 0, 0, 22637, 0, "Gjalerbron Prisoner"),
(24035, 0, 1, "The key... you have to find the key!", 12, 0, 100, 0, 0, 0, 22638, 0, "Gjalerbron Prisoner"),
(24035, 0, 2, "I think I saw a key on one of those vrykul.", 12, 0, 100, 0, 0, 0, 22639, 0, "Gjalerbron Prisoner"),
(24035, 0, 3, "I don't want to be taken down into the catacombs!", 12, 0, 100, 0, 0, 0, 22640, 0, "Gjalerbron Prisoner"),
(24035, 0, 4, "I don't want to be sacrificed!", 12, 0, 100, 0, 0, 0, 22641, 0, "Gjalerbron Prisoner"),
(24035, 0, 5, "They're performing unholy rites down in the catacombs, and I'm about to be the sacrifice!", 12, 0, 100, 0, 0, 0, 22642, 0, "Gjalerbron Prisoner"),
(24035, 0, 6, "Is there no hero to rescue me?", 12, 0, 100, 0, 0, 0, 22643, 0, "Gjalerbron Prisoner"),
(24035, 0, 7, "This is the end.", 12, 0, 100, 0, 0, 0, 22644, 0, "Gjalerbron Prisoner"),
(24035, 0, 8, "I think I saw a key on one of those Gjalerbron vrykul up top.", 12, 0, 100, 0, 0, 0, 23649, 0, "Gjalerbron Prisoner"),
(24035, 1, 0, "Oh, thank you, thank you!", 12, 0, 100, 0, 0, 0, 22645, 0, "Gjalerbron Prisoner"),
(24035, 1, 1, "Thank you. I will not forget this!", 12, 0, 100, 0, 0, 0, 22646, 0, "Gjalerbron Prisoner"),
(24035, 1, 2, "Avenge my friends who have already been sacrificed!", 12, 0, 100, 0, 0, 0, 22647, 0, "Gjalerbron Prisoner"),
(24035, 1, 3, "You have to put a stop to this madness before it's too late!", 12, 0, 100, 0, 0, 0, 22648, 0, "Gjalerbron Prisoner"),
(24035, 1, 4, "My thanks to you, hero!", 12, 0, 100, 0, 0, 0, 22649, 0, "Gjalerbron Prisoner"),
(24035, 1, 5, "The vrykul are evil and must be destroyed!", 12, 0, 100, 0, 0, 0, 22650, 0, "Gjalerbron Prisoner"),
(24035, 1, 6, "You saved my life!", 12, 0, 100, 0, 0, 0, 22651, 0, "Gjalerbron Prisoner"),
(24035, 1, 7, "Thank goodness for you!", 12, 0, 100, 0, 0, 0, 22652, 0, "Gjalerbron Prisoner");
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (-115239,-115235,-115236,-115238,-48198);
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(-115239, 0, 0, 0, 4, 0, 50, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Necrolord - On aggro - Say text 0"),
(-115239, 0, 1, 0, 0, 0, 100, 0, 2000, 3000, 3000, 3500, 11, 9613, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Necrolord - IC - Cast Shadow Bolt"),
(-115239, 0, 2, 0, 0, 0, 100, 0, 3000, 7000, 10000, 20000, 11, 17173, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Necrolord - IC - Drain Life"),
(-115239, 0, 3, 0, 0, 0, 100, 0, 5000, 8000, 25000, 30000, 11, 18267, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Necrolord - IC - Curse of Weakness"),
(-115239, 0, 4, 0, 1, 0, 100, 1, 2000, 2000, 0, 0, 11, 43151, 0, 0, 0, 0, 0, 10, 117664, 24035, 0, 0, 0, 0, 0, "Necrolord - OOC - cast Necrolord: Purple Beam"),
(-115235, 0, 0, 0, 4, 0, 50, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Necrolord - On aggro - Say text 0"),
(-115235, 0, 1, 0, 0, 0, 100, 0, 2000, 3000, 3000, 3500, 11, 9613, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Necrolord - IC - Cast Shadow Bolt"),
(-115235, 0, 2, 0, 0, 0, 100, 0, 3000, 7000, 10000, 20000, 11, 17173, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Necrolord - IC - Drain Life"),
(-115235, 0, 3, 0, 0, 0, 100, 0, 5000, 8000, 25000, 30000, 11, 18267, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Necrolord - IC - Curse of Weakness"),
(-115235, 0, 4, 0, 1, 0, 100, 1, 2000, 2000, 0, 0, 11, 43151, 0, 0, 0, 0, 0, 10, 117671, 24035, 0, 0, 0, 0, 0, "Necrolord - OOC - cast Necrolord: Purple Beam"),
(-115236, 0, 0, 0, 4, 0, 50, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Necrolord - On aggro - Say text 0"),
(-115236, 0, 1, 0, 0, 0, 100, 0, 2000, 3000, 3000, 3500, 11, 9613, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Necrolord - IC - Cast Shadow Bolt"),
(-115236, 0, 2, 0, 0, 0, 100, 0, 3000, 7000, 10000, 20000, 11, 17173, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Necrolord - IC - Drain Life"),
(-115236, 0, 3, 0, 0, 0, 100, 0, 5000, 8000, 25000, 30000, 11, 18267, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Necrolord - IC - Curse of Weakness"),
(-115236, 0, 4, 0, 1, 0, 100, 1, 2000, 2000, 0, 0, 11, 43151, 0, 0, 0, 0, 0, 10, 117672, 24035, 0, 0, 0, 0, 0, "Necrolord - OOC - cast Necrolord: Purple Beam"),
(-115238, 0, 0, 0, 4, 0, 50, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Necrolord - On aggro - Say text 0"),
(-115238, 0, 1, 0, 0, 0, 100, 0, 2000, 3000, 3000, 3500, 11, 9613, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Necrolord - IC - Cast Shadow Bolt"),
(-115238, 0, 2, 0, 0, 0, 100, 0, 3000, 7000, 10000, 20000, 11, 17173, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Necrolord - IC - Drain Life"),
(-115238, 0, 3, 0, 0, 0, 100, 0, 5000, 8000, 25000, 30000, 11, 18267, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Necrolord - IC - Curse of Weakness"),
(-115238, 0, 4, 0, 1, 0, 100, 1, 2000, 2000, 0, 0, 11, 43151, 0, 0, 0, 0, 0, 10, 117677, 24035, 0, 0, 0, 0, 0, "Necrolord - OOC - cast Necrolord: Purple Beam"),
(-48198, 0, 0, 0, 4, 0, 50, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Necrolord - On aggro - Say text 0"),
(-48198, 0, 1, 0, 0, 0, 100, 0, 2000, 3000, 3000, 3500, 11, 9613, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Necrolord - IC - Cast Shadow Bolt"),
(-48198, 0, 2, 0, 0, 0, 100, 0, 3000, 7000, 10000, 20000, 11, 17173, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Necrolord - IC - Drain Life"),
(-48198, 0, 3, 0, 0, 0, 100, 0, 5000, 8000, 25000, 30000, 11, 18267, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Necrolord - IC - Curse of Weakness"),
(-48198, 0, 4, 0, 1, 0, 100, 1, 2000, 2000, 0, 0, 11, 43151, 0, 0, 0, 0, 0, 10, 117670, 24035, 0, 0, 0, 0, 0, "Necrolord - OOC - cast Necrolord: Purple Beam");
DELETE FROM `creature` WHERE `guid`=48198;
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES
(48198, 24014, 571, 0, 0, '0', 0, 0, 1,2598.214, -3574.1608, 161.379, 4.197266, 300, 0, 0, 7185, 0, 0, 0, 0, 0, 0);
@@ -1,21 +0,0 @@
UPDATE `creature_text` SET `type`=14 WHERE `CreatureID`=24118;
UPDATE `creature_template` SET `InhabitType`=4 WHERE `entry`=24118;
DELETE FROM `smart_scripts` WHERE `entryorguid`=23671 AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(23671, 0, 0, 1, 54, 0, 100, 512, 0, 0, 0, 0, 64, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Halfdan the Ice-Hearted - On Just Summoned - Store Target (Invoker)"),
(23671, 0, 1, 2, 61, 0, 100, 512, 0, 0, 0, 0, 44, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Halfdan the Ice-Hearted - On Just Summoned - Set Phasemask 3"),
(23671, 0, 2, 3, 61, 0, 100, 512, 0, 0, 0, 0, 1, 0, 5000, 0, 0, 0, 0, 12, 1, 0, 0, 0, 0, 0, 0, "Halfdan the Ice-Hearted - On Just Summoned - Talk 0"),
(23671, 0, 3, 4, 61, 0, 100, 512, 0, 0, 0, 0, 44, 1, 0, 0, 0, 0, 0, 9, 24118, 0, 90, 0, 0, 0, 0, "Halfdan the Ice-Hearted - On Just Summoned - Change Phasemask of Val'kyr Observer"),
(23671, 0, 4, 0, 61, 0, 100, 512, 0, 0, 0, 0, 18, 256, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Halfdan the Ice-Hearted - On Just Summoned - Set Unitflag IMMUNE_TO_PC"),
(23671, 0, 5, 6, 52, 0, 100, 0, 0, 23671, 0, 0, 1, 1, 0, 0, 0, 0, 0, 12, 1, 0, 0, 0, 0, 0, 0, "Halfdan the Ice-Hearted - On Text 0 Over - Talk 1"),
(23671, 0, 6, 7, 61, 0, 100, 0, 0, 0, 0, 0, 19, 256, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Halfdan the Ice-Hearted - On Text 0 Over - Remove Unitflag IMMUNE_TO_PC"),
(23671, 0, 7, 0, 61, 0, 100, 0, 0, 0, 0, 0, 49, 0, 0, 0, 0, 0, 0, 12, 1, 0, 0, 0, 0, 0, 0, "Halfdan the Ice-Hearted - On Text 0 Over - Start Attack"),
(23671, 0, 8, 9, 2, 0, 100, 1, 0, 50, 0, 0, 1, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Halfdan the Ice-Hearted - Between 0% and 50% Health - Talk 2 (No Repeat\)"),
(23671, 0, 9, 0, 61, 0, 100, 0, 0, 0, 0, 0, 11, 8599, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Halfdan the Ice-Hearted - Between 50% and 75% Health - Cast 'Enrage' (No Repeat\)"),
(23671, 0, 10, 11, 6, 0, 100, 0, 0, 0, 0, 0, 45, 1, 1, 0, 0, 0, 0, 9, 24118, 0, 90, 0, 0, 0, 0, "Halfdan the Ice-Hearted - On Death - Set Data 1 1 to Val'kyr Observer"),
(23671, 0, 11, 0, 61, 0, 100, 0, 0, 0, 0, 0, 11, 43091, 2, 0, 0, 0, 0, 19, 23837, 0, 0, 0, 0, 0, 0, "Halfdan the Ice-Hearted - On Death - Cast 'Stop the Ascension!: Summon Halfdan's Soul'"),
(23671, 0, 12, 0, 0, 0, 100, 0, 2000, 5000, 9500, 11500, 11, 35263, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Halfdan the Ice-Hearted - In Combat - Cast 'Frost Attack'"),
(23671, 0, 13, 0, 0, 0, 100, 0, 2500, 5000, 6000, 10000, 11, 32736, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Halfdan the Ice-Hearted - In Combat - Cast 'Mortal Strike'"),
(23671, 0, 14, 0, 0, 0, 100, 0, 1250, 5000, 5000, 6000, 11, 12169, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Halfdan the Ice-Hearted - In Combat - Cast 'Shield Block'"),
(23671, 0, 15, 0, 0, 0, 100, 0, 3000, 8000, 4000, 12000, 11, 32015, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Halfdan the Ice-Hearted - In Combat - Cast 'Knockdown'"),
(23671, 0, 16, 0, 9, 0, 100, 0, 8, 25, 5000, 5000, 11, 19131, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Halfdan the Ice-Hearted - Within 8-25 Range - Cast 'Shield Charge'");
@@ -1,72 +0,0 @@
-- Dr. Witherlimb SAI/waypoints and speech
SET @ENTRY := 22062;
SET @GUID_1 := 77937;
SET @GUID_2 := 77938;
SET @GUID_3 := 77939;
SET @GUID_4 := 77940;
SET @PATHID_1 := @GUID_1 * 10;
SET @PATHID_2 := @GUID_2 * 10;
SET @PATHID_3 := @GUID_3 * 10;
SET @PATHID_4 := @GUID_4 * 10;
-- Dr. Whitherlimb SAI
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,0,0,0,100,0,1500,2500,4000,6000,11,21067,0,0,0,0,0,2,0,0,0,0,0,0,0,"Dr. Whitherlimb - In Combat CMC - Cast 'Poison Bolt'"),
(@ENTRY,0,1,0,0,0,100,0,8000,15000,15000,30000,11,38864,33,0,0,0,0,5,0,0,0,0,0,0,0,"Dr. Whitherlimb - In Combat CMC - Cast 'Withering Poison'"),
(@ENTRY,0,2,0,2,0,100,0,0,50,35000,45000,11,38871,1,0,0,0,0,1,0,0,0,0,0,0,0,"Dr. Whitherlimb - Between 0-50% Health - Cast 'Monstrous Elixir'"),
(@ENTRY,0,3,0,4,0,100,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Dr. Whitherlimb - On Aggro - Say Line 0"),
(@ENTRY,0,4,0,5,0,100,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Dr. Whitherlimb - On Killed Unit - Say Line 1");
-- Add speech of Dr. Whitherlimb
DELETE FROM `creature_text` WHERE `CreatureID`=@ENTRY;
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `BroadcastTextId`, `comment`) VALUES
(@ENTRY, 0, 0, "Excellent! Fresh parts!", 12, 0, 100, 19887, "Dr. Whitherlimb - Aggro"),
(@ENTRY, 1, 0, "It is very kind of you to donate your organs!", 12, 0, 0, 19888, "Dr. Whitherlimb - Kill"),
(@ENTRY, 1, 1, "Be proud, your brain will be put to good use in one of my abominations.", 12, 0, 0, 19889, "Dr. Whitherlimb - Kill");
-- Update spawn timer (20h previously) and MovementType
UPDATE `creature` SET `spawntimesecs`=7200, `MovementType`=2 WHERE `id`=@ENTRY;
-- Add waypoints of Dr. Whitherlimb
DELETE FROM `creature_addon` WHERE `guid` IN (@GUID_1, @GUID_2, @GUID_3, @GUID_4);
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES
(@GUID_1, @PATHID_1),
(@GUID_2, @PATHID_2),
(@GUID_3, @PATHID_3),
(@GUID_4, @PATHID_4);
DELETE FROM `waypoint_data` WHERE `id` IN (@PATHID_1, @PATHID_2, @PATHID_3, @PATHID_4);
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`) VALUES
(@PATHID_1, 1, 7160.109, -6607.731, 60.658),
(@PATHID_1, 2, 7157.843, -6617.142, 60.658),
(@PATHID_1, 3, 7162.991, -6624.500, 60.658),
(@PATHID_1, 4, 7171.727, -6626.077, 60.864),
(@PATHID_1, 5, 7176.713, -6622.445, 63.658),
(@PATHID_1, 6, 7179.540, -6610.650, 63.658),
(@PATHID_1, 7, 7175.270, -6604.530, 60.658),
(@PATHID_1, 8, 7167.625, -6603.202, 60.658),
(@PATHID_2, 1, 7224.314, -6404.754, 56.166),
(@PATHID_2, 2, 7215.937, -6405.194, 56.166),
(@PATHID_2, 3, 7211.889, -6409.292, 59.166),
(@PATHID_2, 4, 7212.473, -6421.642, 59.166),
(@PATHID_2, 5, 7216.754, -6426.262, 56.166),
(@PATHID_2, 6, 7225.599, -6425.639, 56.166),
(@PATHID_2, 7, 7231.386, -6419.246, 56.166),
(@PATHID_2, 8, 7230.532, -6411.129, 56.166),
(@PATHID_3, 1, 6294.176, -6468.075, 83.011),
(@PATHID_3, 2, 6301.176, -6475.325, 83.011),
(@PATHID_3, 3, 6309.716, -6475.180, 83.011),
(@PATHID_3, 4, 6315.844, -6468.936, 83.197),
(@PATHID_3, 5, 6315.235, -6462.805, 86.010),
(@PATHID_3, 6, 6306.685, -6453.575, 86.010),
(@PATHID_3, 7, 6300.742, -6453.973, 83.010),
(@PATHID_3, 8, 6294.723, -6459.484, 83.010),
(@PATHID_4, 1, 6305.395, -6258.748, 77.813),
(@PATHID_4, 2, 6312.150, -6258.673, 80.813),
(@PATHID_4, 3, 6319.655, -6250.082, 80.813),
(@PATHID_4, 4, 6320.900, -6243.770, 77.942),
(@PATHID_4, 5, 6314.049, -6237.902, 77.813),
(@PATHID_4, 6, 6305.433, -6238.323, 77.813),
(@PATHID_4, 7, 6299.604, -6244.360, 77.813),
(@PATHID_4, 8, 6299.698, -6253.437, 77.813);
@@ -1,37 +0,0 @@
-- Warsong Battleguard (25242), Warsong Honor Guard (25243)
DELETE FROM `creature_text` WHERE `CreatureID` IN (25242,25243);
INSERT INTO `creature_text` (`CreatureID`,`GroupID`,`ID`,`Text`,`Type`,`Language`,`Probability`,`Emote`,`Duration`,`Sound`,`BroadcastTextId`,`TextRange`,`comment`) VALUES
(25242,0,0,"$g Sir:Ma'am;, my life for the Horde!",12,1,100,0,0,0,25267,0,'Warsong Battleguard'),
(25242,0,1,"Welcome back, champion.",12,1,100,0,0,0,25268,0,'Warsong Battleguard'),
(25242,0,2,"It is an honor to serve along your side, $g sir:ma'am;.",12,1,100,0,0,0,25269,0,'Warsong Battleguard'),
(25242,0,3,"Lok'tar ogar!",12,1,100,0,0,0,25270,0,'Warsong Battleguard'),
(25242,0,4,"Throm-Ka, hero!",12,1,100,0,0,0,25271,0,'Warsong Battleguard'),
(25242,0,5,"With your strength and determination, we cannot fail!",12,1,100,0,0,0,25272,0,'Warsong Battleguard'),
(25242,0,6,"There walks a hero!",12,1,100,0,0,0,25273,0,'Warsong Battleguard'),
(25242,0,7,"It's $n! Bow your heads!",12,1,100,0,0,0,25274,0,'Warsong Battleguard'),
(25242,0,8,"%s cheers at you.",16,1,100,0,0,0,25275,0,'Warsong Battleguard'),
(25243,0,0,"$g Sir:Ma'am;, my life for the Horde!",12,1,100,0,0,0,25267,0,'Warsong Honor Guard'),
(25243,0,1,"Welcome back, champion.",12,1,100,0,0,0,25268,0,'Warsong Honor Guard'),
(25243,0,2,"It is an honor to serve along your side, $g sir:ma'am;.",12,1,100,0,0,0,25269,0,'Warsong Honor Guard'),
(25243,0,3,"Lok'tar ogar!",12,1,100,0,0,0,25270,0,'Warsong Honor Guard'),
(25243,0,4,"Throm-Ka, hero!",12,1,100,0,0,0,25271,0,'Warsong Honor Guard'),
(25243,0,5,"With your strength and determination, we cannot fail!",12,1,100,0,0,0,25272,0,'Warsong Honor Guard'),
(25243,0,6,"There walks a hero!",12,1,100,0,0,0,25273,0,'Warsong Honor Guard'),
(25243,0,7,"It's $n! Bow your heads!",12,1,100,0,0,0,25274,0,'Warsong Honor Guard'),
(25243,0,8,"%s cheers at you.",16,1,100,0,0,0,25275,0,'Warsong Honor Guard');
UPDATE `creature_equip_template` SET `ItemID1`=34640, `ItemID2`=21549 WHERE `CreatureID`=25242;
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry` IN (25242,25243);
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (25242,25243);
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(25242, 0, 0, 0, 10, 0, 40, 0, 1, 20, 120000, 180000, 1, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Warsong Battleguard - OOC LOS - Say Line'),
(25242, 0, 1, 0, 9, 0, 100, 0, 5, 30, 2000, 2000, 11, 36980, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 'Warsong Battleguard - At rang - Cast Shoot'),
(25242, 0, 2, 0, 2, 0, 100, 1, 0, 30, 0, 0, 11, 8599, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Warsong Battleguard - HPCT - Cast Enrage'),
(25243, 0, 0, 0, 10, 0, 40, 0, 1, 20, 120000, 180000, 1, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Warsong Honor Guard - OOC LOS - Say Line'),
(25243, 0, 1, 0, 9, 0, 100, 0, 5, 30, 2000, 2000, 11, 36980, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 'Warsong Honor Guard - At rang - Cast Shoot'),
(25243, 0, 2, 0, 2, 0, 100, 1, 0, 30, 0, 0, 11, 8599, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Warsong Honor Guard - HPCT - Cast Enrage');
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`= 22 AND `ConditionTypeOrReference`= 8 AND `SourceEntry` IN (25242,25243);
INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition`,`ErrorType`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES
(22, 1, 25242, 0, 0, 8, 0, 11916, 0, 0, 0, 0, 0, '', 'Warsong Battleguard - Only run SAI if quest 11916 is rewarded'),
(22, 1, 25243, 0, 0, 8, 0, 11916, 0, 0, 0, 0, 0, '', 'Warsong Honor Guard - Only run SAI if quest 11916 is rewarded');
@@ -1,14 +0,0 @@
--
UPDATE `creature_text` SET `Text`="Thank ye, $G lad:lass;. Thank ye, greatly.", `Emote`=2, `BroadcastTextId`=2283 WHERE `CreatureID`=6172 AND `GroupID`=0;
UPDATE `creature_text` SET `Text`="Thank you, $G lad:lass;. Thank you, greatly.", `Language`=6, `BroadcastTextId`=2281 WHERE `CreatureID`=6177 AND `GroupID`=0;
DELETE FROM `creature_text` WHERE `CreatureID`=17768;
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(17768, 0, 0, "This is... Silvermoon? My head... Next time Bloodvalor needs a volunteer, I'll point him in a different direction. Paragon of Blood Knight virtue, indeed!", 12, 0, 100, 0, 0, 0, 14367, 0, "Blood Knight Stillblade"),
(17768, 1, 0, "Don't get me wrong, $n. I very much appreciate the resurrection, but I think this is the last time I'll perform this particular duty. Maybe a goblet or two of wine will help with this headache.", 12, 0, 100, 0, 0, 0, 14368, 0, "Blood Knight Stillblade");
DELETE FROM `smart_scripts` WHERE `entryorguid`=1776800 AND `source_type`=9 AND `id` IN (5, 6, 7);
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(1776800, 9, 5, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 1, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Blood Knight Stillblade - On Script - Say Line 1"),
(1776800, 9, 6, 0, 0, 0, 100, 0, 120000, 120000, 0, 0, 94, 40, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Blood Knight Stillblade - On Script - Set Dynamic Flags Tapped By Player & Dead"),
(1776800, 9, 7, 0, 0, 0, 100, 0, 0, 0, 0, 0, 90, 7, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Blood Knight Stillblade - On Script - Set Flag Standstate Dead");
@@ -1,8 +0,0 @@
--
SET @OGUID:=970;
DELETE FROM `gameobject` WHERE `guid`=@OGUID;
INSERT INTO `gameobject` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `position_x`, `position_y`, `position_z`, `orientation`, `rotation0`, `rotation1`, `rotation2`, `rotation3`, `spawntimesecs`, `animprogress`, `state`, `VerifiedBuild`) VALUES
(@OGUID, 192612, 530, 3433, 3509, '0', 0, 7567.479, -7359.604, 161.8884, 3.159062, 0, 0, -0.9999619, 0.008734641, 120, 255, 1, 14545); -- 192612
DELETE FROM `gameobject_addon` WHERE `guid`=@OGUID;
INSERT INTO `gameobject_addon` (`guid`, `parent_rotation0`, `parent_rotation1`, `parent_rotation2`, `parent_rotation3`) VALUES
(@OGUID, 0, 0, 0.9999619, -0.00872653); -- 192612
@@ -1,74 +0,0 @@
--
-- Add missing Darnassian Huntress spawns and waypoints
SET @ENTRY := 16332;
SET @CGUID := 8142; -- Need new GUID
SET @PATHID_1 := @CGUID * 10 + 10;
SET @PATHID_2 := @CGUID * 10 + 40;
SET @PATHID_3 := @CGUID * 10 + 50;
SET @PATHID_4 := 822920;
-- Replace broken old script
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,0,0,0,100,0,0,0,1500,1500,11,6660,64,0,0,0,0,2,0,0,0,0,0,0,0,"Darnassian Huntress - In Combat CMC - Cast 'Shoot'"),
(@ENTRY,0,1,0,0,0,100,0,3000,6000,4000,6000,11,11976,0,0,0,0,0,2,0,0,0,0,0,0,0,"Darnassian Huntress - In Combat CMC - Cast 'Strike'"),
(@ENTRY,0,2,0,2,0,100,1,0,15,0,0,25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Darnassian Huntress - Between 0-15% Health - Flee For Assist (No Repeat)");
-- Update existing spawn
UPDATE `creature` SET `position_x`=7751.952, `position_y`=-5668.519, `position_z`=3.2572, `orientation`=4.7679, `MovementType`=2 WHERE `guid`=82292;
-- Add six Darnassian Huntresses
DELETE FROM `creature` where `guid` BETWEEN @CGUID + 1 AND @CGUID + 6;
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES
(@CGUID + 1, @ENTRY, 530, 0, 0, '0', 0, 0, 1, 7774.547, -5636.031, 17.778, 0.6634, 300, 0, 0, 300, 0, 2, 0, 0, 0, 0),
(@CGUID + 2, @ENTRY, 530, 0, 0, '0', 0, 0, 1, 7773.823, -5630.231, 17.635, 2.5365, 300, 0, 0, 300, 0, 0, 0, 0, 0, 0),
(@CGUID + 3, @ENTRY, 530, 0, 0, '0', 0, 0, 1, 7763.575, -5621.737, 12.646, 2.2106, 300, 0, 0, 300, 0, 0, 0, 0, 0, 0),
(@CGUID + 4, @ENTRY, 530, 0, 0, '0', 0, 0, 1, 7760.331, -5604.991, 6.1089, 3.7932, 300, 0, 0, 300, 0, 2, 0, 0, 0, 0),
(@CGUID + 5, @ENTRY, 530, 0, 0, '0', 0, 0, 1, 7758.369, -5602.312, 5.8449, 2.2145, 300, 0, 0, 300, 0, 2, 0, 0, 0, 0),
(@CGUID + 6, @ENTRY, 530, 0, 0, '0', 0, 0, 1, 7745.804, -5595.838, 5.2045, 5.2971, 300, 3, 0, 300, 0, 1, 0, 0, 0, 0);
DELETE FROM `creature_addon` WHERE `guid` IN (82292, @CGUID + 1, @CGUID + 4, @CGUID + 5);
INSERT INTO `creature_addon` (`guid`, `path_id`, `bytes2`) VALUES
(82292, @PATHID_4, 4907),
(@CGUID + 1, @PATHID_1, 4907),
(@CGUID + 4, @PATHID_2, 4907),
(@CGUID + 5, @PATHID_3, 4907);
-- Add waypoints
DELETE FROM `waypoint_data` WHERE `id` IN (@PATHID_1, @PATHID_2, @PATHID_3, @PATHID_4);
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`) VALUES
(@PATHID_1, 1, 7780.032, -5630.046, 17.763),
(@PATHID_1, 2, 7781.274, -5623.627, 17.603),
(@PATHID_1, 3, 7779.118, -5620.582, 15.310),
(@PATHID_1, 4, 7775.551, -5621.366, 12.893),
(@PATHID_1, 5, 7771.632, -5620.182, 12.739),
(@PATHID_1, 6, 7761.813, -5626.793, 12.722),
(@PATHID_1, 7, 7762.528, -5631.518, 12.907),
(@PATHID_1, 8, 7760.252, -5634.204, 14.688),
(@PATHID_1, 9, 7762.723, -5637.752, 17.435),
(@PATHID_1, 10, 7769.044, -5639.117, 17.778),
(@PATHID_1, 11, 7774.547, -5636.031, 17.778),
(@PATHID_2, 1, 7748.84, -5613.78, 6.110),
(@PATHID_2, 2, 7735.15, -5624.36, 2.786),
(@PATHID_2, 3, 7726.56, -5630.98, 1.811),
(@PATHID_2, 4, 7726.56, -5630.98, 1.811),
(@PATHID_2, 5, 7735.15, -5624.36, 2.786),
(@PATHID_2, 6, 7748.84, -5613.78, 6.110),
(@PATHID_2, 7, 7760.33, -5604.99, 6.108),
(@PATHID_3, 1, 7742.552, -5581.803, 6.046),
(@PATHID_3, 2, 7737.227, -5576.881, 6.575),
(@PATHID_3, 3, 7729.966, -5574.968, 6.920),
(@PATHID_3, 4, 7730.269, -5582.284, 6.563),
(@PATHID_3, 5, 7733.807, -5588.920, 6.011),
(@PATHID_3, 6, 7748.309, -5609.775, 5.842),
(@PATHID_3, 7, 7758.369, -5602.312, 5.844),
(@PATHID_4, 1, 7755.931, -5703.133, 3.984),
(@PATHID_4, 2, 7731.408, -5733.688, 3.972),
(@PATHID_4, 3, 7697.184, -5732.922, 3.670),
(@PATHID_4, 4, 7696.596, -5753.390, 4.803),
(@PATHID_4, 5, 7672.940, -5753.602, 3.817),
(@PATHID_4, 6, 7696.596, -5753.390, 4.803),
(@PATHID_4, 7, 7697.184, -5732.922, 3.670),
(@PATHID_4, 8, 7731.408, -5733.688, 3.972),
(@PATHID_4, 9, 7755.931, -5703.133, 3.984),
(@PATHID_4, 10, 7751.952, -5668.519, 3.257);
@@ -1,6 +0,0 @@
--
UPDATE `smart_scripts` SET `event_param3`=0, `event_param4`=0 WHERE `entryorguid`=2856601 AND `source_type`=9 AND `id`=2;
UPDATE `smart_scripts` SET `event_flags`=0, `event_param3`=8010, `event_param4`=8010 WHERE `entryorguid`=28566 AND `source_type`=0 AND `id`=6;
UPDATE `smart_scripts` SET `event_flags`=0, `event_param3`=8000, `event_param4`=8000 WHERE `entryorguid`=28566 AND `source_type`=0 AND `id`=5;
UPDATE `smart_scripts` SET `event_flags`=0, `event_param3`=2000, `event_param4`=2000 WHERE `entryorguid`=28566 AND `source_type`=0 AND `id`=4;
UPDATE `smart_scripts` SET `action_param1`=1 WHERE `entryorguid` IN (28566) AND `source_type`=0 AND `id`=5;
@@ -1,10 +0,0 @@
--
SET @CGUID := 81110;
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID + 0 AND @CGUID + 5;
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `ScriptName`, `VerifiedBuild`) VALUES
(@CGUID+0, 1412, 530, 3518, 3518, '0', 0, 0, 0, -2023.83, 8911.35, 34.2775, 2.98928, 300, 10, 0, 8, 0, 1, 0, 0, 0, '', 0),
(@CGUID+1, 1412, 530, 3518, 3633, '0', 0, 0, 0, -2103.56, 8854.62, 24.6233, 0.58631, 300, 10, 0, 8, 0, 1, 0, 0, 0, '', 0),
(@CGUID+2, 1412, 530, 3518, 3633, '0', 0, 0, 0, -2105.73, 8904.69, 27.0793, 0.366985, 300, 10, 0, 8, 0, 1, 0, 0, 0, '', 0),
(@CGUID+3, 1412, 530, 3524, 3524, '0', 0, 0, 0, -4466.41, -11567.3, 13.3558, 5.58932, 300, 10, 0, 8, 0, 1, 0, 0, 0, '', 0),
(@CGUID+4, 1412, 530, 3524, 3524, '0', 0, 0, 0, -4786.42, -11723, 20.8626, 3.09852, 300, 10, 0, 8, 0, 1, 0, 0, 0, '', 0),
(@CGUID+5, 1412, 530, 3524, 3524, '0', 0, 0, 0, -4745.74, -12185.6, 18.5034, 5.9609, 300, 10, 0, 8, 0, 1, 0, 0, 0, '', 0);
@@ -1,15 +0,0 @@
-- Add pool of Borgoth the Bloodletter
SET @CGUID := 52139; -- Need new GUID
SET @POOLENTRY := 380; -- Need new POOLENTRY
DELETE FROM `creature` WHERE `guid`=@CGUID;
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES
(@CGUID, 16247, 530, 0, 0, '0', 0, 0, 0, 6439.692, -6643.391, 107.431, 1.7330, 300, 0, 0, 629, 0, 0, 0, 0, 0, 0);
DELETE FROM `pool_template` WHERE `entry`=@POOLENTRY;
INSERT INTO `pool_template` VALUES (@POOLENTRY, 1, "Borgoth the Bloodletter");
DELETE FROM `pool_creature` WHERE `guid` IN (@CGUID, 82889);
INSERT INTO `pool_creature` VALUES
(@CGUID, @POOLENTRY, 0, "Borgoth the Bloodletter #1"),
(82889, @POOLENTRY, 0, "Borgoth the Bloodletter #2");
@@ -1,14 +0,0 @@
--
DELETE FROM `smart_scripts` WHERE `entryorguid`=2546 AND `source_type`=0 AND `id`=1;
DELETE FROM `smart_scripts` WHERE `entryorguid`=254600 AND `source_type`=9;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(2546, 0, 1, 0, 20, 0, 100, 0, 4621, 0, 0, 0, 80, 254600, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Fleet Master Firallon - On Quest 'Avast Ye, Admiral!' Rewarded - Run Script"),
(254600, 9, 0, 0, 0, 0, 100, 0, 400, 400, 0, 0, 1, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Fleet Master Firallon - On Script - Say Line 0"),
(254600, 9, 1, 0, 0, 0, 100, 0, 2000, 2000, 0, 0, 1, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Fleet Master Firallon - On Script - Say Line 1"),
(254600, 9, 2, 0, 0, 0, 100, 0, 1500, 1500, 0, 0, 1, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Fleet Master Firallon - On Script - Say Line 1"),
(254600, 9, 3, 0, 0, 0, 100, 0, 1500, 1500, 0, 0, 1, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Fleet Master Firallon - On Script - Say Line 1");
DELETE FROM `creature_text` WHERE `CreatureID`=2546;
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(2546, 0, 0, "Three cheers for $n -- Admiral o' the Bloodsail Bucaneer Navy!", 14, 0, 100, 0, 0, 0, 5522, 0, "Fleet Master Firallon"),
(2546, 1, 0, "Hip hip... arrrrr...", 14, 0, 100, 0, 0, 0, 5523, 0, "Fleet Master Firallon");
@@ -1,22 +0,0 @@
--
-- Add pool of Masophet the Black
SET @CGUID := 52140; -- Need new GUID
SET @POOLENTRY := 381; -- Need new POOLENTRY
DELETE FROM `creature` WHERE `guid` IN (@CGUID,52640,60777,60792);
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES
(@CGUID, 16249, 530, 0, 0, '0', 0, 0, 1, 6310.767, -6249.392, 80.812, 2.4250, 300, 0, 0, 486, 1202, 0, 0, 0, 0, 0),
(52640, 16317, 530, 0, 0, '0', 0, 0, 1, 6301.899, -6257.172, 77.8141, 0.802766, 300, 0, 0, 0, 0, 0, 0, 0, 0, 0),
(60777, 16317, 530, 0, 0, '0', 0, 0, 1, 6301.729, -6241.071, 77.8141, 5.446064, 300, 0, 0, 0, 0, 0, 0, 0, 0, 0),
(60792, 16317, 530, 0, 0, '0', 0, 0, 1, 6318.017, -6240.674, 77.8141, 3.948309, 300, 0, 0, 0, 0, 0, 0, 0, 0, 0);
UPDATE `creature` SET `position_x`=6376.408, `position_y`=-6451.7163, `position_z`=70.686, `orientation`=2.766143 WHERE `guid`=82866;
UPDATE `creature` SET `position_x`=6355.741, `position_y`=-6456.6611, `position_z`=74.923, `orientation`=3.543688 WHERE `guid`=82919;
DELETE FROM `pool_template` WHERE `entry`=@POOLENTRY;
INSERT INTO `pool_template` VALUES (@POOLENTRY, 1, "Masophet the Black");
DELETE FROM `pool_creature` WHERE `guid` IN (@CGUID, 82907);
INSERT INTO `pool_creature` VALUES
(@CGUID, @POOLENTRY, 0, "Masophet the Black #1"),
(82907, @POOLENTRY, 0, "Masophet the Black #2");
@@ -1,28 +0,0 @@
-- Add new script for flee event, also flee for assist
-- Grimscale Murloc SAI
SET @ENTRY := 15668;
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,0,38,0,100,0,0,1,0,0,11,26661,2,0,0,0,0,1,0,0,0,0,0,0,0,"Grimscale Murloc - On Data Set 0 1 - Cast 'Fear' (No Repeat)"),
(@ENTRY,0,1,0,2,0,100,1,0,15,0,0,25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Grimscale Murloc - Between 0-15% Health - Flee For Assist (No Repeat)");
-- Add entry for flee event + fix healing
-- Grimscale Oracle SAI
SET @ENTRY := 15669;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,0,14,0,100,0,400,40,12000,16000,11,17137,0,0,0,0,0,7,0,0,0,0,0,0,0,"Grimscale Oracle - Friendly At 70 Health - Cast 'Flash Heal'"),
(@ENTRY,0,1,0,38,0,100,0,0,1,0,0,11,26661,3,0,0,0,0,1,0,0,0,0,0,0,0,"Grimscale Oracle - On Data Set 0 1 - Cast 'Fear' (No Repeat)"),
(@ENTRY,0,2,0,2,0,100,1,0,15,0,0,25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Grimscale Oracle - Between 0-15% Health - Flee For Assist (No Repeat)");
-- Redo script
-- Mmmrrrggglll SAI
SET @ENTRY := 15937;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,0,0,0,100,0,0,0,9000,12000,11,12058,0,0,0,0,0,2,0,0,0,0,0,0,0,"Mmmrrrggglll - In Combat - Cast 'Chain Lightning'"),
(@ENTRY,0,1,0,0,0,100,0,4000,6000,12000,16000,11,21030,0,0,0,0,0,2,0,0,0,0,0,0,0,"Mmmrrrggglll - In Combat - Cast 'Frost Shock'"),
(@ENTRY,0,2,0,2,0,100,0,0,50,12000,15000,11,12491,1,0,0,0,0,1,0,0,0,0,0,0,0,"Mmmrrrggglll - Between 0-50% Health - Cast 'Healing Wave'"),
(@ENTRY,0,3,4,6,0,100,0,0,0,0,0,45,0,1,0,0,0,0,9,15668,0,60,0,0,0,0,"Mmmrrrggglll - On Just Died - Set Data 0 1"),
(@ENTRY,0,4,0,61,0,100,0,0,0,0,0,45,0,1,0,0,0,0,9,15669,0,60,0,0,0,0,"Mmmrrrggglll - On Just Died - Set Data 0 1");
@@ -1,162 +0,0 @@
-- Deeprot Stomper
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=13141;
DELETE FROM `smart_scripts` WHERE `entryorguid`=13141 AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(13141,0,0,0,0,0,100,2,11000,16000,15000,21000,11,11876,0,0,0,0,0,1,0,0,0,0,0,0,0,"Deeprot Stomper - In Combat - Cast War Stomp"),
(13141,0,1,0,0,0,100,2,5000,8000,7000,10000,11,13446,0,0,0,0,0,2,0,0,0,0,0,0,0,"Deeprot Stomper - In Combat - Cast Strike");
-- Deeprot Tangler
DELETE FROM `smart_scripts` WHERE `entryorguid`=13142 AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(13142,0,0,0,1,0,100,2,1000,1000,600000,600000,11,21337,0,0,0,0,0,1,0,0,0,0,0,0,0,"Deeprot Tangler - Out of Combat - Cast Thorns"),
(13142,0,1,0,0,0,100,2,3000,5000,17000,21000,11,21331,0,0,0,0,0,5,0,0,0,0,0,0,0,"Deeprot Tangler - In Combat - Cast Entangling Roots");
-- Poison Sprite
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=12216;
DELETE FROM `smart_scripts` WHERE `entryorguid`=12216 AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(12216,0,0,0,0,0,100,2,0,0,3000,4500,11,21067,64,0,0,0,0,2,0,0,0,0,0,0,0,"Poison Sprite - In Combat - Cast Poison Bolt");
-- Corruptor
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=12217;
DELETE FROM `smart_scripts` WHERE `entryorguid`=12217 AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(12217,0,0,0,9,0,100,2,0,5,30000,45000,11,5413,0,0,0,0,0,2,0,0,0,0,0,0,0,"Corruptor - Within 0-5 Range - Cast Noxious Catalyst"),
(12217,0,1,0,0,0,100,2,2000,5000,14000,21000,11,21068,0,0,0,0,0,5,0,0,0,0,0,0,0,"Corruptor - In Combat - Cast Corruption");
-- Putridus Satyr
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=11790;
DELETE FROM `smart_scripts` WHERE `entryorguid`=11790 AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(11790,0,0,0,9,0,100,2,0,5,7000,11000,11,12540,0,0,0,0,0,5,0,0,0,0,0,0,0,"Putridus Satyr - Within 0-5 Range - Cast Gouge"),
(11790,0,1,0,0,0,100,2,6000,8000,22000,25000,11,21062,0,0,0,0,0,5,0,0,0,0,0,0,0,"Putridus Satyr - In Combat - Cast Putrid Breath"),
(11790,0,2,0,0,0,100,2,8000,15000,12000,15000,11,15667,0,0,0,0,0,2,0,0,0,0,0,0,0,"Putridus Satyr - In Combat - Cast Sinister Strike");
-- Putridus Shadowstalker
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=11792;
DELETE FROM `smart_scripts` WHERE `entryorguid`=11792 AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(11792,0,0,0,0,0,100,2,8000,16000,21000,30000,11,15087,0,0,0,0,0,1,0,0,0,0,0,0,0,"Putridus Shadowstalker - In Combat - Cast Evasion"),
(11792,0,1,0,9,0,100,2,0,5,12000,15000,11,9080,0,0,0,0,0,2,0,0,0,0,0,0,0,"Putridus Shadowstalker - Within 0-5 Range - Cast Hamstring"),
(11792,0,2,0,0,0,100,2,6000,8000,22000,25000,11,21062,0,0,0,0,0,5,0,0,0,0,0,0,0,"Putridus Shadowstalker - In Combat - Cast Putrid Breath"),
(11792,0,3,0,25,0,100,2,0,0,0,0,11,22766,0,0,0,0,0,1,0,0,0,0,0,0,0,"Putridus Shadowstalker - On Reset - Cast Sneak");
-- Putridus Trickster
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=11791;
DELETE FROM `smart_scripts` WHERE `entryorguid`=11791 AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(11791,0,0,0,67,0,100,2,5000,8000,0,0,11,15657,0,0,0,0,0,2,0,0,0,0,0,0,0,"Putridus Trickster - On Behind Target - Cast Backstab"),
(11791,0,1,0,0,0,100,2,5000,8000,22000,25000,11,21062,0,0,0,0,0,5,0,0,0,0,0,0,0,"Putridus Trickster - In Combat - Cast Putrid Breath"),
(11791,0,2,0,25,0,100,2,0,0,0,0,11,3417,0,0,0,0,0,1,0,0,0,0,0,0,0,"Putridus Trickster - On Reset - Cast Thrash"),
(11791,0,3,0,0,0,100,2,5000,8000,17000,19000,11,13298,0,0,0,0,0,2,0,0,0,0,0,0,0,"Putridus Trickster - In Combat - Cast Poison");
-- Cavern Shambler
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=12224;
DELETE FROM `smart_scripts` WHERE `entryorguid`=12224 AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(12224,0,0,0,0,0,100,2,5000,8000,6000,11000,11,16790,0,0,0,0,0,2,0,0,0,0,0,0,0,"Cavern Shambler - In Combat - Cast Knockdown"),
(12224,0,1,0,2,0,100,2,0,75,21000,26000,11,7948,0,0,0,0,0,1,0,0,0,0,0,0,0,"Cavern Shambler - Between 0-75% Health - Cast Wild Regeneration");
-- Cavern Lurker
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=12223;
DELETE FROM `smart_scripts` WHERE `entryorguid`=12223 AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(12223,0,0,0,0,0,100,2,5000,8000,6000,11000,11,11428,0,0,0,0,0,2,0,0,0,0,0,0,0,"Cavern Lurker - In Combat - Cast Knockdown");
-- Noxious Slime
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=12221;
DELETE FROM `smart_scripts` WHERE `entryorguid`=12221 AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(12221,0,0,0,6,0,100,3,0,0,0,0,11,21070,3,0,0,0,0,1,0,0,0,0,0,0,0,"Noxious Slime - On Just Died - Cast Noxious Cloud");
-- Sister of Celebrian
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=11794;
DELETE FROM `smart_scripts` WHERE `entryorguid`=11794 AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(11794,0,0,0,0,0,100,2,0,0,2300,3900,11,15795,64,0,0,0,0,2,0,0,0,0,0,0,0,"Sister of Celebrian - In Combat - Cast Throw"),
(11794,0,1,0,9,0,100,2,0,5,8000,9000,11,14516,0,0,0,0,0,2,0,0,0,0,0,0,0,"Sister of Celebrian - Within 0-5 Range - Cast Strike"),
(11794,0,2,0,4,0,30,2,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sister of Celebrian - On Aggro - Say Line 0");
DELETE FROM `creature_text` WHERE `CreatureID`=11794;
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(11794,0,0,"You do not belong in these gardens. Your body shall nourish our lovely creations!",12,0,100,0,0,0,8639,0,"Sister of Celebrian"),
(11794,0,1,"Nothing must befoul the gardens! You must be destroyed!",12,0,100,0,0,0,8640,0,"Sister of Celebrian");
-- Celebrian Dryad
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=11793;
DELETE FROM `smart_scripts` WHERE `entryorguid`=11793 AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(11793,0,0,0,0,0,100,2,0,0,2300,3900,11,16000,64,0,0,0,0,2,0,0,0,0,0,0,0,"Celebrian Dryad - In Combat - Cast Throw"),
(11793,0,1,0,2,0,100,3,0,15,0,0,25,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Celebrian Dryad - Between 0-15% Health - Flee For Assist (No Repeat)"),
(11793,0,2,0,0,0,100,2,8000,16000,12000,16000,11,17201,0,0,0,0,0,1,0,0,0,0,0,0,0,"Celebrian Dryad - In Combat - Cast Dispel Magic"),
(11793,0,3,0,0,0,100,2,5000,7000,12000,13000,11,7992,0,0,0,0,0,5,0,0,0,0,0,0,0,"Celebrian Dryad - In Combat - Slowing Poison"),
(11793,0,4,0,4,0,30,2,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Celebrian Dryad - On Aggro - Say Line 0");
DELETE FROM `creature_text` WHERE `CreatureID`=11793;
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(11793,0,0,"You do not belong in these gardens. Your body shall nourish our lovely creations!",12,0,100,0,0,0,8639,0,"Celebrian Dryad"),
(11793,0,1,"Nothing must befoul the gardens! You must be destroyed!",12,0,100,0,0,0,8640,0,"Celebrian Dryad");
-- Constrictor Vine
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=12220;
DELETE FROM `smart_scripts` WHERE `entryorguid`=12220 AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(12220,0,0,0,0,0,100,2,3000,5000,9000,17000,11,11922,0,0,0,0,0,5,0,0,0,0,0,0,0,"Constrictor Vine - In Combat - Cast Entangling Roots");
-- Barbed Lasher
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=12219;
DELETE FROM `smart_scripts` WHERE `entryorguid`=12219 AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(12219,0,0,0,0,0,100,2,2000,5000,6000,11000,11,21749,0,0,0,0,0,1,0,0,0,0,0,0,0,"Barbed Lasher - In Combat - Cast Thorn Volley");
-- Vile Larva
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=12218;
DELETE FROM `smart_scripts` WHERE `entryorguid`=12218 AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(12218,0,0,0,9,0,100,2,0,10,5000,9000,11,21069,0,0,0,0,0,1,0,0,0,0,0,0,0,"Vile Larva - Within 0-10 Range - Cast Larva Goo"),
(12218,0,1,0,0,0,100,2,5000,8000,17000,18000,11,744,0,0,0,0,0,2,0,0,0,0,0,0,0,"Vile Larva - In Combat - Cast Poison");
-- Spewed Larva
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=13533;
DELETE FROM `smart_scripts` WHERE `entryorguid`=13533 AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(13533,0,0,0,9,0,100,2,6000,9000,30000,45000,11,5413,0,0,0,0,0,2,0,0,0,0,0,0,0,"Spewed Larva - In Combat - Cast Noxious Catalyst");
-- Thessala Hydra
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=12207;
DELETE FROM `smart_scripts` WHERE `entryorguid`=12207 AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(12207,0,0,0,0,0,100,2,10000,13000,12000,18000,11,21790,0,0,0,0,0,1,0,0,0,0,0,0,0,"Thessala Hydra - In Combat - Cast Aqua Jet"),
(12207,0,1,0,25,0,100,2,0,0,0,0,11,3417,0,0,0,0,0,1,0,0,0,0,0,0,0,"Thessala Hydra - On Reset - Cast Thrash"),
(12207,0,2,0,0,0,100,2,6000,10000,17000,18000,11,21787,0,0,0,0,0,5,0,0,0,0,0,0,0,"Thessala Hydra - In Combat - Cast Deadly Poison");
-- Subterranean Diemetradon
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=13323;
DELETE FROM `smart_scripts` WHERE `entryorguid`=13323 AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(13323,0,0,0,0,0,100,2,6000,8000,10000,14000,11,8281,0,0,0,0,0,1,0,0,0,0,0,0,0,"Subterranean Diemetradon - In Combat - Cast Sonic Burst");
-- Tinkerer Gizlock
DELETE FROM `smart_scripts` WHERE `entryorguid`=13601 AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(13601,0,0,0,0,0,100,2,0,0,2300,3900,11,16100,64,0,0,0,0,2,0,0,0,0,0,0,0,"Tinkerer Gizlock - In Combat - Cast Shoot"),
(13601,0,1,0,0,0,100,2,25000,25000,25000,25000,11,29419,0,0,0,0,0,1,0,0,0,0,0,0,0,"Tinkerer Gizlock - In Combat - Cast Flash Bomb"),
(13601,0,2,0,4,0,100,3,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Tinkerer Gizlock - On Aggro - Say Line 0"),
(13601,0,3,0,0,0,100,2,6000,9000,16000,19000,11,21833,0,0,0,0,0,2,0,0,0,0,0,0,0,"Tinkerer Gizlock - In Combat - Cast Goblin Dragon Gun"),
(13601,0,4,0,0,0,100,2,4000,4000,12000,12000,11,9143,1,0,0,0,0,5,0,0,0,0,0,0,0,"Tinkerer Gizlock - In Combat - Cast Bomb");
DELETE FROM `creature_text` WHERE `CreatureID`=13601;
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(13601,0,0,"Mine! Mine! Mine! Gizlock is the ruler of this domain! You shall never reveal my presence!",14,0,100,0,0,0,8852,0,"Tinkerer Gizlock");
-- Primordial Behemoth
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=12206;
DELETE FROM `smart_scripts` WHERE `entryorguid`=12206 AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(12206,0,0,0,0,0,100,2,0,0,2300,3900,11,21071,64,0,0,0,0,2,0,0,0,0,0,0,0,"Primordial Behemoth - In Combat - Cast Boulder"),
(12206,0,1,0,9,0,100,2,0,8,8000,13000,11,5568,0,0,0,0,0,1,0,0,0,0,0,0,0,"Primordial Behemoth - Within 0-8 Range - Cast Trample");
-- Rotgrip
DELETE FROM `smart_scripts` WHERE `entryorguid`=13596 AND `source_type`=0 AND `id`=1;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(13596,0,1,0,0,0,100,2,6000,8000,13000,18000,11,15976,0,0,0,0,0,2,0,0,0,0,0,0,0,"Rotgrip - In Combat - Cast Puncture");
@@ -1,14 +0,0 @@
UPDATE `creature_template` SET `InhabitType`=4, `AIName`="SmartAI" WHERE `entry`=24168;
DELETE FROM `smart_scripts` WHERE `entryorguid`=24168 AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(24168, 0, 0, 0, 1, 0, 100, 0, 30000, 120000, 120000, 180000, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Micah Stonebreaker - OOC - Say Line 0");
DELETE FROM `creature_text` WHERE `CreatureID`=24168;
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(24168, 0, 0, "AGH! Not again with the sprayin'!", 12, 6, 100, 0, 0, 0, 22869, 0, "Micah Stonebreaker"),
(24168, 0, 1, "What's that n- AGH!", 12, 6, 100, 0, 0, 0, 22870, 0, "Micah Stonebreaker"),
(24168, 0, 2, "Brann's beard, just STOP!", 12, 6, 100, 0, 0, 0, 22871, 0, "Micah Stonebreaker"),
(24168, 0, 3, "The dwarf coughs, sputters, and shivers in the cage.", 16, 0, 100, 0, 0, 0, 22872, 0, "Micah Stonebreaker"),
(24168, 0, 4, "A low, despairing moan escapes the caged dwarf.", 16, 0, 100, 0, 0, 0, 22873, 0, "Micah Stonebreaker"),
(24168, 0, 5, "%s shakes the bars of the cage weakly.", 16, 0, 100, 0, 0, 0, 22874, 0, "Micah Stonebreaker"),
(24168, 0, 6, "%s slumps against the cage bars dejectedly.", 16, 0, 100, 0, 0, 0, 22875, 0, "Micah Stonebreaker");
@@ -1,19 +0,0 @@
-- Greengill Slave
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` IN (25084);
UPDATE `creature_template` SET `InhabitType` = 3 WHERE `entry` IN (25085);
-- These are reordered from c++-script so that conditions will work on linked events properly.
DELETE FROM `smart_scripts` WHERE (source_type = 0 AND entryorguid IN (25084,25085));
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(25084, 0, 0, 1, 8, 0, 100, 1, 45109, 0, 0, 0, 11, 45111, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Greengill Slave - On Spellhit \'Orb of Murloc Control\' - Cast \'Enrage\''),
(25084, 0, 1, 2, 61, 0, 100, 0, 0, 0, 0, 0, 36, 25085, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Greengill Slave - IC - Load template'),
(25084, 0, 2, 3, 61, 0, 100, 0, 0, 0, 0, 0, 49, 0, 0, 0, 0, 0, 0, 19, 25060, 100, 0, 0, 0, 0, 0, 'Greengill Slave - On Spellhit \'Orb of Murloc Control\' - Start Attacking'),
(25084, 0, 3, 0, 61, 0, 100, 0, 0, 0, 0, 0, 11, 45110, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Greengill Slave - On Spellhit \'Orb of Murloc Control\' - Cast \'Greengill Slave Freed\''),
(25084, 0, 4, 0, 1, 0, 100, 1, 30000, 30000, 0, 0, 36, 25084, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Freed Greengill Slave - OOC - reset template'),
(25084, 0, 5, 0, 7, 0, 100, 0, 0, 0, 0, 0, 41, 5000, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Freed Greengill Slave - on evade - despawn');
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=22 AND `SourceEntry`=25084;
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
(22, 1, 25084, 0, 0, 9, 0, 11541, 0, 0, 0, 0, 0, '', 'Smart event 2 for Greengill Slave will execute if quest Disrupt the Greengill Coast has been taken.'),
(22, 1, 25084, 0, 0, 1, 1, 45111, 1, 0, 1, 0, 0, '', 'Smart event 0 for Greengill Slave will execute if creature does not have aura Enrage.'),
(22, 6, 25084, 0, 0, 31, 1, 3, 25085, 0, 0, 0, 0, '', 'Smart event 5 for Greengill Slave will execute if creature is 25085');
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,62 +0,0 @@
--
-- UPDATE `smart_scripts` SET `target_type`=1, `target_param1`=0, `action_param3`=1 WHERE `action_type`=4 AND `action_param1`=6197 AND `source_type`=9;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=1922 AND `source_type`=0 AND `id`=0;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=40373 AND `source_type`= 0 AND `id`=2;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=40373 AND `source_type`= 0 AND `id`=3;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=1057800 AND `source_type`= 9 AND `id`=1;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=5710 AND `source_type`=0 AND `id`=9;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=2801600 AND `source_type`=9 AND `id`=17;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=834 AND `source_type`=0 AND `id`=0;
-- UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=2729 AND `source_type`=0 AND `id`=0;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=1922 AND `source_type`=0 AND `id`=0;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=28487 AND `source_type`=0 AND `id`=1;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=25465 AND `source_type`=0 AND `id`=1;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=10408 AND `source_type`=0 AND `id`=0;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=10409 AND `source_type`=0 AND `id`=0;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=2681402 AND `source_type`=9 AND `id`=6;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=2681402 AND `source_type`=9 AND `id`=9;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=2681402 AND `source_type`=9 AND `id`=12;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=2397700 AND `source_type`=9 AND `id`=2;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=28639 AND `source_type`=0 AND `id`=2;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=2664801 AND `source_type`=9 AND `id`=7;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=17953 AND `source_type`=0 AND `id`=2;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=3131000 AND `source_type`=9 AND `id`=0;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=3131001 AND `source_type`=9 AND `id`=0;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=3131002 AND `source_type`=9 AND `id`=0;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=3131003 AND `source_type`=9 AND `id`=0;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=3131004 AND `source_type`=9 AND `id`=0;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=3131005 AND `source_type`=9 AND `id`=0;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=3131006 AND `source_type`=9 AND `id`=0;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=3131007 AND `source_type`=9 AND `id`=0;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=3131008 AND `source_type`=9 AND `id`=0;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=27249 AND `source_type`=0 AND `id`=5;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=10610 AND `source_type`=0 AND `id`=2;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=1061000 AND `source_type`=9 AND `id`=22;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=1061000 AND `source_type`=9 AND `id`=33;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=1061000 AND `source_type`=9 AND `id`=63;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=1061000 AND `source_type`=9 AND `id`=66;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=1061000 AND `source_type`=9 AND `id`=69;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=1061000 AND `source_type`=9 AND `id`=72;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=1061000 AND `source_type`=9 AND `id`=83;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=1061000 AND `source_type`=9 AND `id`=99;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=1061000 AND `source_type`=9 AND `id`=106;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=1061000 AND `source_type`=9 AND `id`=116;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=1061000 AND `source_type`=9 AND `id`=121;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=1061000 AND `source_type`=9 AND `id`=123;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=1061000 AND `source_type`=9 AND `id`=128;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=1061000 AND `source_type`=9 AND `id`=142;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=1061000 AND `source_type`=9 AND `id`=143;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=3904800 AND `source_type`=9 AND `id`=3;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=30736 AND `source_type`=0 AND `id`=1;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=28416 AND `source_type`=0 AND `id`=13;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=2428400 AND `source_type`=9 AND `id`=6;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=32236 AND `source_type`=0 AND `id`=4;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=32236 AND `source_type`=0 AND `id`=12;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=2294100 AND `source_type`=9 AND `id`=1;
-- UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=1449 AND `source_type`=0 AND `id`=5;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=1508 AND `source_type`=0 AND `id`=0;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=2958 AND `source_type`=0 AND `id`=0;
-- UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=2959 AND `source_type`=0 AND `id`=0;
UPDATE `smart_scripts` SET `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=2960 AND `source_type`=0 AND `id`=0;
UPDATE `smart_scripts` SET `action_param2`=0, `action_param3`=1,`target_type`=1, `target_param1`=0,`target_param2`=0,`target_param3`=0 WHERE `action_type`=4 AND `entryorguid`=3108300 AND `source_type`=9 AND `id`=18;
-- UPDATE `smart_scripts` SET `action_param6`=1 WHERE `action_type`=115 AND `action_param1`=6292 AND `action_param2`=6294 AND `source_type`=9 AND `id`=2;
@@ -1,13 +0,0 @@
UPDATE `creature_template` SET `ScriptName`='npc_illidari_elite' WHERE `entry`=23226;
DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_illidan_remove_parasitic_shadowfiend';
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
(41923,'spell_illidan_remove_parasitic_shadowfiend');
DELETE FROM `spell_dbc` WHERE `Id`=41923;
INSERT INTO `spell_dbc` (`Id`, `Attributes`, `AttributesEx`, `AttributesEx2`, `AttributesEx3`, `AttributesEx4`, `AttributesEx5`, `AttributesEx6`, `AttributesEx7`, `AttributesEx8`, `AttributesEx9`, `AttributesEx10`, `CastingTimeIndex`, `DurationIndex`, `RangeIndex`, `SchoolMask`, `SpellAuraOptionsId`, `SpellCastingRequirementsId`, `SpellCategoriesId`, `SpellClassOptionsId`, `SpellEquippedItemsId`, `SpellLevelsId`, `SpellTargetRestrictionsId`, `SpellInterruptsId`, `Comment`) VALUES
(41923, 536871296, 268435592, 4, 256, 0, 8, 0, 0, 0, 0, 0, 1, 27, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Remove Parasitic Shadowfiends');
DELETE FROM `spelleffect_dbc` WHERE `Id`=155918;
INSERT INTO `spelleffect_dbc` (`Id`, `Effect`, `EffectValueMultiplier`, `EffectApplyAuraName`, `EffectAmplitude`, `EffectBasePoints`, `EffectBonusMultiplier`, `EffectDamageMultiplier`, `EffectChainTarget`, `EffectDieSides`, `EffectItemType`, `EffectMechanic`, `EffectMiscValue`, `EffectMiscValueB`, `EffectRadiusIndex`, `EffectRadiusIndexMax`, `EffectRealPointsPerLevel`, `EffectSpellClassMaskA`, `EffectSpellClassMaskB`, `EffectSpellClassMaskC`, `EffectTriggerSpell`, `EffectImplicitTargetA`, `EffectImplicitTargetB`, `EffectSpellId`, `EffectIndex`) VALUES
(155918, 6, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 22, 15, 41923, 0);
@@ -1,9 +0,0 @@
ALTER TABLE `game_event` ADD COLUMN `holidayStage` TINYINT UNSIGNED NOT NULL DEFAULT '0' AFTER `holiday`;
UPDATE `game_event` SET `holiday` = 424 WHERE `eventEntry` = 64; -- Correct Kalu'ak Fishing Derby
UPDATE `game_event` SET `holiday` = 0 WHERE `eventEntry` = 63;
UPDATE `game_event` SET `holiday` = 374 WHERE `eventEntry` = 23; -- Darkmoon construction
-- UPDATE `game_event` SET `holiday` = 375 WHERE `eventEntry` = 110;
UPDATE `game_event` SET `holiday` = 376 WHERE `eventEntry` = 62;
UPDATE `game_event` SET `holidayStage` = 1 WHERE `eventEntry` IN (1, 2, 7, 8, 9, 10, 11, 12, 18, 19, 20, 21, 23, 26, 50, 51, 53, 54, 62/*, 110*/);
UPDATE `game_event` SET `holidayStage` = 2 WHERE `eventEntry` IN (3, 4, 5, 24);
@@ -1,619 +0,0 @@
-- Pathing for Razorfen Defender Entry: 4442
SET @NPC := 87345;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=2107.421,`position_y`=1597.128,`position_z`=81.6817 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(@PATH,1,2114.893,1607.468,81.0593,0,0,0,0,100,0),
(@PATH,2,2113.559,1609.265,80.98724,0,0,0,0,100,0),
(@PATH,3,2109.438,1606.844,80.59975,0,0,0,0,100,0),
(@PATH,4,2102.749,1604.79,80.30435,0,0,0,0,100,0),
(@PATH,5,2101.194,1601.532,80.31017,0,0,0,0,100,0),
(@PATH,6,2103.617,1595.386,80.96045,0,0,0,0,100,0),
(@PATH,7,2104.562,1587.409,80.99598,0,0,0,0,100,0),
(@PATH,8,2109.039,1582.875,81.48859,0,0,0,0,100,0),
(@PATH,9,2117.06,1583.574,81.66257,0,0,0,0,100,0),
(@PATH,10,2124.898,1582.786,81.64199,0,0,0,0,100,0),
(@PATH,11,2129.119,1584.171,81.76122,0,0,0,0,100,0),
(@PATH,12,2133.977,1580.883,81.5472,0,0,0,0,100,0),
(@PATH,13,2131.737,1573.881,81.49727,0,0,0,0,100,0),
(@PATH,14,2125.913,1566.676,80.32833,0,0,0,0,100,0),
(@PATH,15,2120.009,1565.401,80.254,0,0,0,0,100,0),
(@PATH,16,2116.996,1571.149,80.69305,0,0,0,0,100,0),
(@PATH,17,2112.323,1580.617,81.29841,0,0,0,0,100,0),
(@PATH,18,2110.271,1586.586,81.6452,0,0,0,0,100,0),
(@PATH,19,2107.51,1592.111,81.31756,0,0,0,0,100,0),
(@PATH,20,2107.421,1597.128,81.6817,0,0,0,0,100,0);
-- Pathing for Razorfen Defender Entry: 4442
SET @NPC := 87316;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=2088.563,`position_y`=1550.666,`position_z`=81.383 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(@PATH,1,2091.913,1548.273,80.96783,0,0,0,0,100,0),
(@PATH,2,2099.715,1547.863,81.34792,0,0,0,0,100,0),
(@PATH,3,2105.978,1546.3,81.55984,0,0,0,0,100,0),
(@PATH,4,2112.462,1549.684,81.62385,0,0,0,0,100,0),
(@PATH,5,2110.668,1553.25,81.51666,0,0,0,0,100,0),
(@PATH,6,2103.905,1551.207,81.62385,0,0,0,0,100,0),
(@PATH,7,2098.591,1551.75,81.48356,0,0,0,0,100,0),
(@PATH,8,2092.094,1556.073,81.2539,0,0,0,0,100,0),
(@PATH,9,2086.51,1556.822,81.37848,0,0,0,0,100,0),
(@PATH,10,2088.563,1550.666,81.383,0,0,0,0,100,0);
-- Pathing for Agam'ar Entry: 4511
SET @NPC := 87424;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=2096.03,`position_y`=1786.564,`position_z`=51.27811 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(@PATH,1,2085.907,1785.014,53.36885,0,0,0,0,100,0),
(@PATH,2,2079.124,1781.515,54.96775,0,0,0,0,100,0),
(@PATH,3,2077.211,1778.933,55.20493,0,0,0,0,100,0),
(@PATH,4,2081.743,1784.075,54.41806,0,0,0,0,100,0),
(@PATH,5,2088.712,1787.013,52.70948,0,0,0,0,100,0),
(@PATH,6,2099.211,1787.745,50.50051,0,0,0,0,100,0),
(@PATH,7,2100.05,1790.695,50.18368,0,0,0,0,100,0),
(@PATH,8,2097.266,1793.817,50.68781,0,0,0,0,100,0),
(@PATH,9,2085.132,1788.337,53.74854,0,0,0,0,100,0),
(@PATH,10,2080.077,1784.589,54.77439,0,0,0,0,100,0),
(@PATH,11,2075.331,1780.218,55.5807,0,0,0,0,100,0),
(@PATH,12,2080.79,1785.138,54.62421,0,0,0,0,100,0),
(@PATH,13,2087.91,1788.103,52.95766,0,0,0,0,100,0),
(@PATH,14,2095.274,1790.427,51.26003,0,0,0,0,100,0),
(@PATH,15,2086.218,1786.107,53.32716,0,0,0,0,100,0),
(@PATH,16,2073.822,1781.411,55.85382,0,0,0,0,100,0),
(@PATH,17,2081.04,1787.842,54.90159,0,0,0,0,100,0),
(@PATH,18,2093.317,1795.974,51.78655,0,0,0,0,100,0),
(@PATH,19,2099.931,1798.821,49.75352,0,0,0,0,100,0),
(@PATH,20,2103.046,1792.126,49.4443,0,0,0,0,100,0),
(@PATH,21,2104.787,1787.911,49.17257,0,0,0,0,100,0),
(@PATH,22,2096.03,1786.564,51.27811,0,0,0,0,100,0);
-- Pathing for Agam'ar Entry: 4511
SET @NPC := 87432;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=2145.761,`position_y`=1839.933,`position_z`=48.77192 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(@PATH,1,2142.696,1832.58,47.38148,0,0,0,0,100,0),
(@PATH,2,2138.982,1820.909,47.09259,0,0,0,0,100,0),
(@PATH,3,2138.687,1816.16,46.89988,0,0,0,0,100,0),
(@PATH,4,2133.455,1809.252,46.88326,0,0,0,0,100,0),
(@PATH,5,2125.034,1807.003,46.73381,0,0,0,0,100,0),
(@PATH,6,2116.036,1802.396,47.39417,0,0,0,0,100,0),
(@PATH,7,2116.691,1791.58,47.86673,0,0,0,0,100,0),
(@PATH,8,2124.233,1791.097,47.61297,0,0,0,0,100,0),
(@PATH,9,2132.302,1795.763,47.21243,0,0,0,0,100,0),
(@PATH,10,2137.479,1804.041,47.17542,0,0,0,0,100,0),
(@PATH,11,2138.468,1811.364,46.94453,0,0,0,0,100,0),
(@PATH,12,2134.186,1822.26,46.82648,0,0,0,0,100,0),
(@PATH,13,2133.21,1832.513,46.70514,0,0,0,0,100,0),
(@PATH,14,2131.556,1840.734,47.83244,0,0,0,0,100,0),
(@PATH,15,2129.286,1848.3,49.10868,0,0,0,0,100,0),
(@PATH,16,2132.14,1854.085,50.78709,0,0,0,0,100,0),
(@PATH,17,2136.563,1856.633,51.39883,0,0,0,0,100,0),
(@PATH,18,2144.213,1854.57,50.71241,0,0,0,0,100,0),
(@PATH,19,2148.088,1848.01,50.4381,0,0,0,0,100,0),
(@PATH,20,2145.761,1839.933,48.77192,0,0,0,0,100,0);
-- Pathing for Raging Agam'ar Entry: 4514
SET @NPC := 87392;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=2139.96,`position_y`=1673.604,`position_z`=58.55344 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(@PATH,1,2155.755,1680.389,58.5962,0,0,0,0,100,0),
(@PATH,2,2149.106,1679.827,57.96727,0,0,0,0,100,0),
(@PATH,3,2136.626,1673.143,58.55163,0,0,0,0,100,0),
(@PATH,4,2124.211,1671.252,58.57498,0,0,0,0,100,0),
(@PATH,5,2112.027,1670.41,59.17719,0,0,0,0,100,0),
(@PATH,6,2099.69,1672.588,59.71073,0,0,0,0,100,0),
(@PATH,7,2088.552,1673.508,61.25085,0,0,0,0,100,0),
(@PATH,8,2081.336,1669.674,61.25143,0,0,0,0,100,0),
(@PATH,9,2073.589,1665.513,61.09065,0,0,0,0,100,0),
(@PATH,10,2065.993,1657.292,61.2337,0,0,0,0,100,0),
(@PATH,11,2062.475,1653.62,61.18982,0,0,0,0,100,0),
(@PATH,12,2061.51,1647.463,61.72988,0,0,0,0,100,0),
(@PATH,13,2063.625,1640.532,62.76986,0,0,0,0,100,0),
(@PATH,14,2065.712,1626.571,64.44929,0,0,0,0,100,0),
(@PATH,15,2066.252,1636.553,63.79743,0,0,0,0,100,0),
(@PATH,16,2064.955,1653.818,61.21502,0,0,0,0,100,0),
(@PATH,17,2068.105,1660.412,61.23128,0,0,0,0,100,0),
(@PATH,18,2075.192,1666.602,61.19273,0,0,0,0,100,0),
(@PATH,19,2081.34,1669.145,61.25577,0,0,0,0,100,0),
(@PATH,20,2088.21,1671.554,61.26539,0,0,0,0,100,0),
(@PATH,21,2094.216,1672.949,60.74401,0,0,0,0,100,0),
(@PATH,22,2105.022,1673.325,59.05119,0,0,0,0,100,0),
(@PATH,23,2115.466,1670.424,59.22596,0,0,0,0,100,0),
(@PATH,24,2139.96,1673.604,58.55344,0,0,0,0,100,0);
-- Pathing for Rotting Agam'ar Entry: 4512
SET @NPC := 87436;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=2063.36,`position_y`=1847.869,`position_z`=55.53937 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(@PATH,1,2068.148,1842.792,56.19976,0,0,0,0,100,0),
(@PATH,2,2071.428,1841.88,56.40713,0,0,0,0,100,0),
(@PATH,3,2077.612,1841.523,55.54581,0,0,0,0,100,0),
(@PATH,4,2083.211,1842.328,53.36441,0,0,0,0,100,0),
(@PATH,5,2090.784,1845.256,51.16241,0,0,0,0,100,0),
(@PATH,6,2096.728,1850.309,50.04328,0,0,0,0,100,0),
(@PATH,7,2095.041,1857.167,49.79569,0,0,0,0,100,0),
(@PATH,8,2089.37,1858.995,51.32528,0,0,0,0,100,0),
(@PATH,9,2079.101,1852.991,53.26225,0,0,0,0,100,0),
(@PATH,10,2074.516,1849.417,53.96615,0,0,0,0,100,0),
(@PATH,11,2071.997,1847.792,54.55695,0,0,0,0,100,0),
(@PATH,12,2067.029,1848.406,55.32259,0,0,0,0,100,0),
(@PATH,13,2062.753,1847.629,55.57483,0,0,0,0,100,0),
(@PATH,14,2056.324,1843.5,56.11672,0,0,0,0,100,0),
(@PATH,15,2047.929,1844.346,56.30235,0,0,0,0,100,0),
(@PATH,16,2047.554,1853.73,55.61036,0,0,0,0,100,0),
(@PATH,17,2052.718,1858.686,56.04894,0,0,0,0,100,0),
(@PATH,18,2063.36,1847.869,55.53937,0,0,0,0,100,0);
-- Pathing for Rotting Agam'ar Entry: 4512
SET @NPC := 87416;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=2052.472,`position_y`=1702.112,`position_z`=59.06878 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(@PATH,1,2060.335,1702.303,58.44148,0,0,0,0,100,0), -- 54:51
(@PATH,2,2064.091,1701.021,58.09085,0,0,0,0,100,0), -- 54:54
(@PATH,3,2073.108,1701.76,57.20672,0,0,0,0,100,0), -- 54:55
(@PATH,4,2086.73,1706.065,56.3343,0,0,0,0,100,0), -- 54:58
(@PATH,5,2093.51,1709.195,56.07202,0,0,0,0,100,0), -- 55:05
(@PATH,6,2102.587,1718.31,54.41,0,0,0,0,100,0), -- 55:08
(@PATH,7,2115.782,1727.701,53.16241,0,0,0,0,100,0), -- 55:13
(@PATH,8,2125.403,1734.609,52.16546,0,0,0,0,100,0), -- 55:19
(@PATH,9,2134.975,1738.386,51.6567,0,0,0,0,100,0), -- 55:24
(@PATH,10,2143.869,1734.868,51.49122,0,0,0,0,100,0), -- 55:28
(@PATH,11,2157.675,1729.202,52.19218,0,0,0,0,100,0), -- 55:33
(@PATH,12,2166.984,1720.267,53.25206,0,0,0,0,100,0), -- 55:38
(@PATH,13,2166.542,1712.489,53.85883,0,0,0,0,100,0), -- 55:44
(@PATH,14,2154.661,1716.851,52.84023,0,0,0,0,100,0), -- 55:46
(@PATH,15,2143.729,1724.37,52.36889,0,0,0,0,100,0), -- 55:51
(@PATH,16,2133.999,1729.626,52.04773,0,0,0,0,100,0), -- 55:57
(@PATH,17,2126.431,1731.602,51.99927,0,0,0,0,100,0), -- 56:02
(@PATH,18,2114.009,1729.264,53.28587,0,0,0,0,100,0), -- 56:04
(@PATH,19,2104.882,1722.333,54.5862,0,0,0,0,100,0), -- 56:09
(@PATH,20,2092.062,1709.69,55.87567,0,0,0,0,100,0), -- 56:14
(@PATH,21,2080.463,1704.365,56.56325,0,0,0,0,100,0), -- 56:21
(@PATH,22,2070.483,1701.719,57.19421,0,0,0,0,100,0), -- 56:26
(@PATH,23,2062.857,1702.526,58.22356,0,0,0,0,100,0), -- 56:31
(@PATH,24,2057.357,1707.382,58.71372,0,0,0,0,100,0), -- 56:34
(@PATH,25,2051.841,1714.146,59.40524,0,0,0,0,100,0), -- 56:37
(@PATH,26,2046.19,1715.718,59.78969,0,0,0,0,100,0), -- 56:40
(@PATH,27,2040.404,1713.414,59.80349,0,0,0,0,100,0), -- 56:42
(@PATH,28,2042.458,1705.426,59.96202,0,0,0,0,100,0), -- 56:45
(@PATH,29,2047.105,1701.524,59.5788,0,0,0,0,100,0), -- 56:48
(@PATH,30,2052.472,1702.112,59.06878,0,0,0,0,100,0); -- 56:51
-- Pathing for Raging Agam'ar Entry: 4514
SET @NPC := 87319;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=2032.172,`position_y`=1754.218,`position_z`=60.4647 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(@PATH,1,2035.138,1745.788,60.3933,0,0,0,0,100,0), -- 55:39
(@PATH,2,2035.717,1736.743,60.65516,0,0,0,0,100,0), -- 55:43
(@PATH,3,2031.431,1732.204,60.83634,0,0,0,0,100,0), -- 55:46
(@PATH,4,2029.669,1727.54,60.45228,0,0,0,0,100,0), -- 55:49
(@PATH,5,2030.052,1721.121,60.25993,0,0,0,0,100,0), -- 55:51
(@PATH,6,2034.821,1714.521,60.16006,0,0,0,0,100,0), -- 55:54
(@PATH,7,2041.953,1706.905,59.92676,0,0,0,0,100,0), -- 55:56
(@PATH,8,2048.065,1703.16,59.40845,0,0,0,0,100,0), -- 56:01
(@PATH,9,2051.396,1708.162,59.06941,0,0,0,0,100,0), -- 56:04
(@PATH,10,2045.333,1716.266,59.92817,0,0,0,0,100,0), -- 56:06
(@PATH,11,2040.001,1722.506,60.47118,0,0,0,0,100,0), -- 56:10
(@PATH,12,2036.937,1728.058,60.79508,0,0,0,0,100,0), -- 56:13
(@PATH,13,2038.388,1741.962,60.3935,0,0,0,0,100,0), -- 56:16
(@PATH,14,2042.487,1752.383,59.94053,0,0,0,0,100,0), -- 56:22
(@PATH,15,2045.754,1759.89,59.55702,0,0,0,0,100,0), -- 56:27
(@PATH,16,2049.796,1764.984,59.06327,0,0,0,0,100,0), -- 56:29
(@PATH,17,2059.261,1767.341,58.06811,0,0,0,0,100,0), -- 56:32
(@PATH,18,2067.314,1770.503,57.23711,0,0,0,0,100,0), -- 56:36
(@PATH,19,2080.536,1779.038,54.66039,0,0,0,0,100,0), -- 56:39
(@PATH,20,2097.544,1790.442,50.76727,0,0,0,0,100,0), -- 56:46
(@PATH,21,2087.033,1789.196,53.22539,0,0,0,0,100,0), -- 56:54
(@PATH,22,2072.284,1779.995,55.99961,0,0,0,0,100,0), -- 56:58
(@PATH,23,2062.56,1773.932,57.95657,0,0,0,0,100,0), -- 57:06
(@PATH,24,2050.032,1773.168,59.01479,0,0,0,0,100,0), -- 57:11
(@PATH,25,2042.163,1772.459,59.84247,0,0,0,0,100,0), -- 57:16
(@PATH,26,2036.88,1767.39,59.99329,0,0,0,0,100,0), -- 57:18
(@PATH,27,2034.55,1761.736,60.27701,0,0,0,0,100,0), -- 57:22
(@PATH,28,2032.172,1754.218,60.4647,0,0,0,0,100,0); -- 57:24
-- Pathing for Raging Agam'ar Entry: 4514
SET @NPC := 87315;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=2066.079,`position_y`=1608.026,`position_z`=62.37017 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(@PATH,1,2066.605,1614.46,63.15455,0,0,0,0,100,0),
(@PATH,2,2066.83,1624.417,64.38802,0,1000,0,0,100,0),
(@PATH,3,2065.609,1626.417,64.44986,0,0,0,0,100,0),
(@PATH,4,2062.611,1608.333,62.35115,0,0,0,0,100,0),
(@PATH,5,2058.045,1600.916,62.46653,0,0,0,0,100,0),
(@PATH,6,2057.503,1593.019,62.96184,0,0,0,0,100,0),
(@PATH,7,2057.701,1583.68,64.00708,0,0,0,0,100,0),
(@PATH,8,2046.453,1576.105,64.51681,0,0,0,0,100,0),
(@PATH,9,2044.112,1567.474,64.3503,0,0,0,0,100,0),
(@PATH,10,2050.936,1564.057,64.64704,0,0,0,0,100,0),
(@PATH,11,2052.142,1572.717,64.31072,0,0,0,0,100,0),
(@PATH,12,2057.872,1578.538,64.1582,0,0,0,0,100,0),
(@PATH,13,2058.871,1590.09,63.21131,0,0,0,0,100,0),
(@PATH,14,2061.044,1599.244,62.41414,0,0,0,0,100,0),
(@PATH,15,2066.079,1608.026,62.37017,0,0,0,0,100,0);
-- Pathing for Raging Agam'ar Entry: 4514
SET @NPC := 87437;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=2055.007,`position_y`=1845.796,`position_z`=55.89343 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(@PATH,1,2062.865,1842.589,56.42229,0,0,0,0,100,0),
(@PATH,2,2069.917,1842.933,56.11264,0,0,0,0,100,0),
(@PATH,3,2074.16,1843.636,55.77161,0,0,0,0,100,0),
(@PATH,4,2082.133,1844.38,52.99316,0,0,0,0,100,0),
(@PATH,5,2090.826,1845.744,51.04036,0,0,0,0,100,0),
(@PATH,6,2098.35,1847.418,50.19639,0,0,0,0,100,0),
(@PATH,7,2108.214,1849.857,49.01111,0,0,0,0,100,0),
(@PATH,8,2102.665,1854.577,49.56808,0,0,0,0,100,0),
(@PATH,9,2094.424,1855.651,49.93146,0,0,0,0,100,0),
(@PATH,10,2080.563,1853.904,52.76198,0,0,0,0,100,0),
(@PATH,11,2069.352,1852.929,55.06715,0,0,0,0,100,0),
(@PATH,12,2059.862,1854.154,56.13989,0,0,0,0,100,0),
(@PATH,13,2048.714,1858.587,55.87393,0,0,0,0,100,0),
(@PATH,14,2043.315,1860.27,55.746,0,0,0,0,100,0),
(@PATH,15,2042.087,1855.476,55.73419,0,0,0,0,100,0),
(@PATH,16,2045.027,1850.036,55.96173,0,0,0,0,100,0),
(@PATH,17,2055.007,1845.796,55.89343,0,0,0,0,100,0);
-- Pathing for Death's Head Seer Entry: 4519
SET @NPC := 87343;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=2098.684,`position_y`=1540.76,`position_z`=85.16721 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(@PATH,1,2100.012,1539.687,86.38844,0,0,0,0,100,0),
(@PATH,2,2103.12,1539.157,87.14921,0,13000,0,0,100,0),
(@PATH,3,2100.012,1539.687,86.38844,0,0,0,0,100,0),
(@PATH,4,2098.684,1540.76,85.16721,0,0,0,0,100,0),
(@PATH,5,2091.968,1543.625,80.99364,0,0,0,0,100,0),
(@PATH,6,2090.485,1546.336,80.93262,0,24000,0,0,100,0),
(@PATH,7,2091.968,1543.625,80.99364,0,0,0,0,100,0),
(@PATH,8,2098.684,1540.76,85.16721,0,0,0,0,100,0);
-- Pathing for Death's Head Priest Entry: 4517
SET @NPC := 87448;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=2178.34,`position_y`=1855.082,`position_z`=58.19644 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(@PATH,1,2174.453,1851.825,58.33954,0,0,0,0,100,0),
(@PATH,2,2176.394,1843.422,58.15576,0,0,0,0,100,0),
(@PATH,3,2181.557,1839.734,59.17974,0,0,0,0,100,0),
(@PATH,4,2185.224,1834.477,59.87947,0,0,0,0,100,0),
(@PATH,5,2184.219,1826.638,60.93966,0,0,0,0,100,0),
(@PATH,6,2185.368,1821.765,61.63937,0,0,0,0,100,0),
(@PATH,7,2187.973,1818.724,62.1631,0,0,0,0,100,0),
(@PATH,8,2194.436,1819.924,61.89945,0,0,0,0,100,0),
(@PATH,9,2197.274,1821.988,61.88156,0,0,0,0,100,0),
(@PATH,10,2196.079,1831.449,61.22343,0,0,0,0,100,0),
(@PATH,11,2192.44,1838.419,60.03462,0,0,0,0,100,0),
(@PATH,12,2192.103,1843.89,59.62682,0,0,0,0,100,0),
(@PATH,13,2191.981,1849.101,58.84718,0,0,0,0,100,0),
(@PATH,14,2190.316,1855.051,58.41751,0,0,0,0,100,0),
(@PATH,15,2188.429,1860.81,58.33215,0,0,0,0,100,0),
(@PATH,16,2186.214,1860.086,58.22411,0,0,0,0,100,0),
(@PATH,17,2178.34,1855.082,58.19644,0,0,0,0,100,0);
-- Pathing for Death's Head Priest Entry: 4517
SET @NPC := 87456;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=2187.822,`position_y`=1834.436,`position_z`=60.13253 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(@PATH,1,2183.277,1843.486,59.02925,0,0,0,0,100,0),
(@PATH,2,2176.345,1851.903,58.33517,0,0,0,0,100,0),
(@PATH,3,2169.563,1854.612,58.02235,0,0,0,0,100,0),
(@PATH,4,2176.345,1851.903,58.33517,0,0,0,0,100,0),
(@PATH,5,2183.277,1843.486,59.02925,0,0,0,0,100,0),
(@PATH,6,2187.781,1834.517,60.05606,0,0,0,0,100,0),
(@PATH,7,2190.464,1827.093,61.33936,0,0,0,0,100,0),
(@PATH,8,2189.615,1816.533,62.54241,0,0,0,0,100,0),
(@PATH,9,2190.538,1826.89,61.3537,0,0,0,0,100,0),
(@PATH,10,2187.822,1834.436,60.13253,0,0,0,0,100,0);
-- Pathing for Razorfen Quilguard Entry: 4436
SET @NPC := 87305;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=2014.151,`position_y`=1647.922,`position_z`=80.97002 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(@PATH,1,2008.324,1642.817,80.35912,0,0,0,0,100,0),
(@PATH,2,2004.396,1638.403,80.51665,0,0,0,0,100,0),
(@PATH,3,2000.928,1633.265,80.97063,0,0,0,0,100,0),
(@PATH,4,1998.693,1627.001,81.02338,0,0,0,0,100,0),
(@PATH,5,1996.198,1622.218,82.22533,0,0,0,0,100,0),
(@PATH,6,1993.378,1625.59,81.49384,0,0,0,0,100,0),
(@PATH,7,1993.948,1628.972,81.07971,0,0,0,0,100,0),
(@PATH,8,1997.675,1634.351,80.77856,0,0,0,0,100,0),
(@PATH,9,2003.769,1638.847,80.47289,0,0,0,0,100,0),
(@PATH,10,2009.364,1644.574,80.30908,0,0,0,0,100,0),
(@PATH,11,2015.501,1649.102,80.9803,0,0,0,0,100,0),
(@PATH,12,2017.452,1651.314,81.4091,0,0,0,0,100,0),
(@PATH,13,2017.554,1654.779,81.66192,0,0,0,0,100,0),
(@PATH,14,2020.155,1658.124,82.14635,0,0,0,0,100,0),
(@PATH,15,2023.652,1659.764,81.76729,0,0,0,0,100,0),
(@PATH,16,2030.597,1661.048,81.07684,0,0,0,0,100,0),
(@PATH,17,2036.931,1660.413,80.72527,0,0,0,0,100,0),
(@PATH,18,2040.397,1655.858,81.0736,0,0,0,0,100,0),
(@PATH,19,2035.366,1656.879,80.22555,0,0,0,0,100,0),
(@PATH,20,2030.426,1660.441,80.93649,0,0,0,0,100,0),
(@PATH,21,2024.278,1659.282,81.718,0,0,0,0,100,0),
(@PATH,22,2022.62,1657.101,82.43031,0,0,0,0,100,0),
(@PATH,23,2014.151,1647.922,80.97002,0,0,0,0,100,0);
-- Pathing for Greater Kraul Bat Entry: 4539
SET @NPC := 87468;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=2122.867,`position_y`=1989.361,`position_z`=64.2011 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(@PATH,1,2119.471,1982.974,64.17838,0,0,0,0,100,0),
(@PATH,2,2108.916,1979.109,64.87038,0,0,0,0,100,0),
(@PATH,3,2102.991,1983.012,65.08557,0,0,0,0,100,0),
(@PATH,4,2091.936,1987.228,64.38224,0,0,0,0,100,0),
(@PATH,5,2086.783,1983.47,64.12414,0,0,0,0,100,0),
(@PATH,6,2077.326,1981.735,63.48634,0,0,0,0,100,0),
(@PATH,7,2072.816,1977.414,63.01323,0,0,0,0,100,0),
(@PATH,8,2069.224,1968.839,62.03327,0,0,0,0,100,0),
(@PATH,9,2074.309,1965.289,62.34666,0,0,0,0,100,0),
(@PATH,10,2080.863,1960.025,63.66449,0,0,0,0,100,0),
(@PATH,11,2086.398,1963.47,64.85815,0,0,0,0,100,0),
(@PATH,12,2089.173,1969.579,65.23668,0,0,0,0,100,0),
(@PATH,13,2085.244,1979.623,64.27675,0,0,0,0,100,0),
(@PATH,14,2087.208,1987.823,63.74189,0,0,0,0,100,0),
(@PATH,15,2092.497,1989.432,64.52837,0,0,0,0,100,0),
(@PATH,16,2096.048,1990.466,65.12543,0,0,0,0,100,0),
(@PATH,17,2098.869,1996.237,65.25151,0,0,0,0,100,0),
(@PATH,18,2105.595,2005.276,65.27394,0,0,0,0,100,0),
(@PATH,19,2116.778,2004.364,64.87038,0,0,0,0,100,0),
(@PATH,20,2121.197,2004.139,64.87038,0,0,0,0,100,0),
(@PATH,21,2126.033,2003.283,64.87038,0,0,0,0,100,0),
(@PATH,22,2123.96,1995.334,64.30733,0,0,0,0,100,0),
(@PATH,23,2122.867,1989.361,64.2011,0,0,0,0,100,0);
-- Pathing for Blood of Agamaggan Entry: 4541
SET @NPC := 87426;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=2130.472,`position_y`=1848.927,`position_z`=49.23372 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(@PATH,1,2133.878,1841.073,47.84394,0,0,0,0,100,0),
(@PATH,2,2137.288,1833.684,46.65741,0,0,0,0,100,0),
(@PATH,3,2142.935,1824.701,47.38944,0,0,0,0,100,0),
(@PATH,4,2142.771,1819.232,47.67385,0,0,0,0,100,0),
(@PATH,5,2141.188,1810.284,47.06269,0,0,0,0,100,0),
(@PATH,6,2138.225,1801.953,47.29019,0,0,0,0,100,0),
(@PATH,7,2133.334,1797.093,47.02711,0,0,0,0,100,0),
(@PATH,8,2127.183,1790.409,47.51778,0,0,0,0,100,0),
(@PATH,9,2123.581,1789.841,47.68044,0,0,0,0,100,0),
(@PATH,10,2118.854,1791.837,47.79222,0,0,0,0,100,0),
(@PATH,11,2115.593,1796.454,47.73401,0,0,0,0,100,0),
(@PATH,12,2118.855,1801.601,47.38517,0,0,0,0,100,0),
(@PATH,13,2126.449,1807.001,46.86285,0,0,0,0,100,0),
(@PATH,14,2130.195,1808.294,46.84606,0,0,0,0,100,0),
(@PATH,15,2132.681,1815.324,46.91436,0,0,0,0,100,0),
(@PATH,16,2134.869,1820.328,46.89141,0,0,0,0,100,0),
(@PATH,17,2135.539,1828.899,46.57799,0,0,0,0,100,0),
(@PATH,18,2137.002,1832.216,46.62844,0,0,0,0,100,0),
(@PATH,19,2138.4,1835.487,46.75941,0,0,0,0,100,0),
(@PATH,20,2144.043,1841.499,48.68194,0,0,0,0,100,0),
(@PATH,21,2146.708,1849.135,50.11401,0,0,0,0,100,0),
(@PATH,22,2143.896,1854.989,50.84016,0,0,0,0,100,0),
(@PATH,23,2137.195,1856.388,51.2458,0,0,0,0,100,0),
(@PATH,24,2132.518,1851.993,49.97353,0,0,0,0,100,0),
(@PATH,25,2130.472,1848.927,49.23372,0,0,0,0,100,0);
-- Pathing for Blood of Agamaggan Entry: 4541
SET @NPC := 87429;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=2090.525,`position_y`=1707.353,`position_z`=56.40569 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(@PATH,1,2098.015,1714.226,54.92541,0,0,0,0,100,0),
(@PATH,2,2103.385,1720.315,54.51497,0,0,0,0,100,0),
(@PATH,3,2108.919,1725.167,54.04745,0,0,0,0,100,0),
(@PATH,4,2118.578,1730.136,52.90612,0,0,0,0,100,0),
(@PATH,5,2132.439,1734.546,51.80573,0,13000,0,0,100,0),
(@PATH,6,2123.643,1732.562,52.38219,0,0,0,0,100,0),
(@PATH,7,2117.904,1729.931,52.9194,0,0,0,0,100,0),
(@PATH,8,2104.57,1720.452,54.46609,0,0,0,0,100,0),
(@PATH,9,2094.942,1711.386,55.54934,0,0,0,0,100,0),
(@PATH,10,2086.199,1706.155,56.26017,0,0,0,0,100,0),
(@PATH,11,2079.804,1703.917,56.69853,0,0,0,0,100,0),
(@PATH,12,2070.831,1700.533,57.39662,0,0,0,0,100,0),
(@PATH,13,2061.656,1701.943,58.31971,0,0,0,0,100,0),
(@PATH,14,2058.082,1702.922,58.69167,0,17000,0,0,100,0),
(@PATH,15,2063.635,1701.552,58.13944,0,0,0,0,100,0),
(@PATH,16,2070.139,1701.076,57.30006,0,0,0,0,100,0),
(@PATH,17,2079.066,1703.696,56.82508,0,0,0,0,100,0),
(@PATH,18,2090.525,1707.353,56.40569,0,0,0,0,100,0);
-- Pathing for Blood of Agamaggan Entry: 4541
SET @NPC := 87390;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `id`=4541,`spawndist`=0,`MovementType`=2,`position_x`=2164.323,`position_y`=1691.301,`position_z`=56.84164 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(@PATH,1,2157.073,1685.369,57.93908,0,0,0,0,100,0),
(@PATH,2,2154.69,1677.314,58.87576,0,0,0,0,100,0),
(@PATH,3,2147.898,1672.951,59.1782,0,0,0,0,100,0),
(@PATH,4,2140.698,1675.78,58.07055,0,0,0,0,100,0),
(@PATH,5,2142.277,1679.984,58.22276,0,0,0,0,100,0),
(@PATH,6,2144.172,1684.408,58.18035,0,0,0,0,100,0),
(@PATH,7,2148.83,1690.948,57.99367,0,0,0,0,100,0),
(@PATH,8,2154.595,1696.041,56.11627,0,0,0,0,100,0),
(@PATH,9,2158.22,1705.284,54.65466,0,0,0,0,100,0),
(@PATH,10,2160.252,1714.086,53.17568,0,0,0,0,100,0),
(@PATH,11,2162.731,1719.535,52.75797,0,0,0,0,100,0),
(@PATH,12,2168.902,1717.577,53.77048,0,0,0,0,100,0),
(@PATH,13,2172.589,1711.47,54.84762,0,0,0,0,100,0),
(@PATH,14,2173.192,1704.445,55.48201,0,0,0,0,100,0),
(@PATH,15,2171.546,1696.724,56.45893,0,0,0,0,100,0),
(@PATH,16,2164.323,1691.301,56.84164,0,0,0,0,100,0);
-- Pathing for Razorfen Stalker Entry: 6035
SET @NPC := 87489;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=2152.86,`position_y`=1926.615,`position_z`=66.59495 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(@PATH,1,2158.86,1922.016,66.59574,0,0,0,0,100,0),
(@PATH,2,2165.115,1918.638,67.83205,0,0,0,0,100,0),
(@PATH,3,2167.671,1916.226,68.76556,0,0,0,0,100,0),
(@PATH,4,2171.736,1914.535,69.57543,0,0,0,0,100,0),
(@PATH,5,2179.248,1910.936,69.82761,0,0,0,0,100,0),
(@PATH,6,2193.254,1903.004,71.05865,0,0,0,0,100,0),
(@PATH,7,2179.248,1910.936,69.82761,0,0,0,0,100,0),
(@PATH,8,2171.736,1914.535,69.57543,0,0,0,0,100,0),
(@PATH,9,2167.671,1916.226,68.76556,0,0,0,0,100,0),
(@PATH,10,2165.115,1918.638,67.83205,0,0,0,0,100,0),
(@PATH,11,2158.86,1922.016,66.59574,0,0,0,0,100,0),
(@PATH,12,2152.86,1926.615,66.59495,0,0,0,0,100,0);
-- Pathing for Quilguard Champion Entry: 4623
SET @NPC := 87393;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=2140.23,`position_y`=1634.293,`position_z`=81.90321 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(@PATH,1,2143.314,1628.368,81.60458,0,0,0,0,100,0), -- 49:24
(@PATH,2,2140.299,1634.161,81.88406,0,0,0,0,100,0), -- 49:29
(@PATH,3,2134.956,1642.65,82.24873,0,0,0,0,100,0), -- 49:30
(@PATH,4,2132.034,1646.701,82.23985,0,0,0,0,100,0), -- 49:34
(@PATH,5,2130.662,1651.305,82.10767,0,0,0,0,100,0), -- 49:36
(@PATH,6,2129.971,1657.905,82.04201,0,0,0,0,100,0), -- 49:39
(@PATH,7,2129.474,1664.574,82.66071,0,0,0,0,100,0), -- 49:41
(@PATH,8,2128.147,1671.855,82.16047,0,0,0,0,100,0), -- 49:44
(@PATH,9,2127.142,1678.336,82.5769,0,0,0,0,100,0), -- 49:47
(@PATH,10,2125.827,1687.057,81.51637,0,0,0,0,100,0), -- 49:50
(@PATH,11,2123.738,1693.419,80.39718,0,0,0,0,100,0), -- 53:22
(@PATH,12,2120.174,1700.864,79.91035,0,0,0,0,100,0), -- 53:20
(@PATH,13,2117.048,1706.28,80.65261,0,0,0,0,100,0), -- 53:18
(@PATH,14,2120.174,1700.864,79.91035,0,0,0,0,100,0), -- 53:20
(@PATH,15,2123.738,1693.419,80.39718,0,0,0,0,100,0), -- 53:22
(@PATH,16,2125.827,1687.057,81.51637,0,0,0,0,100,0), -- 53:26
(@PATH,17,2127.142,1678.336,82.5769,0,0,0,0,100,0), -- 53:28
(@PATH,18,2128.147,1671.855,82.16047,0,0,0,0,100,0), -- 53:32
(@PATH,19,2129.474,1664.574,82.66071,0,0,0,0,100,0), -- 53:34
(@PATH,20,2129.971,1657.905,82.04201,0,0,0,0,100,0), -- 53:37
(@PATH,21,2130.662,1651.305,82.10767,0,0,0,0,100,0), -- 53:40
(@PATH,22,2132.034,1646.701,82.23985,0,0,0,0,100,0), -- 53:43
(@PATH,23,2134.956,1642.65,82.24873,0,0,0,0,100,0), -- 53:44
(@PATH,24,2140.23,1634.293,81.90321,0,0,0,0,100,0); -- 53:46
-- Pathing for Death's Head Acolyte Entry: 4515
SET @NPC := 87379;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=2182.066,`position_y`=1536.653,`position_z`=71.79845 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(@PATH,1,2188.081,1536.191,72.05502,0,0,0,0,100,0), -- 41:00
(@PATH,2,2195.706,1531.923,72.93341,0,0,0,0,100,0), -- 41:02
(@PATH,3,2197.902,1526.016,72.89204,0,0,0,0,100,0), -- 41:05
(@PATH,4,2198.892,1515.474,72.48969,0,0,0,0,100,0), -- 41:07
(@PATH,5,2197.205,1507.643,72.7455,0,0,0,0,100,0), -- 41:12
(@PATH,6,2190.766,1503.397,73.81425,0,0,0,0,100,0), -- 41:16
(@PATH,7,2178.97,1496.977,73.17003,0,0,0,0,100,0), -- 41:18
(@PATH,8,2175.032,1490.408,72.85684,0,0,0,0,100,0), -- 41:24
(@PATH,9,2176.586,1481.719,72.83849,0,0,0,0,100,0), -- 41:27
(@PATH,10,2185.094,1484.374,72.816,0,0,0,0,100,0), -- 41:30
(@PATH,11,2186.793,1492.113,72.8675,0,0,0,0,100,0), -- 41:34
(@PATH,12,2186.97,1500.637,73.57037,0,0,0,0,100,0), -- 41:38
(@PATH,13,2190.372,1503.825,73.90714,0,0,0,0,100,0), -- 41:40
(@PATH,14,2197.789,1513.378,72.69975,0,0,0,0,100,0), -- 41:43
(@PATH,15,2197.359,1522.274,72.66833,0,0,0,0,100,0), -- 41:48
(@PATH,16,2194.852,1530.686,72.99499,0,0,0,0,100,0), -- 41:51
(@PATH,17,2187.881,1535.706,72.00735,0,0,0,0,100,0), -- 41:55
(@PATH,18,2178.126,1536.009,71.67631,0,0,0,0,100,0), -- 41:57
(@PATH,19,2182.066,1536.653,71.79845,0,0,0,0,100,0); -- 42:02
-- Pathing for Razorfen Warrior Entry: 4435
SET @NPC := 87291;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=2004.841,`position_y`=1525.423,`position_z`=80.50848 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(@PATH,1,2005.701,1530,80.87834,0,0,0,0,100,0), -- 34:59
(@PATH,2,2007.366,1538.389,79.65939,0,0,0,0,100,0), -- 35:00
(@PATH,3,2008.361,1546.181,78.66383,0,0,0,0,100,0), -- 35:03
(@PATH,4,2007.064,1551.882,79.57407,0,0,0,0,100,0), -- 35:06
(@PATH,5,2002.433,1561.567,81.50003,0,0,0,0,100,0), -- 35:09
(@PATH,6,2001.195,1566.652,82.29926,0,0,0,0,100,0), -- 35:14
(@PATH,7,1998.848,1575.452,82.17207,0,0,0,0,100,0), -- 35:15
(@PATH,8,1995.95,1589.264,80.10281,0,0,0,0,100,0), -- 35:19
(@PATH,9,2001.675,1587.134,80.87109,0,0,0,0,100,0), -- 35:25
(@PATH,10,1999.646,1571.909,82.2473,0,0,0,0,100,0), -- 35:27
(@PATH,11,2001.582,1567.512,82.26955,0,0,0,0,100,0), -- 35:33
(@PATH,12,2002.453,1560.95,81.43659,0,0,0,0,100,0), -- 35:36
(@PATH,13,2004.99,1553.852,80.15679,0,0,0,0,100,0), -- 35:38
(@PATH,14,2011.123,1548.021,79.32449,0,0,0,0,100,0), -- 35:41
(@PATH,15,2017.961,1542.419,80.9518,0,0,0,0,100,0), -- 35:44
(@PATH,16,2025.82,1535.566,80.51386,0,0,0,0,100,0), -- 35:48
(@PATH,17,2029.185,1532.684,80.43591,0,0,0,0,100,0), -- 35:53
(@PATH,18,2026.733,1526.938,80.00459,0,0,0,0,100,0), -- 35:54
(@PATH,19,2024.966,1520.724,79.29298,0,0,0,0,100,0), -- 35:56
(@PATH,20,2019.758,1516.571,79.15639,0,0,0,0,100,0), -- 35:59
(@PATH,21,2007.736,1514.946,79.54068,0,0,0,0,100,0), -- 36:01
(@PATH,22,2005.342,1521.371,80.2472,0,0,0,0,100,0), -- 36:06
(@PATH,23,2004.841,1525.423,80.50848,0,0,0,0,100,0); -- 36:10
@@ -1,7 +0,0 @@
--
UPDATE `smart_scripts` SET `event_flags`=`event_flags`|512 WHERE `entryorguid` IN (2482300,2485200) AND `source_type`=9;
-- readd missing text from 2015_03_02_03_world.sql
DELETE FROM `creature_text` WHERE `CreatureID`=24718 AND `GroupID` IN (1, 2);
INSERT INTO `creature_text` (`CreatureID`,`GroupID`,`ID`,`Text`,`Type`,`Language`,`Probability`,`Emote`,`Duration`,`Sound`, `BroadcastTextId`,`TextRange`,`comment`) VALUES
(24718,1,0,"What do you think you're doing, man? Lebronski does NOT appreciate you dragging your loose metal parts all over his rug.",12,7,100,0,0,0, 23890,0,'Lebronski'),
(24718,2,0,"Far out, man. This bucket of bolts might make it after all...",12,7,100,0,0,0, 23891,0,'Lebronski');
@@ -1,243 +0,0 @@
-- Unliving Swine SAI
SET @ENTRY := 25600;
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,0,0,0,100,0,2000,5000,8000,12000,11,50303,0,0,0,0,0,2,0,0,0,0,0,0,0,"Unliving Swine - In Combat - Cast 'Swine Flu'");
-- En'kilah Necrolord SAI
SET @ENTRY := 25609;
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,0,0,0,100,0,0,0,30000,30000,11,50324,0,0,0,0,0,1,0,0,0,0,0,0,0,"En'kilah Necrolord - In Combat - Cast 'Bone Armor'"),
(@ENTRY,0,1,0,0,0,100,0,2000,5000,6000,9000,11,50323,0,0,0,0,0,2,0,0,0,0,0,0,0,"En'kilah Necrolord - In Combat - Cast 'Sharpened Bone'");
-- Bane SAI
SET @ENTRY := 25655;
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,0,0,0,100,0,2000,5000,15000,20000,11,50332,0,0,0,0,0,1,0,0,0,0,0,0,0,"Bane - In Combat - Cast 'Fool's Bane'");
-- Kvaldir Mist Lord SAI
SET @ENTRY := 25496;
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,0,0,0,100,0,0,0,10000,15000,11,49922,0,0,0,0,0,2,0,0,0,0,0,0,0,"Kvaldir Mist Lord - In Combat - Cast 'Wave Crash'");
-- Kel'Thuzad SAI
SET @ENTRY := 25465;
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,1,1,0,100,0,3000,6000,27000,29000,11,50312,32,0,0,0,0,1,0,0,0,0,0,0,0,"Kel'Thuzad - Out of Combat - Cast 'Unholy Frenzy'"),
(@ENTRY,0,1,0,61,0,100,0,0,0,0,0,4,8818,0,0,0,0,0,1,0,0,0,0,0,0,0,"Kel'Thuzad - Out of Combat - Play Sound 8818"),
(@ENTRY,0,2,0,1,0,100,0,0,0,2000,10000,11,50319,0,0,0,0,0,21,70,0,0,0,0,0,0,"Kel'Thuzad - Out of Combat - Cast 'Soul Flay'");
-- Injured Warsong Shaman SAI
SET @ENTRY := 27108;
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,1,8,0,100,1,47962,0,0,0,85,47967,1,0,0,0,0,7,0,0,0,0,0,0,0,"Injured Warsong Shaman - On Spell hit - Cast Killcredit on Invoker"),
(@ENTRY,0,1,0,61,0,100,513,47962,0,0,0,41,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Injured Warsong Shaman - On Spell hit - Despawn after 1sec"),
(@ENTRY,0,2,0,0,0,100,0,0,2000,6000,14000,11,25025,0,0,0,0,0,2,0,0,0,0,0,0,0,"Injured Warsong Shaman - In Combat - Cast 'Earth Shock'"),
(@ENTRY,0,3,0,0,0,100,0,3000,5000,8000,12000,11,16033,0,0,0,0,0,2,0,0,0,0,0,0,0,"Injured Warsong Shaman - In Combat - Cast 'Chain Lightning'");
-- Injured Warsong Mage SAI
SET @ENTRY := 27107;
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,1,8,0,100,1,47962,0,0,0,85,47967,1,0,0,0,0,7,0,0,0,0,0,0,0,"Injured Warsong Mage - On Spell hit - Cast Killcredit on Invoker"),
(@ENTRY,0,1,0,61,0,100,513,47962,0,0,0,41,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Injured Warsong Mage - On Spell hit - Despawn after 1sec"),
(@ENTRY,0,2,0,0,0,100,0,0,2000,1000,7000,11,34933,0,0,0,0,0,2,0,0,0,0,0,0,0,"Injured Warsong Mage - In Combat - Cast 'Arcane Explosion'"),
(@ENTRY,0,3,0,0,0,100,0,3000,7000,10000,30000,11,17274,0,0,0,0,0,2,0,0,0,0,0,0,0,"Injured Warsong Mage - In Combat - Cast 'Pyroblast'"),
(@ENTRY,0,4,0,0,0,100,0,8000,12000,20000,30000,11,46195,0,0,0,0,0,2,0,0,0,0,0,0,0,"Injured Warsong Mage - In Combat - Cast 'Blizzard'");
-- Injured Warsong Warrior SAI
SET @ENTRY := 27106;
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,2,8,0,100,1,47962,0,0,0,85,47967,1,0,0,0,0,7,0,0,0,0,0,0,0,"Injured Warsong Warrior - On Spellhit 'Rescue Injured Soldier' - Invoker Cast 'Soldier Rescued' (No Repeat)"),
(@ENTRY,0,1,0,61,0,100,513,47962,0,0,0,41,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Injured Warsong Warrior - On Spellhit 'Rescue Injured Soldier' - Despawn Instant (No Repeat)"),
(@ENTRY,0,2,1,61,0,100,0,47962,0,0,0,85,47975,0,0,0,0,0,7,0,0,0,0,0,0,0,"Injured Warsong Warrior - On Spellhit 'Rescue Injured Soldier' - Invoker Cast 'Warlord's Bulwark' (No Repeat)"),
(@ENTRY,0,3,0,0,0,100,0,0,3000,7000,14000,11,39047,0,0,0,0,0,2,0,0,0,0,0,0,0,"Injured Warsong Warrior - In Combat - Cast 'Cleave'"),
(@ENTRY,0,4,0,0,0,100,0,3000,6000,7000,14000,11,45026,0,0,0,0,0,2,0,0,0,0,0,0,0,"Injured Warsong Warrior - In Combat - Cast 'Heroic Strike'");
-- Injured Warsong Engineer SAI
SET @ENTRY := 27110;
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,2,8,0,100,1,47962,0,0,0,85,47967,1,0,0,0,0,7,0,0,0,0,0,0,0,"Injured Warsong Engineer - On Spellhit 'Rescue Injured Soldier' - Invoker Cast 'Soldier Rescued' (No Repeat)"),
(@ENTRY,0,1,0,61,0,100,513,47962,0,0,0,41,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Injured Warsong Engineer - On Spellhit 'Rescue Injured Soldier' - Despawn Instant (No Repeat)"),
(@ENTRY,0,2,1,61,0,100,0,47962,0,0,0,85,47969,0,0,0,0,0,7,0,0,0,0,0,0,0,"Injured Warsong Engineer - On Spellhit 'Rescue Injured Soldier' - Invoker Cast 'Tune Up!' (No Repeat)"),
(@ENTRY,0,3,0,0,0,100,0,0,3000,7000,14000,11,44273,0,0,0,0,0,2,0,0,0,0,0,0,0,"Injured Warsong Engineer - In Combat - Cast 'Goblin Dragon Gun'"),
(@ENTRY,0,4,0,0,0,100,0,4000,7000,12000,15000,11,22742,0,0,0,0,0,2,0,0,0,0,0,0,0,"Injured Warsong Engineer - In Combat - Cast 'Super Shrink Ray'");
-- Rockfang SAI
SET @ENTRY := 25774;
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,0,6,0,100,0,0,0,0,0,11,46221,2,0,0,0,0,7,0,0,0,0,0,0,0,"Rockfang - On Just Died - Cast 'Animal Blood'"),
(@ENTRY,0,1,0,0,0,100,0,3000,5000,6000,9000,11,32918,0,0,0,0,0,2,0,0,0,0,0,0,0,"Rockfang - In Combat - Cast 'Chilling Howl'");
-- Gammothra the Tormentor SAI
SET @ENTRY := 25789;
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,0,8,0,100,512,46012,0,0,0,36,25790,0,0,0,0,0,1,0,0,0,0,0,0,0,"Gammothra the Tormentor - On Spellhit 'Bloodspore Poison' - Update Template To 'Weakened Gammothra'"),
(@ENTRY,0,1,0,0,0,100,0,0,1000,10000,12000,11,50413,0,0,0,0,0,1,0,0,0,0,0,0,0,"Gammothra the Tormentor - In Combat - Cast 'Magnataur Charge'"),
(@ENTRY,0,2,0,0,0,100,0,3000,5000,6000,10000,11,50410,0,0,0,0,0,2,0,0,0,0,0,0,0,"Gammothra the Tormentor - In Combat - Cast 'Tusk Strike'");
-- Ragnar Drakkarlund SAI
SET @ENTRY := 26451;
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,0,0,0,100,0,3000,5000,8000,10000,11,41056,0,0,0,0,0,2,0,0,0,0,0,0,0,"Ragnar Drakkarlund - In Combat - Cast 'Whirlwind'");
-- Crypt Crawler SAI
SET @ENTRY := 25227;
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,0,0,0,100,0,2000,3000,2000,3000,11,31600,64,0,0,0,0,2,0,0,0,0,0,0,0,"Crypt Crawler - IC - Cast 'Crypt Scarabs' CMC");
DELETE FROM `creature_text` WHERE `CreatureID` = 25514; -- Rocknar
INSERT INTO `creature_text` (`CreatureID`, `groupid`, `id`, `text`, `type`, `language`, `probability`, `emote`, `duration`, `sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(25514,0,0,' Frozen and destroyed. This is all your fleshy corpse is good for.',12,0,100,0,0,0,24727,0,'Rocknar'),
(25514,0,1,' You are not welcome here. Die!',12,0,100,0,0,0,24728,0,'Rocknar'),
(25514,0,2,' Your presence unbalances the land. You must be removed!',12,0,100,0,0,0,24729,0,'Rocknar');
-- Rocknar SAI
SET @ENTRY := 25514;
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,0,25,0,100,0,0,0,0,0,11,42617,0,0,0,0,0,1,0,0,0,0,0,0,0,"Rocknar - On Reset - Cast 'Vertex Color Lt. Blue'"),
(@ENTRY,0,1,0,21,0,100,1,0,0,0,0,11,45776,0,0,0,0,0,1,0,0,0,0,0,0,0,"Rocknar - On Reached Home - Cast 'Ice Block' (No Repeat)"),
(@ENTRY,0,2,3,4,0,100,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Rocknar - On Aggro - Say Line 0"),
(@ENTRY,0,3,0,61,0,100,0,0,0,0,0,28,45776,0,0,0,0,0,1,0,0,0,0,0,0,0,"Rocknar - On Aggro - Remove Aura 'Ice Block'"),
(@ENTRY,0,4,0,0,0,100,0,0,3000,8000,10000,11,50094,0,0,0,0,0,2,0,0,0,0,0,0,0,"Rocknar - In Combat - Cast 'Ice Spike'"),
(@ENTRY,0,5,0,11,0,100,1,0,0,0,0,11,45776,0,0,0,0,0,1,0,0,0,0,0,0,0,"Rocknar - On Respawn - Cast 'Ice Block' (No Repeat)"),
(@ENTRY,0,6,0,0,0,100,0,4000,7000,14000,16000,11,22693,0,0,0,0,0,1,0,0,0,0,0,0,0,"Rocknar - In Combat - Cast 'Harden Skin'");
DELETE FROM `creature_text` WHERE `CreatureID` = 26185; -- Lurid
INSERT INTO `creature_text` (`CreatureID`, `groupid`, `id`, `text`, `type`, `language`, `probability`, `emote`, `duration`, `sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(26185,0,0,' You worship death, little man? Death is here!',12,0,100,35,0,0,25347,0,'Lurid'),
(26185,0,1,' Master... you want... I kill puny priest? Make painful, yes?',12,0,100,35,0,0,25345,0,'Lurid'),
(26185,0,2,' Yes, weakling... beg Lurid for life!',12,0,100,35,0,0,25346,0,'Lurid'),
(26185,1,0,' You Arthas lapdog? You die!',12,0,100,0,0,0,25835,0,'Lurid'),
(26185,1,1,' Time to kill!',12,0,100,0,0,0,17565,0,'Lurid'),
(26185,1,2,' Lurid could get used... to working with you.',12,0,100,0,0,0,25837,0,'Lurid'),
(26185,1,3,' It\'s about time! Lurid was getting bored.',12,0,100,0,0,0,25834,0,'Lurid'),
(26185,1,4,' This not... end well for you!',12,0,100,0,0,0,25836,0,'Lurid');
-- Lurid SAI
SET @ENTRY := 26185;
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,0,1,0,100,0,30000,70000,170000,200000,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Lurid - Out of Combat - Say Line 0"),
(@ENTRY,0,1,0,25,0,100,0,0,0,0,0,8,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Lurid - On Reset - Set Reactstate Defensive"),
(@ENTRY,0,2,0,4,0,100,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Lurid - On Aggro - Say Line 1");
-- High Deathpriest Isidorus texts
DELETE FROM `creature_text` WHERE `CreatureID` = 26171;
INSERT INTO `creature_text` (`CreatureID`, `groupid`, `id`, `text`, `type`, `language`, `probability`, `emote`, `duration`, `sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(26171,0,0,' Please... all our orders come from Naxxanar... me and my men are kept in the dark!',12,0,100,0,0,0,25353,0,'High Deathpriest Isidorus'),
(26171,0,1,' Mercy! You were once with us! DO you not remember?',12,0,100,0,0,0,25355,0,'High Deathpriest Isidorus'),
(26171,0,2,' I beg you, death knight! Keep your minion away from me! I\'ll do anything!',12,0,100,0,0,0,25354,0,'High Deathpriest Isidorus');
-- High Deathpriest Isidorus SAI
SET @ENTRY := 26171;
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,0,1,0,100,0,30000,50000,170000,200000,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"High Deathpriest Isidorus - Out of Combat - Say Line 0");
-- Ziggurat Defender SAI
SET @ENTRY := 26202;
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,0,0,0,100,0,3000,5000,1000,5000,11,50306,0,0,0,0,0,2,0,0,0,0,0,0,0,"Ziggurat Defender - In Combat - Cast 'Thrash Kick'");
-- spell condition for 'Borean Tundra - Quest - Thassarian Flay'
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceGroup`=1 AND `SourceEntry`=46685;
INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition`,`ErrorType`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES
(13, 1, 46685, 0, 0, 31, 0, 3, 26173, 0, 0, 0, 0, '', "Spell 'Thassarian Flay' only targets NPC Tanathal");
-- Fleeing Cultist texts
DELETE FROM `creature_text` WHERE `CreatureID` = 26189;
INSERT INTO `creature_text` (`CreatureID`, `groupid`, `id`, `text`, `type`, `language`, `probability`, `emote`, `duration`, `sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(26189,0,0,' The ziggurat\'s lost! Flee to the temple!',12,0,100,0,0,0,25350,0,'Fleeing Cultist'),
(26189,0,1,' The death knight... he\'s mad!',12,0,100,0,0,0,25349,0,'Fleeing Cultist'),
(26189,0,2,' Arthas save us - we\'re doomed!',12,0,100,0,0,0,25348,0,'Fleeing Cultist');
-- Fleeing Cultist SAI
SET @ENTRY := 26189;
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,0,11,0,33,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Fleeing Cultist - On Respawn - Say Line 0");
DELETE FROM `creature_text` WHERE `CreatureID` = 26170 AND `groupid` = 7; -- Thassarian
INSERT INTO `creature_text` (`CreatureID`, `groupid`, `id`, `text`, `type`, `language`, `probability`, `emote`, `duration`, `sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(26170,7,0,' Speak, Lich! Undeath won\'t save you from what I\'ll put you through!',12,0,100,0,4000,0,25321,0,'Thassarian');
-- Bloodspore Moth
UPDATE `creature_template` SET `InhabitType` = 7 WHERE `entry` = 25464;
-- Bloodmage Laurith SAI
SET @ENTRY := 25381;
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,0,25,0,100,0,0,0,0,0,8,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Bloodmage Laurith - On Reset - Set Reactstate Defensive");
-- Primal Mighthorn SAI
SET @ENTRY := 25380;
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,0,19,0,100,0,11721,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,"Primal Mighthorn - On Quest Accept (Gammothra the Tormentor) - Say Line 1"),
(@ENTRY,0,1,0,25,0,100,0,0,0,0,0,8,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Primal Mighthorn - On Reset - Set Reactstate Defensive");
-- Bloodspore Firestarter
UPDATE `creature` SET `position_x`= 2560.157, `position_y`= 5832.141, `position_z`= 141.855 WHERE `guid`= 107529;
-- Primal Mighthorn, Bloodmage Laurith
UPDATE `creature` SET `orientation`= 0.3736162 WHERE `guid`= 132640;
UPDATE `creature` SET `orientation`= 2.397409 WHERE `guid`= 132641;
DELETE FROM `creature_formations` WHERE `leaderGUID`= 132640;
INSERT INTO `creature_formations` (`leaderGUID`,`memberGUID`,`dist`,`angle`,`groupAI`,`point_1`,`point_2`) VALUES
(132640, 132640, 0, 0, 3, 0, 0),
(132640, 132641, 0, 0, 3, 0, 0);
-- Bloodspore Moth, Bloodspore Harvester, Bloodspore Firestarter
DELETE FROM `creature` WHERE `guid` IN (132708, 107116, 107253, 107560);
DELETE FROM `creature_addon` WHERE `guid` IN (132708,107116,107253,107560);
-- Den Vermin
UPDATE `creature` SET `spawntimesecs`= 300, `spawndist`= 5, `MovementType`= 1 WHERE `guid` IN (133116,133117,133118,133121);
UPDATE `creature` SET `position_x`= 2649.587, `position_y`= 5904.689, `position_z`= 4.274 WHERE `guid`= 133116;
UPDATE `creature` SET `position_x`= 2559.874, `position_y`= 5871.110, `position_z`= 27.613 WHERE `guid`= 133117;
UPDATE `creature` SET `position_x`= 2592.794, `position_y`= 5867.375, `position_z`= -9.839 WHERE `guid`= 133118;
UPDATE `creature` SET `position_x`= 2564.476, `position_y`= 5890.039, `position_z`= -8.713 WHERE `guid`= 133121;
-- Bloodspore Harvester, Bloodspore Roaster
UPDATE `creature` SET `unit_flags`= 768 WHERE `guid` IN (132720, 132721, 132722, 132723, 132724);
UPDATE `creature` SET `spawndist`= 0, `MovementType`= 0 WHERE `guid` IN (107309, 107322, 107360, 107386, 107387);
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=9472 AND `SourceEntry`=0;
INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES
(15,9472,0,0,0,8,0,11733,0,0,0,0,'','Surristrasz - Show Gossip Option 0 if Quest 11733 is rewarded');
@@ -1,9 +0,0 @@
-- Advisor Sorrelon
DELETE FROM `gossip_menu` WHERE `MenuID`=7183 AND `TextID`=8462;
INSERT INTO `gossip_menu` (`MenuID`, `TextID`, `VerifiedBuild`) VALUES
(7183,8462,0);
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=14 AND `SourceGroup`=7183;
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
(14,7183,8619,0,0,16,0,512,0,0,0,0,0,"","Show gossip text if player is a Blood Elf"),
(14,7183,8462,0,0,16,0,1279,0,0,0,0,0,"","Show gossip text if player is not a Blood Elf");
@@ -1,13 +0,0 @@
-- Supervisor Raelen
DELETE FROM `creature_text` WHERE `CreatureID`=10616;
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(10616,0,0,"We have yet to meet our quota for the wood demand. Now back to work with you.",12,7,100,25,0,0,6890,0,"Supervisor Raelen"),
(10616,0,1,"Daylight is still upon us so let's see that axe of yours chopping some more wood.",12,7,100,1,0,0,6891,0,"Supervisor Raelen"),
(10616,0,2,"We need to get this wagon filled by the end of the day. So back to work with you. Chop, chop!",12,7,100,5,0,0,6892,0,"Supervisor Raelen");
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=10616;
DELETE FROM `smart_scripts` WHERE `entryorguid`=10616 AND `source_type`=0;
DELETE FROM `smart_scripts` WHERE `entryorguid`=1061600 AND `source_type`=9;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(10616,0,0,0,75,0,100,0,0,11328,1,20000,80,1061600,0,0,0,0,0,1,0,0,0,0,0,0,0,"Supervisor Raelen - On 'Eastvale Peasant' in Range - Run Script"),
(1061600,9,0,0,0,0,100,0,3000,3000,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Supervisor Raelen - On Script - Say Line 0");
@@ -1,10 +0,0 @@
-- quest: A Suitable Test Subject (11719)
DELETE FROM `spell_script_names` WHERE `ScriptName`="spell_q11719_bloodspore_ruination_45997";
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
(45997, "spell_q11719_bloodspore_ruination_45997");
UPDATE `creature_template` SET `ScriptName`="npc_bloodmage_laurith" WHERE `entry`=25381;
DELETE FROM `creature_text` WHERE `CreatureID`=25381;
INSERT INTO `creature_text` (`CreatureID`,`GroupID`,`ID`,`Text`,`Type`,`Language`,`Probability`,`Emote`,`Duration`,`Sound`,`BroadcastTextId`,`TextRange`,`comment`) VALUES
(25381, 0, 0, "How positively awful! You were totally incapacitated? Weak? Hot flashes?", 15, 0, 100, 21, 0, 0, 24992, 0, "Bloodmage Laurith");
@@ -1,70 +0,0 @@
-- Underlight Mines
SET @PATHID_1 := 826050;
SET @PATHID_2 := 825820;
UPDATE `creature` SET `MovementType`=2 WHERE `guid` IN (82605, 82582);
DELETE FROM `creature_addon` WHERE `guid` IN (82605, 82582);
INSERT INTO `creature_addon` (`guid`, `path_id`, `bytes2`) VALUES
(82605, @PATHID_1, 4097),
(82582, @PATHID_2, 4097);
-- Add waypoints
DELETE FROM `waypoint_data` WHERE `id` IN (@PATHID_1, @PATHID_2);
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`) VALUES
-- Blackpaw Shaman #1
(@PATHID_1, 1, 7126.29, -6221.997, 21.801),
(@PATHID_1, 2, 7110.97, -6227.314, 21.194),
(@PATHID_1, 3, 7105.31, -6209.855, 21.509),
(@PATHID_1, 4, 7081.72, -6205.795, 21.952),
(@PATHID_1, 5, 7071.54, -6199.641, 22.810),
(@PATHID_1, 6, 7071.65, -6189.511, 21.062),
(@PATHID_1, 7, 7071.54, -6199.641, 22.810),
(@PATHID_1, 8, 7077.39, -6207.805, 22.138),
(@PATHID_1, 9, 7076.12, -6218.441, 23.908),
(@PATHID_1, 10, 7068.51, -6227.06, 23.479),
(@PATHID_1, 11, 7061.94, -6227.88, 22.943),
(@PATHID_1, 12, 7068.51, -6227.06, 23.479),
(@PATHID_1, 13, 7076.12, -6218.44, 23.908),
(@PATHID_1, 14, 7077.39, -6207.80, 22.138),
(@PATHID_1, 15, 7071.54, -6199.64, 22.810),
(@PATHID_1, 16, 7071.65, -6189.51, 21.062),
(@PATHID_1, 17, 7071.54, -6199.64, 22.810),
(@PATHID_1, 18, 7081.72, -6205.79, 21.952),
(@PATHID_1, 19, 7105.31, -6209.85, 21.509),
(@PATHID_1, 20, 7110.97, -6227.31, 21.194),
(@PATHID_1, 21, 7126.29, -6221.99, 21.801),
-- Blackpaw Shaman #2
(@PATHID_2, 1, 7001.19, -6262.55, 6.511),
(@PATHID_2, 2, 7009.89, -6270.94, 5.008),
(@PATHID_2, 3, 7022.81, -6275.65, 7.483),
(@PATHID_2, 4, 7039.36, -6277.72, 8.733),
(@PATHID_2, 5, 7054.01, -6276.99, 12.318),
(@PATHID_2, 6, 7069.66, -6269.71, 15.899),
(@PATHID_2, 7, 7076.94, -6260.30, 17.073),
(@PATHID_2, 8, 7072.61, -6244.68, 19.408),
(@PATHID_2, 9, 7068.06, -6234.58, 22.018),
(@PATHID_2, 10, 7072.61, -6244.68, 19.408),
(@PATHID_2, 11, 7076.94, -6260.30, 17.073),
(@PATHID_2, 12, 7069.66, -6269.71, 15.899),
(@PATHID_2, 13, 7054.01, -6276.99, 12.318),
(@PATHID_2, 14, 7039.36, -6277.72, 8.733),
(@PATHID_2, 15, 7022.81, -6275.65, 7.483),
(@PATHID_2, 16, 7009.89, -6270.94, 5.008),
(@PATHID_2, 17, 7001.19, -6262.55, 6.511),
(@PATHID_2, 18, 7006.29, -6247.67, 6.112);
-- Add correct weapons to specific Blackpaw Gnolls and Blackpaw Scavengers
DELETE FROM `creature_equip_template` WHERE `CreatureID` IN (16334, 16335) AND `id`=2;
INSERT INTO `creature_equip_template` (`CreatureID`, `ID`, `ItemID1`) VALUES
(16334, 2, 2901), -- This weapon isn't sniffed, but looks exactly like the one used in retail. If someone has the sniffed weapon I can update the SQL
(16335, 2, 2901);
UPDATE `creature` SET `equipment_id`=2 WHERE `guid` IN (82576, 82580, 82583, 82584, 82586, 82587, 82591, 82593, 82594, 82595, 82596, 82598, 82601, 82644);
-- Blackpaw Shaman SAI
SET @ENTRY := 16337;
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,0,0,0,100,0,0,0,3000,4500,11,20802,64,0,0,0,0,2,0,0,0,0,0,0,0,"Blackpaw Shaman - In Combat CMC - Cast 'Lightning Bolt'"),
(@ENTRY,0,1,0,2,0,100,1,0,30,0,0,11,28902,1,0,0,0,0,1,0,0,0,0,0,0,0,"Blackpaw Shaman - Between 0-30% Health - Cast 'Bloodlust' (No Repeat)"),
(@ENTRY,0,2,0,2,0,100,1,0,15,0,0,25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Blackpaw Shaman - Between 0-15% Health - Flee For Assist (No Repeat)");
@@ -1,44 +0,0 @@
DELETE FROM `quest_greeting` WHERE `ID` IN (234, 235, 237, 238, 241, 253, 261, 342, 714, 786, 823, 1343, 1374, /*1495,*/ 1499, /*1500, 1515,*/ 1518, 2519, /*2546,*/ 2930, 3139, 3188, 3338, /*3391,*/ 3419, 3446, 3453, /*3567, 3616, 3649, 4077, 4453,*/ 5887, /*6171, 7407,*/ 7876/*, 27337*/);
INSERT INTO `quest_greeting` (`ID`, `Type`, `GreetEmoteType`, `GreetEmoteDelay`, `Greeting`, `VerifiedBuild`) VALUES
(234, 0, 1, 0, "A foul corruption has crept into Westfall. While I was upholding my duty on the battlefields of Lordaeron these honest farms were overrun and made into hide-outs for thugs and murderers. The People's Militia needs your help.", 0),
(235, 0, 0, 0, "Welcome to our humble abode! It's always nice to see a friendly face. And what strong arms you have. My husband and I are always looking for help around the farm. Now that most the good folk have left, it's hard to find an able body to help out.", 0),
(237, 0, 0, 0, "Nothing but trouble in these parts. I tried to tell that fool Saldean to get out while he still could but he won't hear of it. But I ain't no fool. Verna and I are gonna mosey on out as soon as we get this wagon fixed.", 0),
(238, 0, 0, 0, "Sometimes I think there's a big gray cloud in the sky, just raining down bad luck upon us. First, we're driven off our land, and now we can't even get out of Westfall. Everything's a mess. Something needs to be done.", 0),
(241, 0, 0, 0, "Hey there, friend. My name's Remy.$BI'm from Redridge to the east, and came here looking for business, looking for business. You got any...got any??", 0),
(253, 0, 0, 0, "Aha! Good day, good day, Master $C! Come, sit down and have a drink. You have an enterprising look in your eye, and I think you'll find speaking to me worth your time...", 0),
(261, 0, 0, 0, "Hello, citizen. You look like a $g man : woman; with a purpose - do you have business with the Stormwind Army?", 0),
(342, 0, 0, 0, "Hail, $n. Welcome to my humble garden. The weather has been perfect lately. Let us hope it holds steady for a ripe harvest.", 0),
(714, 0, 0, 0, "Greetings, $c! Fine day for hunting, wouldn't you say? I've been having more than a little luck with boars, myself. Perhaps you'd like a shot?", 0),
(786, 0, 0, 0, "Greetings, $G lad : lass;. I'm Grelin Whitebeard. I'm here to examine the threat posed by the growing numbers of trolls in Coldridge Valley. What have I found? It's a bit troubling...", 0),
(823, 0, 1, 0, "Hello there, $c. Normally I'd be out on the beat looking after the folk of Stormwind, but a lot of the Stormwind guards are fighting in the other lands. So here I am, deputized and offering bounties when I'd rather be on patrol...", 0),
(1343, 0, 0, 0, "Well, if it isn't a young, bristling $c, no doubt drawn here by talk of my exploits in fields of battle!$B$BNo time for stories now, for there are great, important deeds that need doing! So if you're looking for glory, then luck shines on you today...", 0),
(1374, 0, 0, 0, "Curse that Brewers'' League! They have access to all the best ingredients, while we''re stuck here grubbing for grain and hops!", 0),
-- (1495, 0, 0, 0, "Greetings, $C. Be wary as you travel east toward The Bulwark. Recent surveillance reports indicate increased Scourge activity in that area, so exercise caution.", 0),
(1499, 0, 0, 0, "Ah, you there! I have tasks to give, and I need not waste time explaining their crucial nature. Listen close.", 0),
-- (1500, 0, 0, 0, "I hope you're well, all things considered.$B$BSit for a spell, and hear my tale. It's a tragedy, of course, but one I hope will end in revenge!", 0),
-- (1515, 0, 0, 0, "The Scarlet Crusade is encroaching on our homeland. The foolish zealots do not realize that the loyal servants of The Dark Lady shall see to their demise.", 0),
(1518, 0, 0, 0, "The Dark Lady has put forth the challenge. It is up to us to meet it.", 0),
(2519, 0, 0, 0, "Hello! The spirits say you here to aid my chief. Say it loud, they do.", 0),
-- (2546, 0, 0, 0, "Yarrr... ye best not be trifling with my time, matey!", 0),
(2930, 0, 0, 0, "Corruption sneaks into nature's grove. The forest must be protected at all costs.", 0),
(3139, 0, 0, 0, "Throm'ka, $c. There is little time for talk and much work to be done.", 0),
(3188, 0, 0, 0, "There is something you wish to discuss, $c... come, sit by me.", 0),
(3338, 0, 0, 0, "The land, the water and the sky are all as one. It is your eyes that deceive you with such separation. The Earthmother is all those things and more.", 0),
-- (3391, 0, 0, 0, "Thrall paid me and my boys well for helping out with the construction of Orgrimmar, so I decided to set up a port here. We do most of our business through Booty Bay and Baron Revilgaz.", 15595),
(3419, 0, 1, 0, "For our people to survive, we must study the ways of nature and learn its secrets.", 0),
(3446, 0, 0, 0, "Yes yes yes! You're just the $r I'm looking for!$B$BSit! We have much to discuss!!", 0),
(3453, 0, 0, 0, "Something I can help you with, $n? There's a shipment I've got to see to otherwise.", 0),
-- (3567, 0, 0, 0, "Well met, $n. It is good to see that $cs like yourself are taking an active part in protecting the groves.", 0),
-- (3616, 0, 0, 0, "The wind whispers to those who listen...$B$BDo you hear it?", 0),
-- (3649, 0, 1, 0, "Dark forces encroach upon our borders, ancient taints resurface, and new evils emerge to topple the delicate balance of the land. In times of such darkness, we all must be vigilant.", 0),
-- (4077, 0, 0, 0, "If I can get the proper ingredients, we can create some explosives that will not only allow me to damage the Venture's Co.'s operations, but also cause a distraction.$B$BI know you're impressed, but it gets better... I'll tell you more soon enough.", 0),
-- (4453, 0, 0, 0, "Be careful where you put that foot of yours, $g sir : ma'am;. We're not all blessed with the lofty height of a gnome.", 0),
(5887, 0, 0, 0, "I welcome you back, $n.", 0),
-- (6171, 0, 1, 0, "You will be tested many times by the darkness that surrounds our lands, $N. But to ensure you are always prepared, we will often ask tasks of you so you are at the height of your own power.$B$BGo with the Light, and remain virtuous.", 0),
-- (7407, 0, 0, 0, "The name's Bilgewhizzle, and I am the chief engineer of the Gadgetzan Water Company. What can I assist you with?", 0),
(7876, 0, 0, 0, "Some people wonder what we're doing out here in the desert. Well... If I told you, then you'd stay and try to make our profits!", 0);
-- (27337, 0, 0, 0, "", 0);
UPDATE `creature_template` SET `gossip_menu_id`=0, `npcflag`=2 WHERE `entry` IN (786, 1343);
DELETE FROM `gossip_menu` WHERE `MenuID` IN (694, 10893);
DELETE FROM `npc_text` WHERE `ID`=1244;
@@ -1,2 +0,0 @@
--
UPDATE `creature_model_info` SET `DisplayID_Other_Gender`=0 WHERE `DisplayID` IN (21505);
@@ -1,4 +0,0 @@
--
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=22 AND `SourceEntry`=28347;
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
(22, 2, 28347, 0, 0, 31, 0, 4, 0, 0, 0, 0, 0, "", "Execute SAI only if invoker is a player");
@@ -1,6 +0,0 @@
--
DELETE FROM `spawn_group` WHERE `groupId`=2 AND `spawnType`=0 AND `spawnId` IN (66695,66697,69726,69728,70352,76446,76508,76509,76510,81862,81868,86483,86554,86555,86556,86557,107116,107253,107560,132708);
-- DELETE FROM `spawn_group` WHERE `groupId`=2 AND `spawnType`=1 AND `spawnId` IN (30587,30593,30594,45042,45043,45157,45194,45195,45196,45197,45198,45200,45201);
-- DELETE FROM `spawn_group` WHERE `spawnId` IN (409,412,414,420,424,426,432,492,509,513,601,610,612,617,646,660,665,669,672,718,750,763,787,791,796,802,813,828,833,836,853,859) AND `spawnType`=1 AND `groupId`=2;
-- INSERT INTO `spawn_group` (`groupId`, `spawnType`, `spawnId`) VALUES
-- (2,1,409),(2,1,412),(2,1,414),(2,1,420),(2,1,424),(2,1,426),(2,1,432),(2,1,492),(2,1,509),(2,1,513),(2,1,601),(2,1,610),(2,1,612),(2,1,617),(2,1,646),(2,1,660),(2,1,665),(2,1,669),(2,1,672),(2,1,718),(2,1,750),(2,1,763),(2,1,787),(2,1,791),(2,1,796),(2,1,802),(2,1,813),(2,1,828),(2,1,833),(2,1,836),(2,1,853),(2,1,859);
@@ -1,81 +0,0 @@
-- master only
UPDATE `creature` SET `guid`= 2499 WHERE `guid`= 311219;
DELETE FROM `creature_addon` WHERE `guid`=2499;
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `visibilityDistanceType`, `auras`) VALUES (2499, 0, 0, 0, 4097, 0, 0, NULL);
-- Add script to Sethir the Ancient
SET @ENTRY := 6909;
SET @ACTIONLIST_0 := @ENTRY * 100;
SET @ACTIONLIST_1 := @ENTRY * 100 + 1;
SET @ACTIONLIST_2 := @ENTRY * 100 + 2;
SET @ACTIONLIST_3 := @ENTRY * 100 + 3;
-- Fix spawn loaction and respawn timer
UPDATE `creature` SET `position_x`=11052.97, `position_y`=1921.79, `position_z`=1332.839, `orientation`=3.7522, `spawntimesecs`=60 WHERE `guid`=2499;
-- Add waypoints to Sethir the Ancient
DELETE FROM `waypoints` WHERE `entry`=@ENTRY;
INSERT INTO `waypoints` (`entry`, `pointid`, `position_x`, `position_y`, `position_z`, `point_comment`) VALUES
(@ENTRY, 1, 11034.78, 1915.12, 1329.071, 'Sethir the Ancient'),
(@ENTRY, 2, 11018.08, 1909.81, 1326.689, 'Sethir the Ancient'),
(@ENTRY, 3, 11013.61, 1908.09, 1329.723, 'Sethir the Ancient'),
(@ENTRY, 4, 11008.81, 1905.00, 1332.812, 'Sethir the Ancient'),
(@ENTRY, 5, 11004.28, 1901.83, 1333.868, 'Sethir the Ancient - Say Text'),
(@ENTRY, 6, 11008.81, 1905.00, 1332.812, 'Sethir the Ancient'),
(@ENTRY, 7, 11013.61, 1908.09, 1329.723, 'Sethir the Ancient'),
(@ENTRY, 8, 11018.08, 1909.81, 1326.689, 'Sethir the Ancient'),
(@ENTRY, 9, 11034.78, 1915.12, 1329.071, 'Sethir the Ancient'),
(@ENTRY, 10, 11052.97, 1921.79, 1332.839, 'Sethir the Ancient'),
(@ENTRY, 11, 11062.44, 1915.84, 1333.774, 'Sethir the Ancient'),
(@ENTRY, 12, 11071.45, 1909.21, 1337.327, 'Sethir the Ancient'),
(@ENTRY, 13, 11076.20, 1904.69, 1340.876, 'Sethir the Ancient'),
(@ENTRY, 14, 11080.32, 1899.27, 1344.996, 'Sethir the Ancient - Say Text'),
(@ENTRY, 15, 11091.49, 1902.53, 1344.222, 'Sethir the Ancient - Run'),
(@ENTRY, 16, 11098.34, 1905.78, 1345.527, 'Sethir the Ancient - Run'),
(@ENTRY, 17, 11102.24, 1910.42, 1347.384, 'Sethir the Ancient - Run'),
(@ENTRY, 18, 11109.10, 1908.49, 1353.008, 'Sethir the Ancient - Run'),
(@ENTRY, 19, 11115.28, 1910.62, 1352.932, 'Sethir the Ancient - Despawn');
-- Add NPCs summoned via script
DELETE FROM `creature_summon_groups` WHERE `summonerId`=@ENTRY;
INSERT INTO `creature_summon_groups` (`summonerId`, `groupId`, `entry`, `position_x`, `position_y`, `position_z`, `orientation`, `summonType`, `summonTime`) VALUES
(@ENTRY, 0, 6911, 11009.33, 1898.94, 1335.194, 0.3919, 3, 80000),
(@ENTRY, 0, 6911, 11007.34, 1902.23, 1333.569, 0.2843, 3, 80000),
(@ENTRY, 0, 6911, 11007.49, 1907.11, 1333.883, 0.0801, 3, 80000),
(@ENTRY, 0, 6911, 11057.91, 1915.54, 1332.819, 2.5737, 3, 80000),
(@ENTRY, 0, 6911, 11063.38, 1918.78, 1333.376, 2.5942, 3, 80000),
(@ENTRY, 0, 6911, 11064.35, 1927.73, 1336.835, 3.6026, 3, 80000);
-- Add text to Sethir the Ancient
DELETE FROM `creature_text` WHERE `CreatureID` IN (@ENTRY,6911);
INSERT INTO `creature_text` (`CreatureID`, `groupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `BroadcastTextId`, `comment`) VALUES
(@ENTRY, 0, 0, "I know you are there, rogue. Leave my home or join the others at the bottom of the world tree.", 12, 0, 100, 2981, "Sethir the Ancient - Near player"),
(@ENTRY, 1, 0, "The end of days is upon us! May the earth embrace my flesh and bones.", 12, 0, 100, 2982, "Sethir the Ancient - On Waypoint 14"),
(@ENTRY, 2, 0, "Filth! Filth everywhere! The forests must be cleansed!", 12, 0, 100, 3001, "Sethir the Ancient - On Waypoint 5"),
(@ENTRY, 3, 0, "It is hopeless. Cutting one down results in two new growths.", 12, 0, 100, 3002, "Sethir the Ancient - On Waypoint 14"),
(6911, 0, 0, "We live only to serve the ancient one. DIE INTERLOPER!", 12, 0, 100, 2983, "Minion of Sethir - Oggro");
-- Add SAI to Sethir the Ancient + Actionlist 00/01/02/03
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (6911, @ENTRY, @ACTIONLIST_0, @ACTIONLIST_1, @ACTIONLIST_2, @ACTIONLIST_3) AND `source_type` IN (0, 9);
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry` IN (6911, @ENTRY);
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(@ENTRY,0,0,0,1,0,100,0,30000,30000,200000,200000,53,0,@ENTRY,0,0,10000,2,1,0,0,0,0,0,0,0,"Sethir the Ancient - Out of Combat - Start Waypoint"), -- SAI NPC ID=6909
(@ENTRY,0,1,0,40,0,100,0,5,@ENTRY,0,0,80,@ACTIONLIST_0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sethir the Ancient - On Waypoint 5 Reached - Run Script"),
(@ENTRY,0,2,0,40,0,100,0,14,@ENTRY,0,0,80,@ACTIONLIST_1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sethir the Ancient - On Waypoint 14 Reached - Run Script"),
(@ENTRY,0,3,0,40,0,100,0,19,@ENTRY,0,0,80,@ACTIONLIST_3,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sethir the Ancient - On Waypoint 19 Reached - Run Script"),
(@ENTRY,0,4,0,4,0,100,0,0,0,0,0,80,@ACTIONLIST_2,2,0,0,0,0,1,0,0,0,0,0,0,0,"Sethir the Ancient - On Aggro - Run Script"),
(@ENTRY,0,5,0,10,0,100,0,0,10,80000,120000,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sethir the Ancient - Within 0-10 Range Out of Combat LoS - Say Line 0"),
(@ACTIONLIST_0,9,0,0,0,0,100,0,0,0,0,0,54,40000,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sethir the Ancient - On Script - Pause Waypoint"), -- Actionlist 00
(@ACTIONLIST_0,9,1,0,0,0,100,0,15000,15000,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sethir the Ancient - On Script - Say Line 2"),
(@ACTIONLIST_1,9,0,0,0,0,100,0,0,0,0,0,54,60000,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sethir the Ancient - On Script - Pause Waypoint"), -- Actionlist 01
(@ACTIONLIST_1,9,1,0,0,0,100,0,5000,5000,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sethir the Ancient - On Script - Say Line 3"),
(@ACTIONLIST_1,9,2,0,0,0,100,0,55000,55000,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sethir the Ancient - On Script - Say Line 1"),
(@ACTIONLIST_1,9,3,0,0,0,100,0,0,0,0,0,59,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sethir the Ancient - On Script - Set Run On"),
(@ACTIONLIST_2,9,0,0,0,0,100,0,0,0,0,0,107,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"On Script - Summon Creature Group 0"), -- Actionlist 02
(@ACTIONLIST_3,9,0,0,0,0,100,0,10000,10000,0,0,41,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sethir the Ancient - On Script - Despawn"), -- Actionlist 03
(6911,0,0,0,4,0,40,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Minion of Sethir - On aggro - Say text 0");
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=22 AND `SourceEntry`=@ENTRY;
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
(22, 6, @ENTRY, 0, 0, 9, 0, 2242, 0, 0, 0, 0, '','Sethir the Ancient Only execute SAI if the quest 2242 is taken');
@@ -1,18 +0,0 @@
--
UPDATE `creature_template` SET `AIName`= 'SmartAI',`ScriptName`='' WHERE `entry`=17375;
UPDATE `gameobject_template` SET `AIName`='SmartGameObjectAI', `ScriptName`='' WHERE `entry`=181714;
DELETE FROM `smart_scripts` WHERE `entryorguid` =181714 AND `source_type`=1;
DELETE FROM `smart_scripts` WHERE `entryorguid` =17375 AND `source_type`=0;
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (18171400,1737500) AND `source_type`=9;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(181714, 1, 0 ,0,70, 0, 100, 0, 2, 0, 0,0,80,18171400,0,0,0,0,0,1,0,0,0,0, 0, 0, 0, 'Bristlelimb Cage - On State Changed - Run Script'),
(181714, 1, 1 ,0,38, 0, 100, 0, 1, 1, 0,0,32,0,0,0,0,0,0,1,0,0,0,0, 0, 0, 0, 'Bristlelimb Cage - On Data Set - Reset GO'),
(17375, 0, 0 ,0,38, 0, 100, 0, 1, 1, 0,0,80,1737500,2,0,0,0,0,1,0,0,0,0, 0, 0, 0, 'Stillpine Captive - On Data Set - Run Script'),
(17375, 0, 1 ,0,11, 0, 100, 0, 0, 0, 0,0,45,1,1,0,0,0,0,20,181714,5,0,0, 0, 0, 0, 'Stillpine Captive - ON respawn - Set data'),
(1737500, 9, 0 ,0,0, 0, 100, 0, 1000, 1000, 0,0,1,0,0,0,0,0,0,12,1,0,0,0, 0, 0, 0, 'Stillpine Captive - On Script - Say'),
(1737500, 9, 1 ,0,0, 0, 100, 0, 0, 0, 0,0,33,17375,0,0,0,0,0,12,1,0,0,0, 0, 0, 0, 'Stillpine Captive - On Script - Kill Credit'),
(1737500, 9, 2 ,0,0, 0, 100, 0, 4000, 4000, 0,0,114,0,0,0,0,0,0,1,0,0,0,0, 30, 0, 0, 'Stillpine Captive - On Script - Move Foward'),
(1737500, 9, 3 ,0,0, 0, 100, 0, 4000, 4000, 0,0,41,0,0,0,0,0,0,1,0,0,0,0, 0, 0, 0, 'Stillpine Captive - On Script - Despawn after 5 seconds'),
(18171400, 9, 0 ,0, 0, 0, 100, 0, 0, 0, 0,0,64,1,0,0,0,0,0,7,0,0,0,0, 0, 0, 0, 'Bristlelimb Cage - On State Changed - Store Targetlist'),
(18171400, 9, 1 ,0, 0, 0, 100, 0, 0, 0, 0,0,100,1,0,0,0,0,0,19,17375,5,0,0, 0, 0, 0, 'Bristlelimb Cage - Script - Send Targetlist'),
(18171400, 9, 2 ,0, 0, 0, 100, 0, 0, 0, 0,0,45,1,1,0,0,0,0,19,17375,5,0,0, 0, 0, 0, 'Bristlelimb Cage - Script - Set Data');
@@ -1,366 +0,0 @@
--
DELETE FROM `creature` WHERE `id`IN (21044,21195,21029,19765,21041,20795);
DELETE FROM `creature` WHERE `guid` IN (62883,62884,66695,66697,69726,69728,70352,70701,70702,70703,70704,70705,70706,70707,70708,73518,76446,76508,76509,76510,77832,77833,77834,77835,77836,77837,77838,77839,78186,78187,80539,80540,80541,80545,80546,80547,80551,80580,80646,80667,80669,80704,80708,80712,80715,80729,80743,80754,80758,80760,80766,80772,80786,80795,80810,80814,80825,80828,80860,80862,80884,80899,80911,80915,80944,80946,81020,81031,81037,81042,81054,81055,81056,81059,81060,81061,81063,81072,81079,81084,81086,81087,81088,81089,81095,81096,81097,81098,81101,81102,81103,81124,81125,81126,81128,81129,81130,81131);
INSERT INTO `creature` (`guid`, `id`, `map`, `spawnDifficulties`, `PhaseId`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`,`curhealth`, `curmana`, `MovementType`) VALUES
(62883, 21195, 530, '0', 0, 0, 0, -2588.75, 1091.04, 59.9092, 1.17927, 180, 5, 5900, 0, 1),
(62884, 21195, 530, '0', 0, 0, 0, -2543.62, 1118.17, 71.2176, 1.08895, 180, 5, 6000, 0, 1),
(66695, 21195, 530, '0', 0, 0, 0, -2523.45, 1153.34, 68.9991, 4.22975, 180, 5, 5900, 0, 1),
(66697, 21195, 530, '0', 0, 0, 0, -2552.1, 1175.69, 78.8479, 3.00296, 180, 5, 5900, 0, 1),
(69726, 21195, 530, '0', 0, 0, 0, -2462.39, 1273.3, 35.5286, 2.99118, 180, 5, 5900, 0, 1 ),
(69728, 21195, 530, '0', 0, 0, 0, -2481.78, 1175.69, 37.8072, 1.88377, 180, 5, 6000, 0, 1),
(70352, 21195, 530, '0', 0, 0, 0, -2546.81, 1231.11, 72.8316, 1.52637, 180, 5, 6000, 0, 1),
(70701, 21195, 530, '0', 0, 0, 0, -2511.39, 1227.9, 61.0218, 3.70192, 180, 5, 6000, 0, 1 ),
(70702, 21195, 530, '0', 0, 0, 0, -2581.92, 1220.64, 77.0188, 1.73843, 180, 5, 6000, 0, 1),
(70703, 21195, 530, '0', 0, 0, 0, -2511.58, 1204.96, 58.753, 2.79872, 180, 5, 5900, 0, 1 ),
(70704, 21195, 530, '0', 0, 0, 0, -2568.08, 1241.86, 80.5805, 2.16743, 180, 5, 5900, 0, 1),
(70705, 21195, 530, '0', 0, 0, 0, -2493.88, 1280.81, 57.6669, 2.39127, 180, 5, 6000, 0, 1),
(70706, 21195, 530, '0', 0, 0, 0, -2475.34, 1311.98, 47.4481, 2.34022, 180, 5, 5900, 0, 1),
(70707, 21195, 530, '0', 0, 0, 0, -2525.07, 1313.36, 65.936, 2.56013, 180, 5, 6000, 0, 1 ),
(70708, 21195, 530, '0', 0, 0, 0, -2570.61, 1374.26, 84.8053, 3.11384, 180, 5, 6000, 0, 1),
(73518, 21195, 530, '0', 0, 0, 0, -2550.49, 1310.61, 79.8304, 3.53168, 180, 5, 5900, 0, 1),
(76446, 21195, 530, '0', 0, 0, 0, -2507.78, 1381.64, 65.6897, 3.94401, 180, 5, 6000, 0, 1),
(76508, 21195, 530, '0', 0, 0, 0, -2567.65, 1445.42, 55.5677, 3.86547, 180, 5, 6000, 0, 1),
(76509, 21195, 530, '0', 0, 0, 0, -2583.85, 1418.77, 74.3185, 4.68669, 180, 5, 5900, 0, 1),
(76510, 21195, 530, '0', 0, 0, 0, -2623.92, 1449.6, 52.1637, 3.34732, 180, 5, 6000, 0, 1 ),
(77832, 21195, 530, '0', 0, 0, 0, -2619.86, 1364.69, 83.0265, 3.71044, 180, 5, 5900, 0, 1),
(77833, 21195, 530, '0', 0, 0, 0, -2619.8, 1316.13, 84.1189, 3.94921, 180, 5, 5900, 0, 1 ),
(77834, 21195, 530, '0', 0, 0, 0, -2706.39, 1364.84, 92.2946, 0.50056, 180, 5, 5900, 0, 1),
(77835, 21195, 530, '0', 0, 0, 0, -2701.88, 1323.35, 90.4227, 6.16328, 180, 5, 6000, 0, 1),
(77836, 21195, 530, '0', 0, 0, 0, -2749.56, 1352.11, 89.3066, 6.2693, 180, 5, 6000, 0, 1 ),
(77837, 21195, 530, '0', 0, 0, 0, -2714.38, 1304.45, 84.5302, 6.04939, 180, 5, 6000, 0, 1),
(77838, 21195, 530, '0', 0, 0, 0, -2825.32, 1259.45, 75.399, 1.02088, 180, 5, 5900, 0, 1 ),
(77839, 21195, 530, '0', 0, 0, 0, -2816.47, 1269.8, 76.3112, 0.600692, 180, 5, 5900, 0, 1),
(78186, 21195, 530, '0', 0, 0, 0, -2794.3, 1256.81, 74.7389, 5.39555, 180, 5, 6000, 0, 1 ),
(78187, 21195, 530, '0', 0, 0, 0, -2795.26, 1246.96, 74.6738, 4.73031, 180, 5, 5900, 0, 1),
(80539, 21195, 530, '0', 0, 0, 0, -2802.93, 1238.03, 75.3009, 3.27811, 180, 5, 6000, 0, 1),
(80540, 21195, 530, '0', 0, 0, 0, -2600.63, 1250.26, 80.1918, 4.33513, 180, 5, 5900, 0, 1),
(80541, 21195, 530, '0', 0, 0, 0, -2594.22, 1313.18, 80.6982, 1.63336, 180, 5, 6000, 0, 1),
(80545, 21195, 530, '0', 0, 0, 0, -2694.88, 1495, 19.2922, 2.33106, 300, 5, 5900, 0, 1),
(80546, 21195, 530, '0', 0, 0, 0, -2706.26, 1538.41, 16.6343, 1.96146, 300, 5, 5900, 0, 1),
(80547, 21029, 530, '0', 0, 0, 0, -2729.85, 1215.23, 48.2141, 1.5708, 1407, 0, 3700, 2434, 0),
(80551, 21029, 530, '0', 0, 0, 0, -2713.19, 1221.69, 38.1432, 2.09439, 1407, 0, 3700, 2434, 0),
(80580, 21029, 530, '0', 0, 0, 0, -2711.53, 1230.92, 37.3221, 2.54818, 1407, 0, 3700, 2434, 0),
(80646, 21029, 530, '0', 0, 0, 0, -2721.25, 1216.49, 41.7782, 1.79769, 1407, 0, 3700, 2434, 0),
(80667, 21029, 530, '0', 0, 0, 0, -2708.88, 1239.1, 38.1921, 3.08923, 1407, 0, 3700, 2434, 0),
(80669, 20795, 530, '0', 0, 0, 1, -2593.76, 1384.13, 44.286, 0.561506, 300, 0, 6803, 2991, 0),
(80704, 21041, 530, '0', 0, 0, 0, -2638.89, 1358.96, 35.9607, 0.574121, 180, 0, 8, 0, 0),
(80708, 21041, 530, '0', 0, 0, 0, -2614.51, 1381.27, 51.6831, 5.55015, 180, 0, 8, 0, 0),
(80712, 21041, 530, '0', 0, 0, 0, -2605.25, 1369.39, 47.99, 4.03171, 180, 0, 8, 0, 0),
(80715, 21041, 530, '0', 0, 0, 0, -2610.76, 1377.7, 41.0943, 3.50811, 180, 0, 8, 0, 0),
(80729, 21041, 530, '0', 0, 0, 0, -2605.53, 1374.24, 45.3846, 5.55015, 180, 0, 8, 0, 0),
(80743, 21041, 530, '0', 0, 0, 0, -2590.76, 1387.65, 54.3178, 4.10152, 180, 0, 8, 0, 0),
(80754, 19765, 530, '0', 0, 0, 1, -2703.64, 1374.07, 38.5804, 5.28805, 300, 0, 6800, 0, 0),-- p
(80758, 19765, 530, '0', 0, 0, 1, -2675.32, 1381.04, 37.7423, 5.21902, 300, 0, 6800, 0, 0),
(80760, 19765, 530, '0', 0, 0, 1, -2762.58, 1270.13, 33.7635, 1.73773, 300, 0, 6800, 0, 0),
(80766, 19765, 530, '0', 0, 0, 1, -2781.27, 1305.83, 33.5543, 5.41576, 300, 0, 6800, 0, 0),
(80772, 19765, 530, '0', 0, 0, 1, -2765.61, 1318.13, 33.4387, 5.33329, 300, 0, 6800, 0, 0),
(80786, 19765, 530, '0', 0, 0, 1, -2787.05, 1147.31, 7.45318, 1.33523, 300, 0, 6800, 0, 0),
(80795, 19765, 530, '0', 0, 0, 1, -2642.37, 1231.22, 11.3652, 1.22372, 300, 5, 6800, 0, 1),
(80810, 19765, 530, '0', 0, 0, 1, -2725.14, 1268.87, 33.2397, 0.988205, 300, 0, 7000, 0, 0), -- A2
(80814, 19765, 530, '0', 0, 0, 1, -2797.2, 1159.63, 6.59181, 4.52004, 300, 0, 7000, 0, 0), -- A1
(80825, 19765, 530, '0', 0, 0, 1, -2809.17, 1208.37, 6.36241, 1.99577, 300, 5, 7000, 0, 2), -- M1
(80828, 19765, 530, '0', 0, 0, 1, -2625.6, 1230.3, 16.0772, 4.37159, 300, 0, 6800, 0, 2), -- M2
(80860, 19765, 530, '0', 0, 0, 1, -2751.58, 1254.24, 33.2959, 5.17046, 300, 0, 7000, 0, 2), -- M3
(80862, 19784, 530, '0', 0, 0, 0, -3079.14, 1609.92, 55.97, 4.15, 300, 5, 6542, 0, 1),
(80884, 19784, 530, '0', 0, 0, 0, -3083.91, 1598.23, 55.68, 2.86, 300, 5, 6542, 0, 1),
(80899, 19784, 530, '0', 0, 0, 0, -2700.81, 1218.34, 32.8339, 2.52035, 300, 0, 6542, 0, 0),
(80911, 19784, 530, '0', 0, 0, 0, -2697.99, 1227.02, 32.9681, 3.32304, 300, 0, 6542, 0, 0),
(80915, 19784, 530, '0', 0, 0, 0, -2586.7, 1393.04, 43.1409, 0.341699, 300, 0, 6542, 0, 0),
(80944, 19784, 530, '0', 0, 0, 0, -2583.66, 1386.4, 43.4713, 0.381754, 300, 0, 6542, 0, 0),
(80946, 19784, 530, '0', 0, 0, 0, -2705.87, 1316.38, 32.5245, 4.79938, 300, 0, 6542, 0, 0),
(81020, 19784, 530, '0', 0, 0, 0, -2715.36, 1312.55, 34.2753, 5.14495, 300, 0, 6542, 0, 0),
(81031, 19784, 530, '0', 0, 0, 0, -2636.83, 1260.95, 22.3503, 4.99127, 300, 0, 6542, 0, 0),
(81037, 19784, 530, '0', 0, 0, 0, -2736.01, 1146.11, 3.11515, 3.07334, 300, 0, 6542, 0, 0),
(81042, 19784, 530, '0', 0, 0, 0, -2738.83, 1137.51, 3.69936, 2.48028, 300, 0, 6542, 0, 0),
(81054, 19784, 530, '0', 0, 0, 0, -2841.49, 1248.57, 6.80746, 2.67519, 300, 5, 6542, 0, 1),
(81055, 19784, 530, '0', 0, 0, 0, -2783.33, 1278.81, 34.3858, 3.82742, 300, 0, 6542, 0, 2), -- M4
(81056, 19784, 530, '0', 0, 0, 0, -2780.24, 1275.13, 34.1177, 3.80386, 300, 0, 6542, 0, 2), -- M5
(81059, 19788, 530, '0', 0, 0, 1, -2703.59, 1159.87, 5.30619, 4.24358, 300, 0, 6986, 0, 2), -- M6
(81060, 19788, 530, '0', 0, 0, 1, -2670.19, 1189.04, 2.50672, 0.717135, 300, 0, 6986, 0, 2), -- M7
(81061, 19788, 530, '0', 0, 0, 1, -2663.22, 1283.27, 27.3812, 5.66254, 300, 0, 6986, 0, 2), -- M8
(81063, 19788, 530, '0', 0, 0, 1, -2666.03, 1342.99, 34.4455, 3.37765, 300, 0, 6986, 0, 2), -- M9
(81072, 19788, 530, '0', 0, 0, 1, -2631.91, 1352.43, 36.4787, 0.130435, 300, 0, 6986, 0, 2), -- M10
(81079, 19788, 530, '0', 0, 0, 1, -2638.05, 1371.17, 36.0565, 0.833366, 300, 0, 6986, 0, 2), -- M11
(81084, 19767, 530, '0', 0, 0, 1, -2650.88, 1350.89, 34.7686, 3.53907, 300, 5, 5589, 3155, 1),
(81086, 19767, 530, '0', 0, 0, 1, -2728.52, 1257.04, 33.6868, 3.5486, 300, 0, 5589, 3155, 0),
(81087, 19767, 530, '0', 0, 0, 1, -2735.84, 1276.24, 33.2578, 3.89497, 300, 0, 5409, 3080, 0),
(81088, 19767, 530, '0', 0, 0, 1, -2672.92, 1273.19, 27.458, 0.251734, 300, 0, 5409, 3080, 0),
(81089, 19767, 530, '0', 0, 0, 1, -2651.43, 1292.03, 28.1707, 4.99975, 300, 0, 5589, 3155, 0),
(81095, 19767, 530, '0', 0, 0, 0, -2774.5, 1157.2, 7.15576, 1.83316, 300, 0, 5589, 3155, 0),
(81096, 19767, 530, '0', 0, 0, 1, -2701.55, 1392.63, 38.5803, 5.2465, 300, 0, 5409, 3080, 0),
(81097, 19767, 530, '0', 0, 0, 1, -2696.6, 1353.23, 33.0829, 4.37698, 300, 0, 5409, 3080, 2), -- M12
(81098, 19762, 530, '0', 0, 0, 1, -3147.14, 1601.01, 53.64, 3.85, 300, 0, 6542, 0, 0),
(81101, 19762, 530, '0', 0, 0, 1, -3158.17, 1617.75, 55.43, 4.01, 300, 0, 6542, 0, 0),
(81102, 19762, 530, '0', 0, 0, 1, -3027.45, 1579.61, 64.27, 1.65, 300, 0, 6542, 0, 0),
(81103, 19762, 530, '0', 0, 0, 1, -2966.84, 1629.48, 56.5661, 5.37121, 300, 0, 6542, 0, 0),
(81124, 19762, 530, '0', 0, 0, 1, -2928.87, 1576.1, 36.1739, 0.488692, 300, 0, 6542, 0, 0),
(81125, 19762, 530, '0', 0, 0, 1, -2885.72, 1589.38, 19.9814, 5.58505, 300, 0, 6542, 0, 0),
(81126, 19768, 530, '0', 0, 0, 1, -3101.57, 1612.96, 55.94, 0.95, 300, 5, 5233, 2991, 1),
(81128, 19768, 530, '0', 0, 0, 1, -3052.83, 1588.57, 58.81, 0.65, 300, 0, 5233, 2991, 0),
(81129, 19768, 530, '0', 0, 0, 1, -2993.46, 1601.79, 58.338, 4.51526, 300, 5, 5233, 2991, 1),
(81130, 19768, 530, '0', 0, 0, 1, -2953.91, 1632.53, 55.186, 5.20641, 180, 0, 5233, 2991, 2), -- M13
(81131, 19789, 530, '0', 0, 0, 1, -3048.96, 1598, 59.1358, 2.63839, 300, 0, 5409, 3080, 2); -- M14
UPDATE `creature_template` SET `InhabitType`=4 WHERE `entry`=21029;
DELETE FROM `creature_template_addon` WHERE `entry`=21029;
INSERT INTO `creature_template_addon` (`entry`,`auras`) VALUES (21029,'35929');
-- M1
DELETE FROM `creature_addon` WHERE `guid` IN (80825);
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `auras`) VALUES
(80825, 808250, 0, 0, 1, 0, '');
DELETE FROM `waypoint_data` WHERE `id`=808250;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(808250, 1, -2813.66, 1219.47, 6.26582, 2.33427,0, 0, 0, 0, 0),
(808250, 2, -2823.04, 1231.43, 6.26582, 2.21175,0, 0, 0, 0, 0),
(808250, 3, -2812.49, 1218.18, 6.26582, 5.03919,0, 0, 0, 0, 0),
(808250, 4, -2810.22, 1210.22, 6.33902, 5.35806,0, 0, 0, 0, 0),
(808250, 5, -2804.85, 1201.79, 6.35387, 5.3769,0, 0, 0, 0, 0),
(808250, 6, -2809.33, 1208.98, 6.34654, 2.08608,0, 0, 0, 0, 0);
-- M2
DELETE FROM `creature_addon` WHERE `guid` IN (80828);
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `auras`) VALUES
(80828, 808280, 0, 0, 1, 0, '');
DELETE FROM `waypoint_data` WHERE `id`=808280;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(808280, 1, -2630.87, 1216.9, 13.2485, 4.47919,0, 0, 0, 0, 0),
(808280, 2, -2633.34, 1209.6, 11.5034, 4.14304,0, 0, 0, 0, 0),
(808280, 3, -2640.97, 1198.39, 7.09301, 3.87051,0, 0, 0, 0, 0),
(808280, 4, -2633.61, 1208.49, 11.2079, 1.15225,0, 0, 0, 0, 0),
(808280, 5, -2625.64, 1231.05, 16.2039, 1.18759,0, 0, 0, 0, 0);
-- M3
DELETE FROM `creature_addon` WHERE `guid` IN (80860);
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `auras`) VALUES
(80860, 808600, 0, 0, 1, 0, '');
DELETE FROM `waypoint_data` WHERE `id`=808600;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(808600, 1, -2749.4, 1244.21, 33.2671, 5.14934,0, 0, 0, 0, 0),
(808600, 2, -2743.86, 1237.89, 33.1367, 5.77373,0, 0, 0, 0, 0),
(808600, 3, -2734.48, 1234.54, 33.0974, 0.004972,0, 0, 0, 0, 0),
(808600, 4, -2727.84, 1234.95, 33.3884, 0.364684,0, 0, 0, 0, 0),
(808600, 5, -2719.89, 1239.82, 33.4734, 0.623865,0, 0, 0, 0, 0),
(808600, 6, -2732.9, 1236.39, 33.2376, 3.02483,0, 0, 0, 0, 0),
(808600, 7, -2743.78, 1243.76, 33.0691, 2.42243,0, 0, 0, 0, 0),
(808600, 8, -2752.27, 1253.43, 33.3292, 2.05722,0, 0, 0, 0, 0),
(808600, 9, -2756.76, 1261.23, 33.6086, 1.78233,0, 0, 0, 0, 0),
(808600, 10, -2755.41, 1267.02, 33.5622, 1.0629,0, 0, 0, 0, 0),
(808600, 11, -2751.57, 1271.24, 33.2816, 0.772747,0, 0, 0, 0, 0),
(808600, 12, -2755.03, 1267.12, 33.5387, 4.41228,0, 0, 0, 0, 0),
(808600, 13, -2755.32, 1260.73, 33.5241, 5.02332,0, 0, 0, 0, 0),
(808600, 14, -2752.29, 1253.29, 33.3312, 5.17882,0, 0, 0, 0, 0);
-- M4
DELETE FROM `creature_addon` WHERE `guid` IN (81055);
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `auras`) VALUES
(81055, 810550, 0, 0, 1, 0, '');
DELETE FROM `waypoint_data` WHERE `id`=810550;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(810550, 1, -2800.36, 1264.38, 33.7794, 3.85099,0, 0, 0, 0, 0),
(810550, 2, -2785.31, 1278.35, 34.5188, 0.756517,0, 0, 0, 0, 0);
-- M5
DELETE FROM `creature_addon` WHERE `guid` IN (81056);
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `auras`) VALUES
(81056, 810560, 0, 0, 1, 0, '');
DELETE FROM `waypoint_data` WHERE `id`=810560;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(810560, 1, -2798.04, 1259.64, 33.7046, 3.85491,0, 0, 0, 0, 0),
(810560, 2, -2779.5, 1275.52, 34.0586, 0.7251,0, 0, 0, 0, 0);
-- M6
DELETE FROM `creature_addon` WHERE `guid` IN (81059);
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `auras`) VALUES
(81059, 810590, 0, 0, 1, 0, '');
DELETE FROM `waypoint_data` WHERE `id`=810590;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(810590, 1, -2709.5, 1149.2, 3.76682, 4.05508,0, 0, 0, 0, 0),
(810590, 2, -2716.63, 1143.44, 1.55487, 3.38278,0, 0, 0, 0, 0),
(810590, 3, -2728.59, 1142.06, 1.56225, 2.93589,0, 0, 0, 0, 0),
(810590, 4, -2740.74, 1144.66, 2.58528, 2.79452,0, 0, 0, 0, 0),
(810590, 5, -2749.98, 1149.23, 4.84679, 2.69635,0, 0, 0, 0, 0),
(810590, 6, -2760.58, 1151.75, 6.37926, 2.84557,0, 0, 0, 0, 0),
(810590, 7, -2750.32, 1148.65, 5.02487, 6.11675,0, 0, 0, 0, 0),
(810590, 8, -2744.08, 1146.07, 3.08787, 5.72719,0, 0, 0, 0, 0),
(810590, 9, -2731.79, 1140.63, 2.27721, 6.15288,0, 0, 0, 0, 0),
(810590, 10, -2725.69, 1141.51, 1.0185, 0.183065,0, 0, 0, 0, 0),
(810590, 11, -2715.63, 1142.92, 1.56719, 0.745411,0, 0, 0, 0, 0),
(810590, 12, -2709.58, 1149.27, 3.79128, 1.18523,0, 0, 0, 0, 0),
(810590, 13, -2704.87, 1160.91, 5.26353, 1.047,0, 0, 0, 0, 0);
-- M7
DELETE FROM `creature_addon` WHERE `guid` IN (81060);
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `auras`) VALUES
(81060, 810600, 0, 0, 1, 0, '');
DELETE FROM `waypoint_data` WHERE `id`=810600;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(810600, 1, -2662.78, 1194.27, 4.89809, 0.560055,0, 0, 0, 0, 0),
(810600, 2, -2652.94, 1202.78, 6.36992, 0.92448,0, 0, 0, 0, 0),
(810600, 3, -2662.1, 1193.35, 4.7841, 3.73542,0, 0, 0, 0, 0),
(810600, 4, -2669.66, 1188.71, 2.66698, 3.62311,0, 0, 0, 0, 0),
(810600, 5, -2681.1, 1177.21, 5.30023, 3.78961,0, 0, 0, 0, 0),
(810600, 6, -2693.57, 1169.01, 5.23136, 3.6506,0, 0, 0, 0, 0),
(810600, 7, -2680.37, 1178.64, 5.0248, 0.804312,0, 0, 0, 0, 0),
(810600, 8, -2669.93, 1189.34, 2.6242, 0.776037,0, 0, 0, 0, 0);
-- M8
DELETE FROM `creature_addon` WHERE `guid` IN (81061);
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `auras`) VALUES
(81061, 810610, 0, 0, 1, 0, '');
DELETE FROM `waypoint_data` WHERE `id`=810610;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(810610, 1, -2673.27, 1287.53, 30.0059, 3.01731,0, 0, 0, 0, 0),
(810610, 2, -2686.45, 1288, 33.7323, 2.96077,0, 0, 0, 0, 0),
(810610, 3, -2702.89, 1294.32, 33.346, 1.99237,0, 0, 0, 0, 0),
(810610, 4, -2708.91, 1316.02, 33.1505, 5.27847,0, 0, 0, 0, 0),
(810610, 5, -2703.39, 1296.33, 33.1224, 5.38922,0, 0, 0, 0, 0),
(810610, 6, -2697.54, 1293.02, 33.7168, 5.88558,0, 0, 0, 0, 0),
(810610, 7, -2685.62, 1288.57, 33.6562, 5.83217,0, 0, 0, 0, 0),
(810610, 8, -2665.94, 1281.87, 27.3855, 5.13396,0, 0, 0, 0, 0);
-- M9
DELETE FROM `creature_addon` WHERE `guid` IN (81063);
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `auras`) VALUES
(81063, 810630, 0, 0, 1, 0, '');
DELETE FROM `waypoint_data` WHERE `id`=810630;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(810630, 1, -2697.32, 1335.65, 34.4455, 3.48132,0, 0, 0, 0, 0),
(810630, 2, -2714.16, 1325.63, 34.4318, 3.49389,0, 0, 0, 0, 0),
(810630, 3, -2731.4, 1319.42, 33.3495, 3.46797,0, 0, 0, 0, 0),
(810630, 4, -2744.27, 1313.27, 33.6604, 3.85281,0, 0, 0, 0, 0),
(810630, 5, -2761.38, 1299.57, 33.234, 3.82925,0, 0, 0, 0, 0),
(810630, 6, -2735.76, 1318.91, 33.372, 0.422193,0, 0, 0, 0, 0),
(810630, 7, -2714.38, 1324.81, 34.4313, 0.432404,0, 0, 0, 0, 0),
(810630, 8, -2696.22, 1335.15, 34.4441, 0.320092,0, 0, 0, 0, 0),
(810630, 9, -2666.71, 1343.22, 34.4441, 3.28969,0, 0, 0, 0, 0);
-- M10
DELETE FROM `creature_addon` WHERE `guid` IN (81072);
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `auras`) VALUES
(81072, 810720, 0, 0, 1, 0, '');
DELETE FROM `waypoint_data` WHERE `id`=810720;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(810720, 1, -2602.22, 1356.34, 38.5434, 0.303223,0, 0, 0, 0, 0),
(810720, 2, -2593.89, 1359.97, 39.9005, 0.578897,0, 0, 0, 0, 0),
(810720, 3, -2580.5, 1369.67, 41.5277, 0.684141,0, 0, 0, 0, 0),
(810720, 4, -2598.78, 1357.09, 38.9169, 3.24768,0, 0, 0, 0, 0),
(810720, 5, -2630.38, 1351.95, 36.5911, 3.31522,0, 0, 0, 0, 0);
-- M11
DELETE FROM `creature_addon` WHERE `guid` IN (81079);
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `auras`) VALUES
(81079, 810790, 0, 0, 1, 0, '');
DELETE FROM `waypoint_data` WHERE `id`=810790;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(810790, 1, -2627.7, 1381.62, 37.312, 0.617383,0, 0, 0, 0, 0),
(810790, 2, -2610.51, 1394.28, 41.4979, 0.558478,0, 0, 0, 0, 0),
(810790, 3, -2601.86, 1401.56, 41.8298, 0.766608,0, 0, 0, 0, 0),
(810790, 4, -2611.51, 1393.41, 41.3773, 3.63488,0, 0, 0, 0, 0),
(810790, 5, -2629.13, 1381.32, 37.1627, 3.84066,0, 0, 0, 0, 0),
(810790, 6, -2637.9, 1371.2, 36.0518, 4.06842,0, 0, 0, 0, 0);
-- M12
DELETE FROM `creature_addon` WHERE `guid` IN (81097);
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `auras`) VALUES
(81097, 810970, 0, 0, 1, 0, '');
DELETE FROM `waypoint_data` WHERE `id`=810970;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(810970, 1, -2695.24, 1357.19, 33.7026, 0.775927,0, 0, 0, 0, 0),
(810970, 2, -2685.75, 1365.43, 36.35, 0.607067,0, 0, 0, 0, 0),
(810970, 3, -2674.19, 1374.13, 35.8703, 1.37676,0, 0, 0, 0, 0),
(810970, 4, -2674.55, 1377.93, 36.8811, 1.88334, 8000,0, 0, 0, 0),
(810970, 5, -2673.1, 1372.77, 35.2807, 4.99351,0, 0, 0, 0, 0),
(810970, 6, -2673.87, 1369.61, 34.4183, 3.96464,0, 0, 0, 0, 0),
(810970, 7, -2675.56, 1369.15, 34.7282, 2.82582,0, 0, 0, 0, 0),
(810970, 8, -2680.29, 1370.4, 36.4156, 3.25779,0, 0, 0, 0, 0),
(810970, 9, -2691.28, 1367.88, 37.5129, 3.72902,0, 0, 0, 0, 0),
(810970, 10, -2695.36, 1365.82, 37.2766, 4.31257,0, 0, 0, 0, 0),
(810970, 11, -2697.01, 1353.85, 33.2442, 4.35739,0, 0, 0, 0, 0);
-- M13
DELETE FROM `creature_addon` WHERE `guid` IN (81130);
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `auras`) VALUES
(81130, 811300, 0, 0, 1, 0, '');
DELETE FROM `waypoint_data` WHERE `id`=811300;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(811300, 1, -2948.85, 1620.52, 50.9339, 4.9276, 0, 0, 0, 0, 0),
(811300, 2, -2948.62, 1606.71, 46.3706, 4.71947, 0, 0, 0, 0, 0),
(811300, 3, -2946.83, 1597.38, 43.3655, 5.23076, 0, 0, 0, 0, 0),
(811300, 4, -2941.05, 1589.2, 40.6134, 5.61246, 0, 0, 0, 0, 0),
(811300, 5, -2930.78, 1584.22, 36.7235, 6.06093, 0, 0, 0, 0, 0),
(811300, 6, -2915.55, 1581.13, 30.0541, 6.27298, 0, 0, 0, 0, 0),
(811300, 7, -2902.26, 1580.24, 24.2089, 6.25884, 0, 0, 0, 0, 0),
(811300, 8, -2872.79, 1580.65, 15.7052, 6.21957, 0, 0, 0, 0, 0),
(811300, 9, -2892.4, 1580.48, 20.5454, 3.16044, 0, 0, 0, 0, 0),
(811300, 10, -2910.51, 1580.57, 27.9381, 2.89655, 0, 0, 0, 0, 0),
(811300, 11, -2923.92, 1583.02, 34.0035, 2.75596, 0, 0, 0, 0, 0),
(811300, 12, -2936.33, 1587.42, 38.8889, 2.44337, 0, 0, 0, 0, 0),
(811300, 13, -2945.42, 1595.14, 42.6182, 1.99177, 0, 0, 0, 0, 0),
(811300, 14, -2947.7, 1601.71, 44.7921, 1.57158, 0, 0, 0, 0, 0),
(811300, 15, -2948.34, 1612.44, 48.2517, 1.5543, 0, 0, 0, 0, 0),
(811300, 16, -2947.95, 1624.06, 51.8413, 1.77971, 0, 0, 0, 0, 0),
(811300, 17, -2955.93, 1638.98, 57.3739, 2.12764, 0, 0, 0, 0, 0),
(811300, 18, -2957.91, 1642.16, 58.2903, 2.12764, 0, 0, 0, 0, 0),
(811300, 19, -2962.38, 1650.06, 62.1748, 2.04518, 0, 0, 0, 0, 0),
(811300, 20, -2963.01, 1652.75, 62.1967, 1.87631, 0, 0, 0, 0, 0),
(811300, 21, -2968.32, 1662.33, 66.9122, 2.10408, 0, 0, 0, 0, 0),
(811300, 22, -2983.44, 1679.15, 67.6165, 2.35933, 0, 0, 0, 0, 0),
(811300, 23, -2968.48, 1662.08, 66.9107, 5.28887, 0, 0, 0, 0, 0),
(811300, 24, -2963.18, 1652.73, 62.198, 5.18677, 0, 0, 0, 0, 0),
(811300, 25, -2961.16, 1650.86, 62.1755, 5.32421, 0, 0, 0, 0, 0),
(811300, 26, -2957.02, 1641.53, 57.7952, 5.0297, 0, 0, 0, 0, 0),
(811300, 27, -2954.48, 1632.21, 55.2364, 5.30694, 0, 0, 0, 0, 0);
-- M14
DELETE FROM `creature_addon` WHERE `guid` IN (81131);
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `auras`) VALUES
(81131, 811310, 0, 0, 1, 0, '');
DELETE FROM `waypoint_data` WHERE `id`=811310;
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(811310, 1, -3057.21, 1600.07, 57.6605, 3.63113, 0, 0, 0, 0, 0),
(811310, 2, -3064.61, 1595.91, 56.8124, 3.74973, 2000, 0, 0, 0, 0),
(811310, 3, -3057.61, 1599.7, 57.5376, 0.254704, 0, 0, 0, 0, 0),
(811310, 4, -3050.85, 1599.52, 59.142, 6.0588, 0, 0, 0, 0, 0),
(811310, 5, -3023.77, 1598.26, 59.081, 6.25907, 0, 0, 0, 0, 0),
(811310, 6, -3015.37, 1597.73, 58.738, 5.43048, 0, 0, 0, 0, 0),
(811310, 7, -3005.35, 1588.81, 58.859, 4.74096, 0, 0, 0, 0, 0),
(811310, 8, -3006.79, 1581.08, 59.520, 4.00662, 0, 0, 0, 0, 0),
(811310, 9, -3011.55, 1576.15, 60.745, 3.86525, 2000, 0, 0, 0, 0),
(811310, 10, -3003.55, 1584.7, 59.487, 1.46978, 0, 0, 0, 0, 0),
(811310, 11, -3005.9, 1593.1, 58.9026, 2.41933, 0, 0, 0, 0, 0),
(811310, 12, -3021.37, 1598.45, 59.06, 3.09713, 0, 0, 0, 0, 0),
(811310, 13, -3040.07, 1595.73, 58.82, 2.86229, 0, 0, 0, 0, 0),
(811310, 14, -3050.3, 1597.91, 59.201, 2.73427, 0, 0, 0, 0, 0);
DELETE FROM `creature_addon` WHERE `guid` IN (80814, 80810);
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `auras`) VALUES
(80814, 0, 0, 0, 1, 173, ''), -- A1
(80810, 0, 0, 0, 1, 173, ''); -- A2
UPDATE `creature` SET `position_x`=-2616.36, `position_y`=1372.07, `position_z`=46.0286, `orientation`=3.85718 WHERE `id`=21027;
DELETE FROM `gameobject` WHERE `guid` IN (1009,1043,1060,1069,1076,1083,1111,1145,1174,1204,1211,1215,1244,1245,1348,1351,1364,1379,1388,1405,1409,1424,1427);
INSERT INTO `gameobject` (`guid`, `id`, `map`, `spawnDifficulties`, `PhaseId`, `position_x`, `position_y`, `position_z`, `orientation`, `rotation0`, `rotation1`, `rotation2`, `rotation3`, `spawntimesecs`, `animprogress`, `state`) VALUES
(1009, 184716, 530, '0', 0, -3044.93, 1629.39, 60.8308, 1.13446, 0, 0, 0.537298, 0.843393, 300, 255, 1),
(1043, 184716, 530, '0', 0, -2900.39, 1302.51, 6.85874, 2.1293, 0, 0, 0.874619, 0.48481, 120, 255, 1),
(1060, 184716, 530, '0', 0, -2914.77, 1390.09, 7.06381, 6.12611, 0, 0, -0.0784588, 0.996917, 120, 255, 1),
(1069, 184716, 530, '0', 0, -2835.52, 1293.71, 6.35783, 3.10665, 0, 0, 0.999847, 0.0174693, 120, 255, 1),
(1076, 184716, 530, '0', 0, -2784.34, 1311.39, 33.6127, 0.279252, 0, 0, 0.139173, 0.990268, 120, 255, 1),
(1083, 184716, 530, '0', 0, -2771, 1197.01, 6.66843, 3.45576, 0, 0, -0.987688, 0.156436, 120, 255, 1),
(1111, 184716, 530, '0', 0, -2749.1, 1229.3, 33.4285, 1.39626, 0, 0, 0.642787, 0.766045, 120, 255, 1),
(1145, 184716, 530, '0', 0, -2792.3, 1222.5, 6.8073, 3.7001, 0, 0, -0.961261, 0.27564, 120, 255, 1),
(1174, 184716, 530, '0', 0, -2726.82, 1275.03, 33.318, 3.80482, 0, 0, -0.945518, 0.325568, 120, 255, 1),
(1204, 184716, 530, '0', 0, -2711.77, 1300.37, 34.1015, 1.43117, 0, 0, 0.656058, 0.75471, 120, 255, 1),
(1211, 184716, 530, '0', 0, -2677.44, 1271.89, 28.6845, 0.95993, 0, 0, 0.461748, 0.887011, 120, 255, 1),
(1215, 184716, 530, '0', 0, -2800.67, 1159.09, 6.86852, 0.994837, 0, 0, 0.477158, 0.878817, 120, 255, 1),
(1244, 184716, 530, '0', 0, -2679, 1384.25, 38.4438, 4.90824, 0, 0, 0.634586, -0.772852, 120, 255, 1),
(1245, 184716, 530, '0', 0, -2686.16, 1394.24, 38.5802, 4.15388, 0, 0, -0.874619, 0.48481, 120, 255, 1),
(1348, 184716, 530, '0', 0, -2707.96, 1389.91, 38.5802, 5.55015, 0, 0, -0.358368, 0.933581, 120, 255, 1),
(1351, 184716, 530, '0', 0, -2630.94, 1267.08, 23.9588, 3.99681, 0, 0, -0.909961, 0.414694, 120, 255, 1),
(1364, 184716, 530, '0', 0, -2576.08, 1405.02, 40.7724, 4.06662, 0, 0, -0.894934, 0.446199, 120, 255, 1),
(1379, 184716, 530, '0', 0, -2817.58, 1253.35, 6.74906, 4.35564, 0, 0, 0.821351, -0.570424, 120, 255, 1),
(1388, 184716, 530, '0', 0, -2638.01, 1221.84, 9.4381, 2.20363, 0, 0, 0.892029, 0.451978, 120, 255, 1),
(1405, 184716, 530, '0', 0, -2623.03, 1238.01, 17.3887, 4.36662, 0, 0, 0.818206, -0.574925, 120, 255, 1),
(1409, 184716, 530, '0', 0, -2715.44, 1336.68, 34.3086, 5.1049, 0, 0, 0.55565, -0.831416, 120, 255, 1),
(1424, 184716, 530, '0', 0, -2665.92, 1331.43, 34.4453, 1.82562, 0, 0, 0.791227, 0.611523, 120, 255, 1),
(1427, 184683, 530, '0', 0, -2804.58, 1259.3, 74.6677, 3.13983, 0.00436163, -0.0218144, 0.999752, 0.000976562, 25, 255, 1);
@@ -1,2 +0,0 @@
--
UPDATE `creature_template` SET `unit_flags`=`unit_flags`|768 WHERE `entry`=7780;
@@ -1,29 +0,0 @@
--
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=17 AND `SourceEntry`=52265;
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=22 AND `SourceEntry`=28683;
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
(17, 0, 52265, 0, 0, 31, 1, 3, 28605, 0, 0, 0, 0, "", "Spell 'Repo' can only target Havenshire Stallion OR"),
(17, 0, 52265, 0, 1, 31, 1, 3, 28606, 0, 0, 0, 0, "", "Spell 'Repo' can only target Havenshire Mare OR"),
(17, 0, 52265, 0, 2, 31, 1, 3, 28607, 0, 0, 0, 0, "", "Spell 'Repo' can only target Havenshire Colt"),
(22, 1, 28683, 0, 0, 1, 0, 52263, 0, 0, 0, 0, 0, "", "Run SAI script if invoker has aura 'Stolen Horse'");
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=28683;
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=28683;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `COMMENT`) VALUES
(28683, 0, 0, 1, 4, 0, 100, 0, 0, 0, 0, 0, 11, 52265, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Stable Master Kitrik - On Aggro - Cast 'Repo'"),
(28683, 0, 1, 0, 61, 0, 100, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Stable Master Kitrik- On Aggro - Say Line 0"),
(28683, 0, 2, 0, 5, 0, 100, 0, 5000, 5000, 1, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Stable Master Kitrik - On Player Kill - Say Line 1");
DELETE FROM `creature_text` WHERE `CreatureID`=28683;
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(28683, 0, 0, "Dirty, stinkin', horse thief!", 12, 0, 100, 0, 0, 0, 28675, 0, "Stable Master Kitrik"),
(28683, 0, 1, "Nobody steals Kitrik's horses!", 12, 0, 100, 0, 0, 0, 28676, 0, "Stable Master Kitrik"),
(28683, 0, 2, "You'll be hanging at the gallows soon...", 12, 0, 100, 0, 0, 0, 28677, 0, "Stable Master Kitrik"),
(28683, 0, 3, "How many more of you do I need to send back to the Lich King in pieces before he'll stop?", 12, 0, 100, 0, 0, 0, 28678, 0, "Stable Master Kitrik"),
(28683, 1, 0, "And keep the change, ya filthy animal!", 12, 0, 100, 0, 0, 0, 28702, 0, "Stable Master Kitrik"),
(28683, 1, 1, "Perhaps you'll think twice about stealin' one of Kitrik's horses next time, eh?", 12, 0, 100, 0, 0, 0, 28703, 0, "Stable Master Kitrik"),
(28683, 1, 2, "Is that all you got?", 12, 0, 100, 0, 0, 0, 28704, 0, "Stable Master Kitrik"),
(28683, 1, 3, "What a colossal waste of time.", 12, 0, 100, 0, 0, 0, 28705, 0, "Stable Master Kitrik"),
(28683, 1, 4, "At least make me work for it next time.", 12, 0, 100, 0, 0, 0, 28706, 0, "Stable Master Kitrik");
-- UPDATE `creature_model_info` SET `DisplayID_Other_Gender`=0 WHERE `DisplayID`=2498;
@@ -1,9 +0,0 @@
-- Zaetar's Spirit
DELETE FROM `creature_text` WHERE `CreatureID`=12238;
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(12238,0,0,"Free! Free from my bonds at last!",14,0,100,0,0,0,8922,0,"Zaetar's Spirit");
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=12238;
DELETE FROM `smart_scripts` WHERE `entryorguid`=12238 AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(12238,0,0,0,54,0,100,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Zaetar's Spirit - On Just Summoned - Say Line 0");

Some files were not shown because too many files have changed in this diff Show More