DB Updates
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
--
|
||||
-- Table structure for table `garr_talent_tree`
|
||||
--
|
||||
DROP TABLE IF EXISTS `garr_talent_tree`;
|
||||
CREATE TABLE `garr_talent_tree` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Name` text,
|
||||
`GarrTypeID` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`ClassID` int(11) NOT NULL DEFAULT '0',
|
||||
`MaxTiers` tinyint(4) NOT NULL DEFAULT '0',
|
||||
`UiOrder` tinyint(4) NOT NULL DEFAULT '0',
|
||||
`Flags` int(11) NOT NULL DEFAULT '0',
|
||||
`UiTextureKitID` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`GarrTalentTreeType` int(11) NOT NULL DEFAULT '0',
|
||||
`PlayerConditionID` int(11) NOT NULL DEFAULT '0',
|
||||
`FeatureTypeIndex` tinyint(4) NOT NULL DEFAULT '0',
|
||||
`FeatureSubtypeIndex` tinyint(4) NOT NULL DEFAULT '0',
|
||||
`CurrencyID` int(11) NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` int(11) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`,`VerifiedBuild`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
--
|
||||
-- Table structure for table `garr_talent_tree_locale`
|
||||
--
|
||||
DROP TABLE IF EXISTS `garr_talent_tree_locale`;
|
||||
CREATE TABLE `garr_talent_tree_locale` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`locale` varchar(4) NOT NULL,
|
||||
`Name_lang` text,
|
||||
`VerifiedBuild` int(11) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
|
||||
PARTITION BY LIST COLUMNS(locale)
|
||||
(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB,
|
||||
PARTITION esES VALUES IN ('esES') ENGINE = InnoDB,
|
||||
PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB,
|
||||
PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB,
|
||||
PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB,
|
||||
PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB,
|
||||
PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB,
|
||||
PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB,
|
||||
PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB,
|
||||
PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB);
|
||||
@@ -0,0 +1,268 @@
|
||||
--
|
||||
--
|
||||
-- Silverpine Forest
|
||||
|
||||
--
|
||||
-- Note: This is part [2/5]
|
||||
|
||||
-- Honor the Dead
|
||||
DELETE FROM `quest_template_addon` WHERE `ID`=27180;
|
||||
INSERT INTO `quest_template_addon` (`ID`, `MaxLevel`, `AllowableClasses`, `SourceSpellID`, `PrevQuestID`, `NextQuestID`, `ExclusiveGroup`, `BreadcrumbForQuestId`, `RewardMailTemplateID`, `RewardMailDelay`, `RequiredSkillID`, `RequiredSkillPoints`, `RequiredMinRepFaction`, `RequiredMaxRepFaction`, `RequiredMinRepValue`, `RequiredMaxRepValue`, `ProvidedItemCount`, `SpecialFlags`, `ScriptName`) VALUES
|
||||
(27180, 0, 0, 0, 27098, 27181, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '');
|
||||
|
||||
-- Excising the Taint
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 27180, `NextQuestID` = 27193 WHERE `ID` = 27181;
|
||||
|
||||
-- Seek and Destroy
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 27181, `NextQuestID` = 27194 WHERE `ID` = 27193;
|
||||
|
||||
-- Cornered and Crushed!
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 27193, `NextQuestID` = 27195 WHERE `ID` = 27194;
|
||||
|
||||
-- Nowhere to Run
|
||||
DELETE FROM `quest_template_addon` WHERE `ID`=27195;
|
||||
INSERT INTO `quest_template_addon` (`ID`, `MaxLevel`, `AllowableClasses`, `SourceSpellID`, `PrevQuestID`, `NextQuestID`, `ExclusiveGroup`, `BreadcrumbForQuestId`, `RewardMailTemplateID`, `RewardMailDelay`, `RequiredSkillID`, `RequiredSkillPoints`, `RequiredMinRepFaction`, `RequiredMaxRepFaction`, `RequiredMinRepValue`, `RequiredMaxRepValue`, `ProvidedItemCount`, `SpecialFlags`, `ScriptName`) VALUES
|
||||
(27195, 0, 0, 0, 0, 27290, -27195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, '');
|
||||
|
||||
-- Hair of the Dog
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 27098, `NextQuestID` = 27290, `ExclusiveGroup` = -27195 WHERE `ID` = 27226;
|
||||
|
||||
-- Reinforcements from Fenris
|
||||
DELETE FROM `quest_template_addon` WHERE `ID`=27231;
|
||||
INSERT INTO `quest_template_addon` (`ID`, `MaxLevel`, `AllowableClasses`, `SourceSpellID`, `PrevQuestID`, `NextQuestID`, `ExclusiveGroup`, `BreadcrumbForQuestId`, `RewardMailTemplateID`, `RewardMailDelay`, `RequiredSkillID`, `RequiredSkillPoints`, `RequiredMinRepFaction`, `RequiredMaxRepFaction`, `RequiredMinRepValue`, `RequiredMaxRepValue`, `ProvidedItemCount`, `SpecialFlags`, `ScriptName`) VALUES
|
||||
(27231, 0, 0, 0, 27098, 27232, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, '');
|
||||
|
||||
-- The Waters Run Red...
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 27231, `NextQuestID` = 27290, `ExclusiveGroup` = -27195 WHERE `ID` = 27232;
|
||||
|
||||
-- To Forsaken Forward Command
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 27342 WHERE `ID` = 27290;
|
||||
|
||||
--
|
||||
-- Note: This is part [3/5]
|
||||
|
||||
-- Losing Ground
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 27290, `NextQuestID` = 27349, `ExclusiveGroup` = -27333 WHERE `ID` = 27333;
|
||||
-- The F.C.D.
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 27290, `NextQuestID` = 27349, `ExclusiveGroup` = -27333 WHERE `ID` = 27345;
|
||||
-- In Time, All Will Be Revealed
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 27290, `NextQuestID` = 27349, `ExclusiveGroup` = -27333 WHERE `ID` = 27342;
|
||||
|
||||
-- Break in Communications: Dreadwatch Outpost (last three must be rewarded to obtain this one)
|
||||
DELETE FROM `quest_template_addon` WHERE `ID`=27349;
|
||||
INSERT INTO `quest_template_addon` (`ID`, `MaxLevel`, `AllowableClasses`, `SourceSpellID`, `PrevQuestID`, `NextQuestID`, `ExclusiveGroup`, `BreadcrumbForQuestId`, `RewardMailTemplateID`, `RewardMailDelay`, `RequiredSkillID`, `RequiredSkillPoints`, `RequiredMinRepFaction`, `RequiredMaxRepFaction`, `RequiredMinRepValue`, `RequiredMaxRepValue`, `ProvidedItemCount`, `SpecialFlags`, `ScriptName`) VALUES
|
||||
(27349, 0, 0, 0, 0, 27350, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, '');
|
||||
|
||||
-- Break in Communications: Rutsak's Guard
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 27349, `NextQuestID` = 27360 WHERE `ID` = 27350;
|
||||
|
||||
-- Vengeance for Our Soldiers
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 27350 WHERE `ID` = 27360;
|
||||
|
||||
-- On Whose Orders?
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 27350, `NextQuestID` = 27401 WHERE `ID` = 27364;
|
||||
|
||||
-- What Tomorrow Brings
|
||||
DELETE FROM `quest_template_addon` WHERE `ID`=27423;
|
||||
INSERT INTO `quest_template_addon` (`ID`, `MaxLevel`, `AllowableClasses`, `SourceSpellID`, `PrevQuestID`, `NextQuestID`, `ExclusiveGroup`, `BreadcrumbForQuestId`, `RewardMailTemplateID`, `RewardMailDelay`, `RequiredSkillID`, `RequiredSkillPoints`, `RequiredMinRepFaction`, `RequiredMaxRepFaction`, `RequiredMinRepValue`, `RequiredMaxRepValue`, `ProvidedItemCount`, `SpecialFlags`, `ScriptName`) VALUES
|
||||
(27423, 0, 0, 0, 27364, 27405, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '');
|
||||
|
||||
-- Fall Back!
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 27401, `NextQuestID` = 27406 WHERE `ID` = 27405;
|
||||
|
||||
-- A Man Named Godfrey
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 27405, `NextQuestID` = 27438, `ExclusiveGroup` = -27406 WHERE `ID` = 27406;
|
||||
-- Resistance is Futile
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 27405, `NextQuestID` = 27438, `ExclusiveGroup` = -27406 WHERE `ID` = 27423;
|
||||
|
||||
-- The Great Escape (last two must be rewarded to obtain this one)
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 0, `NextQuestID` = 27472 WHERE `ID` = 27438;
|
||||
|
||||
DELETE FROM `quest_details` WHERE `ID` IN (27342, 27322, 27345, 27333, 27349, 27350, 27364, 27401, 27360, 27405, 27406, 27438);
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(27342, 1, 1, 1, 273, 0, 0, 0, 0, 15595),
|
||||
(27322, 0, 0, 0, 0, 0, 0, 0, 0, 15595),
|
||||
(27345, 1, 1, 1, 0, 0, 0, 0, 0, 15595),
|
||||
(27333, 1, 1, 5, 0, 0, 0, 0, 0, 15595),
|
||||
(27349, 1, 1, 1, 0, 0, 0, 0, 0, 15595),
|
||||
(27350, 0, 0, 0, 0, 0, 0, 0, 0, 15595),
|
||||
(27364, 0, 0, 0, 0, 0, 0, 0, 0, 15595),
|
||||
(27401, 0, 0, 0, 0, 0, 0, 0, 0, 15595),
|
||||
(27360, 0, 0, 0, 0, 0, 0, 0, 0, 15595),
|
||||
(27405, 0, 0, 0, 0, 0, 0, 0, 0, 15595),
|
||||
(27406, 1, 1, 1, 273, 0, 0, 0, 0, 15595),
|
||||
(27438, 1, 1, 0, 0, 0, 0, 0, 0, 15595);
|
||||
|
||||
DELETE FROM `quest_request_items` WHERE `ID` IN (27342, 27364, 27345, 27322);
|
||||
INSERT INTO `quest_request_items` (`ID`, `EmoteOnComplete`, `EmoteOnIncomplete`, `CompletionText`, `VerifiedBuild`) VALUES
|
||||
(27342, 6, 0, 'Did you gather the wolfsbane?', 15595),
|
||||
(27364, 0, 0, 'Status?', 15595),
|
||||
(27345, 0, 0, 'Recover the F.C.D.', 15595),
|
||||
(27322, 6, 0, 'Korok is dead?', 15595);
|
||||
|
||||
DELETE FROM `quest_offer_reward` WHERE `ID` IN (27342, 27322, 27345, 27333, 27349, 27350, 27364, 27401, 27360, 27405, 27423, 27406, 27438);
|
||||
INSERT INTO `quest_offer_reward` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `RewardText`, `VerifiedBuild`) VALUES
|
||||
(27342, 1, 1, 1, 0, 0, 0, 0, 0, '<Belmont takes the wolfsbane from you.>$B$BGood. Now just do as Forward Commander Onslaught commands. Try your best to fit in with the rest of the soldiers. We don\'t want the Gilneas Liberation Front to get suspicious.$B$BOh, you didn\'t know they were watching us? Right now there are five different worgen spies looking down on our position. Just be calm and follow orders. I\'ll let you know when we are ready to proceed.', 15595),
|
||||
(27322, 1, 273, 0, 0, 0, 0, 0, 0, 'That towering behemoth has killed hundreds of Forsaken soldiers. You\'ve done a great thing, $n.', 15595),
|
||||
(27345, 1, 1, 0, 0, 0, 0, 0, 0, 'With this device I will be able to communicate with you in the field. Now to check the rest of our frontline outposts.', 15595),
|
||||
(27333, 0, 0, 0, 0, 0, 0, 0, 0, 'If I could still breathe I\'d let out a sigh of relief.$B$BDon\'t get too comfortable, though, $n, your mission here has just begun.', 15595),
|
||||
(27349, 0, 0, 0, 0, 0, 0, 0, 0, '<The F.C.D. crackles with static.>$B$BDreadwatch is lost? This is bad, $n. Real bad.$B$BIf Dreadwatch is compromised it means we\'ve lost Gilneas City.', 15595),
|
||||
(27350, 0, 0, 0, 0, 0, 0, 0, 0, 'Th... Af... After we lost Gilneas City, the port fell.$B$BHU... HUM... HUMANS ARE HERE! Reinforcements from Stormwind! They slaughtered my men. Left me alive to witness their strength. To tell high command... To tell them that the 7th Legion are here...', 15595),
|
||||
(27364, 0, 0, 0, 0, 0, 0, 0, 0, '<The F.C.D. crackles with electricity.>$B$BAn Alliance armada is en route? How could this have happened?$B$B<Forward Commander Onslaught cuts out for a moment. You hear worgen howling in the background.>$B$BYou\'ve got to hurry, $n. We\'re being overrun up here at Forward Command.', 15595),
|
||||
(27401, 0, 0, 0, 0, 0, 0, 0, 0, '<The F.C.D. crackles with electricity.>$B$BTORPEDOED! We had everything at the water line covered, but nothing below the line. They must have snuck in beneath our defenses and then blown our warships to smithereens.$B$BAnd now the rest of the Alliance fleet is nearly here...', 15595),
|
||||
(27360, 0, 0, 0, 0, 0, 0, 0, 0, 'Though we were shamed in battle, the enemy was not victorious. I will not soon forget this, $n.$B$BIf I make it back to Silverpine I will likely retire from the service. War is not in my blood.', 15595),
|
||||
(27405, 1, 1, 0, 0, 0, 0, 0, 0, 'Forward Commander Onslaught fought until the bitter end, $n. It took a pack of bloodthirsty worgen to finally bring him down. We must not let his death, or the death of all of our soldiers in Gilneas, go in vain. Our mission MUST succeed.$B$BNow I will reveal to you why we are here.', 15595),
|
||||
(27423, 274, 1, 0, 0, 0, 0, 0, 0, 'No time to bask in the battle glory, $n. We have a job to do. I have no doubt more of those beasts are on the way.', 15595),
|
||||
(27406, 1, 1, 0, 0, 0, 0, 0, 0, 'Here we are, $n. He is a little rotted, but no worse for the wear. We must hurry before the Alliance finds us!', 15595),
|
||||
(27438, 1, 1, 1, 0, 0, 0, 0, 0, 'I had no doubt that you would succeed, $n. I hope you can understand why I kept the true purpose of your mission a secret. Should Crowley and Bloodfang have found out about our plan, they would have surely gotten to Godfrey first and disposed of the body.$B$BStand by, $n. The time of their rebirth is at hand.', 15595);
|
||||
|
||||
--
|
||||
-- Note: This is part [4/5]
|
||||
|
||||
-- Rise, Godfrey
|
||||
DELETE FROM `quest_template_addon` WHERE `ID`=27472;
|
||||
INSERT INTO `quest_template_addon` (`ID`, `MaxLevel`, `AllowableClasses`, `SourceSpellID`, `PrevQuestID`, `NextQuestID`, `ExclusiveGroup`, `BreadcrumbForQuestId`, `RewardMailTemplateID`, `RewardMailDelay`, `RequiredSkillID`, `RequiredSkillPoints`, `RequiredMinRepFaction`, `RequiredMaxRepFaction`, `RequiredMinRepValue`, `RequiredMaxRepValue`, `ProvidedItemCount`, `SpecialFlags`, `ScriptName`) VALUES
|
||||
(27472, 0, 0, 0, 27438, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '');
|
||||
|
||||
-- Breaking the Barrier
|
||||
DELETE FROM `quest_template_addon` WHERE `ID`=27474;
|
||||
INSERT INTO `quest_template_addon` (`ID`, `MaxLevel`, `AllowableClasses`, `SourceSpellID`, `PrevQuestID`, `NextQuestID`, `ExclusiveGroup`, `BreadcrumbForQuestId`, `RewardMailTemplateID`, `RewardMailDelay`, `RequiredSkillID`, `RequiredSkillPoints`, `RequiredMinRepFaction`, `RequiredMaxRepFaction`, `RequiredMinRepValue`, `RequiredMaxRepValue`, `ProvidedItemCount`, `SpecialFlags`, `ScriptName`) VALUES
|
||||
(27474, 0, 0, 0, 27472, 27476, -27474, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '');
|
||||
-- Unyielding Servitors
|
||||
DELETE FROM `quest_template_addon` WHERE `ID`=27475;
|
||||
INSERT INTO `quest_template_addon` (`ID`, `MaxLevel`, `AllowableClasses`, `SourceSpellID`, `PrevQuestID`, `NextQuestID`, `ExclusiveGroup`, `BreadcrumbForQuestId`, `RewardMailTemplateID`, `RewardMailDelay`, `RequiredSkillID`, `RequiredSkillPoints`, `RequiredMinRepFaction`, `RequiredMaxRepFaction`, `RequiredMinRepValue`, `RequiredMaxRepValue`, `ProvidedItemCount`, `SpecialFlags`, `ScriptName`) VALUES
|
||||
(27475, 0, 0, 0, 27472, 27476, -27474, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '');
|
||||
|
||||
-- Dalar Dawnweaver (last two must be rewarded to obtain this one)
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 27474, `NextQuestID` = 27478 WHERE `ID` = 27476;
|
||||
|
||||
-- Relios the Relic Keeper
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 27476, `NextQuestID` = 27484, `ExclusiveGroup` = -27478 WHERE `ID` = 27478;
|
||||
-- Practical Vengeance
|
||||
DELETE FROM `quest_template_addon` WHERE `ID`=27483;
|
||||
INSERT INTO `quest_template_addon` (`ID`, `MaxLevel`, `AllowableClasses`, `SourceSpellID`, `PrevQuestID`, `NextQuestID`, `ExclusiveGroup`, `BreadcrumbForQuestId`, `RewardMailTemplateID`, `RewardMailDelay`, `RequiredSkillID`, `RequiredSkillPoints`, `RequiredMinRepFaction`, `RequiredMaxRepFaction`, `RequiredMinRepValue`, `RequiredMaxRepValue`, `ProvidedItemCount`, `SpecialFlags`, `ScriptName`) VALUES
|
||||
(27483, 0, 0, 0, 27476, 27484, -27478, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '');
|
||||
|
||||
-- Only One May Enter (last two must be rewarded to obtain this one)
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 0, `NextQuestID` = 27512 WHERE `ID` = 27484;
|
||||
|
||||
-- Transdimensional Warfare: Chapter I
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 27484, `NextQuestID` = 27513 WHERE `ID` = 27512;
|
||||
|
||||
-- Transdimensional Warfare: Chapter II
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 27512, `NextQuestID` = 27518 WHERE `ID` = 27513;
|
||||
|
||||
-- Transdimensional Warfare: Chapter III
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 27513, `NextQuestID` = 27542 WHERE `ID` = 27518;
|
||||
|
||||
DELETE FROM `quest_details` WHERE `ID` IN (27472, 27474, 27475, 27476, 27483, 27478, 27480, 27484, 27547, 28089, 27518, 27513, 27510, 27512);
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(27472, 1, 1, 1, 0, 0, 0, 0, 0, 0),
|
||||
(27474, 1, 1, 1, 0, 0, 0, 0, 0, 0),
|
||||
(27475, 457, 457, 457, 0, 0, 0, 0, 0, 0),
|
||||
(27476, 1, 1, 0, 0, 0, 0, 0, 0, 0),
|
||||
(27483, 1, 1, 1, 0, 0, 0, 0, 0, 0),
|
||||
(27478, 273, 1, 1, 0, 0, 0, 0, 0, 0),
|
||||
(27480, 0, 0, 0, 0, 0, 0, 0, 0, 0),
|
||||
(27484, 11, 1, 273, 1, 0, 0, 0, 0, 0),
|
||||
(27547, 1, 1, 0, 0, 0, 0, 0, 0, 0),
|
||||
(28089, 1, 1, 1, 0, 0, 0, 0, 0, 0),
|
||||
(27518, 0, 0, 0, 0, 0, 0, 0, 0, 0),
|
||||
(27513, 1, 1, 0, 0, 0, 0, 0, 0, 0),
|
||||
(27510, 1, 1, 1, 0, 0, 0, 0, 0, 0),
|
||||
(27512, 1, 1, 0, 0, 0, 0, 0, 0, 0);
|
||||
|
||||
DELETE FROM `quest_request_items` WHERE `ID` IN (27472, 27474, 27475, 27476, 27478, 27480, 27484, 27512);
|
||||
INSERT INTO `quest_request_items` (`ID`, `EmoteOnComplete`, `EmoteOnIncomplete`, `CompletionText`, `VerifiedBuild`) VALUES
|
||||
(27472, 5, 0, 'Today marks a new beginning for the Forsaken and the end of the Alliance in Lordaeron!', 15595),
|
||||
(27474, 6, 0, 'Have you found anything yet?', 15595),
|
||||
(27475, 457, 0, 'Have you recovered the servitor cores?', 15595),
|
||||
(27476, 6, 0, 'Yes? What is it?', 15595),
|
||||
(27478, 6, 0, 'Did you recover a Dalaran Archmage\'s Signet Ring?', 15595),
|
||||
(27480, 6, 0, 'What\'s that you\'ve got there, $n?', 15595),
|
||||
(27484, 6, 0, 'What have you learned?', 15595),
|
||||
(27512, 0, 0, '<The portal hums.>', 15595);
|
||||
|
||||
DELETE FROM `quest_offer_reward` WHERE `ID` IN (27474, 27475, 27476, 27483, 27478, 27480, 27518, 27510, 27513, 27512, 27484);
|
||||
INSERT INTO `quest_offer_reward` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `RewardText`, `VerifiedBuild`) VALUES
|
||||
(27474, 1, 1, 0, 0, 0, 0, 0, 0, 'Clever mages. The codex is sealed by a magical ward.$B$BPity that they weren\'t clever enough to realize that former archmages of Dalaran are now Forsaken.', 15595),
|
||||
(27475, 457, 457, 0, 0, 0, 0, 0, 0, 'Well done, $n. The praise the Banshee Queen lavishes upon you is apparently not unfounded.', 15595),
|
||||
(27476, 0, 0, 0, 0, 0, 0, 0, 0, 'The Dark Lady requires my expertise? Well of course! Give it here, $g boy:girl;.', 15595),
|
||||
(27483, 1, 6, 1, 0, 0, 0, 0, 0, 'I thought for sure that with the death of a dozen of my most hated enemies I would feel a great burden lifted from my shoulders. Sadly, I do not feel a thing. Perhaps I am a psychopath.', 15595),
|
||||
(27478, 21, 1, 1, 0, 0, 0, 0, 0, 'Perfect. I hope this wasn\'t too much trouble to come by, $n. Relios was a pupil of mine back when I was a mortal man thereby making him a competent and formidable adversary. I suppose I could have warned you ahead of time.$B$BNow, let us see the ring.$B$B<Dalar trails the ring across the spine of the codex.>$B$BThere we are...', 15595),
|
||||
(27480, 1, 1, 0, 0, 0, 0, 0, 0, 'Smart $g boy:girl;! I can most definitely use these arcane remnants in my studies. Indeed, Dalaran was built upon a massive ley line. It\'s no wonder, then, that such things exist at the crater.', 15595),
|
||||
(27518, 5, 1, 1, 0, 0, 0, 0, 0, 'Had I not witnessed what you did with my own eyes I would not have believed it, $n. Now, with the Ambermill magi on our side, there is but one thing left to do before we retake Gilneas and send those Alliance dogs running for Stormwind.', 40725),
|
||||
(27510, 1, 1, 0, 0, 0, 0, 0, 0, 'I only hope that we don\'t end up getting beat down by inconspicuous birds, cats and trees next... or seals. Could you imagine it?', 40725),
|
||||
(27513, 0, 0, 0, 0, 0, 0, 0, 0, '<The Banshee Queen\'s voice invades your thoughts.>$B$BExcellent work, $n. Now to eject them into our waiting hands!', 40725),
|
||||
(27512, 0, 0, 0, 0, 0, 0, 0, 0, '<The Banshee Queen\'s voice invades your thoughts.>$B$BYes, this is it. Now run the ring along the runes of the portal and you should become attuned for transdimensional travel.', 40725),
|
||||
(27484, 6, 25, 0, 0, 0, 0, 0, 0, 'Only one may enter? I know just the person for this mission.$B$B<Sylvanas nods at you.>$B$BI will prepare our forces and have them at the ready.', 40725);
|
||||
|
||||
--
|
||||
-- Note: This is part [5/5]
|
||||
|
||||
-- Taking the Battlefront
|
||||
DELETE FROM `quest_template_addon` WHERE `ID`=27542;
|
||||
INSERT INTO `quest_template_addon` (`ID`, `MaxLevel`, `AllowableClasses`, `SourceSpellID`, `PrevQuestID`, `NextQuestID`, `ExclusiveGroup`, `BreadcrumbForQuestId`, `RewardMailTemplateID`, `RewardMailDelay`, `RequiredSkillID`, `RequiredSkillPoints`, `RequiredMinRepFaction`, `RequiredMaxRepFaction`, `RequiredMinRepValue`, `RequiredMaxRepValue`, `ProvidedItemCount`, `SpecialFlags`, `ScriptName`) VALUES
|
||||
(27542, 0, 0, 0, 27518, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '');
|
||||
|
||||
-- Pyrewood's Fall
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 27542, `NextQuestID` = 27580, `ExclusiveGroup` = -27550 WHERE `ID` = 27550;
|
||||
-- Of No Consecuence
|
||||
DELETE FROM `quest_template_addon` WHERE `ID`=27547;
|
||||
INSERT INTO `quest_template_addon` (`ID`, `MaxLevel`, `AllowableClasses`, `SourceSpellID`, `PrevQuestID`, `NextQuestID`, `ExclusiveGroup`, `BreadcrumbForQuestId`, `RewardMailTemplateID`, `RewardMailDelay`, `RequiredSkillID`, `RequiredSkillPoints`, `RequiredMinRepFaction`, `RequiredMaxRepFaction`, `RequiredMinRepValue`, `RequiredMaxRepValue`, `ProvidedItemCount`, `SpecialFlags`, `ScriptName`) VALUES
|
||||
(27547, 0, 0, 0, 27542, 27580, -27550, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '');
|
||||
-- Lessons in Fear
|
||||
DELETE FROM `quest_template_addon` WHERE `ID`=27548;
|
||||
INSERT INTO `quest_template_addon` (`ID`, `MaxLevel`, `AllowableClasses`, `SourceSpellID`, `PrevQuestID`, `NextQuestID`, `ExclusiveGroup`, `BreadcrumbForQuestId`, `RewardMailTemplateID`, `RewardMailDelay`, `RequiredSkillID`, `RequiredSkillPoints`, `RequiredMinRepFaction`, `RequiredMaxRepFaction`, `RequiredMinRepValue`, `RequiredMaxRepValue`, `ProvidedItemCount`, `SpecialFlags`, `ScriptName`) VALUES
|
||||
(27548, 0, 0, 0, 27542, 27580, -27550, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '');
|
||||
|
||||
-- Sowing Discord (last three must be rewarded to obtain these two)
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 27550, `NextQuestID` = 27594, `ExclusiveGroup` = -27580 WHERE `ID` = 27580;
|
||||
-- 7th Legion Battle Plans
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 27550, `NextQuestID` = 27594, `ExclusiveGroup` = -27580 WHERE `ID` = 27577;
|
||||
|
||||
-- On Her Majesty's Secret Service (last two must be rewarded to obtain these two)
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 27580, `NextQuestID` = 27601 WHERE `ID` = 27594;
|
||||
|
||||
-- Cities in Dust
|
||||
DELETE FROM `quest_template_addon` WHERE `ID`=27601;
|
||||
INSERT INTO `quest_template_addon` (`ID`, `MaxLevel`, `AllowableClasses`, `SourceSpellID`, `PrevQuestID`, `NextQuestID`, `ExclusiveGroup`, `BreadcrumbForQuestId`, `RewardMailTemplateID`, `RewardMailDelay`, `RequiredSkillID`, `RequiredSkillPoints`, `RequiredMinRepFaction`, `RequiredMaxRepFaction`, `RequiredMinRepValue`, `RequiredMaxRepValue`, `ProvidedItemCount`, `SpecialFlags`, `ScriptName`) VALUES
|
||||
(27601, 0, 0, 0, 27594, 27746, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '');
|
||||
|
||||
-- Empire of Dirt
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 27601 WHERE `ID` = 27746;
|
||||
|
||||
DELETE FROM `quest_details` WHERE `ID` IN (27594, 27575, 27574, 27580, 27577, 27548, 27547, 27550, 27601, 27746, 28089);
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(27550, 1, 1, 1, 0, 0, 0, 0, 0, 40944),
|
||||
(27547, 1, 1, 0, 0, 0, 0, 0, 0, 40944),
|
||||
(27548, 1, 11, 1, 0, 0, 0, 0, 0, 40944),
|
||||
(27580, 1, 1, 0, 0, 0, 0, 0, 0, 40944),
|
||||
(27577, 1, 1, 1, 0, 0, 0, 0, 0, 40944),
|
||||
(27574, 0, 0, 0, 0, 0, 0, 0, 0, 40944),
|
||||
(27575, 1, 1, 5, 0, 0, 0, 0, 0, 40944),
|
||||
(27594, 1, 1, 0, 0, 0, 0, 0, 0, 40944),
|
||||
(27601, 0, 1, 0, 0, 0, 0, 0, 0, 40944),
|
||||
(27746, 1, 0, 66, 0, 0, 0, 0, 0, 40944),
|
||||
(28089, 1, 0, 1, 0, 0, 0, 0, 0, 40944);
|
||||
|
||||
DELETE FROM `quest_request_items` WHERE `ID` IN (27577, 27575, 27574);
|
||||
INSERT INTO `quest_request_items` (`ID`, `EmoteOnComplete`, `EmoteOnIncomplete`, `CompletionText`, `VerifiedBuild`) VALUES
|
||||
(27577, 5, 5, 'Search every filthy dwarven corpse.', 40944),
|
||||
(27575, 273, 273, 'At the very least we\'ll have some crocolisk hides to make fancy shoes out of.', 40944),
|
||||
(27574, 5, 5, 'I never forget a face!', 40944);
|
||||
|
||||
DELETE FROM `quest_offer_reward` WHERE `ID` IN (27542, 27601, 27746, 28089, 27594, 27577, 27580, 27575, 27574, 27548, 27547, 27550);
|
||||
INSERT INTO `quest_offer_reward` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `RewardText`, `VerifiedBuild`) VALUES
|
||||
(27542, 1, 0, 0, 0, 0, 0, 0, 0, 'The hour of victory approaches, $n. Godfrey has devised a plan to decimate our enemies. I am sending you into the field with him and his men to bring the rebel insurgents to their knees and seal the fate of the Alliance filth encroaching upon our lands.$B$BOur final march begins when you are ready.', 40944),
|
||||
(27550, 1, 1, 0, 0, 0, 0, 0, 0, 'The part of me that was Gilnean died at Tempest\'s Reach. Only vengeance remains, $n. To that end, we have work to do. Spare me your pointless queries.', 40944),
|
||||
(27548, 1, 1, 0, 0, 0, 0, 0, 0, 'I suspect we\'ll see fewer humans at the Battlefront. The risk for these cowards is too great.', 40944),
|
||||
(27547, 1, 25, 0, 0, 0, 0, 0, 0, 'What happened here today is between us. Say a word to anyone and you will find yourself in a corpse pit next to these poor fools.', 40944),
|
||||
(27577, 1, 1, 1, 0, 0, 0, 0, 0, '<Walden flips through the battle plan.>$B$BIt looks like the reinforcements from the ships in Gilneas are marching soon. Crowley and Bloodfang have set up an encampment to the southeast for the Gilneas Liberation front.', 40944),
|
||||
(27580, 1, 1, 0, 0, 0, 0, 0, 0, 'The rest of the Alliance fleet will arrive shortly, only to find their base camp decimated. Now for the second and most important part of our battle plan.', 40944),
|
||||
(27574, 1, 1, 1, 0, 0, 0, 0, 0, 'I know that face, $n. This head belongs to a former Gilnean known as Sean Dempsey. He was imprisoned with Crowley before the great outbreak.$B$BI wonder if it would be possible to put him back together. The rest of him must be in the belly of these crocolisks.', 40944), -- 27574
|
||||
(27575, 1, 5, 0, 0, 0, 4000, 0, 0, 'Now let\'s see if I can do this.$B$B<Godfrey starts mumbling under his breath.>$B$B...leg bone connects to the thigh bone...$B$B...arm bone to torso...$B$B...sprinkle on a little Forsaken necromancy...$B$BTA-DA!', 40944),
|
||||
(27594, 5, 1, 1, 0, 0, 0, 0, 0, 'You have done it! Finally, everything is in place. Should Crowley not accept our terms, his daughter will be turned.', 40944),
|
||||
(27601, 0, 0, 0, 0, 0, 0, 0, 0, '<Lady Sylvanas Windrunner grimaces in pain.>$B$BThis... is not over. Godfrey and his traitorous allies will pay for what they have done as will the remaining Alliance forces occupying Lordaeron.$B$BOur work has only just begun.', 40944),
|
||||
(27746, 66, 1, 0, 0, 0, 0, 0, 0, 'News of your conquest in Silverpine emboldens us, $n. We are prepared to fight at your command and beat back the last remaining vestiges of humanity in Hillsbrad.', 40944),
|
||||
(28089, 66, 1, 5, 0, 0, 0, 0, 0, 'I was wondering when reinforcements would show up. Suit up, <name>. It\'s time to dispense some justice!', 40944);
|
||||
@@ -0,0 +1,9 @@
|
||||
--
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName`= 'spell_dk_rime';
|
||||
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
|
||||
(59057, 'spell_dk_rime');
|
||||
|
||||
DELETE FROM `spell_proc` WHERE `SpellId` IN (59057, 59052);
|
||||
INSERT INTO `spell_proc` (`SpellId`, `SpellFamilyName`, `SpellFamilyMask0`, `SpellFamilyMask1`, `SpellTypeMask`, `SpellPhaseMask`, `DisableEffectsMask`, `Charges`) VALUES
|
||||
(59057, 15, 0x8000 | 0x80, 0, 1, 1, 0x2, 0),
|
||||
(59052, 15, 0x0, 0x2, 1, 1, 0, 1);
|
||||
@@ -0,0 +1,574 @@
|
||||
SET @CGUID := 650469;
|
||||
SET @OGUID := 400132;
|
||||
|
||||
-- Creature
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+111;
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `PhaseGroup`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES
|
||||
(@CGUID+0, 97163, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7304.203125, 7278.1796875, 48.78083419799804687, 1.93704390525817871, 7200, 0, 0, 2811, 0, 0, 0, 0, 0, 45745), -- Cursed Falke (Area: -Unknown- - Difficulty: 23) (Auras: 191889 - Dive)
|
||||
(@CGUID+1, 102894, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7362.3369140625, 7317.048828125, 43.867431640625, 4.486272811889648437, 7200, 0, 0, 10352, 533107, 0, 0, 0, 0, 45745), -- Runecarver Slave (Area: -Unknown- - Difficulty: 23)
|
||||
(@CGUID+2, 102104, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7366.3125, 7275.134765625, 43.95937347412109375, 2.038349866867065429, 7200, 0, 0, 17570, 0, 0, 0, 0, 0, 45745), -- Enslaved Shieldmaiden (Area: -Unknown- - Difficulty: 23)
|
||||
(@CGUID+3, 102375, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7374.1474609375, 7275.220703125, 43.8818359375, 2.038349866867065429, 7200, 0, 0, 11244, 533107, 0, 0, 0, 0, 45745), -- Runecarver Slave (Area: -Unknown- - Difficulty: 23)
|
||||
(@CGUID+4, 97163, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7236.2724609375, 7291.5625, 22.618072509765625, 5.710049629211425781, 7200, 0, 0, 2811, 0, 0, 0, 0, 0, 45745), -- Cursed Falke (Area: -Unknown- - Difficulty: 23) (Auras: 196024 - Helheim, 196025 - Helheim)
|
||||
(@CGUID+5, 97163, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7243.03662109375, 7291.4140625, 22.59917831420898437, 4.315314292907714843, 7200, 0, 0, 2811, 0, 0, 0, 0, 0, 45745), -- Cursed Falke (Area: -Unknown- - Difficulty: 23) (Auras: 196024 - Helheim, 196025 - Helheim)
|
||||
(@CGUID+6, 120652, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7214.9287109375, 7307.47119140625, 22.36721038818359375, 5.812093257904052734, 7200, 0, 0, 8211, 0, 0, 0, 0, 0, 45745), -- Global Affix Stalker (Area: -Unknown- - Difficulty: 23)
|
||||
(@CGUID+7, 97043, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 1, 7272.671875, 7307.9140625, 30.79326057434082031, 4.214230537414550781, 7200, 0, 0, 18097, 0, 0, 0, 0, 0, 45745), -- Seacursed Slaver (Area: -Unknown- - Difficulty: 23) (Auras: )
|
||||
(@CGUID+8, 102375, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7370.08349609375, 7273.212890625, 44.02735137939453125, 2.038349866867065429, 7200, 0, 0, 11244, 533107, 0, 0, 0, 0, 45745), -- Runecarver Slave (Area: -Unknown- - Difficulty: 23)
|
||||
(@CGUID+9, 97163, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7247.71337890625, 7290.72216796875, 26.01198577880859375, 3.969554662704467773, 7200, 0, 0, 2811, 0, 0, 0, 0, 0, 45745), -- Cursed Falke (Area: -Unknown- - Difficulty: 23) (Auras: 196024 - Helheim, 196025 - Helheim)
|
||||
(@CGUID+10, 97163, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7276.4189453125, 7281.59765625, 49.56293487548828125, 2.337175846099853515, 7200, 0, 0, 2811, 0, 0, 0, 0, 0, 45745), -- Cursed Falke (Area: -Unknown- - Difficulty: 23)
|
||||
(@CGUID+11, 97163, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7232.3603515625, 7286.830078125, 22.3586883544921875, 0.323314160108566284, 7200, 0, 0, 2811, 0, 0, 0, 0, 0, 45745), -- Cursed Falke (Area: -Unknown- - Difficulty: 23) (Auras: 196024 - Helheim, 196025 - Helheim)
|
||||
(@CGUID+12, 114712, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7387.0087890625, 7299.40185546875, 43.867431640625, 5.835454463958740234, 7200, 0, 0, 11244, 533107, 0, 0, 0, 0, 45745), -- Runecarver Slave (Area: -Unknown- - Difficulty: 23)
|
||||
(@CGUID+13, 97163, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7261.84619140625, 7275.80908203125, 30.06503677368164062, 4.145045757293701171, 7200, 0, 0, 2811, 0, 0, 0, 0, 0, 45745), -- Cursed Falke (Area: -Unknown- - Difficulty: 23) (Auras: 196024 - Helheim, 196025 - Helheim)
|
||||
(@CGUID+14, 97163, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7302.24755859375, 7307.705078125, 66.06635284423828125, 2.337567329406738281, 7200, 0, 0, 2811, 0, 0, 0, 0, 0, 45745), -- Cursed Falke (Area: -Unknown- - Difficulty: 23)
|
||||
(@CGUID+15, 97163, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7316.8359375, 7244.77978515625, 18.60527420043945312, 5.505509376525878906, 7200, 0, 0, 2811, 0, 0, 0, 0, 0, 45745), -- Cursed Falke (Area: -Unknown- - Difficulty: 23) (Auras: 191889 - Dive)
|
||||
(@CGUID+16, 114712, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7384.60791015625, 7286.06689453125, 43.867431640625, 0.510935962200164794, 7200, 0, 0, 11244, 533107, 0, 0, 0, 0, 45745), -- Runecarver Slave (Area: -Unknown- - Difficulty: 23)
|
||||
(@CGUID+17, 97163, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7345.13916015625, 7266.3115234375, 70.7076263427734375, 1.111571431159973144, 7200, 0, 0, 2811, 0, 0, 0, 0, 0, 45745), -- Cursed Falke (Area: -Unknown- - Difficulty: 23) (Auras: 191889 - Dive)
|
||||
(@CGUID+18, 97163, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7302.2578125, 7304.41259765625, 54.85698318481445312, 4.612475872039794921, 7200, 0, 0, 2811, 0, 0, 0, 0, 0, 45745), -- Cursed Falke (Area: -Unknown- - Difficulty: 23) (Auras: 191889 - Dive)
|
||||
(@CGUID+19, 114712, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7381.9775390625, 7295.84228515625, 43.85630035400390625, 0.212170317769050598, 7200, 0, 0, 11244, 533107, 0, 0, 0, 0, 45745), -- Runecarver Slave (Area: -Unknown- - Difficulty: 23)
|
||||
(@CGUID+20, 97043, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 1, 7352.40966796875, 7300.0693359375, 43.32478713989257812, 1.267673134803771972, 7200, 0, 0, 18097, 0, 0, 0, 0, 0, 45745), -- Seacursed Slaver (Area: -Unknown- - Difficulty: 23) (Auras: )
|
||||
(@CGUID+21, 97200, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 1, 7321.193359375, 7304.673828125, 40.73722076416015625, 3.143546342849731445, 7200, 0, 0, 23628, 0, 0, 0, 0, 0, 45745), -- Seacursed Soulkeeper (Area: -Unknown- - Difficulty: 23)
|
||||
(@CGUID+22, 97163, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7229.1337890625, 7267.43310546875, 46.96512603759765625, 1.432973504066467285, 7200, 0, 0, 2811, 0, 0, 0, 0, 0, 45745), -- Cursed Falke (Area: -Unknown- - Difficulty: 23) (Auras: 191889 - Dive)
|
||||
(@CGUID+23, 97163, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7323.81640625, 7241.73974609375, 86.4594268798828125, 5.496755599975585937, 7200, 0, 0, 2811, 0, 0, 0, 0, 0, 45745), -- Cursed Falke (Area: -Unknown- - Difficulty: 23)
|
||||
(@CGUID+24, 97043, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 1, 7363.8896484375, 7278.8916015625, 43.87113189697265625, 6.018615245819091796, 7200, 0, 0, 18097, 0, 0, 0, 0, 0, 45745), -- Seacursed Slaver (Area: -Unknown- - Difficulty: 23) (Auras: )
|
||||
(@CGUID+25, 97200, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 1, 7371.0146484375, 7282.0625, 43.86823654174804687, 4.821635723114013671, 7200, 0, 0, 23628, 0, 0, 0, 0, 0, 45745), -- Seacursed Soulkeeper (Area: -Unknown- - Difficulty: 23)
|
||||
(@CGUID+26, 102896, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7272.85693359375, 7288.39306640625, 33.83195877075195312, 2.237862348556518554, 7200, 0, 0, 16180, 0, 0, 0, 0, 0, 45745), -- Enslaved Shieldmaiden (Area: -Unknown- - Difficulty: 23)
|
||||
(@CGUID+27, 97163, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7349.7802734375, 7260.90625, 69.42624664306640625, 1.482801198959350585, 7200, 0, 0, 2811, 0, 0, 0, 0, 0, 45745), -- Cursed Falke (Area: -Unknown- - Difficulty: 23) (Auras: 191889 - Dive)
|
||||
(@CGUID+28, 97043, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 1, 7356.29150390625, 7300.1328125, 43.56019210815429687, 2.470122337341308593, 7200, 0, 0, 18097, 0, 0, 0, 0, 0, 45745), -- Seacursed Slaver (Area: -Unknown- - Difficulty: 23) (Auras: )
|
||||
(@CGUID+29, 102896, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7348.62353515625, 7315.27978515625, 43.86742782592773437, 5.01837158203125, 7200, 0, 0, 16180, 0, 0, 0, 0, 0, 45745), -- Enslaved Shieldmaiden (Area: -Unknown- - Difficulty: 23)
|
||||
(@CGUID+30, 114712, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7386.5087890625, 7304.94873046875, 43.92299652099609375, 5.692230701446533203, 7200, 0, 0, 11244, 533107, 0, 0, 0, 0, 45745), -- Runecarver Slave (Area: -Unknown- - Difficulty: 23)
|
||||
(@CGUID+31, 101013, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7355.517578125, 7315.78466796875, 48.01327896118164062, 4.297879219055175781, 7200, 0, 0, 3236, 0, 0, 0, 0, 0, 45745), -- Captured Runecarver (Area: -Unknown- - Difficulty: 23) (Auras: )
|
||||
(@CGUID+32, 97163, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7235.70751953125, 7268.24853515625, 23.21821212768554687, 4.723186969757080078, 7200, 0, 0, 2811, 0, 0, 0, 0, 0, 45745), -- Cursed Falke (Area: -Unknown- - Difficulty: 23) (Auras: 196024 - Helheim, 196025 - Helheim)
|
||||
(@CGUID+33, 102108, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7266.52587890625, 7283.82275390625, 27.3165435791015625, 1.752549648284912109, 7200, 0, 0, 3236, 0, 0, 0, 0, 0, 45745), -- Captured Shieldmaiden (Area: -Unknown- - Difficulty: 23) (Auras: )
|
||||
(@CGUID+34, 97163, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7318.9755859375, 7320.52880859375, 53.02056503295898437, 3.743757963180541992, 7200, 0, 0, 2811, 0, 0, 0, 0, 0, 45745), -- Cursed Falke (Area: -Unknown- - Difficulty: 23) (Auras: 191889 - Dive)
|
||||
(@CGUID+35, 97163, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7398.693359375, 7295.421875, 91.90793609619140625, 2.044580459594726562, 7200, 0, 0, 2811, 0, 0, 0, 0, 0, 45745), -- Cursed Falke (Area: -Unknown- - Difficulty: 23)
|
||||
(@CGUID+36, 111374, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7427.31884765625, 7277.1328125, 43.23317337036132812, 0, 7200, 0, 0, 3236, 0, 0, 0, 0, 0, 45745), -- Xal'atath (Area: -Unknown- - Difficulty: 23)
|
||||
(@CGUID+37, 114712, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7386.74462890625, 7292.16162109375, 43.867431640625, 0.05482223629951477, 7200, 0, 0, 11244, 533107, 0, 0, 0, 0, 45745), -- Runecarver Slave (Area: -Unknown- - Difficulty: 23)
|
||||
(@CGUID+38, 96756, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7407.9541015625, 7265.25537109375, 51.08704757690429687, 5.549541950225830078, 7200, 0, 0, 131635, 0, 0, 0, 0, 0, 45745), -- Ymiron, the Fallen King (Area: -Unknown- - Difficulty: 23) (Auras: 342788 - -Unknown-, 197227 - Kneeling)
|
||||
(@CGUID+39, 97163, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7361.3662109375, 7193.775390625, 26.34376335144042968, 1.695675134658813476, 7200, 0, 0, 2811, 0, 0, 0, 0, 0, 45745), -- Cursed Falke (Area: -Unknown- - Difficulty: 23) (Auras: 191889 - Dive)
|
||||
(@CGUID+40, 114712, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7393.35791015625, 7306.0380859375, 43.9120941162109375, 5.583257198333740234, 7200, 0, 0, 11244, 533107, 0, 0, 0, 0, 45745), -- Runecarver Slave (Area: -Unknown- - Difficulty: 23)
|
||||
(@CGUID+41, 97163, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7413.21923828125, 7312.5830078125, 73.867431640625, 5.15514373779296875, 7200, 0, 0, 2811, 0, 0, 0, 0, 0, 45745), -- Cursed Falke (Area: -Unknown- - Difficulty: 23)
|
||||
(@CGUID+42, 114712, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7393.05224609375, 7312.5400390625, 43.867431640625, 5.583257198333740234, 7200, 0, 0, 11244, 533107, 0, 0, 0, 0, 45745), -- Runecarver Slave (Area: -Unknown- - Difficulty: 23)
|
||||
(@CGUID+43, 97163, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7429.30810546875, 7270.04248046875, 100.2640533447265625, 4.56368255615234375, 7200, 0, 0, 2811, 0, 0, 0, 0, 0, 45745), -- Cursed Falke (Area: -Unknown- - Difficulty: 23)
|
||||
(@CGUID+44, 97163, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7394.72509765625, 7186.671875, 40.5897064208984375, 6.126224994659423828, 7200, 0, 0, 2811, 0, 0, 0, 0, 0, 45745), -- Cursed Falke (Area: -Unknown- - Difficulty: 23) (Auras: 191889 - Dive)
|
||||
(@CGUID+45, 97163, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7396.69873046875, 7181.06884765625, 40.50397491455078125, 4.511701107025146484, 7200, 0, 0, 2811, 0, 0, 0, 0, 0, 45745), -- Cursed Falke (Area: -Unknown- - Difficulty: 23) (Auras: 191889 - Dive)
|
||||
(@CGUID+46, 114712, 1492, 7812, 7812, '1,2,8,23', 0, 0, 0, 0, 7390.375, 7285.9296875, 43.867431640625, 0.328258037567138671, 7200, 0, 0, 11244, 533107, 0, 0, 0, 0, 45745), -- Runecarver Slave (Area: -Unknown- - Difficulty: 23)
|
||||
(@CGUID+47, 97200, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 1, 2905.609375, 836.373291015625, 515.24334716796875, 3.811235427856445312, 7200, 0, 0, 23628, 0, 0, 0, 0, 0, 45745), -- Seacursed Soulkeeper (Area: -Unknown- - Difficulty: 23)
|
||||
(@CGUID+48, 102325, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 1, 2910.146728515625, 851.95660400390625, 510.633056640625, 1.570796370506286621, 7200, 0, 0, 3236, 0, 0, 0, 0, 0, 45745), -- Seacursed Rower (Area: -Unknown- - Difficulty: 23) (Auras: )
|
||||
(@CGUID+49, 103115, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2922.596435546875, 876.42364501953125, 515.24334716796875, 5.736161708831787109, 7200, 0, 0, 3236, 0, 0, 0, 0, 0, 45745), -- Helheim (Area: -Unknown- - Difficulty: 23) (Auras: 204001 - Kvaldir Cage)
|
||||
(@CGUID+50, 103115, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2922.2353515625, 870.19964599609375, 515.24334716796875, 6.280761241912841796, 7200, 0, 0, 3236, 0, 0, 0, 0, 0, 45745), -- Helheim (Area: -Unknown- - Difficulty: 23) (Auras: 204001 - Kvaldir Cage)
|
||||
(@CGUID+51, 98919, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 1, 2962.838623046875, 833.32464599609375, 515.24334716796875, 1.265841960906982421, 7200, 0, 0, 14935, 0, 0, 0, 0, 0, 45745), -- Seacursed Swiftblade (Area: -Unknown- - Difficulty: 23) (Auras: 195219 - Eye Patch, 42459 - Dual Wield)
|
||||
(@CGUID+52, 99188, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 1, 2930.44873046875, 840.170166015625, 515.1190185546875, 4.658661365509033203, 7200, 0, 0, 19084, 0, 0, 0, 0, 0, 45745), -- Waterlogged Soul Guard (Area: -Unknown- - Difficulty: 23)
|
||||
(@CGUID+53, 102327, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 1, 2952.943603515625, 832.232666015625, 510.633056640625, 1.570796370506286621, 7200, 0, 0, 3236, 0, 0, 0, 0, 0, 45745), -- Seacursed Rower (Area: -Unknown- - Difficulty: 23) (Auras: )
|
||||
(@CGUID+54, 103115, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2945.721435546875, 874.71875, 515.24334716796875, 3.447547674179077148, 7200, 0, 0, 3236, 0, 0, 0, 0, 0, 45745), -- Helheim (Area: -Unknown- - Difficulty: 23) (Auras: 204001 - Kvaldir Cage)
|
||||
(@CGUID+55, 102325, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 1, 2910.146728515625, 833.0242919921875, 510.633056640625, 1.570796370506286621, 7200, 0, 0, 3236, 0, 0, 0, 0, 0, 45745), -- Seacursed Rower (Area: -Unknown- - Difficulty: 23) (Auras: )
|
||||
(@CGUID+56, 99188, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 1, 2935.3759765625, 840.23089599609375, 515.02752685546875, 4.738481044769287109, 7200, 0, 0, 19084, 0, 0, 0, 0, 0, 45745), -- Waterlogged Soul Guard (Area: -Unknown- - Difficulty: 23)
|
||||
(@CGUID+57, 97365, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 1, 2905.725830078125, 831.05035400390625, 515.24334716796875, 2.246976137161254882, 7200, 0, 0, 13352, 3801, 0, 0, 0, 0, 45745), -- Seacursed Mistmender (Area: -Unknown- - Difficulty: 23)
|
||||
(@CGUID+58, 120652, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2931.58251953125, 873.42364501953125, 515.28875732421875, 1.552699565887451171, 7200, 0, 0, 8211, 0, 0, 0, 0, 0, 45745), -- Global Affix Stalker (Area: -Unknown- - Difficulty: 23)
|
||||
(@CGUID+59, 97163, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2903.606689453125, 821.234375, 515.24334716796875, 4.086381912231445312, 7200, 0, 0, 2811, 0, 0, 0, 0, 0, 45745), -- Cursed Falke (Area: -Unknown- - Difficulty: 23) (Auras: 191889 - Dive)
|
||||
(@CGUID+60, 103115, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2942.4072265625, 879.76910400390625, 515.24334716796875, 4.018917083740234375, 7200, 0, 0, 3236, 0, 0, 0, 0, 0, 45745), -- Helheim (Area: -Unknown- - Difficulty: 23) (Auras: 204001 - Kvaldir Cage)
|
||||
(@CGUID+61, 188142, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2926.979248046875, 877.86285400390625, 515.24334716796875, 5.167421340942382812, 7200, 0, 0, 2463, 0, 0, 0, 0, 0, 45745), -- Motion Sick Peon's Soul (Area: -Unknown- - Difficulty: 23)
|
||||
(@CGUID+62, 97163, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2902.225830078125, 817.12152099609375, 515.24334716796875, 1.342425942420959472, 7200, 0, 0, 2811, 0, 0, 0, 0, 0, 45745), -- Cursed Falke (Area: -Unknown- - Difficulty: 23) (Auras: 191889 - Dive)
|
||||
(@CGUID+63, 97119, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2950.74560546875, 805.65972900390625, 515.0328369140625, 5.165202140808105468, 7200, 0, 0, 5271, 0, 0, 0, 0, 0, 45745), -- Shroud Hound (Area: -Unknown- - Difficulty: 23) (Auras: 145953 - Cosmetic - Sleep Zzz)
|
||||
(@CGUID+64, 98919, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 1, 2903.4619140625, 825.83331298828125, 515.24334716796875, 2.370274066925048828, 7200, 0, 0, 14935, 0, 0, 0, 0, 0, 45745), -- Seacursed Swiftblade (Area: -Unknown- - Difficulty: 23) (Auras: 195219 - Eye Patch, 197227 - Kneeling, 42459 - Dual Wield)
|
||||
(@CGUID+65, 111833, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2933.046875, 848.609375, 515.24334716796875, 0, 7200, 0, 0, 3236, 0, 0, 0, 0, 0, 45745), -- Thal'kiel (Area: -Unknown- - Difficulty: 23)
|
||||
(@CGUID+66, 102325, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 1, 2909.137939453125, 814.58160400390625, 510.633056640625, 1.570796370506286621, 7200, 0, 0, 3236, 0, 0, 0, 0, 0, 45745), -- Seacursed Rower (Area: -Unknown- - Difficulty: 23) (Auras: )
|
||||
(@CGUID+67, 98919, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 1, 2963.013427734375, 827.39886474609375, 515.71234130859375, 6.037667751312255859, 7200, 4, 0, 14935, 1, 0, 0, 0, 0, 45745), -- Seacursed Swiftblade (Area: -Unknown- - Difficulty: 23) (Auras: 195219 - Eye Patch, 42459 - Dual Wield)
|
||||
(@CGUID+68, 103115, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2943.060791015625, 868.951416015625, 515.24334716796875, 3.082287311553955078, 7200, 0, 0, 3236, 0, 0, 0, 0, 0, 45745), -- Helheim (Area: -Unknown- - Difficulty: 23) (Auras: 204001 - Kvaldir Cage)
|
||||
(@CGUID+69, 97163, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2898.32373046875, 817.125, 519.0611572265625, 5.937057971954345703, 7200, 0, 0, 2811, 0, 0, 0, 0, 0, 45745), -- Cursed Falke (Area: -Unknown- - Difficulty: 23) (Auras: 191889 - Dive)
|
||||
(@CGUID+70, 102769, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2964.2900390625, 837.859375, 515.24334716796875, 4.11855936050415039, 7200, 0, 0, 3236, 0, 0, 0, 0, 0, 45745), -- Decrepit Runecarver (Area: -Unknown- - Difficulty: 23) (Auras: 203058 - Fallen Vrykul)
|
||||
(@CGUID+71, 102327, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 1, 2953.834228515625, 811.5625, 510.633056640625, 1.570796370506286621, 7200, 0, 0, 3236, 0, 0, 0, 0, 0, 45745), -- Seacursed Rower (Area: -Unknown- - Difficulty: 23) (Auras: )
|
||||
(@CGUID+72, 102327, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 1, 2955.67529296875, 771.2257080078125, 510.633056640625, 1.570796370506286621, 7200, 0, 0, 3236, 0, 0, 0, 0, 0, 45745), -- Seacursed Rower (Area: -Unknown- - Difficulty: 23) (Auras: )
|
||||
(@CGUID+73, 99188, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 1, 2911.403564453125, 784.1944580078125, 515.24334716796875, 0.795030295848846435, 7200, 0, 0, 19084, 0, 0, 0, 0, 0, 45745), -- Waterlogged Soul Guard (Area: -Unknown- - Difficulty: 23) (Auras: 203602 - Blocking)
|
||||
(@CGUID+74, 103605, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2919.3115234375, 770.51959228515625, 515.3472900390625, 5.143380165100097656, 7200, 0, 0, 58160, 0, 0, 0, 0, 0, 45745), -- Shroudseeker (Area: -Unknown- - Difficulty: 23) (Auras: 216133 - Shroudseeker)
|
||||
(@CGUID+75, 102325, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 1, 2910.7822265625, 793.18927001953125, 510.633056640625, 1.570796370506286621, 7200, 0, 0, 3236, 0, 0, 0, 0, 0, 45745), -- Seacursed Rower (Area: -Unknown- - Difficulty: 23) (Auras: )
|
||||
(@CGUID+76, 97119, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2950.968994140625, 796.1710205078125, 515.3472900390625, 4.682995319366455078, 7200, 6, 0, 5271, 1, 0, 0, 0, 0, 45745), -- Shroud Hound (Area: -Unknown- - Difficulty: 23)
|
||||
(@CGUID+77, 102327, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 1, 2955.65185546875, 791.9288330078125, 510.633056640625, 1.570796370506286621, 7200, 0, 0, 3236, 0, 0, 0, 0, 0, 45745), -- Seacursed Rower (Area: -Unknown- - Difficulty: 23) (Auras: )
|
||||
(@CGUID+78, 99188, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 1, 2921.48095703125, 780.44097900390625, 515.24334716796875, 1.812804698944091796, 7200, 0, 0, 19084, 0, 0, 0, 0, 0, 45745), -- Waterlogged Soul Guard (Area: -Unknown- - Difficulty: 23) (Auras: 203602 - Blocking)
|
||||
(@CGUID+79, 97119, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2959.286865234375, 808.3392333984375, 515.34722900390625, 0.076405152678489685, 7200, 6, 0, 5271, 1, 0, 0, 0, 0, 45745), -- Shroud Hound (Area: -Unknown- - Difficulty: 23)
|
||||
(@CGUID+80, 102325, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 1, 2911.3603515625, 773.1336669921875, 510.633056640625, 1.570796370506286621, 7200, 0, 0, 3236, 0, 0, 0, 0, 0, 45745), -- Seacursed Rower (Area: -Unknown- - Difficulty: 23) (Auras: )
|
||||
(@CGUID+81, 97119, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2948.134521484375, 800.84552001953125, 515.0328369140625, 0.481622040271759033, 7200, 0, 0, 5271, 0, 0, 0, 0, 0, 45745), -- Shroud Hound (Area: -Unknown- - Difficulty: 23) (Auras: 145953 - Cosmetic - Sleep Zzz)
|
||||
(@CGUID+82, 111374, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2933.454833984375, 927.279541015625, 512.49432373046875, 0, 7200, 0, 0, 3236, 0, 0, 0, 0, 0, 45745), -- Xal'atath (Area: -Unknown- - Difficulty: 23) (Auras: 194414 - Soul Cage)
|
||||
(@CGUID+83, 97163, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2978.530517578125, 779.67364501953125, 544.7955322265625, 1.585039973258972167, 7200, 0, 0, 2811, 0, 0, 0, 0, 0, 45745), -- Cursed Falke (Area: -Unknown- - Difficulty: 23) (Auras: 191835 - Helheim)
|
||||
(@CGUID+84, 102742, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2900.484375, 832.37677001953125, 515.24334716796875, 0.313765108585357666, 7200, 0, 0, 3236, 0, 0, 0, 0, 0, 45745), -- Fallen Shieldmaiden (Area: -Unknown- - Difficulty: 23) (Auras: 203038 - Fallen Vrykul)
|
||||
(@CGUID+85, 97119, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2953.30908203125, 805.09027099609375, 515.0328369140625, 3.29146575927734375, 7200, 0, 0, 5271, 0, 0, 0, 0, 0, 45745), -- Shroud Hound (Area: -Unknown- - Difficulty: 23) (Auras: 145953 - Cosmetic - Sleep Zzz)
|
||||
(@CGUID+86, 102769, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2923.1259765625, 819.75177001953125, 515.24334716796875, 4.333764553070068359, 7200, 0, 0, 3236, 0, 0, 0, 0, 0, 45745), -- Decrepit Runecarver (Area: -Unknown- - Difficulty: 23) (Auras: 203058 - Fallen Vrykul)
|
||||
(@CGUID+87, 97119, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2952.829833984375, 799.4132080078125, 514.88421630859375, 1.878930568695068359, 7200, 0, 0, 5271, 0, 0, 0, 0, 0, 45745), -- Shroud Hound (Area: -Unknown- - Difficulty: 23) (Auras: 145953 - Cosmetic - Sleep Zzz)
|
||||
(@CGUID+88, 97182, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 1, 2951.0126953125, 784.5338134765625, 515.3472900390625, 1.567835688591003417, 7200, 0, 0, 27263, 100, 0, 0, 0, 0, 45745), -- Night Watch Mariner (Area: -Unknown- - Difficulty: 23) (Auras: 199867 - Helmet, 203605 - Fencing, 67236 - Invisibility and Stealth Detection)
|
||||
(@CGUID+89, 102830, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2904.111083984375, 820.03472900390625, 515.24334716796875, 3.710788965225219726, 7200, 0, 0, 3236, 0, 0, 0, 0, 0, 45745), -- Deceased Sorcerer (Area: -Unknown- - Difficulty: 23) (Auras: 70628 - Permanent Feign Death)
|
||||
(@CGUID+90, 97365, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 1, 2911.0478515625, 747.185791015625, 515.24334716796875, 2.691237926483154296, 7200, 0, 0, 13352, 3801, 0, 0, 0, 0, 45745), -- Seacursed Mistmender (Area: -Unknown- - Difficulty: 23) (Auras: 199514 - Torrent of Souls)
|
||||
(@CGUID+91, 98973, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2904.20751953125, 750.4930419921875, 515.24334716796875, 0.456433862447738647, 7200, 0, 0, 3865, 100, 0, 0, 0, 0, 45745), -- Skeletal Warrior (Area: -Unknown- - Difficulty: 23) (Auras: 198395 - Rage)
|
||||
(@CGUID+92, 111221, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2933.23779296875, 692.9913330078125, 553.56591796875, 0, 7200, 0, 0, 3236, 0, 0, 0, 0, 0, 45745), -- Xal'atath (Area: -Unknown- - Difficulty: 23)
|
||||
(@CGUID+93, 98973, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2906.268310546875, 753.484375, 515.24334716796875, 4.668107986450195312, 7200, 0, 0, 3865, 100, 0, 0, 0, 0, 45745), -- Skeletal Warrior (Area: -Unknown- - Difficulty: 23) (Auras: 198395 - Rage)
|
||||
(@CGUID+94, 97097, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 1, 2929.47998046875, 678.654541015625, 527.92669677734375, 1.430154800415039062, 7200, 0, 0, 23628, 0, 0, 0, 0, 0, 45745), -- Helarjar Champion (Area: -Unknown- - Difficulty: 23) (Auras: 42459 - Dual Wield)
|
||||
(@CGUID+95, 97163, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2923.780517578125, 724.27081298828125, 558.22210693359375, 2.311739921569824218, 7200, 0, 0, 2811, 0, 0, 0, 0, 0, 45745), -- Cursed Falke (Area: -Unknown- - Difficulty: 23) (Auras: 191835 - Helheim)
|
||||
(@CGUID+96, 97182, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 1, 2907.130126953125, 740.14410400390625, 515.166748046875, 4.143755912780761718, 7200, 0, 0, 27263, 100, 0, 0, 0, 0, 45745), -- Night Watch Mariner (Area: -Unknown- - Difficulty: 23) (Auras: 199867 - Helmet, 203605 - Fencing, 67236 - Invisibility and Stealth Detection)
|
||||
(@CGUID+97, 97163, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2952.700439453125, 709.8055419921875, 565.6466064453125, 1.172448158264160156, 7200, 0, 0, 2811, 0, 0, 0, 0, 0, 45745), -- Cursed Falke (Area: -Unknown- - Difficulty: 23) (Auras: 191835 - Helheim)
|
||||
(@CGUID+98, 97163, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2940.36279296875, 728.1007080078125, 571.9398193359375, 1.07473146915435791, 7200, 0, 0, 2811, 0, 0, 0, 0, 0, 45745), -- Cursed Falke (Area: -Unknown- - Difficulty: 23) (Auras: 191835 - Helheim)
|
||||
(@CGUID+99, 102327, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 1, 2953.642333984375, 752.05902099609375, 510.633056640625, 1.570796370506286621, 7200, 0, 0, 3236, 0, 0, 0, 0, 0, 45745), -- Seacursed Rower (Area: -Unknown- - Difficulty: 23) (Auras: )
|
||||
(@CGUID+100, 97097, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 1, 2937.975830078125, 677.81427001953125, 527.92669677734375, 1.731600165367126464, 7200, 0, 0, 23628, 0, 0, 0, 0, 0, 45745), -- Helarjar Champion (Area: -Unknown- - Difficulty: 23) (Auras: 42459 - Dual Wield)
|
||||
(@CGUID+101, 97163, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2952.564208984375, 725.40106201171875, 574.19720458984375, 0.762175381183624267, 7200, 0, 0, 2811, 0, 0, 0, 0, 0, 45745), -- Cursed Falke (Area: -Unknown- - Difficulty: 23) (Auras: 191835 - Helheim)
|
||||
(@CGUID+102, 102325, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 1, 2911.233642578125, 753.9774169921875, 510.633056640625, 1.570796370506286621, 7200, 0, 0, 3236, 0, 0, 0, 0, 0, 45745), -- Seacursed Rower (Area: -Unknown- - Difficulty: 23) (Auras: )
|
||||
(@CGUID+103, 96754, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2934.48779296875, 715.7569580078125, 554.28558349609375, 1.552549362182617187, 7200, 0, 0, 142918, 0, 0, 0, 0, 0, 45745), -- Harbaron (Area: -Unknown- - Difficulty: 23)
|
||||
(@CGUID+104, 97185, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2947.94970703125, 758.55902099609375, 515.24334716796875, 1.086105823516845703, 7200, 0, 0, 54525, 0, 0, 0, 0, 0, 45745), -- The Grimewalker (Area: -Unknown- - Difficulty: 23) (Auras: 194583 - Bone Hammer)
|
||||
(@CGUID+105, 98919, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 1, 2903.481201171875, 743.524658203125, 515.2359619140625, 6.01103973388671875, 7200, 0, 0, 14935, 0, 0, 0, 0, 0, 45745), -- Seacursed Swiftblade (Area: -Unknown- - Difficulty: 23) (Auras: 195219 - Eye Patch, 42459 - Dual Wield)
|
||||
(@CGUID+106, 98919, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 1, 2913.538330078125, 743.85418701171875, 515.2193603515625, 1.647367000579833984, 7200, 0, 0, 14935, 0, 0, 0, 0, 0, 45745), -- Seacursed Swiftblade (Area: -Unknown- - Difficulty: 23) (Auras: 195219 - Eye Patch, 42459 - Dual Wield)
|
||||
(@CGUID+107, 104906, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2944.06591796875, 720.7430419921875, 555.21337890625, 3.979190349578857421, 7200, 0, 0, 3236, 1534, 0, 0, 0, 0, 45745), -- Captured Val'kyr (Area: -Unknown- - Difficulty: 23) (Auras: 207772 - Soul Siphon)
|
||||
(@CGUID+108, 97163, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2891.001708984375, 695.51910400390625, 132.2332916259765625, 1.172448158264160156, 7200, 0, 0, 2811, 0, 0, 0, 0, 0, 45745), -- Cursed Falke (Area: -Unknown- - Difficulty: 23) (Auras: 191835 - Helheim)
|
||||
(@CGUID+109, 97119, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2917.833251953125, 786.3695068359375, 515.3472900390625, 4.485676765441894531, 7200, 0, 0, 4296, 0, 0, 0, 0, 0, 45745), -- Shroud Hound (Area: -Unknown- - Difficulty: 1)
|
||||
(@CGUID+110, 97119, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2915.28125, 787.173828125, 515.34735107421875, 4.537103652954101562, 7200, 0, 0, 4296, 0, 0, 0, 0, 0, 45745), -- Shroud Hound (Area: -Unknown- - Difficulty: 1) (Auras: )
|
||||
(@CGUID+111, 97119, 1492, 7812, 7811, '1,2,8,23', 0, 0, 0, 0, 2915.218017578125, 780.2537841796875, 515.3472900390625, 4.515956401824951171, 7200, 0, 0, 4296, 0, 0, 0, 0, 0, 45745); -- Shroud Hound (Area: -Unknown- - Difficulty: 1)
|
||||
|
||||
-- GameObject
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+54;
|
||||
INSERT INTO `gameobject` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `PhaseGroup`, `position_x`, `position_y`, `position_z`, `orientation`, `rotation0`, `rotation1`, `rotation2`, `rotation3`, `spawntimesecs`, `animprogress`, `state`, `VerifiedBuild`) VALUES
|
||||
(@OGUID+0, 245065, 1492, 7812, 7812, '1,2,8,23', 0, 0, 7260.6328125, 7284.173828125, 25.80939865112304687, 0.497423887252807617, 0, 0, 0.246155738830566406, 0.969230294227600097, 7200, 255, 1, 45745), -- Kvaldir Cage (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+1, 252145, 1492, 7812, 7812, '1,2,8,23', 0, 0, 7162.3291015625, 7317.9609375, 20.86308670043945312, 0.203780680894851684, 0, 0, 0.101714134216308593, 0.99481368064880371, 7200, 255, 1, 45745), -- Instance Portal (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+2, 245062, 1492, 7812, 7812, '1,2,8,23', 0, 0, 7355.40087890625, 7315.59912109375, 47.93732452392578125, 4.424408435821533203, 0, 0, -0.8012542724609375, 0.598324000835418701, 7200, 255, 1, 45745), -- Kvaldir Cage (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+3, 245063, 1492, 7812, 7812, '1,2,8,23', 0, 0, 7273.16845703125, 7287.92431640625, 33.72406387329101562, 2.286378860473632812, 0, 0, 0.909960746765136718, 0.414694398641586303, 7200, 255, 1, 45745), -- Kvaldir Cage (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+4, 224648, 1492, 7812, 7812, '1,2,8,23', 0, 0, 7213.55712890625, 7327.65625, 34.9271392822265625, 0, 0, 0, 0, 1, 7200, 255, 1, 45745), -- Large Collision Wall (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+5, 245066, 1492, 7812, 7812, '1,2,8,23', 0, 0, 7362.2041015625, 7316.751953125, 43.68834304809570312, 4.276064872741699218, -0.02543830871582031, 0.010679244995117187, -0.84325981140136718, 0.536797642707824707, 7200, 255, 1, 45745), -- Kvaldir Cage (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+6, 245067, 1492, 7812, 7812, '1,2,8,23', 0, 0, 7348.61572265625, 7314.8359375, 43.69791412353515625, 4.633854866027832031, 0, 0, -0.73432064056396484, 0.678802728652954101, 7200, 255, 1, 45745), -- Kvaldir Cage (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+7, 245064, 1492, 7812, 7812, '1,2,8,23', 0, 0, 7266.3603515625, 7283.658203125, 26.68778800964355468, 1.003559350967407226, 0, 0, 0.480986595153808593, 0.876727938652038574, 7200, 255, 1, 45745), -- Kvaldir Cage (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+8, 253001, 1492, 7812, 7812, '1,2,8,23', 0, 0, 7509.89306640625, 7286.90625, -6.65244531631469726, 4.255993366241455078, -0.04124069213867187, -0.03155231475830078, -0.8474578857421875, 0.528316915035247802, 7200, 255, 1, 45745), -- Rune-etched Archway (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+9, 247041, 1492, 7812, 7812, '1,2,8,23', 0, 0, 7420.4990234375, 7245.0478515625, 53.57076263427734375, 5.139995098114013671, -0.0164952278137207, -0.0317697525024414, -0.5405282974243164, 0.840563952922821044, 7200, 255, 1, 45745), -- Echoing Horn of the Damned (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+10, 245609, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2943.060791015625, 868.951416015625, 517.24334716796875, 3.082284450531005859, 0, 0, 0.999560356140136718, 0.029649769887328147, 7200, 255, 1, 45745), -- Invisible Door (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+11, 246844, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2948.415283203125, 921.30487060546875, 511.890106201171875, 3.141592741012573242, 0, 0, -1, 0, 7200, 255, 1, 45745), -- Trap Door 004 (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+12, 245609, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2943.060791015625, 868.951416015625, 513.24334716796875, 3.082284450531005859, 0, 0, 0.999560356140136718, 0.029649769887328147, 7200, 255, 1, 45745), -- Invisible Door (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+13, 245609, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2942.4072265625, 879.76910400390625, 517.24334716796875, 4.01891946792602539, 0, 0, -0.9053201675415039, 0.424729764461517333, 7200, 255, 1, 45745), -- Invisible Door (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+14, 245609, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2942.4072265625, 879.76910400390625, 513.24334716796875, 4.01891946792602539, 0, 0, -0.9053201675415039, 0.424729764461517333, 7200, 255, 1, 45745), -- Invisible Door (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+15, 265476, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2917.9443359375, 890.44293212890625, 537.48297119140625, 4.625123500823974609, 0, 0, -0.73727703094482421, 0.67559051513671875, 7200, 255, 1, 45745), -- Murky Fog (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+16, 246435, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2932.998291015625, 889.7725830078125, 537.77789306640625, 1.570795774459838867, 0, 0, 0.707106590270996093, 0.707106947898864746, 7200, 255, 1, 45745), -- Wall of Souls (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+17, 246834, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2922.22607421875, 936.72869873046875, 512.03668212890625, 3.141592741012573242, 0, 0, -1, 0, 7200, 255, 1, 45745), -- Trap Door 007 (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+18, 265477, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2948.888427734375, 890.44293212890625, 537.48297119140625, 4.799657344818115234, 0, 0, -0.67558956146240234, 0.737277925014495849, 7200, 255, 1, 45745), -- Murky Fog (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+19, 246835, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2933.33544921875, 960.2750244140625, 511.940704345703125, 3.141592741012573242, 0, 0, -1, 0, 7200, 255, 1, 45745), -- Trap Door 009 (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+20, 245609, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2922.596435546875, 876.42364501953125, 513.24334716796875, 5.736162662506103515, 0, 0, -0.27011394500732421, 0.962828338146209716, 7200, 255, 1, 45745), -- Invisible Door (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+21, 246838, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2933.333251953125, 940.86175537109375, 511.8599853515625, 3.141592741012573242, 0, 0, -1, 0, 7200, 255, 1, 45745), -- Trap Door 006 (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+22, 246839, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2944.4404296875, 936.72869873046875, 512.03668212890625, 3.141592741012573242, 0, 0, -1, 0, 7200, 255, 1, 45745), -- Trap Door 005 (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+23, 246836, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2926.742431640625, 952.155517578125, 512.00091552734375, 3.141592741012573242, 0, 0, -1, 0, 7200, 255, 1, 45745), -- Trao Door 008 (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+24, 246919, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2933.333251953125, 800, 500, 3.141592741012573242, 0, 0, -1, 0, 7200, 255, 1, 45745), -- The Naglfar (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+25, 246837, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2939.924072265625, 952.1553955078125, 512.00091552734375, 3.141592741012573242, 0, 0, -1, 0, 7200, 255, 1, 45745), -- Trap Door 010 (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+26, 246842, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2927.262939453125, 928.67755126953125, 511.501220703125, 3.141592741012573242, 0, 0, -1, 0, 7200, 255, 1, 45745), -- Trap Door 002 (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+27, 246843, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2918.251220703125, 921.30487060546875, 511.890106201171875, 3.141592741012573242, 0, 0, -1, 0, 7200, 255, 1, 45745), -- Trap Door 003 (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+28, 246840, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2939.466064453125, 928.67755126953125, 511.500640869140625, 3.141592741012573242, 0, 0, -1, 0, 7200, 255, 1, 45745), -- Trap Door 001 (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+29, 246841, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2933.193603515625, 920.699462890625, 512.0447998046875, 3.141592741012573242, 0, 0, -1, 0, 7200, 255, 1, 45745), -- Trap Door 011 (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+30, 245609, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2922.596435546875, 876.42364501953125, 517.24334716796875, 5.736162662506103515, 0, 0, -0.27011394500732421, 0.962828338146209716, 7200, 255, 1, 45745), -- Invisible Door (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+31, 246986, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2945.529052734375, 874.45361328125, 514.99359130859375, 2.519775152206420898, 0, 0, 0.952055931091308593, 0.305923998355865478, 7200, 255, 1, 45745), -- Barnacled Cage (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+32, 245609, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2945.721435546875, 874.71875, 517.24334716796875, 3.447553634643554687, 0, 0, -0.98832130432128906, 0.152384430170059204, 7200, 255, 1, 45745), -- Invisible Door (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+33, 246987, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2942.028076171875, 879.523193359375, 514.99359130859375, 3.645649671554565429, 0, 0, -0.96840858459472656, 0.249368831515312194, 7200, 255, 1, 45745), -- Barnacled Cage (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+34, 245609, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2922.2353515625, 870.19964599609375, 517.24334716796875, 6.280763149261474609, 0, 0, -0.00121116638183593, 0.999999225139617919, 7200, 255, 1, 45745), -- Invisible Door (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+35, 245609, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2922.2353515625, 870.19964599609375, 513.24334716796875, 6.280763149261474609, 0, 0, -0.00121116638183593, 0.999999225139617919, 7200, 255, 1, 45745), -- Invisible Door (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+36, 246985, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2942.771728515625, 868.95440673828125, 514.99359130859375, 2.253713607788085937, 0, 0, 0.903066635131835937, 0.429500460624694824, 7200, 255, 1, 45745), -- Barnacled Cage (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+37, 246988, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2922.661376953125, 870.0921630859375, 514.99359130859375, 0.498537778854370117, 0, 0, 0.246695518493652343, 0.969093024730682373, 7200, 255, 1, 45745), -- Barnacled Cage (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+38, 249462, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2933.640625, 911.59375, 513.2537841796875, 3.179567813873291015, -0.08931779861450195, -0.35068893432617187, -0.9306793212890625, 0.053624309599399566, 7200, 255, 1, 45745), -- Crate of Dragur Dust (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+39, 246989, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2922.661376953125, 876.20703125, 514.99359130859375, 5.463610172271728515, 0, 0, -0.39841461181640625, 0.917205452919006347, 7200, 255, 1, 45745), -- Barnacled Cage (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+40, 245609, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2945.721435546875, 874.71875, 513.24334716796875, 3.447553634643554687, 0, 0, -0.98832130432128906, 0.152384430170059204, 7200, 255, 1, 45745), -- Invisible Door (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+41, 246763, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2933.333251953125, 800, 500, 3.141592741012573242, 0, 0, -1, 0, 7200, 255, 1, 45745), -- The Maw of Souls (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+42, 224697, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2902.73095703125, 820.1475830078125, 515.1600341796875, 5.099861621856689453, 0, 0, -0.55774116516113281, 0.830014944076538085, 7200, 255, 1, 45745), -- Fresh Carcass (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+43, 224697, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2902.403564453125, 818.93927001953125, 515.1600341796875, 1.592045903205871582, 0, 0, 0.714579582214355468, 0.699554145336151123, 7200, 255, 1, 45745), -- Fresh Carcass (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+44, 246125, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2904.342041015625, 724.7257080078125, 515.07342529296875, 0.308333545923233032, 0, 0, 0.15355682373046875, 0.988139808177947998, 7200, 255, 1, 45745), -- Musty Crate (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+45, 246890, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2905.808837890625, 737.423828125, 515.1832275390625, 1.544759273529052734, 0, 0, 0.697841644287109375, 0.716252088546752929, 7200, 255, 1, 45745), -- Heavy Barnacled Door (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+46, 251963, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2907.829833984375, 779.25518798828125, 514.8470458984375, 5.624162673950195312, 0, 0, -0.32358074188232421, 0.946200549602508544, 7200, 255, 1, 45745), -- 7VR_VRYKUL_RITUALROCKS02 [scale x3] (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+47, 246888, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2933.655029296875, 662.9052734375, 550.64013671875, 4.745911598205566406, 0, 0, -0.69515609741210937, 0.718858778476715087, 7200, 255, 0, 45745), -- Heavy Barnacled Door (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+48, 251963, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2905.205810546875, 778.77606201171875, 514.79669189453125, 4.501195907592773437, 0, 0, -0.77769756317138671, 0.628638625144958496, 7200, 255, 1, 45745), -- 7VR_VRYKUL_RITUALROCKS02 [scale x3] (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+49, 246889, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2961.1298828125, 737.28424072265625, 515.1832275390625, 1.550618171691894531, 0, 0, 0.699936866760253906, 0.714204728603363037, 7200, 255, 0, 45745), -- Heavy Barnacled Door (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+50, 243403, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2908.3671875, 704.7882080078125, 552.86639404296875, 4.971016883850097656, 0, 0, -0.61001873016357421, 0.792386949062347412, 7200, 255, 1, 45745), -- Collision Wall (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+51, 251960, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2906.654541015625, 779.3055419921875, 514.74127197265625, 4.826448440551757812, -0.07831382751464843, -0.19815731048583984, -0.63906669616699218, 0.739049673080444335, 7200, 255, 1, 45745), -- The Raven's Eye Tablet (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+52, 246947, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2959.168212890625, 705.18951416015625, 553.05511474609375, 4.47892618179321289, 0, 0, -0.78464889526367187, 0.619940400123596191, 7200, 255, 1, 45745), -- Wall of Souls (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+53, 243403, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2959.032958984375, 705.4774169921875, 552.8294677734375, 4.496196746826171875, 0, 0, -0.779266357421875, 0.626692891120910644, 7200, 255, 1, 45745), -- Collision Wall (Area: -Unknown- - Difficulty: 23)
|
||||
(@OGUID+54, 246948, 1492, 7812, 7811, '1,2,8,23', 0, 0, 2908.508544921875, 705.294921875, 553.05511474609375, 4.941732406616210937, 0, 0, -0.62155532836914062, 0.783370256423950195, 7200, 255, 1, 45745); -- Wall of Souls (Area: -Unknown- - Difficulty: 23)
|
||||
|
||||
DELETE FROM `gameobject_addon` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+54;
|
||||
INSERT INTO `gameobject_addon` (`guid`, `parent_rotation0`, `parent_rotation1`, `parent_rotation2`, `parent_rotation3`, `WorldEffectID`, `AIAnimKitID`) VALUES
|
||||
(@OGUID+11, 0, 0, 1, -0.00000004371138828, 0, 0), -- Trap Door 004
|
||||
(@OGUID+15, 0, 0, 1, -0.00000004371138828, 0, 0), -- Murky Fog
|
||||
(@OGUID+17, 0, 0, 1, -0.00000004371138828, 0, 0), -- Trap Door 007
|
||||
(@OGUID+18, 0, 0, 1, -0.00000004371138828, 0, 0), -- Murky Fog
|
||||
(@OGUID+19, 0, 0, 1, -0.00000004371138828, 0, 0), -- Trap Door 009
|
||||
(@OGUID+21, 0, 0, 1, -0.00000004371138828, 0, 0), -- Trap Door 006
|
||||
(@OGUID+22, 0, 0, 1, -0.00000004371138828, 0, 0), -- Trap Door 005
|
||||
(@OGUID+23, 0, 0, 1, -0.00000004371138828, 0, 0), -- Trao Door 008
|
||||
(@OGUID+24, 0, 0, 0, 1, 0, 0), -- The Naglfar
|
||||
(@OGUID+25, 0, 0, 1, -0.00000004371138828, 0, 0), -- Trap Door 010
|
||||
(@OGUID+26, 0, 0, 1, -0.00000004371138828, 0, 0), -- Trap Door 002
|
||||
(@OGUID+27, 0, 0, 1, -0.00000004371138828, 0, 0), -- Trap Door 003
|
||||
(@OGUID+28, 0, 0, 1, -0.00000004371138828, 0, 0), -- Trap Door 001
|
||||
(@OGUID+29, 0, 0, 1, -0.00000004371138828, 0, 0), -- Trap Door 011
|
||||
(@OGUID+31, 0, 0, 1, -0.00000004371138828, 0, 0), -- Barnacled Cage
|
||||
(@OGUID+33, 0, 0, 1, -0.00000004371138828, 0, 0), -- Barnacled Cage
|
||||
(@OGUID+36, 0, 0, 1, -0.00000004371138828, 0, 0), -- Barnacled Cage
|
||||
(@OGUID+37, 0, 0, 1, -0.00000004371138828, 0, 0), -- Barnacled Cage
|
||||
(@OGUID+39, 0, 0, 1, -0.00000004371138828, 0, 0), -- Barnacled Cage
|
||||
(@OGUID+41, 0, 0, 1, -0.00000004371138828, 0, 0), -- The Maw of Souls
|
||||
(@OGUID+44, 0, 0, 0, 1, 0, 753), -- Musty Crate
|
||||
(@OGUID+45, 0, 0, 1, -0.00000004371138828, 0, 0), -- Heavy Barnacled Door
|
||||
(@OGUID+47, 0, 0, 1, -0.00000004371138828, 0, 9961), -- Heavy Barnacled Door
|
||||
(@OGUID+49, 0, 0, 1, -0.00000004371138828, 0, 0), -- Heavy Barnacled Door
|
||||
(@OGUID+52, 0, 0, 1, -0.00000004371138828, 0, 0), -- Wall of Souls
|
||||
(@OGUID+54, 0, 0, 1, -0.00000004371138828, 0, 0); -- Wall of Souls
|
||||
|
||||
-- Creature Addon
|
||||
DELETE FROM `creature_addon` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+108;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(@CGUID+56, 0, 0, 0, 1, 505, 0, 0, 0, 0, ''), -- Waterlogged Soul Guard
|
||||
(@CGUID+52, 0, 0, 0, 1, 505, 0, 0, 0, 0, ''), -- Waterlogged Soul Guard
|
||||
(@CGUID+87, 0, 0, 0, 1, 0, 0, 0, 0, 0, '145953'), -- Shroud Hound - 145953 - Cosmetic - Sleep Zzz
|
||||
(@CGUID+81, 0, 0, 0, 1, 0, 0, 0, 0, 0, '145953'), -- Shroud Hound - 145953 - Cosmetic - Sleep Zzz
|
||||
(@CGUID+85, 0, 0, 0, 1, 0, 0, 0, 0, 0, '145953'), -- Shroud Hound - 145953 - Cosmetic - Sleep Zzz
|
||||
(@CGUID+63, 0, 0, 0, 1, 0, 0, 0, 0, 0, '145953'), -- Shroud Hound - 145953 - Cosmetic - Sleep Zzz
|
||||
(@CGUID+100, 0, 0, 0, 1, 505, 0, 0, 0, 4, '42459'), -- Helarjar Champion - 42459 - Dual Wield
|
||||
(@CGUID+94, 0, 0, 0, 1, 505, 0, 0, 0, 4, '42459'); -- Helarjar Champion - 42459 - Dual Wield
|
||||
|
||||
-- Creature Template addon
|
||||
DELETE FROM `creature_template_addon` WHERE `entry` IN (96756 /*96756 (Ymiron, the Fallen King) - -Unknown-, Kneeling*/, 102375 /*102375 (Runecarver Slave) - Ride Vehicle Hardcoded*/, 102108 /*102108 (Captured Shieldmaiden)*/, 101013 /*101013 (Captured Runecarver)*/, 97200 /*97200 (Seacursed Soulkeeper)*/, 114712 /*114712 (Runecarver Slave)*/, 120652 /*120652 (Global Affix Stalker)*/, 97208 /*97208 (Spear) - Ride Vehicle Hardcoded, Spear*/, 102104 /*102104 (Enslaved Shieldmaiden) - Ride Vehicle Hardcoded*/, 97163 /*97163 (Cursed Falke) - Dive*/, 104906 /*104906 (Captured Val'kyr) - Soul Siphon*/, 97185 /*97185 (The Grimewalker) - Bone Hammer*/, 96754 /*96754 (Harbaron)*/, 97097 /*97097 (Helarjar Champion) - Dual Wield*/, 98973 /*98973 (Skeletal Warrior) - Rage*/, 102830 /*102830 (Deceased Sorcerer) - Permanent Feign Death*/, 97182 /*97182 (Night Watch Mariner) - Helmet, Fencing, Invisibility and Stealth Detection*/, 102742 /*102742 (Fallen Shieldmaiden) - Fallen Vrykul*/, 111374 /*111374 (Xal'atath) - Soul Cage*/, 103605 /*103605 (Shroudseeker) - Shroudseeker*/, 99188 /*99188 (Waterlogged Soul Guard) - Blocking*/, 102769 /*102769 (Decrepit Runecarver) - Fallen Vrykul*/, 102326 /*102326 (Seacursed Rower) - Ride Vehicle Hardcoded, Rowing*/, 97365 /*97365 (Seacursed Mistmender)*/, 102327 /*102327 (Seacursed Rower)*/, 98919 /*98919 (Seacursed Swiftblade) - Eye Patch, Dual Wield*/, 103115 /*103115 (Helheim) - Kvaldir Cage*/, 102325 /*102325 (Seacursed Rower)*/, 98291 /*98291 (Seacursed Rower) - Ride Vehicle Hardcoded, Rowing*/);
|
||||
INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(96756, 0, 0, 0, 1, 0, 0, 0, 0, 4, '342788 197227'), -- 96756 (Ymiron, the Fallen King) - -Unknown-, Kneeling
|
||||
(102375, 0, 0, 0, 1, 0, 0, 0, 0, 0, ''), -- 102375 (Runecarver Slave) - Ride Vehicle Hardcoded
|
||||
(102108, 0, 0, 50331648, 1, 0, 0, 0, 0, 0, ''), -- 102108 (Captured Shieldmaiden)
|
||||
(101013, 0, 0, 50331648, 1, 0, 0, 0, 0, 0, ''), -- 101013 (Captured Runecarver)
|
||||
(97200, 0, 0, 0, 1, 0, 0, 0, 0, 4, ''), -- 97200 (Seacursed Soulkeeper)
|
||||
(114712, 0, 0, 8, 1, 0, 0, 0, 0, 0, ''), -- 114712 (Runecarver Slave)
|
||||
(120652, 0, 0, 0, 1, 0, 0, 0, 0, 5, ''), -- 120652 (Global Affix Stalker)
|
||||
(97208, 0, 0, 0, 1, 0, 0, 0, 0, 0, '191903'), -- 97208 (Spear) - Ride Vehicle Hardcoded, Spear
|
||||
(102104, 0, 0, 0, 1, 0, 0, 0, 0, 0, ''), -- 102104 (Enslaved Shieldmaiden) - Ride Vehicle Hardcoded
|
||||
(97163, 0, 0, 50331648, 1, 0, 0, 0, 0, 3, '191889'), -- 97163 (Cursed Falke) - Dive
|
||||
(104906, 0, 0, 50331648, 1, 0, 0, 0, 0, 0, '207772'), -- 104906 (Captured Val'kyr) - Soul Siphon
|
||||
(97185, 0, 0, 0, 1, 0, 0, 0, 0, 0, '194583'), -- 97185 (The Grimewalker) - Bone Hammer
|
||||
(96754, 0, 0, 0, 0, 0, 0, 0, 0, 4, ''), -- 96754 (Harbaron)
|
||||
(97097, 0, 0, 0, 1, 0, 0, 0, 0, 4, '42459'), -- 97097 (Helarjar Champion) - Dual Wield
|
||||
(98973, 0, 0, 0, 1, 0, 0, 0, 0, 4, '198395'), -- 98973 (Skeletal Warrior) - Rage
|
||||
(102830, 0, 0, 0, 1, 0, 0, 0, 0, 0, '70628'), -- 102830 (Deceased Sorcerer) - Permanent Feign Death
|
||||
(97182, 0, 0, 0, 1, 0, 0, 0, 0, 0, '199867 203605 67236'), -- 97182 (Night Watch Mariner) - Helmet, Fencing, Invisibility and Stealth Detection
|
||||
(102742, 0, 0, 0, 1, 0, 0, 0, 0, 0, '203038'), -- 102742 (Fallen Shieldmaiden) - Fallen Vrykul
|
||||
(111374, 0, 0, 0, 1, 0, 0, 0, 0, 0, '194414'), -- 111374 (Xal'atath) - Soul Cage
|
||||
(103605, 0, 0, 0, 1, 0, 0, 0, 0, 0, '216133'), -- 103605 (Shroudseeker) - Shroudseeker
|
||||
(99188, 0, 0, 0, 1, 0, 0, 0, 0, 0, '203602'), -- 99188 (Waterlogged Soul Guard) - Blocking
|
||||
(102769, 0, 0, 0, 1, 0, 0, 0, 0, 0, '203058'), -- 102769 (Decrepit Runecarver) - Fallen Vrykul
|
||||
(102326, 0, 0, 50331648, 1, 0, 0, 0, 0, 4, '202034'), -- 102326 (Seacursed Rower) - Ride Vehicle Hardcoded, Rowing
|
||||
(97365, 0, 0, 0, 0, 0, 0, 0, 0, 0, ''), -- 97365 (Seacursed Mistmender)
|
||||
(102327, 0, 0, 50331648, 1, 0, 0, 0, 0, 0, ''), -- 102327 (Seacursed Rower)
|
||||
(98919, 0, 0, 0, 1, 0, 0, 0, 0, 0, '195219 42459'), -- 98919 (Seacursed Swiftblade) - Eye Patch, Dual Wield
|
||||
(103115, 0, 0, 50331648, 1, 0, 0, 0, 0, 5, '204001'), -- 103115 (Helheim) - Kvaldir Cage
|
||||
(102325, 0, 0, 50331648, 1, 0, 0, 0, 0, 0, ''), -- 102325 (Seacursed Rower)
|
||||
(98291, 0, 0, 50331648, 1, 0, 0, 0, 0, 4, '193667'); -- 98291 (Seacursed Rower) - Ride Vehicle Hardcoded; Rowing
|
||||
|
||||
-- GameObject Template addon
|
||||
DELETE FROM `gameobject_template_addon` WHERE `entry` IN (247041 /*Echoing Horn of the Damned*/, 253001 /*Rune-etched Archway*/, 245064 /*Kvaldir Cage*/, 245067 /*Kvaldir Cage*/, 245066 /*Kvaldir Cage*/, 224648 /*Large Collision Wall*/, 245063 /*Kvaldir Cage*/, 245062 /*Kvaldir Cage*/, 245065 /*Kvaldir Cage*/, 251960 /*The Raven's Eye Tablet*/, 251963 /*7VR_VRYKUL_RITUALROCKS02 [scale x3]*/, 246125 /*Musty Crate*/, 246763 /*The Maw of Souls*/, 249462 /*Crate of Dragur Dust*/, 246841 /*Trap Door 011*/, 246840 /*Trap Door 001*/, 246843 /*Trap Door 003*/, 246842 /*Trap Door 002*/, 246837 /*Trap Door 010*/, 246919 /*The Naglfar*/, 246836 /*Trao Door 008*/, 246839 /*Trap Door 005*/, 246838 /*Trap Door 006*/, 246835 /*Trap Door 009*/, 246834 /*Trap Door 007*/, 246435 /*Wall of Souls*/, 246844 /*Trap Door 004*/, 245609 /*Invisible Door*/);
|
||||
INSERT INTO `gameobject_template_addon` (`entry`, `faction`, `flags`, `WorldEffectID`, `AIAnimKitID`) VALUES
|
||||
(247041, 0, 16, 0, 0), -- Echoing Horn of the Damned
|
||||
(253001, 0, 48, 0, 0), -- Rune-etched Archway
|
||||
(245064, 0, 48, 0, 0), -- Kvaldir Cage
|
||||
(245067, 0, 48, 0, 0), -- Kvaldir Cage
|
||||
(245066, 0, 48, 0, 0), -- Kvaldir Cage
|
||||
(224648, 1375, 0, 0, 0), -- Large Collision Wall
|
||||
(245063, 0, 48, 0, 0), -- Kvaldir Cage
|
||||
(245062, 0, 48, 0, 0), -- Kvaldir Cage
|
||||
(245065, 0, 48, 0, 0), -- Kvaldir Cage
|
||||
(251960, 0, 262144, 0, 0), -- The Raven's Eye Tablet
|
||||
(251963, 114, 0, 0, 0), -- 7VR_VRYKUL_RITUALROCKS02 [scale x3]
|
||||
(246125, 0, 4, 0, 753), -- Musty Crate
|
||||
(246763, 0, 48, 0, 0), -- The Maw of Souls
|
||||
(249462, 0, 4, 0, 0), -- Crate of Dragur Dust
|
||||
(246841, 1375, 0, 0, 0), -- Trap Door 011
|
||||
(246840, 1375, 0, 0, 0), -- Trap Door 001
|
||||
(246843, 1375, 0, 0, 0), -- Trap Door 003
|
||||
(246842, 1375, 0, 0, 0), -- Trap Door 002
|
||||
(246837, 1375, 0, 0, 0), -- Trap Door 010
|
||||
(246919, 0, 1048608, 0, 0), -- The Naglfar
|
||||
(246836, 1375, 0, 0, 0), -- Trao Door 008
|
||||
(246839, 1375, 0, 0, 0), -- Trap Door 005
|
||||
(246838, 1375, 0, 0, 0), -- Trap Door 006
|
||||
(246835, 1375, 0, 0, 0), -- Trap Door 009
|
||||
(246834, 1375, 0, 0, 0), -- Trap Door 007
|
||||
(246435, 0, 48, 0, 0), -- Wall of Souls
|
||||
(246844, 1375, 0, 0, 0), -- Trap Door 004
|
||||
(245609, 14, 48, 0, 0); -- Invisible Door
|
||||
|
||||
UPDATE `gameobject_template_addon` SET `AIAnimKitID`=9961 WHERE `entry`=246888; -- Heavy Barnacled Door
|
||||
|
||||
-- Creature Template data
|
||||
UPDATE `creature_template` SET `minlevel`=47, `maxlevel`=47 WHERE `entry`=96756; -- Ymiron, the Fallen King
|
||||
UPDATE `creature_template` SET `unit_flags3`=16777217 WHERE `entry`=111374; -- Xal'atath
|
||||
UPDATE `creature_template` SET `minlevel`=45, `maxlevel`=45 WHERE `entry`=102108; -- Captured Shieldmaiden
|
||||
UPDATE `creature_template` SET `minlevel`=45, `maxlevel`=45 WHERE `entry`=101013; -- Captured Runecarver
|
||||
UPDATE `creature_template` SET `minlevel`=45, `maxlevel`=45 WHERE `entry` IN (102896, 102104); -- Enslaved Shieldmaiden
|
||||
UPDATE `creature_template` SET `minlevel`=46, `maxlevel`=46 WHERE `entry`=97200; -- Seacursed Soulkeeper
|
||||
UPDATE `creature_template` SET `minlevel`=45, `maxlevel`=45 WHERE `entry` IN (114712, 102375, 102894); -- Runecarver Slave
|
||||
UPDATE `creature_template` SET `minlevel`=45, `maxlevel`=45 WHERE `entry`=97043; -- Seacursed Slaver
|
||||
UPDATE `creature_template` SET `minlevel`=50, `maxlevel`=50, `unit_flags3`=16777217 WHERE `entry`=120652; -- Global Affix Stalker
|
||||
UPDATE `creature_template` SET `minlevel`=45, `maxlevel`=45, `unit_flags3`=16777217 WHERE `entry`=97208; -- Spear
|
||||
UPDATE `creature_template` SET `minlevel`=45, `maxlevel`=45, `unit_flags3`=0 WHERE `entry`=97163; -- Cursed Falke
|
||||
UPDATE `creature_template` SET `minlevel`=45, `maxlevel`=45, `unit_flags`=0, `unit_flags3`=16777216 WHERE `entry`=104906; -- Captured Val'kyr
|
||||
UPDATE `creature_template` SET `minlevel`=46, `maxlevel`=46 WHERE `entry`=97185; -- The Grimewalker
|
||||
UPDATE `creature_template` SET `minlevel`=47, `maxlevel`=47 WHERE `entry`=96754; -- Harbaron
|
||||
UPDATE `creature_template` SET `minlevel`=46, `maxlevel`=46 WHERE `entry`=97097; -- Helarjar Champion
|
||||
UPDATE `creature_template` SET `unit_flags3`=16777217 WHERE `entry`=111221; -- Xal'atath
|
||||
UPDATE `creature_template` SET `minlevel`=45, `maxlevel`=45 WHERE `entry`=98973; -- Skeletal Warrior
|
||||
UPDATE `creature_template` SET `minlevel`=45, `maxlevel`=45, `unit_flags3`=16785409 WHERE `entry`=102830; -- Deceased Sorcerer
|
||||
UPDATE `creature_template` SET `minlevel`=46, `maxlevel`=46, `dynamicflags`=0 WHERE `entry`=97182; -- Night Watch Mariner
|
||||
UPDATE `creature_template` SET `minlevel`=45, `maxlevel`=45, `unit_flags3`=16777217 WHERE `entry`=102742; -- Fallen Shieldmaiden
|
||||
UPDATE `creature_template` SET `minlevel`=46, `maxlevel`=46, `faction`=16, `speed_walk`=1.20000004768371582, `speed_run`=1.428571462631225585, `BaseAttackTime`=1000, `unit_flags`=32768, `unit_flags2`=2048 WHERE `entry`=103605; -- Shroudseeker
|
||||
UPDATE `creature_template` SET `minlevel`=45, `maxlevel`=45, `unit_flags3`=16777217 WHERE `entry`=102769; -- Decrepit Runecarver
|
||||
UPDATE `creature_template` SET `minlevel`=45, `maxlevel`=45, `unit_flags3`=16777217 WHERE `entry`=111833; -- Thal'kiel
|
||||
UPDATE `creature_template` SET `minlevel`=45, `maxlevel`=45 WHERE `entry`=97119; -- Shroud Hound
|
||||
UPDATE `creature_template` SET `minlevel`=40, `maxlevel`=40, `faction`=35, `npcflag`=128, `BaseAttackTime`=2000, `unit_flags2`=2048 WHERE `entry`=188142; -- Motion Sick Peon's Soul
|
||||
UPDATE `creature_template` SET `minlevel`=45, `maxlevel`=45 WHERE `entry` IN (102326, 102327, 102325, 98291); -- Seacursed Rower
|
||||
UPDATE `creature_template` SET `minlevel`=45, `maxlevel`=45 WHERE `entry`=97365; -- Seacursed Mistmender
|
||||
UPDATE `creature_template` SET `minlevel`=46, `maxlevel`=46 WHERE `entry`=99188; -- Waterlogged Soul Guard
|
||||
UPDATE `creature_template` SET `minlevel`=45, `maxlevel`=45 WHERE `entry`=98919; -- Seacursed Swiftblade
|
||||
UPDATE `creature_template` SET `minlevel`=45, `maxlevel`=45 WHERE `entry`=103115; -- Helheim
|
||||
|
||||
-- GameObject Template data
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=1155, `VerifiedBuild`=45745 WHERE `entry`=253001; -- Rune-etched Archway
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=1155, `VerifiedBuild`=45745 WHERE `entry`=247041; -- Echoing Horn of the Damned
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=1155, `VerifiedBuild`=45745 WHERE `entry` IN (245066, 245062, 245067, 245063, 245064, 245065); -- Kvaldir Cage
|
||||
UPDATE `gameobject_template` SET `VerifiedBuild`=45745 WHERE `entry` IN (224648, 252145);
|
||||
|
||||
-- Scaling
|
||||
DELETE FROM `creature_template_scaling` WHERE (`DifficultyID`=23 AND `Entry` IN (96756,102108,101013,102896,97200,114712,97043,97208,102375,102104,102894,97163,104906,97185,96754,97097,98973,102830,97182,102742,103605,102769,97119,188142,102326,97365,102327,99188,98919,103115,102325,98291));
|
||||
INSERT INTO `creature_template_scaling` (`Entry`, `DifficultyID`, `LevelScalingDeltaMin`, `LevelScalingDeltaMax`, `ContentTuningID`, `VerifiedBuild`) VALUES
|
||||
(96756, 23, 2, 2, 629, 45745),
|
||||
(102108, 23, 0, 0, 1155, 45745),
|
||||
(101013, 23, 0, 0, 1155, 45745),
|
||||
(102896, 23, 0, 0, 1155, 45745),
|
||||
(97200, 23, 1, 1, 629, 45745),
|
||||
(114712, 23, 0, 0, 629, 45745),
|
||||
(97043, 23, 0, 0, 629, 45745),
|
||||
(97208, 23, 0, 0, 1155, 45745),
|
||||
(102375, 23, 0, 0, 629, 45745),
|
||||
(102104, 23, 0, 0, 629, 45745),
|
||||
(102894, 23, 0, 0, 1155, 45745),
|
||||
(97163, 23, 0, 0, 629, 45745),
|
||||
(104906, 23, 0, 0, 1155, 45745),
|
||||
(97185, 23, 1, 1, 629, 45745),
|
||||
(96754, 23, 2, 2, 629, 45745),
|
||||
(97097, 23, 1, 1, 629, 45745),
|
||||
(98973, 23, 0, 0, 629, 45745),
|
||||
(102830, 23, 0, 0, 1155, 45745),
|
||||
(97182, 23, 1, 1, 629, 45745),
|
||||
(102742, 23, 0, 0, 1155, 45745),
|
||||
(103605, 23, 1, 1, 629, 45745),
|
||||
(102769, 23, 0, 0, 1155, 45745),
|
||||
(97119, 23, 0, 0, 629, 45745),
|
||||
(188142, 23, 0, 0, 2219, 45745),
|
||||
(102326, 23, 0, 0, 1155, 45745),
|
||||
(97365, 23, 0, 0, 629, 45745),
|
||||
(102327, 23, 0, 0, 1155, 45745),
|
||||
(99188, 23, 1, 1, 629, 45745),
|
||||
(98919, 23, 0, 0, 629, 45745),
|
||||
(103115, 23, 0, 0, 1155, 45745),
|
||||
(102325, 23, 0, 0, 1155, 45745),
|
||||
(98291, 23, 0, 0, 1155, 45745);
|
||||
|
||||
DELETE FROM `creature_model_info` WHERE `DisplayID`=106378;
|
||||
INSERT INTO `creature_model_info` (`DisplayID`, `BoundingRadius`, `CombatReach`, `DisplayID_Other_Gender`, `VerifiedBuild`) VALUES
|
||||
(106378, 0.372000008821487426, 1.5, 0, 45745);
|
||||
|
||||
UPDATE `creature_model_info` SET `VerifiedBuild`=45745 WHERE `DisplayID` IN (26725, 30710, 67556, 66181, 66184, 66183, 67179, 25801, 67001, 64200, 64467, 25630, 70529, 66102, 66103, 27824, 66090, 65823);
|
||||
UPDATE `creature_model_info` SET `BoundingRadius`=1.549580812454223632, `CombatReach`=0, `VerifiedBuild`=45745 WHERE `DisplayID`=65753;
|
||||
|
||||
-- Creature Equip Template
|
||||
DELETE FROM `creature_equip_template` WHERE (`ID`=1 AND `CreatureID` IN (96756,102896,97200,114712,97043,102375,102104,102894,97185,96754,97097,98973,97182,102326,97365,99188,98919,98291));
|
||||
INSERT INTO `creature_equip_template` (`CreatureID`, `ID`, `ItemID1`, `AppearanceModID1`, `ItemVisual1`, `ItemID2`, `AppearanceModID2`, `ItemVisual2`, `ItemID3`, `AppearanceModID3`, `ItemVisual3`, `VerifiedBuild`) VALUES
|
||||
(96756, 1, 129189, 0, 0, 0, 0, 0, 0, 0, 0, 45745), -- Ymiron, the Fallen King
|
||||
(102896, 1, 127346, 0, 0, 77408, 0, 0, 0, 0, 0, 45745), -- Enslaved Shieldmaiden
|
||||
(97200, 1, 132557, 0, 0, 0, 0, 0, 0, 0, 0, 45745), -- Seacursed Soulkeeper
|
||||
(114712, 1, 61297, 0, 0, 0, 0, 0, 0, 0, 0, 45745), -- Runecarver Slave
|
||||
(97043, 1, 81357, 0, 0, 0, 0, 0, 0, 0, 0, 45745), -- Seacursed Slaver
|
||||
(102375, 1, 61297, 0, 0, 0, 0, 0, 0, 0, 0, 45745), -- Runecarver Slave
|
||||
(102104, 1, 127346, 0, 0, 77408, 0, 0, 0, 0, 0, 45745), -- Enslaved Shieldmaiden
|
||||
(102894, 1, 130196, 0, 0, 0, 0, 0, 0, 0, 0, 45745), -- Runecarver Slave
|
||||
(97185, 1, 115802, 0, 0, 0, 0, 0, 0, 0, 0, 45745), -- The Grimewalker
|
||||
(96754, 1, 88793, 0, 0, 0, 0, 0, 0, 0, 0, 45745), -- Harbaron
|
||||
(97097, 1, 76287, 0, 0, 107823, 0, 0, 0, 0, 0, 45745), -- Helarjar Champion
|
||||
(98973, 1, 106837, 0, 0, 106837, 0, 0, 0, 0, 0, 45745), -- Skeletal Warrior
|
||||
(97182, 1, 118083, 0, 0, 6341, 0, 0, 0, 0, 0, 45745), -- Night Watch Mariner
|
||||
(102326, 1, 81357, 0, 0, 0, 0, 0, 0, 0, 0, 45745), -- Seacursed Rower
|
||||
(97365, 1, 35942, 0, 0, 0, 0, 0, 0, 0, 0, 45745), -- Seacursed Mistmender
|
||||
(99188, 1, 113562, 0, 0, 56173, 0, 0, 0, 0, 0, 45745), -- Waterlogged Soul Guard
|
||||
(98919, 1, 77076, 0, 0, 75009, 0, 0, 0, 0, 0, 45745), -- Seacursed Swiftblade
|
||||
(98291, 1, 81357, 0, 0, 0, 0, 0, 0, 0, 0, 45745); -- Seacursed Rower
|
||||
|
||||
-- Vendor Data
|
||||
DELETE FROM `npc_vendor` WHERE (`entry`=188142 AND `item`=191734 AND `ExtendedCost`=2 AND `type`=1);
|
||||
INSERT INTO `npc_vendor` (`entry`, `slot`, `item`, `maxcount`, `ExtendedCost`, `type`, `PlayerConditionID`, `IgnoreFiltering`, `VerifiedBuild`) VALUES
|
||||
(188142, 1, 191734, 0, 2, 1, 0, 0, 45745); -- -Unknown-
|
||||
|
||||
-- Vehicle data
|
||||
DELETE FROM `vehicle_template_accessory` WHERE `entry` IN (97043, 101013, 102108, 102327, 102325);
|
||||
INSERT INTO `vehicle_template_accessory` (`entry`, `accessory_entry`, `seat_id`, `minion`, `description`, `summontype`, `summontimer`) VALUES
|
||||
(97043, 97208, 0, 0, 'Seacursed Slaver - Spear', 6, 3000000), -- Seacursed Slaver - Spear
|
||||
(101013, 102375, 0, 0, 'Captured Runecarver - Runecarver Slave', 6, 3000000), -- Captured Runecarver - Runecarver Slave
|
||||
(102108, 102104, 0, 0, 'Captured Shieldmaiden - Enslaved Shieldmaiden', 6, 3000000), -- Captured Shieldmaiden - Enslaved Shieldmaiden
|
||||
(102327, 102326, 0, 0, 'Seacursed Rower - Seacursed Rower', 6, 3000000), -- Seacursed Rower - Seacursed Rower
|
||||
(102325, 98291, 0, 0, 'Seacursed Rower - Seacursed Rower', 6, 3000000); -- Seacursed Rower - Seacursed Rower
|
||||
|
||||
-- Spellclick data
|
||||
DELETE FROM `npc_spellclick_spells` WHERE `npc_entry` IN (97043, 101013, 102108, 102327, 102325);
|
||||
INSERT INTO `npc_spellclick_spells` (`npc_entry`, `spell_id`, `cast_flags`, `user_type`) VALUES
|
||||
(97043, 46598, 0, 0),
|
||||
(101013, 46598, 0, 0),
|
||||
(102108, 46598, 0, 0),
|
||||
(102327, 46598, 0, 0),
|
||||
(102325, 46598, 0, 0);
|
||||
|
||||
-- Creature movement data
|
||||
DELETE FROM `creature_template_movement` WHERE `CreatureID` IN (97163, 104906, 102326, 103115, 188142);
|
||||
INSERT INTO `creature_template_movement` (`CreatureId`, `Ground`, `Swim`, `Flight`, `Rooted`, `Chase`, `Random`, `InteractionPauseTimer`) VALUES
|
||||
(97163, 0, 0, 1, 0, 0, 0, NULL),
|
||||
(104906, 0, 0, 1, 0, 0, 0, NULL),
|
||||
(102326, 0, 0, 1, 0, 0, 0, NULL),
|
||||
(103115, 0, 0, 1, 0, 0, 0, NULL),
|
||||
(188142, 0, 0, 1, 0, 0, 0, NULL);
|
||||
|
||||
-- Waypoints for CGUID+21
|
||||
SET @PATH := (@CGUID+21) * 10;
|
||||
DELETE FROM `waypoint_data` WHERE `id`= @PATH;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
|
||||
(@PATH, 0, 7331.46, 7303.579, 42.65778, NULL, 0),
|
||||
(@PATH, 1, 7318.952, 7304.669, 40.21505, NULL, 0),
|
||||
(@PATH, 2, 7305.603, 7302.976, 38.15468, NULL, 0),
|
||||
(@PATH, 3, 7294.541, 7300.516, 36.76821, NULL, 6391),
|
||||
(@PATH, 4, 7305.603, 7302.976, 38.15468, NULL, 0),
|
||||
(@PATH, 5, 7318.952, 7304.669, 40.21505, NULL, 0),
|
||||
(@PATH, 6, 7345.695, 7301.239, 42.85762, NULL, 5529);
|
||||
|
||||
UPDATE `creature` SET `position_x`= 7331.46, `position_y`= 7303.579, `position_z`= 42.65778, `orientation`= 0, `wander_distance`= 0, `MovementType`= 2 WHERE `guid`= @CGUID+21;
|
||||
DELETE FROM `creature_addon` WHERE `guid`= @CGUID+21;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `bytes2`) VALUES
|
||||
(@CGUID+21, @PATH, 1);
|
||||
|
||||
-- Waypoints for CGUID+96
|
||||
SET @PATH := (@CGUID+96) * 10;
|
||||
DELETE FROM `waypoint_data` WHERE `id`= @PATH;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
|
||||
(@PATH, 0, 2914.097, 755.8143, 515.3473, NULL, 0),
|
||||
(@PATH, 1, 2917.986, 767.842, 515.3473, NULL, 0),
|
||||
(@PATH, 2, 2915.669, 784.283, 515.3473, NULL, 0),
|
||||
(@PATH, 3, 2915.939, 801.7274, 515.3473, NULL, 0),
|
||||
(@PATH, 4, 2915.533, 817.2031, 515.3473, NULL, 3894),
|
||||
(@PATH, 5, 2919.579, 792.8871, 515.3473, NULL, 0),
|
||||
(@PATH, 6, 2916.345, 771.2934, 515.3473, NULL, 0),
|
||||
(@PATH, 7, 2916.881, 755.4028, 515.3473, NULL, 0),
|
||||
(@PATH, 8, 2907.13, 740.1441, 515.1667, NULL, 3517);
|
||||
|
||||
UPDATE `creature` SET `position_x`= 2914.097, `position_y`= 755.8143, `position_z`= 515.3473, `orientation`= 0, `wander_distance`= 0, `MovementType`= 2 WHERE `guid`= @CGUID+96;
|
||||
DELETE FROM `creature_addon` WHERE `guid`= @CGUID+96;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `bytes2`, `auras`) VALUES
|
||||
(@CGUID+96, @PATH, 1, '199867 203605 67236');
|
||||
|
||||
-- Waypoints for CGUID+88
|
||||
SET @PATH := (@CGUID+88) * 10;
|
||||
DELETE FROM `waypoint_data` WHERE `id`= @PATH;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
|
||||
(@PATH, 0, 2953.359, 807.3542, 515.3472, NULL, 3462),
|
||||
(@PATH, 1, 2950.283, 788.9114, 515.3148, NULL, 0),
|
||||
(@PATH, 2, 2951.185, 777.4531, 515.3473, NULL, 0),
|
||||
(@PATH, 3, 2955.208, 763.5643, 515.3473, NULL, 0),
|
||||
(@PATH, 4, 2958.746, 749.3559, 515.3105, NULL, 0),
|
||||
(@PATH, 5, 2961.375, 740.4375, 515.2009, NULL, 4026),
|
||||
(@PATH, 6, 2952.206, 762.8524, 515.3473, NULL, 0),
|
||||
(@PATH, 7, 2951.002, 781.0191, 515.3473, NULL, 0),
|
||||
(@PATH, 8, 2951.074, 804.0816, 515.3473, NULL, 0);
|
||||
|
||||
UPDATE `creature` SET `position_x`= 2953.359, `position_y`= 807.3542, `position_z`= 515.3472, `orientation`= 0, `wander_distance`= 0, `MovementType`= 2 WHERE `guid`= @CGUID+88;
|
||||
DELETE FROM `creature_addon` WHERE `guid`= @CGUID+88;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `bytes2`, `auras`) VALUES
|
||||
(@CGUID+88, @PATH, 1, '199867 203605 67236');
|
||||
|
||||
-- Waypoints for CGUID+111
|
||||
DELETE FROM `creature_formations` WHERE `leaderGUID` = @CGUID+111;
|
||||
INSERT INTO `creature_formations`(`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`, `point_1`, `point_2`) VALUES
|
||||
(@CGUID+111, @CGUID+111, 0, 0, 515, 0, 0),
|
||||
(@CGUID+111, @CGUID+110, 4, 60, 515, 0, 0),
|
||||
(@CGUID+111, @CGUID+109, 4, 300, 515, 0, 0);
|
||||
|
||||
SET @PATH := (@CGUID+111) * 10;
|
||||
DELETE FROM `waypoint_data` WHERE `id`= @PATH;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
|
||||
(@PATH, 0, 2914.565, 777.5887, 515.3473, NULL, 0),
|
||||
(@PATH, 1, 2915.609, 775.1066, 515.3473, NULL, 0),
|
||||
(@PATH, 2, 2916.75, 772.611, 515.3473, NULL, 0),
|
||||
(@PATH, 3, 2917.24, 770.0062, 515.3473, NULL, 0),
|
||||
(@PATH, 4, 2916.994, 766.8852, 515.3473, NULL, 0),
|
||||
(@PATH, 5, 2916.538, 763.8939, 515.3473, NULL, 0),
|
||||
(@PATH, 6, 2916, 760.992, 515.3473, NULL, 0),
|
||||
(@PATH, 7, 2915.459, 758.1066, 515.3473, NULL, 0),
|
||||
(@PATH, 8, 2914.952, 755.3345, 515.3473, NULL, 0),
|
||||
(@PATH, 9, 2913.556, 752.6577, 515.3473, NULL, 0),
|
||||
(@PATH, 10, 2911.918, 750.1252, 515.3336, NULL, 0),
|
||||
(@PATH, 11, 2910.191, 747.5646, 515.2569, NULL, 0),
|
||||
(@PATH, 12, 2908.546, 745.1619, 515.2296, NULL, 0),
|
||||
(@PATH, 13, 2906.923, 742.7565, 515.205, NULL, 0),
|
||||
(@PATH, 14, 2905.326, 740.3585, 515.1804, NULL, 0),
|
||||
(@PATH, 15, 2905.728, 738.9268, 515.1577, NULL, 0),
|
||||
(@PATH, 16, 2907.87, 742.7443, 515.1993, NULL, 0),
|
||||
(@PATH, 17, 2910.502, 742.8791, 515.1858, NULL, 0),
|
||||
(@PATH, 18, 2913.917, 743.8436, 515.1774, NULL, 0),
|
||||
(@PATH, 19, 2915.792, 745.5837, 515.2333, NULL, 0),
|
||||
(@PATH, 20, 2918.852, 746.7952, 515.2811, NULL, 0),
|
||||
(@PATH, 21, 2920.503, 748.5027, 515.3348, NULL, 0),
|
||||
(@PATH, 22, 2923.536, 749.7312, 515.3473, NULL, 0),
|
||||
(@PATH, 23, 2925.269, 750.8078, 515.3473, NULL, 0),
|
||||
(@PATH, 24, 2931.779, 751.6814, 515.8528, NULL, 0),
|
||||
(@PATH, 25, 2935.634, 750.7319, 516.1492, NULL, 0),
|
||||
(@PATH, 26, 2937.973, 751.4182, 515.3472, NULL, 0),
|
||||
(@PATH, 27, 2940.08, 751.4274, 515.3472, NULL, 0),
|
||||
(@PATH, 28, 2940.494, 750.8101, 515.3472, NULL, 0),
|
||||
(@PATH, 29, 2937.896, 750.5283, 515.3472, NULL, 0),
|
||||
(@PATH, 30, 2945.26, 748.0353, 515.2857, NULL, 0),
|
||||
(@PATH, 31, 2946.659, 748.4257, 515.2914, NULL, 0),
|
||||
(@PATH, 32, 2947.729, 746.9049, 515.2731, NULL, 0),
|
||||
(@PATH, 33, 2950.546, 745.777, 515.2608, NULL, 0),
|
||||
(@PATH, 34, 2952.177, 745.1378, 515.2538, NULL, 0),
|
||||
(@PATH, 35, 2955.543, 743.8461, 515.2398, NULL, 0),
|
||||
(@PATH, 36, 2957.201, 744.9998, 515.2552, NULL, 0),
|
||||
(@PATH, 37, 2952.52, 746.7405, 515.274, NULL, 0),
|
||||
(@PATH, 38, 2952.319, 749.3509, 515.3065, NULL, 0),
|
||||
(@PATH, 39, 2951.558, 751.3315, 515.3307, NULL, 0),
|
||||
(@PATH, 40, 2950.161, 752.7147, 515.3472, NULL, 0),
|
||||
(@PATH, 41, 2949.603, 756.7652, 515.3473, NULL, 0),
|
||||
(@PATH, 42, 2948.657, 758.8074, 515.3473, NULL, 0),
|
||||
(@PATH, 43, 2950.01, 766.4726, 515.3473, NULL, 0),
|
||||
(@PATH, 44, 2949.416, 767.7063, 515.3473, NULL, 0),
|
||||
(@PATH, 45, 2949.896, 770.3118, 515.3473, NULL, 0),
|
||||
(@PATH, 46, 2950.257, 773.6918, 515.3473, NULL, 0),
|
||||
(@PATH, 47, 2950.725, 776.4277, 515.3473, NULL, 0),
|
||||
(@PATH, 48, 2951.183, 778.9099, 515.3473, NULL, 0),
|
||||
(@PATH, 49, 2951.16, 780.7759, 515.3473, NULL, 0),
|
||||
(@PATH, 50, 2951.024, 783.5856, 515.3473, NULL, 0),
|
||||
(@PATH, 51, 2950.814, 786.3436, 515.3129, NULL, 0),
|
||||
(@PATH, 52, 2950.511, 789.1048, 515.3163, NULL, 0),
|
||||
(@PATH, 53, 2949.213, 791.381, 515.3138, NULL, 0),
|
||||
(@PATH, 54, 2945.876, 794.1111, 515.3472, NULL, 0),
|
||||
(@PATH, 55, 2943.651, 794.7491, 515.3472, NULL, 0),
|
||||
(@PATH, 56, 2940.857, 795.9189, 515.3472, NULL, 0),
|
||||
(@PATH, 57, 2936.697, 796.4108, 515.3473, NULL, 0),
|
||||
(@PATH, 58, 2933.621, 796.1574, 515.3473, NULL, 0),
|
||||
(@PATH, 59, 2930.422, 796.03, 515.3473, NULL, 0),
|
||||
(@PATH, 60, 2927.324, 795.9777, 515.3473, NULL, 0),
|
||||
(@PATH, 61, 2925.234, 795.9594, 515.3473, NULL, 0),
|
||||
(@PATH, 62, 2921.336, 796.8814, 515.3473, NULL, 0),
|
||||
(@PATH, 63, 2919.015, 798.8585, 515.3473, NULL, 0),
|
||||
(@PATH, 64, 2916.911, 800.9409, 515.3473, NULL, 0),
|
||||
(@PATH, 65, 2914.68, 802.9665, 515.3473, NULL, 0),
|
||||
(@PATH, 66, 2914.791, 805.3867, 515.3473, NULL, 0),
|
||||
(@PATH, 67, 2916.588, 810.1094, 515.3831, NULL, 0),
|
||||
(@PATH, 68, 2918.202, 813.5178, 515.3473, NULL, 0),
|
||||
(@PATH, 69, 2919.269, 815.6227, 515.3473, NULL, 0),
|
||||
(@PATH, 70, 2918.104, 812.7483, 515.3473, NULL, 0),
|
||||
(@PATH, 71, 2917.291, 812.8723, 515.3473, NULL, 0),
|
||||
(@PATH, 72, 2915.927, 813.1256, 515.3473, NULL, 0),
|
||||
(@PATH, 73, 2914.051, 810.0168, 515.3473, NULL, 0),
|
||||
(@PATH, 74, 2914.186, 802.736, 515.3473, NULL, 0),
|
||||
(@PATH, 75, 2914.271, 800.7747, 515.3473, NULL, 0),
|
||||
(@PATH, 76, 2915.087, 798.6162, 515.3473, NULL, 0),
|
||||
(@PATH, 77, 2916.352, 795.5766, 515.3473, NULL, 0),
|
||||
(@PATH, 78, 2916.23, 793.2835, 515.3474, NULL, 0),
|
||||
(@PATH, 79, 2917.052, 788.8743, 515.3474, NULL, 0),
|
||||
(@PATH, 80, 2915.875, 786.5089, 515.3474, NULL, 0),
|
||||
(@PATH, 81, 2915.302, 784.2242, 515.3473, NULL, 0),
|
||||
(@PATH, 82, 2914.867, 782.5408, 515.3473, NULL, 0);
|
||||
|
||||
UPDATE `creature` SET `position_x`= 2914.565, `position_y`= 777.5887, `position_z`= 515.3473, `orientation`= 0, `wander_distance`= 0, `MovementType`= 2 WHERE `guid`= @CGUID+111;
|
||||
DELETE FROM `creature_addon` WHERE `guid`= @CGUID+111;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `bytes2`) VALUES
|
||||
(@CGUID+111, @PATH, 1);
|
||||
@@ -0,0 +1,27 @@
|
||||
SET @OGUID := 501777;
|
||||
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+9;
|
||||
INSERT INTO `gameobject` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `PhaseGroup`, `position_x`, `position_y`, `position_z`, `orientation`, `rotation0`, `rotation1`, `rotation2`, `rotation3`, `spawntimesecs`, `animprogress`, `state`, `VerifiedBuild`) VALUES
|
||||
(@OGUID+0, 195256, 34, 717, 717, '1', 0, 0, 75.0807342529296875, -3.46844291687011718, -25.6062335968017578, 2.216565132141113281, 0, 0, 0.894933700561523437, 0.44619917869567871, 7200, 255, 1, 45745), -- Standing, Exterior, Medium - Brewfest (Area: The Stockade - Difficulty: Normal)
|
||||
(@OGUID+1, 195256, 34, 717, 717, '1', 0, 0, 124.8732223510742187, -3.53060889244079589, -25.6062335968017578, 0.767943859100341796, 0, 0, 0.374606132507324218, 0.927184045314788818, 7200, 255, 1, 45745), -- Standing, Exterior, Medium - Brewfest (Area: The Stockade - Difficulty: Normal)
|
||||
(@OGUID+2, 195256, 34, 717, 717, '1', 0, 0, 133.368682861328125, 4.94775390625, -25.6062335968017578, 3.769911527633666992, 0, 0, -0.95105648040771484, 0.309017121791839599, 7200, 255, 1, 45745), -- Standing, Exterior, Medium - Brewfest (Area: The Stockade - Difficulty: Normal)
|
||||
(@OGUID+3, 195256, 34, 717, 717, '1', 0, 0, 75.0347747802734375, 4.980967998504638671, -25.6062335968017578, 3.874631166458129882, 0, 0, -0.93358039855957031, 0.358368009328842163, 7200, 255, 1, 45745), -- Standing, Exterior, Medium - Brewfest (Area: The Stockade - Difficulty: Normal)
|
||||
(@OGUID+4, 195256, 34, 717, 717, '1', 0, 0, 147.2406158447265625, 89.62396240234375, -33.9395637512207031, 3.560472726821899414, 0, 0, -0.97814750671386718, 0.207912087440490722, 7200, 255, 1, 45745), -- Standing, Exterior, Medium - Brewfest (Area: The Stockade - Difficulty: Normal)
|
||||
(@OGUID+5, 195256, 34, 717, 717, '1', 0, 0, 111.367950439453125, -88.3172607421875, -33.9395637512207031, 0.436331570148468017, 0, 0, 0.216439247131347656, 0.976296067237854003, 7200, 255, 1, 45745), -- Standing, Exterior, Medium - Brewfest (Area: The Stockade - Difficulty: Normal)
|
||||
(@OGUID+6, 195256, 34, 717, 717, '1', 0, 0, 124.9492034912109375, 5.040185928344726562, -25.6062335968017578, 5.532694816589355468, 0, 0, -0.3665008544921875, 0.93041771650314331, 7200, 255, 1, 45745), -- Standing, Exterior, Medium - Brewfest (Area: The Stockade - Difficulty: Normal)
|
||||
(@OGUID+7, 195256, 34, 717, 717, '1', 0, 0, 141.8401336669921875, 92.261383056640625, -33.9395637512207031, 4.904376029968261718, 0, 0, -0.636077880859375, 0.771624863147735595, 7200, 255, 1, 45745), -- Standing, Exterior, Medium - Brewfest (Area: The Stockade - Difficulty: Normal)
|
||||
(@OGUID+8, 195256, 34, 717, 717, '1', 0, 0, 133.4145050048828125, -3.47149205207824707, -25.6062335968017578, 2.373644113540649414, 0, 0, 0.927183151245117187, 0.37460830807685852, 7200, 255, 1, 45745), -- Standing, Exterior, Medium - Brewfest (Area: The Stockade - Difficulty: Normal)
|
||||
(@OGUID+9, 195256, 34, 717, 717, '1', 0, 0, 116.36749267578125, -90.6798171997070312, -33.9395637512207031, 1.902408957481384277, 0, 0, 0.814115524291992187, 0.580702960491180419, 7200, 255, 1, 45745); -- Standing, Exterior, Medium - Brewfest (Area: The Stockade - Difficulty: Normal)
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=24 AND `guid` BETWEEN @OGUID+0 AND @OGUID+9;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(24, @OGUID+0),
|
||||
(24, @OGUID+1),
|
||||
(24, @OGUID+2),
|
||||
(24, @OGUID+3),
|
||||
(24, @OGUID+4),
|
||||
(24, @OGUID+5),
|
||||
(24, @OGUID+6),
|
||||
(24, @OGUID+7),
|
||||
(24, @OGUID+8),
|
||||
(24, @OGUID+9);
|
||||
@@ -0,0 +1,79 @@
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=0 WHERE `entry`=3008; -- Mak
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=1290 WHERE `entry`=6928; -- Innkeeper Grosk
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=12017, `minlevel`=35, `maxlevel`=35, `speed_walk`=1 WHERE `entry`=45407; -- Ibdil the Mender
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=15131 WHERE `entry`=14741; -- Huntsman Markhor
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=18677 WHERE `entry`=96362; -- Izzy Hollyfizzle
|
||||
UPDATE `creature_template` SET `minlevel`=50, `maxlevel`=50 WHERE `entry`=126330; -- Rakle the Wretched
|
||||
UPDATE `creature_template` SET `minlevel`=50, `maxlevel`=50 WHERE `entry`=140960; -- Yuwija
|
||||
UPDATE `creature_template` SET `minlevel`=50, `maxlevel`=50 WHERE `entry`=143555; -- Xander Silberman
|
||||
UPDATE `creature_template` SET `minlevel`=50, `maxlevel`=50 WHERE `entry`=154002; -- Atolia Seapearl
|
||||
|
||||
DELETE FROM `gossip_menu` WHERE `MenuID` IN (21447,22817,24257,24288,24386,24406,25235,25278,25592,25644,25680,25688,26065,26067,26177,26421,26571,26600,26642);
|
||||
INSERT INTO `gossip_menu` (`MenuID`, `TextID`, `VerifiedBuild`) VALUES
|
||||
(21447, 32653, 45745), -- 126330 (Rakle the Wretched)
|
||||
(22817, 35328, 45745), -- 140960 (Yuwija)
|
||||
(24257, 37995, 45745), -- 154002 (Atolia Seapearl)
|
||||
(24288, 38084, 45745), -- 151633 (Karn Deepweld)
|
||||
(24386, 38248, 45745), -- 143555 (Xander Silberman)
|
||||
(24406, 38308, 45745), -- 155496 (Wrathion)
|
||||
(25235, 39780, 45745), -- 159238 (Atticus)
|
||||
(25278, 40584, 45745), -- 162804 (Ve'nari)
|
||||
(25592, 40426, 45745), -- 167603 (Fixer Bixie)
|
||||
(25644, 40480, 45745), -- 161678 (Mama Tomalin)
|
||||
(25680, 40532, 45745), -- 168032 (Flwngyrr)
|
||||
(25688, 40559, 45745), -- 168122 (Foreman Scug)
|
||||
(26065, 39082, 45745), -- 160091 (Ta'ruca)
|
||||
(26067, 39082, 45745), -- 171808 (Ta'tru)
|
||||
(26177, 41539, 45745), -- 161298 (Nourman)
|
||||
(26421, 41905, 45745), -- 166640 (Au'larrynar)
|
||||
(26571, 42199, 45745), -- 174766 (Cortinarius)
|
||||
(26600, 42332, 45745), -- 173705 (Archivist Janeera)
|
||||
(26642, 42366, 45745); -- 158556 (Aithlyn)
|
||||
|
||||
DELETE FROM `gossip_menu_option` WHERE `MenuID` IN (5721,7047,8047,11573,15131,15133,21447,22817,24257,24288,24386,24406,25235,25278,25592,25644,25680,25688,26065,26067,26177,26421,26571,26600,26642);
|
||||
INSERT INTO `gossip_menu_option` (`MenuID`, `OptionID`, `OptionNpc`, `OptionText`, `OptionBroadcastTextId`, `OptionNpcFlag`, `Language`, `ActionMenuID`, `ActionPoiID`, `BoxCoded`, `BoxMoney`, `BoxText`, `BoxBroadcastTextID`, `VerifiedBuild`) VALUES
|
||||
(5721, 0, 1, 'Show me what hooch you\'ve got to sell, Kreeg.', 9372, 128, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(5721, 1, 0, 'What do you mean, buy?! I\'m the king now... and it\'s good to be the king!', 9373, 1, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(7047, 0, 1, 'Let\'s see what you have.', 11820, 128, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(8047, 0, 1, 'Please repair my items.', 17481, 128, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(11573, 0, 1, 'Show me your goods, Denni\'ka.', 41855, 512, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(15131, 1, 1, 'I\'m looking for a lost companion.', 56613, 128, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(15131, 2, 0, 'I\'d like to heal and revive my battle pets.', 64115, 1, 0, 0, 0, 0, 1000, 'A small fee for supplies is required.', 66369, 45745),
|
||||
(15131, 3, 0, 'I\'d like to heal and revive my battle pets.', 64115, 1, 0, 15145, 0, 0, 0, NULL, 0, 45745),
|
||||
(15133, 1, 1, 'I\'m looking for a lost companion.', 56613, 128, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(15133, 2, 0, 'I\'d like to heal and revive my battle pets.', 64115, 1, 0, 0, 0, 0, 1000, 'A small fee for supplies is required.', 66369, 45745),
|
||||
(15133, 3, 0, 'I\'d like to heal and revive my battle pets.', 64115, 1, 0, 15145, 0, 0, 0, NULL, 0, 45745),
|
||||
(21447, 0, 5, 'May I rest here?', 41414, 65536, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(21447, 1, 1, 'Show me your wares.', 58437, 128, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(22817, 0, 5, 'Make this inn your home.', 2822, 65536, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(22817, 1, 1, 'Let me browse your goods.', 2823, 128, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(24257, 1, 1, 'I wish to browse your wares.', 4424, 128, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(24288, 1, 1, 'Let me browse your goods.', 2823, 128, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(24386, 0, 1, 'I wish to browse your wares.', 4424, 128, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(24406, 0, 1, 'I would like to exchange my Coalescing Visions and Corrupted Mementos.', 186484, 128, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(24406, 2, 0, 'What lies next for you, Wrathion?', 188093, 1, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(25235, 0, 0, 'I have a fashion accessory for you.', 0, 1, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(25235, 1, 0, 'I need your assistance.', 0, 1, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(25235, 2, 1, 'Let me browse your goods.', 2823, 128, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(25278, 5, 1, 'What do you have to trade?', 0, 128, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(25278, 11, 0, 'Your cartel says they know what you did. Is there something you\'re not telling me?', 0, 1, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(25278, 17, 0, '<Listen to Ve\'nari\'s message>', 0, 1, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(25592, 0, 1, 'Let me browse your goods.', 2823, 128, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(25644, 0, 5, 'Make this inn your home.', 2822, 65536, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(25644, 1, 1, 'Let me browse your goods.', 2823, 128, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(25644, 2, 0, 'I have a fashion accessory for you.', 0, 1, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(25680, 0, 1, 'I would like to buy from you.', 2583, 128, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(25680, 1, 5, 'Make this inn your home.', 2822, 65536, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(25688, 0, 1, 'Would you have anything to trade for Infused Rubies?', 0, 128, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(26065, 0, 1, 'What sort of delicacies do you have for sale?', 0, 128, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(26067, 0, 1, 'I am looking to make a trade.', 0, 128, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(26177, 0, 1, 'Would you have anything to trade for Infused Rubies?', 0, 128, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(26421, 0, 1, 'Let me browse your goods.', 2823, 128, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(26571, 0, 1, 'Show me what you have available.', 108794, 128, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(26600, 0, 1, 'I wish to browse your wares.', 4424, 128, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(26642, 0, 1, 'How may I help you?', 30864, 128, 0, 0, 0, 0, 0, NULL, 0, 45745);
|
||||
|
||||
UPDATE `gossip_menu_option` SET `OptionBroadcastTextId`=4308 WHERE `MenuID`=1290 AND `OptionID`=0;
|
||||
UPDATE `gossip_menu_option` SET `OptionBroadcastTextId`=2822 WHERE `MenuID`=1290 AND `OptionID`=1;
|
||||
UPDATE `gossip_menu_option` SET `VerifiedBuild`=45745 WHERE `MenuID`=1290;
|
||||
UPDATE `gossip_menu_option` SET `VerifiedBuild`=45745 WHERE `MenuID`=12017;
|
||||
@@ -0,0 +1,33 @@
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=0 WHERE `entry`=5119; -- Hegnar Swiftaxe
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=9821 WHERE `entry`=15722; -- Squire Leoren Mal'derath
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=9821 WHERE `entry`=19019; -- Luftasia
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=15134 WHERE `entry`=26377; -- Squire Percy
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=23691 WHERE `entry`=6727; -- Innkeeper Brianna
|
||||
|
||||
DELETE FROM `gossip_menu` WHERE (`MenuID`=20405 AND `TextID`=29878) OR (`MenuID`=20356 AND `TextID`=30445) OR (`MenuID`=23691 AND `TextID`=820);
|
||||
INSERT INTO `gossip_menu` (`MenuID`, `TextID`, `VerifiedBuild`) VALUES
|
||||
(20405, 29878, 45745), -- 110810 (Almenis)
|
||||
(20356, 30445, 45745), -- 112323 (Amurra Thistledew)
|
||||
(23691, 820, 45745); -- 6727 (Innkeeper Brianna)
|
||||
|
||||
DELETE FROM `gossip_menu_option` WHERE (`OptionID`=0 AND `MenuID` IN (20356,20405,6568)) OR (`OptionID`=1 AND `MenuID` IN (20004,20177));
|
||||
INSERT INTO `gossip_menu_option` (`MenuID`, `OptionID`, `OptionNpc`, `OptionText`, `OptionBroadcastTextId`, `OptionNpcFlag`, `Language`, `ActionMenuID`, `ActionPoiID`, `BoxCoded`, `BoxMoney`, `BoxText`, `BoxBroadcastTextID`, `VerifiedBuild`) VALUES
|
||||
(20356, 0, 1, 'Let\'s see what you have.', 11820, 128, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(20405, 0, 28, 'I can help you procure some valuable items.', 119001, 68719476736, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(6568, 0, 1, 'Show me what I can learn.', 10761, 128, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(20004, 1, 28, 'We await your request.', 121509, 68719476736, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(20177, 1, 0, 'Why can\'t I research Artifact Knowledge?', 130505, 1, 0, 21664, 0, 0, 0, NULL, 0, 45745);
|
||||
|
||||
DELETE FROM `gossip_menu_option` WHERE (`OptionID`=1 AND `MenuID` IN (23691,14674,23608)) OR (`OptionID`=0 AND `MenuID` IN (11100,14674,11095,2464,23691)) OR (`OptionID`=12 AND `MenuID`=15125) OR (`OptionID`=13 AND `MenuID`=15125) OR (`OptionID`=11 AND `MenuID`=15125);
|
||||
INSERT INTO `gossip_menu_option` (`MenuID`, `OptionID`, `OptionNpc`, `OptionText`, `OptionBroadcastTextId`, `OptionNpcFlag`, `Language`, `ActionMenuID`, `ActionPoiID`, `BoxCoded`, `BoxMoney`, `BoxText`, `BoxBroadcastTextID`, `VerifiedBuild`) VALUES
|
||||
(23691, 1, 1, 'Let me browse your goods.', 2823, 128, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(14674, 1, 1, 'What do you have for sale?', 10182, 128, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(11100, 0, 1, 'I wish to browse your wares.', 4424, 128, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(15125, 12, 0, 'Tell me about production professions.', 47107, 1, 0, 12186, 0, 0, 0, NULL, 0, 45745),
|
||||
(15125, 13, 1, 'Show me your wares, please.', 41360, 128, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(14674, 0, 5, 'Make this inn your home.', 2822, 65536, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(11095, 0, 1, 'I wish to browse your wares.', 4424, 128, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(2464, 0, 1, 'Let me browse your goods.', 2823, 128, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(23608, 1, 1, 'I wish to trade.', 122362, 128, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(23691, 0, 5, 'Make this inn your home.', 2822, 65536, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(15125, 11, 0, 'Tell me about gathering professions.', 47106, 1, 0, 12185, 0, 0, 0, NULL, 0, 45745);
|
||||
@@ -0,0 +1,285 @@
|
||||
DELETE FROM `gossip_menu` WHERE (`MenuID`=10637 AND `TextID`=14735) OR (`MenuID`=27404 AND `TextID`=41815) OR (`MenuID`=26132 AND `TextID`=41814) OR (`MenuID`=16820 AND `TextID`=24454) OR (`MenuID`=24215 AND `TextID`=37924) OR (`MenuID`=25652 AND `TextID`=40491) OR (`MenuID`=25591 AND `TextID`=7778) OR (`MenuID`=25955 AND `TextID`=41160) OR (`MenuID`=26145 AND `TextID`=41506) OR (`MenuID`=26091 AND `TextID`=41439) OR (`MenuID`=26122 AND `TextID`=41481) OR (`MenuID`=25654 AND `TextID`=40493) OR (`MenuID`=26924 AND `TextID`=42877) OR (`MenuID`=26775 AND `TextID`=42569);
|
||||
INSERT INTO `gossip_menu` (`MenuID`, `TextID`, `VerifiedBuild`) VALUES
|
||||
(10637, 14735, 45745), -- 35315 (Narimar)
|
||||
(27404, 41815, 45745), -- 171795 (Lady Moonberry)
|
||||
(26132, 41814, 45745), -- 171795 (Lady Moonberry)
|
||||
(16820, 24454, 45745), -- 81674 (Nisha)
|
||||
(24215, 37924, 45745), -- 153757 (Kelya Moonfall)
|
||||
(25652, 40491, 45745), -- 156295 (Courier Rokalai)
|
||||
(25591, 7778, 45745), -- 159421 (Cassius)
|
||||
(25955, 41160, 45745), -- 168427 (Artemede)
|
||||
(26145, 41506, 45745), -- 168485 (Apolon)
|
||||
(26091, 41439, 45745), -- 171816 (Paolone)
|
||||
(26122, 41481, 45745), -- 168430 (Dactylis)
|
||||
(25654, 40493, 45745), -- 167745 (Haephus)
|
||||
(26924, 42877, 45745), -- 168517 (Kalisthene)
|
||||
(26775, 42569, 45745); -- 176100 (Iona Skyblade)
|
||||
|
||||
DELETE FROM `gossip_menu_option` WHERE (`OptionID`=5 AND `MenuID` IN (26091,26145)) OR (`OptionID`=0 AND `MenuID` IN (10434,25654,26091,27404,25591,26122,26145,26775,24215,25652)) OR (`OptionID`=3 AND `MenuID` IN (26091,26145)) OR (`OptionID`=9 AND `MenuID`=26145) OR (`OptionID`=8 AND `MenuID` IN (26132,26145)) OR (`OptionID`=1 AND `MenuID` IN (25955,10637,26145,26091,16820)) OR (`OptionID`=2 AND `MenuID` IN (27404,26091,26145)) OR (`OptionID`=4 AND `MenuID` IN (26091,26145)) OR (`OptionID`=6 AND `MenuID`=26145);
|
||||
INSERT INTO `gossip_menu_option` (`MenuID`, `OptionID`, `OptionNpc`, `OptionText`, `OptionBroadcastTextId`, `OptionNpcFlag`, `Language`, `ActionMenuID`, `ActionPoiID`, `BoxCoded`, `BoxMoney`, `BoxText`, `BoxBroadcastTextID`, `VerifiedBuild`) VALUES
|
||||
(26091, 5, 0, 'Ring of Warding', 0, 1, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(10434, 0, 2, 'Show me where I can fly.', 12271, 8192, 0, 0, 0, 0, 0, NULL, 0, 45745), -- OptionBroadcastTextID: 12271 - 140511 - 158191
|
||||
(25654, 0, 32, 'Show me the Sanctum.', 0, 2199023255552, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(26091, 0, 0, 'Herald\'s Footpads', 0, 1, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(26091, 3, 0, 'Vial of Lichfrost', 0, 1, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(26145, 9, 0, 'What should I do next?', 0, 1, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(26145, 5, 0, 'What is equipment?', 0, 1, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(27404, 0, 0, 'The cycle led me down a different path, but yes, please allow me to commit to your covenant once again.', 0, 1, 0, 0, 0, 0, 0, 'This path will lead to you leaving your current covenant. \n\nAre you sure?', 0, 45745),
|
||||
(26132, 8, 0, 'I wish to rejoin the Night Fae.', 0, 1, 0, 27404, 0, 0, 0, NULL, 0, 45745),
|
||||
(25955, 1, 0, 'We are ready to challenge the Path of Ascension.', 0, 1, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(25591, 0, 2, 'Show me where I can fly.', 12271, 8192, 0, 0, 0, 0, 0, NULL, 0, 45745), -- OptionBroadcastTextID: 12271 - 140511 - 158191
|
||||
(26122, 0, 29, 'I\'d like to do some crafting.', 0, 274877906944, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(26145, 8, 0, 'What do I do if I\'m struggling against a memory?', 0, 1, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(26145, 0, 0, 'How do I capture new memories?', 0, 1, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(26775, 0, 45, 'What is my Renown with the Kyrian?', 0, 1, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(10637, 1, 2, 'Show me where I can fly.', 12271, 8192, 0, 0, 0, 0, 0, NULL, 0, 45745), -- OptionBroadcastTextID: 12271 - 140511 - 158191
|
||||
(27404, 2, 41, 'Remind me of the Night Fae', 0, 1, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(26145, 1, 0, 'How do I fight higher difficulty memories?', 0, 1, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(26145, 3, 0, 'I am having trouble finding materials.', 0, 1, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(24215, 0, 2, 'Show me where I can fly.', 12271, 8192, 0, 0, 0, 0, 0, NULL, 0, 45745), -- OptionBroadcastTextID: 12271 - 140511 - 158191
|
||||
(26091, 2, 0, 'Spiritforged Aegis', 0, 1, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(26091, 4, 0, 'Phial of Serenity', 0, 1, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(26145, 6, 0, 'What are charms?', 0, 1, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(26091, 1, 0, 'Deep Echo Trident', 0, 1, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(26145, 4, 0, 'Where can I find new blueprints?', 0, 1, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(25652, 0, 2, 'Show me where I can fly.', 12271, 8192, 0, 0, 0, 0, 0, NULL, 0, 45745), -- OptionBroadcastTextID: 12271 - 140511 - 158191
|
||||
(26145, 2, 0, 'What are Medallions of Service, and where can I get them?', 0, 1, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(16820, 1, 2, 'Show me where I can fly.', 12271, 8192, 0, 0, 0, 0, 0, NULL, 0, 45745); -- OptionBroadcastTextID: 12271 - 140511 - 158191
|
||||
|
||||
UPDATE `gossip_menu_option` SET `OptionNpcFlag`=128, `VerifiedBuild`=45745 WHERE (`MenuID`=9868 AND `OptionID`=1); -- OptionBroadcastTextID: 2823 - 7509 - 8097
|
||||
|
||||
UPDATE `creature_template` SET `HealthScalingExpansion`=0, `VerifiedBuild`=45745 WHERE `entry`=131123; -- Enchanted Tiki Mask
|
||||
UPDATE `creature_template` SET `HealthScalingExpansion`=0, `VerifiedBuild`=45745 WHERE `entry`=122968; -- Yazma
|
||||
UPDATE `creature_template` SET `HealthScalingExpansion`=0, `VerifiedBuild`=45745 WHERE `entry`=111290; -- Braxas the Fleshcarver
|
||||
|
||||
DELETE FROM `gameobject_template` WHERE `entry` IN (334231 /*Wrathion's Recorded Journal*/, 238827 /*Stool*/, 238821 /*Stool*/, 238822 /*Stool*/, 238819 /*Stool*/, 238823 /*Stool*/, 238820 /*Stool*/, 238828 /*Stool*/, 235325 /*Hooked Dagger*/, 236722 /*Statue Base*/, 230479 /*Garrison Building Horde Sparring Arena V3*/);
|
||||
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`, `Data34`, `ContentTuningId`, `VerifiedBuild`) VALUES
|
||||
(334231, 9, 9806, 'Wrathion\'s Recorded Journal', '', '', '', 1, 8032, 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, 45745), -- Wrathion's Recorded Journal
|
||||
(238827, 7, 16151, 'Stool', '', '', '', 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, 0, 45745), -- Stool
|
||||
(238821, 7, 16151, 'Stool', '', '', '', 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, 0, 45745), -- Stool
|
||||
(238822, 7, 16151, 'Stool', '', '', '', 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, 0, 45745), -- Stool
|
||||
(238819, 7, 16151, 'Stool', '', '', '', 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, 0, 45745), -- Stool
|
||||
(238823, 7, 16151, 'Stool', '', '', '', 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, 0, 45745), -- Stool
|
||||
(238820, 7, 16151, 'Stool', '', '', '', 0.999999940395355224, 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, 45745), -- Stool
|
||||
(238828, 7, 16151, 'Stool', '', '', '', 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, 0, 45745), -- Stool
|
||||
(235325, 10, 20413, 'Hooked Dagger', 'questinteract', 'Placing', '', 0.660000026226043701, 93, 0, 0, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 816, 45745), -- Hooked Dagger
|
||||
(236722, 5, 19151, 'Statue Base', '', '', '', 0.5, 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, 0, 45745), -- Statue Base
|
||||
(230479, 38, 18579, 'Garrison Building Horde Sparring Arena V3', '', '', '', 1, 1410, 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, 45745); -- Garrison Building Horde Sparring Arena V3
|
||||
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=348, `VerifiedBuild`=45745 WHERE `entry`=247615; -- Crown of Mavrana Mooncrest
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=348, `VerifiedBuild`=45745 WHERE `entry`=247614; -- Crown Pillar
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=335, `VerifiedBuild`=45745 WHERE `entry` IN (260268, 260263); -- Portal to Shal'Aran
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=335, `VerifiedBuild`=45745 WHERE `entry`=253393; -- Telemancy Beacon
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=335, `VerifiedBuild`=45745 WHERE `entry`=253134; -- Teleporter
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=348, `VerifiedBuild`=45745 WHERE `entry`=246492; -- Runescale Koi School
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=335, `VerifiedBuild`=45745 WHERE `entry`=257974; -- Wine Bottle
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=335, `VerifiedBuild`=45745 WHERE `entry`=257973; -- Fruit Basket
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=335, `VerifiedBuild`=45745 WHERE `entry`=257972; -- Lantern
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=335, `VerifiedBuild`=45745 WHERE `entry`=257971; -- Dusk Lily
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=335, `VerifiedBuild`=45745 WHERE `entry`=257970; -- Nightborne Planter
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=339, `VerifiedBuild`=45745 WHERE `entry`=253144; -- Teleportation Nexus
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=335, `VerifiedBuild`=45745 WHERE `entry`=247023; -- Shadowbloom
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=335, `VerifiedBuild`=45745 WHERE `entry`=246731; -- Elven Waypost
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=347, `VerifiedBuild`=45745 WHERE `entry`=246568; -- Felsoul Cage
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=348, `VerifiedBuild`=45745 WHERE `entry`=242411; -- Lyrelle's Summoning Stone
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=335, `VerifiedBuild`=45745 WHERE `entry`=266106; -- Legion Portal
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=335, `VerifiedBuild`=45745 WHERE `entry`=252107; -- Unpowered Telemancy Beacon
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=464, `VerifiedBuild`=45745 WHERE `entry`=280900; -- All
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=464, `VerifiedBuild`=45745 WHERE `entry`=280899; -- Yellow
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=464, `VerifiedBuild`=45745 WHERE `entry`=280898; -- Green
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=464, `VerifiedBuild`=45745 WHERE `entry`=280897; -- Blue
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=464, `VerifiedBuild`=45745 WHERE `entry`=280896; -- Red
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=464, `VerifiedBuild`=45745 WHERE `entry`=280902; -- All (Always Curtain)
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=464, `VerifiedBuild`=45745 WHERE `entry`=280901; -- All (Always Collision)
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=54, `VerifiedBuild`=45745 WHERE `entry`=205360; -- Portal to Temple of Earth
|
||||
UPDATE `gameobject_template` SET `Data0`=2858, `Data4`=50, `Data5`=75, `Data6`=30, `Data12`=679, `ContentTuningId`=679, `VerifiedBuild`=45745 WHERE `entry`=202750; -- Heartblossom
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=54, `VerifiedBuild`=45745 WHERE `entry`=205272; -- Portal to Stormwind
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=54, `VerifiedBuild`=45745 WHERE `entry`=204407; -- Incense Burner
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=54, `VerifiedBuild`=45745 WHERE `entry`=205359; -- Portal to Therazane's Throne
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=54, `VerifiedBuild`=45745 WHERE `entry`=205273; -- Portal to Orgrimmar
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data2`=1, `Data30`=21870, `ContentTuningId`=39, `VerifiedBuild`=45745 WHERE `entry`=185224; -- Cabal Chest
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=347, `VerifiedBuild`=45745 WHERE `entry`=252783; -- Arcway Outlet
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=347, `VerifiedBuild`=45745 WHERE `entry`=266301; -- Shal'dorei Foodstuff
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=347, `VerifiedBuild`=45745 WHERE `entry`=266298; -- Magically Purified Water
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=335, `VerifiedBuild`=45745 WHERE `entry`=251493; -- Shadefruit
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=335, `VerifiedBuild`=45745 WHERE `entry`=251494; -- Silver Jasmine
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=335, `VerifiedBuild`=45745 WHERE `entry`=251492; -- Purified Water
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=335, `VerifiedBuild`=45745 WHERE `entry`=251475; -- Manafruit Extractor
|
||||
UPDATE `gameobject_template` SET `Data19`=2, `ContentTuningId`=335, `VerifiedBuild`=45745 WHERE `entry`=252880; -- Treasure Chest
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=348, `VerifiedBuild`=45745 WHERE `entry`=242412; -- Ondri's Summoning Stone
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=335, `VerifiedBuild`=45745 WHERE `entry`=266171; -- Fel Rune
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=335, `VerifiedBuild`=45745 WHERE `entry`=266779; -- Bookshelf
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=335, `VerifiedBuild`=45745 WHERE `entry` IN (266774, 266793); -- Table
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=335, `VerifiedBuild`=45745 WHERE `entry`=266784; -- Crate
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=335, `VerifiedBuild`=45745 WHERE `entry`=252774; -- Ancient Mana Crystal
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=347, `VerifiedBuild`=45745 WHERE `entry`=267065; -- Nightborne Cage
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=344, `VerifiedBuild`=45745 WHERE `entry`=267261; -- Spell Focus
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=335, `VerifiedBuild`=45745 WHERE `entry`=251507; -- Unctuous Draught
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=335, `VerifiedBuild`=45745 WHERE `entry`=251506; -- Supple Nectar
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=335, `VerifiedBuild`=45745 WHERE `entry`=251499; -- Honeyed Infusion
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=335, `VerifiedBuild`=45745 WHERE `entry`=254069; -- Spilled Arcwine
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=347, `VerifiedBuild`=45745 WHERE `entry`=251626; -- Thousand-Year Arcwine
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=335, `VerifiedBuild`=45745 WHERE `entry`=254067; -- Arcwine Barrel
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=335, `VerifiedBuild`=45745 WHERE `entry`=257291; -- Nightborne Treasure Chest
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=335, `VerifiedBuild`=45745 WHERE `entry` IN (257547, 257548, 252474, 252473, 252476, 252477, 252475, 252512, 252511, 252510, 252490, 252489); -- Window
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=335, `VerifiedBuild`=45745 WHERE `entry`=266585; -- Shattered Teleporter Pad
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=335, `VerifiedBuild`=45745 WHERE `entry`=265509; -- Broken Telemancy Beacon
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=335, `VerifiedBuild`=45745 WHERE `entry`=260492; -- Glowing Tome
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=189, `VerifiedBuild`=45745 WHERE `entry`=271111; -- Drum
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=189, `VerifiedBuild`=45745 WHERE `entry`=280526; -- Goblin Drum
|
||||
UPDATE `gameobject_template` SET `Data19`=2, `ContentTuningId`=705, `VerifiedBuild`=45745 WHERE `entry`=288596; -- Cache of Secrets
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=65, `VerifiedBuild`=45745 WHERE `entry`=233617; -- Portal to Gorgrond
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=816, `VerifiedBuild`=45745 WHERE `entry`=235332; -- Gronn-Tooth Necklace
|
||||
UPDATE `gameobject_template` SET `Data19`=0, `VerifiedBuild`=45745 WHERE `entry`=235390; -- Nagrand Arrowbloom
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=302, `VerifiedBuild`=45745 WHERE `entry`=242958; -- Jewelcrafting Hut Focus
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=302, `VerifiedBuild`=45745 WHERE `entry`=237069; -- Jewelcrafting Work Order
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=46, `VerifiedBuild`=45745 WHERE `entry`=188424; -- Letter from Saurfang
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=46, `VerifiedBuild`=45745 WHERE `entry`=188423; -- Burning Brazier
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=46, `VerifiedBuild`=45745 WHERE `entry`=188418; -- Wanted!
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=39, `VerifiedBuild`=45745 WHERE `entry`=184999; -- Auchenai Coffin
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=39, `VerifiedBuild`=45745 WHERE `entry`=184807; -- Ethereal Particles
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=39, `VerifiedBuild`=45745 WHERE `entry`=182585; -- Restless Bones
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=19413, `ContentTuningId`=39, `VerifiedBuild`=45745 WHERE `entry`=182584; -- Restless Bones
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=39, `VerifiedBuild`=45745 WHERE `entry`=184743; -- Consuming Flames
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=348, `VerifiedBuild`=45745 WHERE `entry`=266104; -- Lunelli's Earth Totem
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=464, `VerifiedBuild`=45745 WHERE `entry`=280814; -- Pyramid
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=464, `VerifiedBuild`=45745 WHERE `entry`=280813; -- Fish
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=464, `VerifiedBuild`=45745 WHERE `entry`=280812; -- Feather
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=348, `VerifiedBuild`=45745 WHERE `entry`=266105; -- Lunelli's Air Totem
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=464, `VerifiedBuild`=45745 WHERE `entry`=280815; -- Letter from Ms. Graham
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=203, `VerifiedBuild`=45745 WHERE `entry`=179512; -- Fixed Trap
|
||||
UPDATE `gameobject_template` SET `Data0`=1634, `Data1`=0, `Data15`=0, `Data20`=44, `Data25`=368, `Data30`=96902, `ContentTuningId`=278, `VerifiedBuild`=45745 WHERE `entry`=179564; -- Gordok Tribute
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=339, `VerifiedBuild`=45745 WHERE `entry`=248958; -- Compendium of Ancient Weapons Volume VII
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=203, `VerifiedBuild`=45745 WHERE `entry`=179517; -- Treasure of the Shen'dralar
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=203, `VerifiedBuild`=45745 WHERE `entry`=153464; -- Large Solid Chest
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data2`=1, `Data30`=16518, `ContentTuningId`=203, `VerifiedBuild`=45745 WHERE `entry`=179499; -- Ogre Tannin Basket
|
||||
UPDATE `gameobject_template` SET `name`='Skeletal Remains of Telmius Dreamseeker', `ContentTuningId`=203, `VerifiedBuild`=45745 WHERE `entry`=179544; -- Skeletal Remains of Kariel Winthalus
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=203, `VerifiedBuild`=45745 WHERE `entry`=179485; -- Broken Trap
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=203, `VerifiedBuild`=45745 WHERE `entry` IN (179532, 179533, 179526); -- Warpwood Pod
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `ContentTuningId`=203, `VerifiedBuild`=45745 WHERE `entry`=179516; -- Fengus's Chest
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=16548, `ContentTuningId`=203, `VerifiedBuild`=45745 WHERE `entry`=179528; -- Warpwood Pod
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data18`=683, `Data30`=39337, `ContentTuningId`=22, `VerifiedBuild`=45745 WHERE `entry`=207535; -- Runestone Treasure Chest
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=28573, `ContentTuningId`=22, `VerifiedBuild`=45745 WHERE `entry`=202793; -- Loose Soil
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=467, `VerifiedBuild`=45745 WHERE `entry`=297826; -- Wicker Totem
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=187, `VerifiedBuild`=45745 WHERE `entry`=276255; -- Is it a Rock? How to Identify Relics
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=187, `VerifiedBuild`=45745 WHERE `entry`=276254; -- Beginner's Guide to Archaeology
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=187, `VerifiedBuild`=45745 WHERE `entry`=276258; -- "Genuine Titan Disc"
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=187, `VerifiedBuild`=45745 WHERE `entry`=276257; -- "Ancient Potsherds"
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=187, `VerifiedBuild`=45745 WHERE `entry`=276253; -- Half-eaten Journal
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=187, `VerifiedBuild`=45745 WHERE `entry`=277273; -- Suspiciously Protruding Book
|
||||
UPDATE `gameobject_template` SET `Data19`=2, `ContentTuningId`=187, `VerifiedBuild`=45745 WHERE `entry`=297892; -- Runebound Chest
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=187, `VerifiedBuild`=45745 WHERE `entry`=276874; -- Bucket of Grain
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=187, `VerifiedBuild`=45745 WHERE `entry`=276873; -- Hardened Lockbox
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=187, `VerifiedBuild`=45745 WHERE `entry`=284422; -- Crate of Azerite
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=187, `VerifiedBuild`=45745 WHERE `entry`=288214; -- Wanted Poster
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=708, `VerifiedBuild`=45745 WHERE `entry`=279647; -- Tome of Sacrifice
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=292, `VerifiedBuild`=45745 WHERE `entry`=278401; -- Sand Shifter School
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=690, `VerifiedBuild`=45745 WHERE `entry`=326133; -- Cook Pot
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=690, `VerifiedBuild`=45745 WHERE `entry`=324028; -- Elven Cookpot
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=1743, `ContentTuningId`=20, `VerifiedBuild`=45745 WHERE `entry`=2068; -- Pupellyverbos Port
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=20, `VerifiedBuild`=45745 WHERE `entry`=179908; -- Slagtree's Lost Tools
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data15`=0, `Data30`=17532, `ContentTuningId`=1006, `VerifiedBuild`=45745 WHERE `entry`=180691; -- Scarab Coffer
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=183, `VerifiedBuild`=45745 WHERE `entry`=268414; -- Alliance Banner
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=36, `VerifiedBuild`=45745 WHERE `entry`=179565; -- Dusty Reliquary
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=15521, `ContentTuningId`=36, `VerifiedBuild`=45745 WHERE `entry`=178553; -- Hive'Ashi Pod
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=39339, `ContentTuningId`=32, `VerifiedBuild`=45745 WHERE `entry`=207513; -- Silken Treasure Chest
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=71, `VerifiedBuild`=45745 WHERE `entry`=2909; -- Wildmane Water Pump
|
||||
|
||||
|
||||
DELETE FROM `gameobject_template` WHERE `entry` IN (364437 /*Chair*/, 364435 /*Chair*/, 364434 /*Chair*/, 364433 /*Chair*/, 364432 /*Chair*/, 364431 /*Chair*/, 364430 /*Chair*/, 364428 /*Chair*/, 364426 /*Chair*/, 364429 /*Chair*/, 251048 /*Matrix Punchograph 3005-E*/, 251015 /*Encrypted Door*/, 311580 /*Gnomish Mayhem Detector*/);
|
||||
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`, `Data34`, `ContentTuningId`, `VerifiedBuild`) VALUES
|
||||
(364437, 7, 62460, '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, 0, 45745), -- Chair
|
||||
(364435, 7, 15617, 'Chair', '', '', '', 0.999999940395355224, 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, 45745), -- Chair
|
||||
(364434, 7, 15618, 'Chair', '', '', '', 1.509765505790710449, 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, 45745), -- Chair
|
||||
(364433, 7, 15617, 'Chair', '', '', '', 0.999999940395355224, 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, 45745), -- Chair
|
||||
(364432, 7, 15617, 'Chair', '', '', '', 0.999999940395355224, 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, 45745), -- Chair
|
||||
(364431, 7, 15617, 'Chair', '', '', '', 0.999999940395355224, 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, 45745), -- Chair
|
||||
(364430, 7, 15617, 'Chair', '', '', '', 0.999999940395355224, 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, 45745), -- Chair
|
||||
(364428, 7, 15617, '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, 0, 45745), -- Chair
|
||||
(364426, 7, 15617, 'Chair', '', '', '', 0.999999821186065673, 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, 45745), -- Chair
|
||||
(364429, 7, 32290, 'Chair', '', '', '', 0.999999940395355224, 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, 45745), -- Chair
|
||||
(251048, 2, 2091, 'Matrix Punchograph 3005-E', '', '', '', 1, 93, 0, 0, 19818, 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, 1372, 45745), -- Matrix Punchograph 3005-E
|
||||
(251015, 0, 10398, 'Encrypted Door', '', '', '', 1.85000002384185791, 0, 0, 0, 0, 0, 0, 0, 21439, 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, 1372, 45745), -- Encrypted Door
|
||||
(311580, 5, 52061, 'Gnomish Mayhem Detector', '', '', '', 0.200000002980232238, 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, 0, 45745); -- Gnomish Mayhem Detector
|
||||
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=60, `VerifiedBuild`=45745 WHERE `entry`=211171; -- Anvil
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=60, `VerifiedBuild`=45745 WHERE `entry`=211170; -- Forge
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=40379, `ContentTuningId`=80, `VerifiedBuild`=45745 WHERE `entry`=209507; -- Hard Tearwood Reed
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=40266, `ContentTuningId`=80, `VerifiedBuild`=45745 WHERE `entry`=209326; -- Loose Dogwood Root
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=40266, `ContentTuningId`=80, `VerifiedBuild`=45745 WHERE `entry`=209327; -- Loose Dogwood Root
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=80, `VerifiedBuild`=45745 WHERE `entry`=210986; -- Edict of Temperance
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `VerifiedBuild`=45745 WHERE `entry`=210005; -- Weapon Rack
|
||||
UPDATE `gameobject_template` SET `Data5`=0, `ContentTuningId`=482, `VerifiedBuild`=45745 WHERE `entry`=183384; -- Portal to Shattrath
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=196, `VerifiedBuild`=45745 WHERE `entry`=192886; -- In Time, the Arcane Corrupts All!
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=25391, `ContentTuningId`=48, `VerifiedBuild`=45745 WHERE `entry`=191781; -- Scourge Scrap Metal
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=48, `VerifiedBuild`=45745 WHERE `entry`=190535; -- Zim'Abwa
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=24369, `ContentTuningId`=48, `VerifiedBuild`=45745 WHERE `entry`=190534; -- Mature Water-Poppy
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=48, `VerifiedBuild`=45745 WHERE `entry`=190550; -- Ancient Dirt Mound
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=48, `VerifiedBuild`=45745 WHERE `entry`=190522; -- Drakkari Pedestal
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=23388, `ContentTuningId`=47, `VerifiedBuild`=45745 WHERE `entry`=188263; -- Missing Journal Page
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=23388, `ContentTuningId`=47, `VerifiedBuild`=45745 WHERE `entry`=188262; -- Missing Journal Page
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=47, `VerifiedBuild`=45745 WHERE `entry`=188261; -- Battered Journal
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=24160, `ContentTuningId`=47, `VerifiedBuild`=45745 WHERE `entry`=189983; -- Wild Carrot
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=642, `VerifiedBuild`=45745 WHERE `entry`=248057; -- Bear Totem
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=642, `VerifiedBuild`=45745 WHERE `entry`=248779; -- PLACEHOLDER Tree
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=642, `VerifiedBuild`=45745 WHERE `entry`=248778; -- Dreamway Portal
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=39342, `ContentTuningId`=47, `VerifiedBuild`=45745 WHERE `entry`=207540; -- Runestone Treasure Chest
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=48, `VerifiedBuild`=45745 WHERE `entry`=191766; -- Orders From Drakuru
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=48, `VerifiedBuild`=45745 WHERE `entry`=191728; -- Wanted!
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=25912, `ContentTuningId`=163, `VerifiedBuild`=45745 WHERE `entry`=192909; -- Ancient Elven Masonry
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=25912, `ContentTuningId`=163, `VerifiedBuild`=45745 WHERE `entry`=192910; -- Ancient Elven Masonry
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=25912, `ContentTuningId`=163, `VerifiedBuild`=45745 WHERE `entry`=192912; -- Ancient Elven Masonry
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=25912, `ContentTuningId`=163, `VerifiedBuild`=45745 WHERE `entry`=192911; -- Ancient Elven Masonry
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=676, `VerifiedBuild`=45745 WHERE `entry`=181570; -- Rich Adamantite Deposit
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=10, `VerifiedBuild`=45745 WHERE `entry`=60; -- Wanted: Gath'Ilzogg
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=691, `VerifiedBuild`=45745 WHERE `entry`=312345; -- Official-Looking Note
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=10, `VerifiedBuild`=45745 WHERE `entry`=1726; -- Missing!
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=10, `VerifiedBuild`=45745 WHERE `entry`=47; -- Wanted!
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=9999, `ContentTuningId`=10, `VerifiedBuild`=45745 WHERE `entry`=154357; -- Glinting Mud
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=14105, `ContentTuningId`=73, `VerifiedBuild`=45745 WHERE `entry`=176793; -- Bundle of Wood
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=73, `VerifiedBuild`=45745 WHERE `entry`=56; -- Rolf's corpse
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=73, `VerifiedBuild`=45745 WHERE `entry`=20923; -- Stone of Remembrance
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=204, `VerifiedBuild`=45745 WHERE `entry`=142476; -- Matrix Punchograph 3005-C
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=204, `VerifiedBuild`=45745 WHERE `entry` IN (175084, 175085, 142487); -- The Sparklematic 5200
|
||||
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=45745 WHERE `entry`=142207; -- The Final Chamber
|
||||
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=45745 WHERE `entry`=146086; -- Cave In
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=204, `VerifiedBuild`=45745 WHERE `entry`=142475; -- Matrix Punchograph 3005-B
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=6799, `ContentTuningId`=204, `VerifiedBuild`=45745 WHERE `entry`=142344; -- Artificial Extrapolator
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=2955, `ContentTuningId`=683, `VerifiedBuild`=45745 WHERE `entry`=19020; -- Box of Assorted Parts
|
||||
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=45745 WHERE `entry`=146085; -- Cave In
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=204, `VerifiedBuild`=45745 WHERE `entry`=208325; -- Extra Parachutes
|
||||
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=45745 WHERE `entry`=90858; -- Workshop Door
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=204, `VerifiedBuild`=45745 WHERE `entry`=179555; -- Meeting Stone
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=30020, `ContentTuningId`=74, `VerifiedBuild`=45745 WHERE `entry`=203968; -- Spare Part
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=30020, `ContentTuningId`=74, `VerifiedBuild`=45745 WHERE `entry`=203966; -- Spare Part
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=30020, `ContentTuningId`=74, `VerifiedBuild`=45745 WHERE `entry`=203965; -- Spare Part
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=30020, `ContentTuningId`=74, `VerifiedBuild`=45745 WHERE `entry`=203964; -- Spare Part
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=30020, `ContentTuningId`=74, `VerifiedBuild`=45745 WHERE `entry`=203967; -- Spare Part
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=797, `ContentTuningId`=74, `VerifiedBuild`=45745 WHERE `entry`=276; -- Shimmerweed Basket
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=868, `VerifiedBuild`=45745 WHERE `entry`=207320; -- Hero's Call Board
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=868, `VerifiedBuild`=45745 WHERE `entry`=139852; -- Memorial to Sully Balloo
|
||||
|
||||
DELETE FROM `gameobject_template` WHERE `entry` IN (239923 /*Gronnsbane's Haft*/, 230580 /*Bone Pile*/);
|
||||
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`, `Data34`, `ContentTuningId`, `VerifiedBuild`) VALUES
|
||||
(239923, 3, 25214, 'Gronnsbane\'s Haft', 'questinteract', 'Collecting', '', 0.400000005960464477, 1691, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19676, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81040, 0, 0, 0, 59766, 0, 0, 0, 0, 64, 45745), -- Gronnsbane's Haft
|
||||
(230580, 9, 7418, 'Bone Pile', 'inspect', '', '', 1, 4915, 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, 64, 45745); -- Bone Pile
|
||||
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=39336, `ContentTuningId`=13, `VerifiedBuild`=45745 WHERE `entry`=207474; -- Silverbound Treasure Chest
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=14, `VerifiedBuild`=45745 WHERE `entry`=203431; -- Northwatch Tent
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=29681, `ContentTuningId`=14, `VerifiedBuild`=45745 WHERE `entry`=203443; -- Spare Part
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=14, `VerifiedBuild`=45745 WHERE `entry`=203239; -- Support Beam Marker
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=39336, `ContentTuningId`=14, `VerifiedBuild`=45745 WHERE `entry`=207522; -- Maplewood Treasure Chest
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=683, `VerifiedBuild`=45745 WHERE `entry`=3730; -- Bruiseweed
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=3092, `ContentTuningId`=14, `VerifiedBuild`=45745 WHERE `entry`=19603; -- Venture Co. Documents
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=64, `VerifiedBuild`=45745 WHERE `entry` IN (237298, 237299); -- Pillaged Caravan Goods
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=64, `VerifiedBuild`=45745 WHERE `entry` IN (230582, 230581); -- Goren Tracks
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=64, `VerifiedBuild`=45745 WHERE `entry`=229050; -- Goren Egg
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=690, `VerifiedBuild`=45745 WHERE `entry`=326737; -- Arcane Device
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=708, `VerifiedBuild`=45745 WHERE `entry`=328391; -- Spell Focus - Empowered Abyssal Focus
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=708, `VerifiedBuild`=45745 WHERE `entry`=327595; -- Radiating Abyssal Focus
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=708, `VerifiedBuild`=45745 WHERE `entry`=327593; -- Spell Focus - Restored Abyssal Focus
|
||||
UPDATE `gameobject_template` SET `Data32`=108, `VerifiedBuild`=45745 WHERE `entry`=356823; -- Cloudwalker's Coffer
|
||||
|
||||
DELETE FROM `gameobject_questitem` WHERE (`GameObjectEntry`=239923 AND `Idx`=0);
|
||||
INSERT INTO `gameobject_questitem` (`GameObjectEntry`, `Idx`, `ItemId`, `VerifiedBuild`) VALUES
|
||||
(239923, 0, 122098, 45745); -- Gronnsbane's Haft
|
||||
@@ -0,0 +1,81 @@
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=0, `npcflag`=16 WHERE `entry`=7230; -- Shayis Steelfury
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=0, `npcflag`=16 WHERE `entry`=7231; -- Kelgruk Bloodaxe
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=0, `npcflag`=18 WHERE `entry`=11177; -- Okothos Ironrager
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=0, `npcflag`=16 WHERE `entry`=11178; -- Borgosh Corebender
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=0, `npcflag`=16 WHERE `entry`=20124; -- Kradu Grimblade
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=0, `npcflag`=16 WHERE `entry`=20125; -- Zula Slagfury
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=0, `npcflag`=16 WHERE `entry`=1215; -- Alchemist Mallory
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=0 WHERE `entry`=3603; -- Cyndra Kindwhisper
|
||||
|
||||
DELETE FROM `creature_trainer` WHERE (`CreatureID`=2399 AND `MenuID`=4356 AND `OptionID`=0) OR (`CreatureID`=3557 AND `MenuID`=2749 AND `OptionID`=0) OR (`CreatureID`=17637 AND `MenuID`=7513 AND `OptionID`=0) OR (`CreatureID`=11074 AND `MenuID`=4170 AND `OptionID`=0);
|
||||
INSERT INTO `creature_trainer` (`CreatureID`, `TrainerID`, `MenuID`, `OptionID`) VALUES
|
||||
(2399, 163, 4356, 0),
|
||||
(3557, 27, 2749, 0),
|
||||
(17637, 870, 7513, 0),
|
||||
(11074, 62, 4170, 0);
|
||||
|
||||
DELETE FROM `gossip_menu_option` WHERE (`OptionID`=0 AND `MenuID` IN (4356,2749,4170,7513));
|
||||
INSERT INTO `gossip_menu_option` (`MenuID`, `OptionID`, `OptionNpc`, `OptionText`, `OptionBroadcastTextId`, `OptionNpcFlag`, `Language`, `ActionMenuID`, `ActionPoiID`, `BoxCoded`, `BoxMoney`, `BoxText`, `BoxBroadcastTextID`, `VerifiedBuild`) VALUES
|
||||
(4356, 0, 3, 'Train me.', 3266, 16, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(2749, 0, 3, 'Train me.', 3266, 16, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(4170, 0, 3, 'Train me.', 3266, 16, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(7513, 0, 3, 'Train me.', 3266, 16, 0, 0, 0, 0, 0, NULL, 0, 45745);
|
||||
|
||||
DELETE FROM `creature_trainer` WHERE (`CreatureID`=3290 AND `MenuID`=4136 AND `OptionID`=0);
|
||||
INSERT INTO `creature_trainer` (`CreatureID`, `TrainerID`, `MenuID`, `OptionID`) VALUES
|
||||
(3290, 407, 4136, 0);
|
||||
|
||||
DELETE FROM `gossip_menu_option` WHERE (`MenuID`=4136 AND `OptionID`=0) OR (`MenuID`=22946 AND `OptionID` IN (3,2));
|
||||
INSERT INTO `gossip_menu_option` (`MenuID`, `OptionID`, `OptionNpc`, `OptionText`, `OptionBroadcastTextId`, `OptionNpcFlag`, `Language`, `ActionMenuID`, `ActionPoiID`, `BoxCoded`, `BoxMoney`, `BoxText`, `BoxBroadcastTextID`, `VerifiedBuild`) VALUES
|
||||
(4136, 0, 3, 'Train me.', 3266, 16, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(22946, 3, 0, 'What happened here?', 38328, 1, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(22946, 2, 0, 'Can you show me what Darkshore was like before the battle?', 169023, 1, 0, 0, 0, 0, 0, NULL, 0, 45745);
|
||||
|
||||
DELETE FROM `gameobject_template` WHERE `entry` IN (376257,364439,364438,351981);
|
||||
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`, `Data34`, `ContentTuningId`, `VerifiedBuild`) VALUES
|
||||
(376257, 10, 9510, 'Orb of Translocation', '', '', '', 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35730, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 23504, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45745), -- Orb of Translocation
|
||||
(364439, 7, 17820, '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, 0, 45745), -- Chair
|
||||
(364438, 7, 17820, '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, 0, 45745), -- Chair
|
||||
(351981, 7, 32512, 'Chair', '', '', '', 0.999998748302459716, 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, 45745); -- Chair
|
||||
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=11, `VerifiedBuild`=45745 WHERE `entry`=207183; -- Humbert's Pants
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=11, `VerifiedBuild`=45745 WHERE `entry`=207182; -- Humbert's Sword
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=11, `VerifiedBuild`=45745 WHERE `entry`=207184; -- Humbert's Helm
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=865, `VerifiedBuild`=45745 WHERE `entry`=24776; -- Yuriv's Tombstone
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=7, `VerifiedBuild`=45745 WHERE `entry`=205165; -- Sea Dog Crate
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=7, `VerifiedBuild`=45745 WHERE `entry`=194341; -- Dusty Journal
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=7, `VerifiedBuild`=45745 WHERE `entry`=205350; -- Horde Communication Panel
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=7, `VerifiedBuild`=45745 WHERE `entry` IN (288257, 205143); -- Abandoned Outhouse
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=32109, `ContentTuningId`=7, `VerifiedBuild`=45745 WHERE `entry`=205099; -- Ferocious Doomweed
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=38, `VerifiedBuild`=45745 WHERE `entry`=182165; -- Wanted Poster
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=18761, `ContentTuningId`=38, `VerifiedBuild`=45745 WHERE `entry`=182095; -- Burstcap Mushroom
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=38, `VerifiedBuild`=45745 WHERE `entry`=184578; -- Discarded Nutriment
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=18676, `ContentTuningId`=38, `VerifiedBuild`=45745 WHERE `entry`=182256; -- Discarded Nutriment
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=18694, `ContentTuningId`=38, `VerifiedBuild`=45745 WHERE `entry`=182053; -- Glowcap
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=39340, `ContentTuningId`=37, `VerifiedBuild`=45745 WHERE `entry`=207478; -- Silverbound Treasure Chest
|
||||
UPDATE `gameobject_template` SET `Data3`=1, `Data26`=1, `ContentTuningId`=38, `VerifiedBuild`=45745 WHERE `entry`=182529; -- Zangarmarsh Banner
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=20890, `ContentTuningId`=38, `VerifiedBuild`=45745 WHERE `entry`=184740; -- Wicker Chest
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=18760, `ContentTuningId`=38, `VerifiedBuild`=45745 WHERE `entry`=182139; -- Feralfen Idol
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=676, `VerifiedBuild`=45745 WHERE `entry`=183043; -- Ragveil
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=1281, `VerifiedBuild`=45745 WHERE `entry` IN (321185, 321184, 321182); -- Tauren Rug
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=617, `VerifiedBuild`=45745 WHERE `entry`=266049; -- Cloud
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=29608, `ContentTuningId`=14, `VerifiedBuild`=45745 WHERE `entry`=203253; -- Kalimdor Eagle Nest
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=14, `VerifiedBuild`=45745 WHERE `entry`=203446; -- Horde Banner
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=27844, `ContentTuningId`=16, `VerifiedBuild`=45745 WHERE `entry`=202136; -- Stonetalon Supplies
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=39335, `ContentTuningId`=3, `VerifiedBuild`=45745 WHERE `entry`=207473; -- Silverbound Treasure Chest
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=288, `VerifiedBuild`=45745 WHERE `entry`=293886; -- Portal to Stormwind
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=72, `VerifiedBuild`=45745 WHERE `entry`=2739; -- Chest of the Black Feather
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=72, `VerifiedBuild`=45745 WHERE `entry`=2742; -- Chest of Nesting
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=830, `VerifiedBuild`=45745 WHERE `entry`=296536; -- Bloodied Sentinel's Glaive
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=290, `VerifiedBuild`=45745 WHERE `entry`=298776; -- Portal to Boralus Harbor
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=31999, `ContentTuningId`=9, `VerifiedBuild`=45745 WHERE `entry`=205092; -- Nascent Elementium
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=56, `VerifiedBuild`=45745 WHERE `entry`=206314; -- Twilight Rune of Water
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=56, `VerifiedBuild`=45745 WHERE `entry`=206312; -- Twilight Rune of Air
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=56, `VerifiedBuild`=45745 WHERE `entry`=206313; -- Twilight Rune of Fire
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=56, `VerifiedBuild`=45745 WHERE `entry`=206018; -- Earth Portal Controller
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=56, `VerifiedBuild`=45745 WHERE `entry`=206019; -- Air Portal Controller
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=56, `VerifiedBuild`=45745 WHERE `entry` IN (206848, 206846); -- Black Dragon Egg
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=56, `VerifiedBuild`=45745 WHERE `entry`=207259; -- Induction Samophlange
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=56, `VerifiedBuild`=45745 WHERE `entry`=208209; -- Anvil
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=657, `VerifiedBuild`=45745 WHERE `entry`=218719; -- Raft
|
||||
UPDATE `gameobject_template` SET `type`=50, `Data6`=15, `Data9`=35059, `Data11`=79156, `Data14`=0, `Data18`=1, `ContentTuningId`=864, `VerifiedBuild`=45745 WHERE `entry`=204281; -- Worm Mound
|
||||
@@ -0,0 +1 @@
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=10805, `minlevel`=20, `maxlevel`=20 WHERE `entry`=36496; -- Grimy Greasefingers
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
DELETE FROM `gossip_menu` WHERE (`MenuID`=26904 AND `TextID`=42825);
|
||||
INSERT INTO `gossip_menu` (`MenuID`, `TextID`, `VerifiedBuild`) VALUES
|
||||
(26904, 42825, 45745); -- 178170 (Night Guardian Vekraala)
|
||||
|
||||
DELETE FROM `gossip_menu_option` WHERE (`MenuID`=7811 AND `OptionID`=0) OR (`MenuID`=26904 AND `OptionID` IN (0,1));
|
||||
INSERT INTO `gossip_menu_option` (`MenuID`, `OptionID`, `OptionNpc`, `OptionText`, `OptionBroadcastTextId`, `OptionNpcFlag`, `Language`, `ActionMenuID`, `ActionPoiID`, `BoxCoded`, `BoxMoney`, `BoxText`, `BoxBroadcastTextID`, `VerifiedBuild`) VALUES
|
||||
(7811, 0, 6, 'I would like to check my deposit box.', 3398, 131072, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(26904, 0, 5, 'Make this inn your home.', 2822, 65536, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(26904, 1, 1, 'Let me browse your goods.', 2823, 128, 0, 0, 0, 0, 0, NULL, 0, 45745);
|
||||
@@ -0,0 +1,8 @@
|
||||
DELETE FROM `gossip_menu_option` WHERE (`MenuID`=1626 AND `OptionID` IN (1,0)) OR (`MenuID`=5461 AND `OptionID` IN (0,1)) OR (`MenuID`=7487 AND `OptionID` IN (0,1));
|
||||
INSERT INTO `gossip_menu_option` (`MenuID`, `OptionID`, `OptionNpc`, `OptionText`, `OptionBroadcastTextId`, `OptionNpcFlag`, `Language`, `ActionMenuID`, `ActionPoiID`, `BoxCoded`, `BoxMoney`, `BoxText`, `BoxBroadcastTextID`, `VerifiedBuild`) VALUES
|
||||
(1626, 0, 8, 'I want to create a guild crest.', 3415, 524288, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(1626, 1, 7, 'How do I form a guild?', 3413, 262144, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(5461, 0, 8, 'I want to create a guild crest.', 3415, 524288, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(5461, 1, 7, 'How do I form a guild?', 3413, 262144, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(7487, 0, 7, 'How do I form a guild?', 3413, 262144, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(7487, 1, 8, 'I want to create a guild crest.', 3415, 524288, 0, 0, 0, 0, 0, NULL, 0, 45745);
|
||||
@@ -0,0 +1,8 @@
|
||||
DELETE FROM `gossip_menu_option` WHERE (`OptionID`=0 AND `MenuID` IN (9827,9830,9828,9829));
|
||||
INSERT INTO `gossip_menu_option` (`MenuID`, `OptionID`, `OptionNpc`, `OptionText`, `OptionBroadcastTextId`, `OptionNpcFlag`, `Language`, `ActionMenuID`, `ActionPoiID`, `BoxCoded`, `BoxMoney`, `BoxText`, `BoxBroadcastTextID`, `VerifiedBuild`) VALUES
|
||||
(9827, 0, 9, 'I would like to go to the battleground.', 10355, 1048576, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(9830, 0, 9, 'I would like to go to the battleground.', 10355, 1048576, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(9828, 0, 9, 'I would like to go to the battleground.', 10355, 1048576, 0, 0, 0, 0, 0, NULL, 0, 45745),
|
||||
(9829, 0, 9, 'I would like to go to the battleground.', 10355, 1048576, 0, 0, 0, 0, 0, NULL, 0, 45745);
|
||||
|
||||
UPDATE `gossip_menu_option` SET `OptionBroadcastTextId`=10355, `VerifiedBuild`=45745 WHERE (`MenuID`=10602 AND `OptionID`=0);
|
||||
@@ -0,0 +1 @@
|
||||
DELETE FROM `gossip_menu_option` WHERE `MenuID`=0;
|
||||
@@ -0,0 +1,9 @@
|
||||
-- Update table `gossip_menu_option`
|
||||
ALTER TABLE `gossip_menu_option` DROP `OptionNpcFlag`;
|
||||
|
||||
-- Argent Squire | Argent Gruntling
|
||||
UPDATE `creature_template` SET `npcflag`=1 WHERE `entry` IN (33238, 33239);
|
||||
UPDATE `gossip_menu_option` SET `OptionNpc`=18 WHERE `MenuID` IN (10317, 10318) AND `OptionID`=2;
|
||||
|
||||
-- OptionNpcFlag inserted in wrong field
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=0 WHERE `MenuID`=10662 AND `OptionID`=0;
|
||||
@@ -0,0 +1,174 @@
|
||||
--
|
||||
--
|
||||
-- Silverpine Forest
|
||||
|
||||
SET @CGUID := 395673;
|
||||
|
||||
--
|
||||
-- Ivar Patch
|
||||
|
||||
-- Detect: Quest Invis Zone 2
|
||||
DELETE FROM `spell_area` WHERE `spell`=83739 AND `area`=239 AND `quest_start`=27045 AND `aura_spell`=0 AND `racemask`=0 AND `gender`=2;
|
||||
INSERT INTO `spell_area` (`spell`, `area`, `quest_start`, `quest_end`, `aura_spell`, `racemask`, `gender`, `flags`, `quest_start_status`, `quest_end_status`) VALUES
|
||||
(83739, 239, 27045, 0, 0, 0, 2, 3, 66, 0);
|
||||
|
||||
-- Abandoned Outhouse
|
||||
UPDATE `gameobject_template` SET `ScriptName` = 'go_silverpine_abandoned_outhouse' WHERE `entry` = 205143;
|
||||
|
||||
DELETE FROM `gossip_menu` WHERE `MenuID`=11897 AND `TextID`=16689;
|
||||
INSERT INTO `gossip_menu` (`MenuID`, `TextID`, `VerifiedBuild`) VALUES
|
||||
(11897, 16689, 45338);
|
||||
|
||||
DELETE FROM `gossip_menu_option` WHERE `MenuID`=11897 AND `OptionID`=0;
|
||||
INSERT INTO `gossip_menu_option` (`MenuID`, `OptionID`, `OptionNpc`, `OptionText`, `OptionBroadcastTextID`, `Language`, `ActionMenuID`, `ActionPoiID`, `BoxCoded`, `BoxMoney`, `BoxText`, `BoxBroadcastTextID`, `VerifiedBuild`) VALUES
|
||||
(11897, 0, 0, 'Yorick, you in there? I\'m ready to do this! Let\'s go!', 44940, 0, 0, 0, 0, 0, NULL, 0, 45338);
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=11897 AND `SourceEntry`=0 AND `SourceId`=0 AND `ElseGroup`=1 AND `ConditionTypeOrReference`=1 AND `ConditionTarget`=0 AND `ConditionValue1`=83751 AND `ConditionValue2`=1 AND `ConditionValue3`=0;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(15, 11897, 0, 0, 1, 1, 0, 83751, 1, 0, 1, 0, 0, '', 'Show gossip option if player doesn\'t have aura 83751');
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=11897 AND `SourceEntry`=0 AND `SourceId`=0 AND `ElseGroup`=1 AND `ConditionTypeOrReference`=9 AND `ConditionTarget`=0 AND `ConditionValue1`=27045 AND `ConditionValue2`=0 AND `ConditionValue3`=0;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(15, 11897, 0, 0, 1, 9, 0, 27045, 0, 0, 0, 0, 0, '', 'Show gossip option if player has taken quest 27045');
|
||||
|
||||
-- Deathstalker Rane Yorick
|
||||
UPDATE `creature_template` SET `ScriptName` = 'npc_silverpine_deathstalker_rane_yorick' WHERE `entry` = 44882;
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` = 44882;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(44882, 0, 0, 'We haven\'t got much time. Crowly will be arriving shortly.', 12, 0, 100, 5, 0, 0, 44951, 5, ''),
|
||||
(44882, 1, 0, 'THERE! Hide in the armoire! I\'ll hide in the shadow next to you.', 12, 0, 100, 25, 0, 0, 44955, 5, ''),
|
||||
(44882, 2, 0, 'I live... and die... for the Banshee Queen.', 12, 0, 100, 0, 0, 0, 44971, 5, '');
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id` = 448820;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`, `action`, `action_chance`, `wpguid`) VALUES
|
||||
(448820, 1, 1300.27, 1190.11, 52.600067, NULL, 0, 0, 0, 0, 0),
|
||||
(448820, 2, 1288.52, 1196.86, 52.850067, NULL, 0, 0, 0, 0, 0),
|
||||
(448820, 3, 1287.52, 1205.11, 53.100067, NULL, 0, 0, 0, 0, 0),
|
||||
(448820, 4, 1294.27, 1207.36, 54.100067, NULL, 0, 0, 0, 0, 0),
|
||||
(448820, 5, 1299.27, 1207.86, 54.100067, NULL, 0, 0, 0, 0, 0),
|
||||
(448820, 6, 1304.27, 1210.36, 54.100067, NULL, 0, 0, 0, 0, 0),
|
||||
(448820, 7, 1304.77, 1217.86, 54.100067, NULL, 0, 0, 0, 0, 0),
|
||||
(448820, 8, 1298.52, 1221.36, 54.100067, NULL, 0, 0, 0, 0, 0),
|
||||
(448820, 9, 1298.27, 1218.86, 55.100067, NULL, 0, 0, 0, 0, 0),
|
||||
(448820, 10, 1298.02, 1216.61, 56.350067, NULL, 0, 0, 0, 0, 0),
|
||||
(448820, 11, 1297.27, 1212.86, 58.600067, NULL, 0, 0, 0, 0, 0),
|
||||
(448820, 12, 1298.27, 1206.86, 58.600067, NULL, 0, 0, 0, 0, 0),
|
||||
(448820, 13, 1307.27, 1206.11, 58.600067, NULL, 0, 0, 0, 0, 0),
|
||||
(448820, 14, 1311.27, 1205.86, 58.600067, NULL, 0, 0, 0, 0, 0),
|
||||
(448820, 15, 1312.67, 1208.86, 58.5123, NULL, 0, 0, 0, 0, 0);
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id` = 448821;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`, `action`, `action_chance`, `wpguid`) VALUES
|
||||
(448821, 1, 1313.435, 1210.425, 58.7561, NULL, 0, 0, 0, 0, 0),
|
||||
(448821, 2, 1313.7, 1211.99, 58.4999, 4.564474, 0, 0, 0, 0, 0);
|
||||
|
||||
-- Armoire
|
||||
UPDATE `creature_template` SET `unit_flags` = 33554440, `VehicleId` = 1055, `ScriptName` = 'npc_silverpine_armoire' WHERE `entry` = 44893;
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceGroup`=1 AND `SourceEntry`=83763 AND `SourceId`=0 AND `ElseGroup`=1 AND `ConditionTypeOrReference`=31 AND `ConditionTarget`=0 AND `ConditionValue1`=3 AND `ConditionValue2`=44883 AND `ConditionValue3`=0;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(13, 1, 83763, 0, 1, 31, 0, 3, 44883, 0, 0, 0, 0, '', 'Armoire Camera - Target Lord Darius Crowley');
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceGroup`=1 AND `SourceEntry`=83764 AND `SourceId`=0 AND `ElseGroup`=0 AND `ConditionTypeOrReference`=31 AND `ConditionTarget`=0 AND `ConditionValue1`=3 AND `ConditionValue2`=44884 AND `ConditionValue3`=0;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(13, 1, 83764, 0, 0, 31, 0, 3, 44884, 0, 0, 0, 0, '', 'Armoire Camera - Target Packleader Ivar Bloodfang');
|
||||
|
||||
-- Armoire
|
||||
UPDATE `creature_template` SET `npcflag` = 16777216 WHERE `entry` = 44894;
|
||||
|
||||
DELETE FROM `npc_spellclick_spells` WHERE `npc_entry` = 44894 AND `spell_id` = 83756;
|
||||
INSERT INTO `npc_spellclick_spells` (`npc_entry`, `spell_id`, `cast_flags`, `user_type`) VALUES
|
||||
(44894, 83756, 1, 0);
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=18 AND `SourceGroup`=44894 AND `SourceEntry`=83756 AND `SourceId`=0 AND `ElseGroup`=0 AND `ConditionTypeOrReference`=47 AND `ConditionTarget`=0 AND `ConditionValue1`=27045 AND `ConditionValue2`=8 AND `ConditionValue3`=0;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(18, 44894, 83756, 0, 0, 47, 0, 27045, 8, 0, 0, 0, 0, '', 'Allow spellclick if quest 27045 is active');
|
||||
|
||||
-- Lord Darius Crowley
|
||||
UPDATE `creature_template` SET `unit_flags` = 2, `unit_flags2` = 16384, `ScriptName` = 'npc_silverpine_lord_darius_crowley_exsanguinate' WHERE `entry` = 44883;
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` = 44883;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(44883, 0, 0, 'Have you given any more thought to my proposal, Ivar?', 12, 0, 100, 6, 0, 0, 44957, 5, ''),
|
||||
(44883, 1, 0, 'If we\'re to win this war we will need your help. Our packs must unite! The Forsaken will destroy us otherwise.', 12, 0, 100, 396, 0, 0, 44960, 5, ''),
|
||||
(44883, 2, 0, 'You are the alpha male, Ivar. The rest of the ferals in Silverpine will do as you command.', 12, 0, 100, 397, 0, 0, 44961, 5, ''),
|
||||
(44883, 3, 0, 'So will you help?', 12, 0, 100, 6, 0, 0, 44965, 5, '');
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id` = 448830;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`, `action`, `action_chance`, `wpguid`) VALUES
|
||||
(448830, 0, 1299.36, 1206.64, 58.5706, NULL, 0, 0, 0, 0, 0),
|
||||
(448830, 1, 1300.36, 1206.64, 58.5706, NULL, 0, 0, 0, 0, 0),
|
||||
(448830, 2, 1302.33, 1206.44, 58.499, NULL, 0, 0, 0, 0, 0),
|
||||
(448830, 3, 1305.32, 1206.43, 58.5126, NULL, 0, 0, 0, 0, 0),
|
||||
(448830, 4, 1313.48, 1206.09, 58.5119, NULL, 0, 0, 0, 0, 0);
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id` = 448831;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`, `action`, `action_chance`, `wpguid`) VALUES
|
||||
(448831, 0, 1310.28, 1206.0249, 58.76205, NULL, 0, 0, 0, 0, 0),
|
||||
(448831, 1, 1305.58, 1206.46, 58.5122, NULL, 0, 0, 0, 0, 0);
|
||||
|
||||
-- Packleader Ivar Bloodfang
|
||||
UPDATE `creature_template` SET `unit_flags` = 2, `unit_flags2` = 16384, `VehicleId` = 1059, `ScriptName` = 'npc_silverpine_packleader_ivar_bloodfang_exsanguinate' WHERE `entry` = 44884;
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` = 44884;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(44884, 0, 0, 'Why trust you now, Crowley? You abandoned us. Left us to die.', 12, 0, 100, 6, 0, 0, 44959, 5, ''),
|
||||
(44884, 1, 0, 'I don\'t care about your war, Crowley.', 12, 0, 100, 274, 0, 0, 44962, 5, ''),
|
||||
(44884, 2, 0, 'But...', 12, 0, 100, 1, 0, 0, 44963, 5, ''),
|
||||
(44884, 3, 0, 'I have seen firsthand what the Forsaken are capable of doing. It is true. They hunt us... slaughter the defenseless.', 12, 0, 100, 1, 0, 0, 44964, 5, ''),
|
||||
(44884, 4, 0, 'Aye, I will gather my pack... we...', 12, 0, 100, 1, 0, 0, 44966, 5, ''),
|
||||
(44884, 5, 0, 'Packleader Ivar Bloodfang sniffs the air.', 16, 0, 100, 479, 0, 0, 44967, 5, ''),
|
||||
(44884, 6, 0, 'It would appear that we are being watched, Crowley. You have grown soft... Likely Greymane\'s fault.', 12, 0, 100, 1, 0, 0, 44968, 5, ''),
|
||||
(44884, 7, 0, 'Treacherous little pup!', 12, 0, 100, 15, 0, 0, 44969, 5, ''),
|
||||
(44884, 8, 0, 'What say you now, spy?', 12, 0, 100, 0, 0, 0, 44970, 5, ''),
|
||||
(44884, 9, 0, 'I was hoping you\'d say that...', 12, 0, 100, 0, 0, 0, 44972, 5, ''),
|
||||
(44884, 10, 0, 'I will prepare the pack. It will take some time to gather them all, but we will join... for now.', 12, 0, 100, 1, 0, 0, 44973, 5, '');
|
||||
|
||||
DELETE FROM `spell_script_names` WHERE `spell_id` = 83781 AND `ScriptName` = 'spell_gen_reverse_cast_target_to_caster_triggered';
|
||||
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
|
||||
(83781, 'spell_gen_reverse_cast_target_to_caster_triggered');
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceGroup`=1 AND `SourceEntry`=83781 AND `SourceId`=0 AND `ElseGroup`=0 AND `ConditionTypeOrReference`=31 AND `ConditionTarget`=0 AND `ConditionValue1`=3 AND `ConditionValue2`=44882 AND `ConditionValue3`=0;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(13, 1, 83781, 0, 0, 31, 0, 3, 44882, 0, 0, 0, 0, '', 'Reverse Cast Ride Vehicle - Target Deathstalker Rane Yorick');
|
||||
|
||||
DELETE FROM `spell_script_names` WHERE `spell_id` = 80743 AND `ScriptName` = 'spell_gen_eject_passenger_1';
|
||||
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
|
||||
(80743, 'spell_gen_eject_passenger_1');
|
||||
|
||||
DELETE FROM `vehicle_seat_addon` WHERE `SeatEntry`=8420;
|
||||
INSERT INTO `vehicle_seat_addon` (`SeatEntry`, `SeatOrientation`, `ExitParamX`, `ExitParamY`, `ExitParamZ`, `ExitParamO`, `ExitParamValue`) VALUES
|
||||
(8420, 1, 1311.91, 1207.39, 58.477764, 1.5707, 2);
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id`= 448840;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`, `action`, `action_chance`, `wpguid`) VALUES
|
||||
(448840, 0, 1296.2, 1210.54, 58.5533, NULL, 0, 0, 0, 0, 0),
|
||||
(448840, 1, 1297.2, 1210.54, 58.5533, NULL, 0, 0, 0, 0, 0),
|
||||
(448840, 2, 1302.31, 1206.61, 58.4984, NULL, 0, 0, 0, 0, 0),
|
||||
(448840, 3, 1308.4, 1206.28, 58.5109, NULL, 0, 0, 0, 0, 0);
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id`= 448841;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`, `action`, `action_chance`, `wpguid`) VALUES
|
||||
(448841, 0, 1312.585, 1209.135, 58.7603, NULL, 0, 0, 0, 0, 0),
|
||||
(448841, 1, 1313.18, 1210.32, 58.5093, NULL, 0, 0, 0, 0, 0);
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id`= 448842;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`, `action`, `action_chance`, `wpguid`) VALUES
|
||||
(448842, 0, 1311.25, 1208.875, 58.7602, NULL, 0, 0, 0, 0, 0),
|
||||
(448842, 1, 1309.32, 1206.43, 58.5111, NULL, 0, 0, 0, 0, 0);
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id`= 448843;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`, `action`, `action_chance`, `wpguid`) VALUES
|
||||
(448843, 0, 1304.2949, 1207.105, 58.760803, NULL, 0, 0, 0, 0, 0),
|
||||
(448843, 1, 1299.0449, 1209.605, 58.760803, NULL, 0, 0, 0, 0, 0),
|
||||
(448843, 2, 1297.27, 1212.28, 58.5105, NULL, 0, 0, 0, 0, 0);
|
||||
|
||||
-- Deathstalker Rane Yorick (44848)
|
||||
DELETE FROM `creature` WHERE `guid`=@CGUID+0;
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `phaseUseFlags`, `PhaseId`, `PhaseGroup`, `terrainSwapMap`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `unit_flags2`, `unit_flags3`, `dynamicflags`, `ScriptName`, `VerifiedBuild`) VALUES
|
||||
(@CGUID+0, 44899, 0, 130, 239, '0', 0, 169, 0, -1, 0, 1, 1295.52, 1206.65, 58.5013, 0.023232, 120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 45338);
|
||||
|
||||
DELETE FROM `creature_template_addon` WHERE `entry`=44899;
|
||||
INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `MountCreatureID`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(44899, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, '83738 29266');
|
||||
@@ -0,0 +1,445 @@
|
||||
-- Harbor Guard, Boralus
|
||||
SET @PHASE := 0;
|
||||
SET @SWAP := -1;
|
||||
SET @CGUID := 850489;
|
||||
SET @TEXTID := 570009;
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+109;
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `PhaseGroup`, `terrainSwapMap`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES
|
||||
(@CGUID+0, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1034.3021, -643.67883, 6.5981894, 5.769036769866943359, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+1, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1061.8959, -605.31946, 10.095992, 3.233160257339477539, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+2, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1041.3942, -650.84894, 6.601241, 2.507797002792358398, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+3, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1184.7084, -646.9149, 29.308945, 1.885871648788452148, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+4, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1152.0781, -621.30206, 29.030197, 4.007323741912841796, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+5, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1103.467, -625.17883, 17.69587, 3.104446887969970703, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+6, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1120.816, -653.52606, 28.76035, 1.857107400894165039, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+7, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1210.6979, -635.3941, 29.10672, 2.006209850311279296, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+8, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1103.0834, -619.0643, 17.692612, 3.102559328079223632, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+9, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1144.6858, -626.53644, 29.158125, 0.625758707523345947, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+10, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1181.6198, -647.6215, 29.19025, 1.72223055362701416, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+11, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1108.9445, -653.35767, 28.850712, 1.500683784484863281, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+12, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1204.0632, -594.7064, 29.726881, 4.568369865417480468, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+13, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1118.7916, -531.25696, 17.636873, 2.627381563186645507, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+14, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1212.2952, -597.7535, 29.998726, 2.945282459259033203, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+15, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1196.5122, -573.15454, 29.338512, 0.597621858119964599, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+16, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1121.3629, -526.1632, 17.636871, 2.663304805755615234, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+17, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1178.5851, -541.7344, 28.706894, 2.026967525482177734, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+18, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1215.0573, -573.4514, 29.999407, 3.042416572570800781, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+19, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1226.882, -632.1875, 29.917624, 3.031175851821899414, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+20, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1150.5504, -497.9462, 28.94168, 4.186792373657226562, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+21, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1137.0243, -492.36978, 28.88535, 4.381020545959472656, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+22, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1083.3281, -503.30557, 20.411716, 4.480020523071289062, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+23, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1077.8594, -501.7396, 20.411736, 4.422213554382324218, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+24, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1140.6146, -481.99652, 30.503826, 0.692293524742126464, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+25, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1154.901, -487.25, 30.503826, 2.095669031143188476, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+26, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1079.7101, -489.0955, 20.422256, 6.019900321960449218, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+27, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1088.1892, -491.84027, 20.745968, 2.924517393112182617, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+28, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1081.4774, -482.6632, 20.422256, 6.037154674530029296, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+29, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1089.9166, -485.24307, 20.745966, 2.849184989929199218, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+30, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1099.7135, -477.14584, 36.5165, 3.296612024307250976, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+31, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1056.2101, -487.01562, 9.783455, 0.874796748161315917, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+32, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1071.9983, -482.1979, 36.507454, 6.010880470275878906, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+33, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1098.8577, -467.89236, 15.752041, 1.268200516700744628, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+34, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1247.0122, -605.44446, 29.866236, 3.018009185791015625, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+35, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1251.7743, -573.5781, 30.08463, 2.821799278259277343, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+36, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1155.3802, -465.18228, 22.684223, 1.450215816497802734, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+37, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1139.651, -457.14758, 1.5553675, 1.341344237327575683, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+38, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1141.257, -437.01562, 1.5991011, 2.755962610244750976, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+39, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1075.2344, -469.4705, 36.46036, 6.021981239318847656, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+40, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1103.0312, -456.08682, 15.75465, 4.387400627136230468, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+41, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1130.1858, -434.28473, 9.151121, 4.266849994659423828, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+42, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1137.0122, -437.2639, 9.073485, 4.064449310302734375, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+43, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1057.4219, -478.59027, 44.455364, 2.887667655944824218, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+44, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1124.2865, -432.19965, 9.091909, 4.20603036880493164, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+45, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1064.8073, -458.96182, 36.388645, 0.055322378873825073, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+46, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1060.6198, -466.29514, 44.446175, 2.876565456390380859, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+47, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1094.1146, -415.12326, 8.244351, 3.864057540893554687, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+48, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1092.0892, -414.81647, 20.852787, 2.881898403167724609, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+49, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1084.9688, -412.40277, 8.24435, 5.091888427734375, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+50, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1070.7596, -414.58847, 20.30833, 1.330700993537902832, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+51, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1058.1562, -441.3837, 36.404633, 1.450215816497802734, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+52, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1067.1927, -428.17188, 8.211898, 5.984140872955322265, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+53, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1057.5312, -441.24133, 45.095848, 1.6782304048538208, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+54, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1045.9254, -473.96008, 8.469385, 2.958672761917114257, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+55, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1047.1754, -464.54514, 8.469385, 3.08473515510559082, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+56, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1027.3611, -454.15973, 8.469385, 3.934971332550048828, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+57, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1014.0313, -453.12848, 8.469384, 5.370421409606933593, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+58, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1019.5035, -473.06598, 44.40199, 1.416924715042114257, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+59, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1009.3472, -472.04166, 44.39414, 1.416924715042114257, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+60, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 995.86285, -451.11285, 8.469383, 4.543698787689208984, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+61, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 993.43054, -472.51562, 8.469383, 2.07044839859008789, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+62, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 987.5399, -459.8559, 44.411095, 0.828307569026947021, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+63, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 975.3125, -435.49133, 45.09585, 1.404638528823852539, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+64, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 975.3906, -435.80557, 36.404907, 1.450215816497802734, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+65, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 975.1476, -456.4896, 9.354272, 4.78944253921508789, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+66, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 2, 970.6858, -488.85938, 50.51387, 1.449518084526062011, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+67, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 932.98267, -466.14758, 8.482045, 1.722745060920715332, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+68, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 931.16144, -473.2604, 44.39513, 1.586837649345397949, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+69, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 917.40454, -488.14932, 48.589867, 5.136312484741210937, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+70, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 941.3455, -472.55035, 44.39677, 1.586837649345397949, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+71, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 2, 937.0643, -486.93228, 46.56451, 1.813459157943725585, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+72, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 2, 895.36456, -495.09027, 50.508125, 1.449518084526062011, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+73, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 892.67883, -440.89236, 45.095848, 1.6782304048538208, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+74, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 889, -462.25522, 44.285713, 2.266650915145874023, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+75, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 892.6632, -441.56076, 36.404945, 1.812742948532104492, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+76, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 895.0278, -461.63196, 9.353762, 5.149339199066162109, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+77, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 880.0868, -492.42014, 48.58915, 5.043710708618164062, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+78, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 863.6198, -481.7587, 44.41159, 1.691204786300659179, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+79, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 853.5608, -483.533, 44.411636, 1.691204786300659179, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+80, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 2, 861.24133, -496.3264, 46.564507, 1.821044325828552246, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+81, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 839.0052, -466.8455, 8.518489, 5.061078548431396484, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+82, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 2, 685.55554, -562.38367, 46.56451, 1.915830612182617187, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+83, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 682.84375, -547.5226, 44.411537, 2.034405708312988281, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+84, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 668.5018, -571.76215, 48.588943, 5.451231956481933593, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+85, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 673.9653, -552.5764, 44.41169, 2.034405708312988281, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+86, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 2, 651.3768, -587.55206, 50.51471, 2.083998680114746093, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+87, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 625.184, -540.8403, 45.095848, 2.229593753814697265, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+88, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 625.5816, -541.40106, 36.404648, 2.256578445434570312, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+89, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 617.6042, -590.3924, 44.396873, 2.153968334197998046, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+90, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 609.3889, -596.4792, 44.397568, 2.153968334197998046, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+91, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 2, 621.9097, -604.4618, 46.56451, 2.085245609283447265, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+92, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 607.88367, -614.6458, 48.590736, 5.42398834228515625, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+93, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 559.934, -591.658, 36.40496, 2.256578445434570312, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+94, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 559.26044, -590.9653, 45.067493, 2.357693910598754882, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+95, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 2, 591.2934, -634.2969, 50.51132, 2.047462701797485351, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+96, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 2, 564.19965, -654.65625, 46.56451, 2.225885391235351562, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+97, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 557.80206, -641.23267, 44.41151, 2.306891918182373046, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+98, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 550.61115, -648.50696, 44.41157, 2.306891918182373046, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+99, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 550.21875, -668.9566, 48.59039, 5.74417734146118164, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+100, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 500.43057, -649.3524, 45.09585, 2.557073593139648437, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+101, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 500.70486, -649.7083, 36.40481, 2.403389930725097656, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+102, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 2, 537.96356, -688.2969, 50.508606, 2.269807815551757812, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+103, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 2, 513.6667, -712.3351, 46.56451, 2.582665443420410156, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+104, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 505.592, -699.36285, 44.411507, 2.426956892013549804, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+105, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 499.32465, -707.44617, 44.411568, 2.426956892013549804, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+106, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 501.5104, -727.5347, 48.589497, 6.022709846496582031, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+107, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 450.04514, -715.3316, 36.404766, 2.609012603759765625, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+108, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 2, 491.56424, -748.3524, 50.51389, 2.260369777679443359, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+109, 136633, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 449.72223, -715.0625, 45.095848, 2.523899555206298828, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0);
|
||||
|
||||
DELETE FROM `creature_addon` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+109;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`mount`,`MountCreatureID`,`bytes1`,`bytes2`,`emote`,`aiAnimKit`,`movementAnimKit`,`meleeAnimKit`,`visibilityDistanceType`,`auras`) VALUES
|
||||
(@CGUID+0,0,0,0,0,1,717,0,0,0,0,'131700'),
|
||||
(@CGUID+1,0,0,0,0,1,885,0,0,0,0,'131700'),
|
||||
(@CGUID+2,0,0,0,0,1,885,0,0,0,0,'131700'),
|
||||
(@CGUID+3,0,0,0,0,1,717,0,0,0,0,'131700'),
|
||||
(@CGUID+4,0,0,0,0,1,885,0,0,0,0,'131700'),
|
||||
(@CGUID+5,0,0,0,0,1,885,0,0,0,0,'131700'),
|
||||
(@CGUID+6,0,0,0,0,1,717,0,0,0,0,'131700'),
|
||||
(@CGUID+7,0,0,0,0,1,885,0,0,0,0,'131700'),
|
||||
(@CGUID+8,0,0,0,0,1,717,0,0,0,0,'131700'),
|
||||
(@CGUID+9,0,0,0,0,1,717,0,0,0,0,'131700'),
|
||||
(@CGUID+10,0,0,0,0,1,885,0,0,0,0,'131700'),
|
||||
(@CGUID+11,0,0,0,0,1,885,0,0,0,0,'131700'),
|
||||
(@CGUID+12,0,82148,0,0,1,0,0,0,0,0,'131700'),
|
||||
(@CGUID+13,0,0,0,0,1,885,0,0,0,0,'131700'),
|
||||
(@CGUID+14,0,0,0,0,1,885,0,0,0,0,'131700'),
|
||||
(@CGUID+15,0,0,0,0,1,885,0,0,0,0,'131700'),
|
||||
(@CGUID+16,0,0,0,0,1,884,0,0,0,0,'131700'),
|
||||
(@CGUID+17,0,0,0,0,1,885,0,0,0,0,'131700'),
|
||||
(@CGUID+18,0,0,0,0,1,885,0,0,0,0,'131700'),
|
||||
(@CGUID+19,0,0,0,0,1,885,0,0,0,0,'131700'),
|
||||
(@CGUID+20,0,0,0,0,1,885,0,0,0,0,'131700'),
|
||||
(@CGUID+21,0,0,0,0,1,717,0,0,0,0,'131700'),
|
||||
(@CGUID+22,0,0,0,0,1,885,0,0,0,0,'131700'),
|
||||
(@CGUID+23,0,0,0,0,1,884,0,0,0,0,'131700'),
|
||||
(@CGUID+24,0,0,0,0,1,885,0,0,0,0,'131700'),
|
||||
(@CGUID+25,0,0,0,0,1,717,0,0,0,0,'131700'),
|
||||
(@CGUID+26,0,0,0,0,1,717,0,0,0,0,'131700'),
|
||||
(@CGUID+27,0,0,0,0,1,885,0,0,0,0,'131700'),
|
||||
(@CGUID+28,0,0,0,0,1,717,0,0,0,0,'131700'),
|
||||
(@CGUID+29,0,0,0,0,1,885,0,0,0,0,'131700'),
|
||||
(@CGUID+30,0,0,0,0,0,0,0,0,0,0,'131700'),
|
||||
(@CGUID+31,0,0,0,0,1,885,0,0,0,0,'131700'),
|
||||
(@CGUID+32,0,0,0,0,1,716,0,0,0,0,'131700'),
|
||||
(@CGUID+33,0,0,0,0,1,717,0,0,0,0,'131700'),
|
||||
(@CGUID+34,0,0,0,0,1,885,0,0,0,0,'131700'),
|
||||
(@CGUID+35,0,0,0,0,1,717,0,0,0,0,'131700'),
|
||||
(@CGUID+36,0,0,0,0,2,214,0,0,0,0,'131700'),
|
||||
(@CGUID+37,0,0,0,0,2,214,0,0,0,0,'131700'),
|
||||
(@CGUID+38,0,0,0,0,2,214,0,0,0,0,'131700'),
|
||||
(@CGUID+39,0,0,0,0,1,716,0,0,0,0,'131700'),
|
||||
(@CGUID+40,0,0,0,0,1,716,0,0,0,0,'131700'),
|
||||
(@CGUID+41,0,0,0,0,2,214,0,0,0,0,'131700'),
|
||||
(@CGUID+42,0,0,0,0,2,214,0,0,0,0,'131700'),
|
||||
(@CGUID+43,0,0,0,0,1,716,0,0,0,0,'131700'),
|
||||
(@CGUID+44,0,0,0,0,2,214,0,0,0,0,'131700'),
|
||||
(@CGUID+45,0,0,0,0,2,214,0,0,0,0,'131700'),
|
||||
(@CGUID+46,0,0,0,0,1,716,0,0,0,0,'131700'),
|
||||
(@CGUID+47,0,0,0,0,1,716,0,0,0,0,'131700'),
|
||||
(@CGUID+48,0,0,0,0,2,0,15908,0,0,0,'131700'),
|
||||
(@CGUID+49,0,0,0,0,1,717,0,0,0,0,'131700'),
|
||||
(@CGUID+50,0,0,0,0,2,0,15908,0,0,0,'131700'),
|
||||
(@CGUID+51,0,0,0,0,2,214,0,0,0,0,'131700'),
|
||||
(@CGUID+52,0,0,0,0,1,716,0,0,0,0,'131700'),
|
||||
(@CGUID+53,0,0,0,0,2,214,0,0,0,0,'131700'),
|
||||
(@CGUID+54,0,0,0,0,1,885,0,0,0,0,'131700'),
|
||||
(@CGUID+55,0,0,0,0,1,884,0,0,0,0,'131700'),
|
||||
(@CGUID+56,0,0,0,0,1,885,0,0,0,0,'131700'),
|
||||
(@CGUID+57,0,0,0,0,1,884,0,0,0,0,'131700'),
|
||||
(@CGUID+58,0,0,0,0,1,716,0,0,0,0,'131700'),
|
||||
(@CGUID+59,0,0,0,0,1,716,0,0,0,0,'131700'),
|
||||
(@CGUID+60,0,0,0,0,1,885,0,0,0,0,'131700'),
|
||||
(@CGUID+61,0,0,0,0,1,885,0,0,0,0,'131700'),
|
||||
(@CGUID+62,0,0,0,0,0,0,0,0,0,0,'131700'),
|
||||
(@CGUID+63,0,0,0,0,2,214,0,0,0,0,'131700'),
|
||||
(@CGUID+64,0,0,0,0,2,214,0,0,0,0,'131700'),
|
||||
(@CGUID+65,0,0,0,0,1,885,0,0,0,0,'131700'),
|
||||
(@CGUID+66,0,0,0,0,0,714,0,0,0,0,'131700'),
|
||||
(@CGUID+67,0,0,0,0,1,716,0,0,0,0,'131700'),
|
||||
(@CGUID+68,0,0,0,0,1,716,0,0,0,0,'131700'),
|
||||
(@CGUID+69,0,0,0,0,2,214,0,0,0,0,'131700'),
|
||||
(@CGUID+70,0,0,0,0,1,716,0,0,0,0,'131700'),
|
||||
(@CGUID+71,0,0,0,0,0,714,0,0,0,0,'131700'),
|
||||
(@CGUID+72,0,0,0,0,0,714,0,0,0,0,'131700'),
|
||||
(@CGUID+73,0,0,0,0,2,214,0,0,0,0,'131700'),
|
||||
(@CGUID+74,0,0,0,0,0,0,0,0,0,0,'131700'),
|
||||
(@CGUID+75,0,0,0,0,2,214,0,0,0,0,'131700'),
|
||||
(@CGUID+76,0,0,0,0,1,885,0,0,0,0,'131700'),
|
||||
(@CGUID+77,0,0,0,0,2,214,0,0,0,0,'131700'),
|
||||
(@CGUID+78,0,0,0,0,1,716,0,0,0,0,'131700'),
|
||||
(@CGUID+79,0,0,0,0,1,716,0,0,0,0,'131700'),
|
||||
(@CGUID+80,0,0,0,0,0,714,0,0,0,0,'131700'),
|
||||
(@CGUID+81,0,0,0,0,1,885,0,0,0,0,'131700'),
|
||||
(@CGUID+82,0,0,0,0,0,714,0,0,0,0,'131700'),
|
||||
(@CGUID+83,0,0,0,0,1,716,0,0,0,0,'131700'),
|
||||
(@CGUID+84,0,0,0,0,2,214,0,0,0,0,'131700'),
|
||||
(@CGUID+85,0,0,0,0,1,716,0,0,0,0,'131700'),
|
||||
(@CGUID+86,0,0,0,0,0,714,0,0,0,0,'131700'),
|
||||
(@CGUID+87,0,0,0,0,2,214,0,0,0,0,'131700'),
|
||||
(@CGUID+88,0,0,0,0,2,214,0,0,0,0,'131700'),
|
||||
(@CGUID+89,0,0,0,0,1,716,0,0,0,0,'131700'),
|
||||
(@CGUID+90,0,0,0,0,1,716,0,0,0,0,'131700'),
|
||||
(@CGUID+91,0,0,0,0,0,714,0,0,0,0,'131700'),
|
||||
(@CGUID+92,0,0,0,0,2,214,0,0,0,0,'131700'),
|
||||
(@CGUID+93,0,0,0,0,2,214,0,0,0,0,'131700'),
|
||||
(@CGUID+94,0,0,0,0,2,214,0,0,0,0,'131700'),
|
||||
(@CGUID+95,0,0,0,0,0,714,0,0,0,0,'131700'),
|
||||
(@CGUID+96,0,0,0,0,0,714,0,0,0,0,'131700'),
|
||||
(@CGUID+97,0,0,0,0,1,716,0,0,0,0,'131700'),
|
||||
(@CGUID+98,0,0,0,0,1,716,0,0,0,0,'131700'),
|
||||
(@CGUID+99,0,0,0,0,2,214,0,0,0,0,'131700'),
|
||||
(@CGUID+100,0,0,0,0,2,214,0,0,0,0,'131700'),
|
||||
(@CGUID+101,0,0,0,0,2,214,0,0,0,0,'131700'),
|
||||
(@CGUID+102,0,0,0,0,0,714,0,0,0,0,'131700'),
|
||||
(@CGUID+103,0,0,0,0,0,714,0,0,0,0,'131700'),
|
||||
(@CGUID+104,0,0,0,0,1,716,0,0,0,0,'131700'),
|
||||
(@CGUID+105,0,0,0,0,1,716,0,0,0,0,'131700'),
|
||||
(@CGUID+106,0,0,0,0,2,214,0,0,0,0,'131700'),
|
||||
(@CGUID+107,0,0,0,0,2,214,0,0,0,0,'131700'),
|
||||
(@CGUID+108,0,0,0,0,0,714,0,0,0,0,'131700'),
|
||||
(@CGUID+109,0,0,0,0,2,214,0,0,0,0,'131700');
|
||||
|
||||
-- Pathing for Harbor Guard Entry: 136633
|
||||
SET @NPC := @CGUID+12;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `wander_distance`=0,`MovementType`=2,`position_x`=1163.6649,`position_y`=-542.0018,`position_z`=29.019638 WHERE `guid`=@NPC;
|
||||
UPDATE `creature_addon` SET `path_id`=@PATH WHERE `guid`=@NPC;
|
||||
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,1174.3837,-537.92883,28.892218,NULL,0,0,0,100,0),
|
||||
(@PATH,2,1180.4688,-536.34894,28.642218,NULL,0,0,0,100,0),
|
||||
(@PATH,3,1189.8108,-537.0052,28.392218,NULL,0,0,0,100,0),
|
||||
(@PATH,4,1193.2153,-543.15625,28.517218,NULL,0,0,0,100,0),
|
||||
(@PATH,5,1198.1302,-554.40625,29.014044,NULL,0,0,0,100,0),
|
||||
(@PATH,6,1202.5885,-565.91144,29.190498,NULL,0,0,0,100,0),
|
||||
(@PATH,7,1203.3524,-578.3889,29.649534,NULL,0,0,0,100,0),
|
||||
(@PATH,8,1204.2483,-593.43054,29.680296,NULL,0,0,0,100,0),
|
||||
(@PATH,9,1202.2084,-607.5347,29.933348,NULL,0,0,0,100,0),
|
||||
(@PATH,10,1200.7865,-618.3316,29.090208,NULL,0,0,0,100,0),
|
||||
(@PATH,11,1199.1841,-631.65625,28.949871,NULL,0,0,0,100,0),
|
||||
(@PATH,12,1184.4879,-639.1476,28.993471,NULL,0,0,0,100,0),
|
||||
(@PATH,13,1163.5139,-643.48615,29.032167,NULL,0,0,0,100,0),
|
||||
(@PATH,14,1153.4584,-630.5382,29.030197,NULL,0,0,0,100,0),
|
||||
(@PATH,15,1149.4653,-625.11633,29.030197,NULL,4000,0,0,100,0),
|
||||
(@PATH,16,1153.4584,-630.5382,29.030197,NULL,0,0,0,100,0),
|
||||
(@PATH,17,1163.5139,-643.48615,29.032167,NULL,0,0,0,100,0),
|
||||
(@PATH,18,1184.4879,-639.1476,28.993471,NULL,0,0,0,100,0),
|
||||
(@PATH,19,1199.1841,-631.65625,28.949871,NULL,0,0,0,100,0),
|
||||
(@PATH,20,1200.7865,-618.3316,29.090208,NULL,0,0,0,100,0),
|
||||
(@PATH,21,1202.2084,-607.5347,29.933348,NULL,0,0,0,100,0),
|
||||
(@PATH,22,1204.2483,-593.43054,29.680296,NULL,0,0,0,100,0),
|
||||
(@PATH,23,1203.3524,-578.3889,29.649534,NULL,0,0,0,100,0),
|
||||
(@PATH,24,1202.5885,-565.91144,29.190498,NULL,0,0,0,100,0),
|
||||
(@PATH,25,1198.1302,-554.40625,29.014044,NULL,0,0,0,100,0),
|
||||
(@PATH,26,1193.2153,-543.15625,28.517218,NULL,0,0,0,100,0),
|
||||
(@PATH,27,1189.8108,-537.0052,28.392218,NULL,0,0,0,100,0),
|
||||
(@PATH,28,1180.4688,-536.34894,28.642218,NULL,0,0,0,100,0),
|
||||
(@PATH,29,1174.3837,-537.92883,28.892218,NULL,0,0,0,100,0),
|
||||
(@PATH,30,1163.6649,-542.0018,29.019638,NULL,4000,0,0,100,0);
|
||||
|
||||
-- Pathing for Harbor Guard Entry: 136633
|
||||
SET @NPC := @CGUID+48;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `wander_distance`=0,`MovementType`=2,`position_x`=1075.7665,`position_y`=-410.47943,`position_z`=20.753847 WHERE `guid`=@NPC;
|
||||
UPDATE `creature_addon` SET `path_id`=@PATH WHERE `guid`=@NPC;
|
||||
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,1075.7665,-410.47943,20.753847,NULL,0,0,0,100,0),
|
||||
(@PATH,2,1108.625,-419.21008,20.894451,NULL,0,0,0,100,0);
|
||||
|
||||
-- Pathing for Harbor Guard Entry: 136633
|
||||
SET @NPC := @CGUID+50;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `wander_distance`=0,`MovementType`=2,`position_x`=1066.4219,`position_y`=-432.30557,`position_z`=20.309467 WHERE `guid`=@NPC;
|
||||
UPDATE `creature_addon` SET `path_id`=@PATH WHERE `guid`=@NPC;
|
||||
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,1066.4219,-432.30557,20.309467,NULL,0,0,0,100,0),
|
||||
(@PATH,2,1070.9028,-414.00348,20.311993,NULL,0,0,0,100,0);
|
||||
|
||||
-- Missing POI for Harbor Guard gossip
|
||||
DELETE FROM `points_of_interest` WHERE `ID` IN (5781,5785,5811,5761,5820,5762,5763,5787,5764,5765,5808,5990,5791,5827,5766,5786,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5759,5782,5783,5784);
|
||||
INSERT INTO `points_of_interest` (`ID`,`PositionX`,`PositionY`,`PositionZ`,`Icon`,`Flags`,`Importance`,`Name`,`Unknown905`,`VerifiedBuild`) VALUES
|
||||
(5781,1102.95,-621.983,17.539,7,99,0,'Boralus Bank',57416,45745),
|
||||
(5785,995.472,-423.542,13.0858,7,99,0,'Boralus Barber',57242,45745),
|
||||
(5811,-607.333,3128.97,323.964,7,99,0,'Order of Embers Emissary',0,45745),
|
||||
(5761,1075.6,-477.736,9.70013,7,99,0,'Proudmoore Admiralty Emissary',57708,45745),
|
||||
(5820,2539.57,-21.9497,54.416,7,99,0,'Storm''s Wake Emissary',0,45745),
|
||||
(5762,3785.04,1042.2,8.87555,7,99,0,'Tortollan Seekers Emissary',0,45745),
|
||||
(5763,1153.86,-467.995,31.292,7,99,0,'Tradewinds Market Flight Master',57427,45745),
|
||||
(5787,1147.85,-517.068,28.9041,7,99,0,'Boralus Guild Master & Vendor',59020,45745),
|
||||
(5764,1181.9,-596.163,31.6579,7,99,0,'Boralus Inn',59019,45745),
|
||||
(5765,1035.35,-595.653,1.4034,7,99,0,'Boralus Ferry Master',55946,45745),
|
||||
(5808,1028,-651.729,6.51333,7,99,0,'Boralus Ship to Stormwind',0,45745),
|
||||
(5990,1013.92,-485.451,21.8422,7,99,0,'Alliance Ship to Zandalar',0,45745),
|
||||
(5791,1042.79,-410.582,4.84288,7,99,0,'Boralus Training Dummies',0,45745),
|
||||
(5827,1118.04,-527.735,17.5536,7,99,0,'Boralus Portals',54774,45745),
|
||||
(5766,1139.99,-645.859,29.3481,7,99,0,'Boralus Scrapper',0,45745),
|
||||
(5786,1176.09,-515.113,28.9326,7,99,0,'Boralus Stable Master',0,45745),
|
||||
(5767,1254.16,-598.438,30.3638,7,99,0,'Boralus Alchemy Trainer',53985,45745),
|
||||
(5768,1231.98,-492.358,32.7131,7,99,0,'Boralus Archaeology Trainer',56825,45745),
|
||||
(5769,1231.58,-583.481,25.4333,7,99,0,'Boralus Blacksmithing Trainer',0,45745),
|
||||
(5770,1205.71,-543.972,29.9404,7,99,0,'Boralus Cooking Trainer',58757,45745),
|
||||
(5771,1195.19,-594.561,29.7135,7,99,0,'Boralus Enchanting Trainer',0,45745),
|
||||
(5772,1161.93,-659.085,29.0116,7,99,0,'Boralus Engineering Trainer',57070,45745),
|
||||
(5773,1265.64,-596.531,40.2596,7,99,0,'Boralus Fishing Trainer',55949,45745),
|
||||
(5774,1265.93,-545.67,33.3579,7,99,0,'Boralus Herbalism Trainer',0,45745),
|
||||
(5775,1257.64,-583.148,31.0732,7,99,0,'Boralus Inscription Trainer',53985,45745),
|
||||
(5776,1215.18,-615.585,29.7355,7,99,0,'Boralus Jewelcrafting Trainer',0,45745),
|
||||
(5777,1182.65,-620.378,29.4332,7,99,0,'Boralus Leatherworking Trainer',55945,45745),
|
||||
(5778,1242.96,-616.021,30.1357,7,99,0,'Boralus Mining Trainer',0,45745),
|
||||
(5779,1173.19,-623.764,29.241,7,99,0,'Boralus Skinning Trainer',55944,45745),
|
||||
(5780,1199.85,-646.623,29.1744,7,99,0,'Boralus Tailoring Trainer',57071,45745),
|
||||
(5759,1163.55,-557.992,28.9018,7,99,0,'Boralus Transmogrifier',59020,45745),
|
||||
(5782,1121.73,-569.995,17.1779,7,99,0,'Boralus General Goods Vendor',59020,45745),
|
||||
(5783,1139.8,-596.28,20.5492,7,99,0,'Boralus Repair Vendor',59020,45745),
|
||||
(5784,1196.2,-578.976,29.6297,7,99,0,'Boralus Trade Goods Vendor',55946,45745);
|
||||
|
||||
-- Missing gossip_menu_option for Harbor Guard gossip
|
||||
DELETE FROM `gossip_menu_option` WHERE `MenuID` IN (23083,23088);
|
||||
INSERT INTO `gossip_menu_option` (`MenuID`, `OptionID`, `OptionNpc`, `OptionText`, `OptionBroadcastTextId`, `Language`, `ActionMenuID`, `ActionPoiID`, `BoxCoded`, `BoxMoney`, `BoxText`, `BoxBroadcastTextID`, `VerifiedBuild`) VALUES
|
||||
(23083, 0, 0, 'Order of Embers Emissary', 160750, 0, 23175, 5811, 0, 0, NULL, 0, 45745),
|
||||
(23083, 1, 0, 'Proudmoore Admiralty Emissary', 160197, 0, 23084, 5761, 0, 0, NULL, 0, 45745),
|
||||
(23083, 2, 0, 'Storm\'s Wake Emissary', 160769, 0, 23178, 5820, 0, 0, NULL, 0, 45745),
|
||||
(23083, 3, 0, 'Tortollan Seekers Emissary', 159630, 0, 23085, 5762, 0, 0, NULL, 0, 45745),
|
||||
(23088, 0, 0, 'Ferry Master', 160218, 0, 23089, 5765, 0, 0, NULL, 0, 45745),
|
||||
(23088, 1, 0, 'Ship to Stormwind', 160714, 0, 23170, 5808, 0, 0, NULL, 0, 45745),
|
||||
(23088, 2, 0, 'Ship to Zandalar', 167082, 0, 23699, 5990, 0, 0, NULL, 0, 45745),
|
||||
(23088, 3, 0, 'Training Dummies', 159714, 0, 23146, 5791, 0, 0, NULL, 0, 45745);
|
||||
|
||||
-- Update gossip_menu_option for Harbor Guard gossip
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23082, `ActionPoiID`=5781 WHERE `MenuID`=23077 AND `OptionID`=0;
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23123, `ActionPoiID`=5785 WHERE `MenuID`=23077 AND `OptionID`=1;
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23083, `ActionPoiID`=0 WHERE `MenuID`=23077 AND `OptionID`=2;
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23175, `ActionPoiID`=5811 WHERE `MenuID`=23083 AND `OptionID`=0;
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23084, `ActionPoiID`=5761 WHERE `MenuID`=23083 AND `OptionID`=1;
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23178, `ActionPoiID`=5820 WHERE `MenuID`=23083 AND `OptionID`=2;
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23085, `ActionPoiID`=5762 WHERE `MenuID`=23083 AND `OptionID`=3;
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23086, `ActionPoiID`=5763 WHERE `MenuID`=23077 AND `OptionID`=3;
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23126, `ActionPoiID`=5787 WHERE `MenuID`=23077 AND `OptionID`=4;
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23087, `ActionPoiID`=5764 WHERE `MenuID`=23077 AND `OptionID`=5;
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23088, `ActionPoiID`=0 WHERE `MenuID`=23077 AND `OptionID`=6;
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23089, `ActionPoiID`=5765 WHERE `MenuID`=23088 AND `OptionID`=0;
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23170, `ActionPoiID`=5808 WHERE `MenuID`=23088 AND `OptionID`=1;
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23699, `ActionPoiID`=5990 WHERE `MenuID`=23088 AND `OptionID`=2;
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23146, `ActionPoiID`=5791 WHERE `MenuID`=23088 AND `OptionID`=3;
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23245, `ActionPoiID`=5827 WHERE `MenuID`=23077 AND `OptionID`=7;
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23090, `ActionPoiID`=5766 WHERE `MenuID`=23077 AND `OptionID`=8;
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23125, `ActionPoiID`=5786 WHERE `MenuID`=23077 AND `OptionID`=9;
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23092, `ActionPoiID`=0 WHERE `MenuID`=23077 AND `OptionID`=10;
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23093, `ActionPoiID`=5767 WHERE `MenuID`=23092 AND `OptionID`=0;
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23095, `ActionPoiID`=5768 WHERE `MenuID`=23092 AND `OptionID`=1;
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23097, `ActionPoiID`=5769 WHERE `MenuID`=23092 AND `OptionID`=2;
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23098, `ActionPoiID`=5770 WHERE `MenuID`=23092 AND `OptionID`=3;
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23102, `ActionPoiID`=5771 WHERE `MenuID`=23092 AND `OptionID`=4;
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23103, `ActionPoiID`=5772 WHERE `MenuID`=23092 AND `OptionID`=5;
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23104, `ActionPoiID`=5773 WHERE `MenuID`=23092 AND `OptionID`=6;
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23105, `ActionPoiID`=5774 WHERE `MenuID`=23092 AND `OptionID`=7;
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23106, `ActionPoiID`=5775 WHERE `MenuID`=23092 AND `OptionID`=8;
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23107, `ActionPoiID`=5776 WHERE `MenuID`=23092 AND `OptionID`=9;
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23108, `ActionPoiID`=5777 WHERE `MenuID`=23092 AND `OptionID`=10;
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23109, `ActionPoiID`=5778 WHERE `MenuID`=23092 AND `OptionID`=11;
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23113, `ActionPoiID`=5779 WHERE `MenuID`=23092 AND `OptionID`=12;
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23116, `ActionPoiID`=5780 WHERE `MenuID`=23092 AND `OptionID`=13;
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23117, `ActionPoiID`=5759 WHERE `MenuID`=23077 AND `OptionID`=11;
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23118, `ActionPoiID`=0 WHERE `MenuID`=23077 AND `OptionID`=12;
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23119, `ActionPoiID`=5782 WHERE `MenuID`=23118 AND `OptionID`=0;
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23121, `ActionPoiID`=5783 WHERE `MenuID`=23118 AND `OptionID`=1;
|
||||
UPDATE `gossip_menu_option` SET `ActionMenuID`=23122, `ActionPoiID`=5784 WHERE `MenuID`=23118 AND `OptionID`=2;
|
||||
|
||||
-- Missing gossip_menu for Harbor Guard gossip
|
||||
DELETE FROM `gossip_menu` WHERE `MenuID` IN (23123,23083,23175,23084,23178,23085,23086,23126,23125,23089,23170,23699,23093,23245,23095,23098,23102,23103,23106,23108,23113,23116,23119,23121,23122);
|
||||
INSERT INTO `gossip_menu` (`MenuID`,`TextID`,`VerifiedBuild`) VALUES
|
||||
(23116,@TEXTID,45745),
|
||||
(23119,@TEXTID+1,45745),
|
||||
(23121,@TEXTID+2,45745),
|
||||
(23122,@TEXTID+3,45745),
|
||||
(23123,@TEXTID+4,45745),
|
||||
(23125,@TEXTID+5,45745),
|
||||
(23126,@TEXTID+6,45745),
|
||||
(23083,@TEXTID+7,45745),
|
||||
(23084,@TEXTID+8,45745),
|
||||
(23085,@TEXTID+9,45745),
|
||||
(23086,@TEXTID+10,45745),
|
||||
(23089,@TEXTID+11,45745),
|
||||
(23093,@TEXTID+12,45745),
|
||||
(23095,@TEXTID+13,45745),
|
||||
(23699,@TEXTID+14,45745),
|
||||
(23098,@TEXTID+15,45745),
|
||||
(23102,@TEXTID+16,45745),
|
||||
(23170,@TEXTID+17,45745),
|
||||
(23103,@TEXTID+18,45745),
|
||||
(23106,@TEXTID+19,45745),
|
||||
(23108,@TEXTID+20,45745),
|
||||
(23175,@TEXTID+21,45745),
|
||||
(23245,@TEXTID+22,45745),
|
||||
(23178,@TEXTID+23,45745),
|
||||
(23113,@TEXTID+24,45745);
|
||||
|
||||
-- Missing npc_text for Harbor Guard gossip
|
||||
DELETE FROM `npc_text` WHERE `ID` BETWEEN @TEXTID AND @TEXTID + 24;
|
||||
INSERT INTO `npc_text` (`ID`, `Probability0`, `Probability1`, `Probability2`, `Probability3`, `Probability4`, `Probability5`, `Probability6`, `Probability7`, `BroadcastTextId0`, `BroadcastTextId1`, `BroadcastTextId2`, `BroadcastTextId3`, `BroadcastTextId4`, `BroadcastTextId5`, `BroadcastTextId6`, `BroadcastTextId7`, `VerifiedBuild`) VALUES
|
||||
(@TEXTID, 1, 0, 0, 0, 0, 0, 0, 0, 160323, 0, 0, 0, 0, 0, 0, 0, 45745),
|
||||
(@TEXTID+1, 1, 0, 0, 0, 0, 0, 0, 0, 160329, 0, 0, 0, 0, 0, 0, 0, 45745),
|
||||
(@TEXTID+2, 1, 0, 0, 0, 0, 0, 0, 0, 160333, 0, 0, 0, 0, 0, 0, 0, 45745),
|
||||
(@TEXTID+3, 1, 0, 0, 0, 0, 0, 0, 0, 160335, 0, 0, 0, 0, 0, 0, 0, 45745),
|
||||
(@TEXTID+4, 1, 0, 0, 0, 0, 0, 0, 0, 160338, 0, 0, 0, 0, 0, 0, 0, 45745),
|
||||
(@TEXTID+5, 1, 0, 0, 0, 0, 0, 0, 0, 160339, 0, 0, 0, 0, 0, 0, 0, 45745),
|
||||
(@TEXTID+6, 1, 0, 0, 0, 0, 0, 0, 0, 160340, 0, 0, 0, 0, 0, 0, 0, 45745),
|
||||
(@TEXTID+7, 1, 0, 0, 0, 0, 0, 0, 0, 160196, 0, 0, 0, 0, 0, 0, 0, 45745),
|
||||
(@TEXTID+8, 1, 0, 0, 0, 0, 0, 0, 0, 160198, 0, 0, 0, 0, 0, 0, 0, 45745),
|
||||
(@TEXTID+9, 1, 0, 0, 0, 0, 0, 0, 0, 160202, 0, 0, 0, 0, 0, 0, 0, 45745),
|
||||
(@TEXTID+10, 1, 0, 0, 0, 0, 0, 0, 0, 160212, 0, 0, 0, 0, 0, 0, 0, 45745),
|
||||
(@TEXTID+11, 1, 0, 0, 0, 0, 0, 0, 0, 160219, 0, 0, 0, 0, 0, 0, 0, 45745),
|
||||
(@TEXTID+12, 1, 0, 0, 0, 0, 0, 0, 0, 160260, 0, 0, 0, 0, 0, 0, 0, 45745),
|
||||
(@TEXTID+13, 1, 0, 0, 0, 0, 0, 0, 0, 160262, 0, 0, 0, 0, 0, 0, 0, 45745),
|
||||
(@TEXTID+14, 1, 0, 0, 0, 0, 0, 0, 0, 167081, 0, 0, 0, 0, 0, 0, 0, 45745),
|
||||
(@TEXTID+15, 1, 0, 0, 0, 0, 0, 0, 0, 160268, 0, 0, 0, 0, 0, 0, 0, 45745),
|
||||
(@TEXTID+16, 1, 0, 0, 0, 0, 0, 0, 0, 160279, 0, 0, 0, 0, 0, 0, 0, 45745),
|
||||
(@TEXTID+17, 1, 0, 0, 0, 0, 0, 0, 0, 160715, 0, 0, 0, 0, 0, 0, 0, 45745),
|
||||
(@TEXTID+18, 1, 0, 0, 0, 0, 0, 0, 0, 160299, 0, 0, 0, 0, 0, 0, 0, 45745),
|
||||
(@TEXTID+19, 1, 0, 0, 0, 0, 0, 0, 0, 160306, 0, 0, 0, 0, 0, 0, 0, 45745),
|
||||
(@TEXTID+20, 1, 0, 0, 0, 0, 0, 0, 0, 160309, 0, 0, 0, 0, 0, 0, 0, 45745),
|
||||
(@TEXTID+21, 1, 0, 0, 0, 0, 0, 0, 0, 160754, 0, 0, 0, 0, 0, 0, 0, 45745),
|
||||
(@TEXTID+22, 1, 0, 0, 0, 0, 0, 0, 0, 161188, 0, 0, 0, 0, 0, 0, 0, 45745),
|
||||
(@TEXTID+23, 1, 0, 0, 0, 0, 0, 0, 0, 160770, 0, 0, 0, 0, 0, 0, 0, 45745),
|
||||
(@TEXTID+24, 1, 0, 0, 0, 0, 0, 0, 0, 160322, 0, 0, 0, 0, 0, 0, 0, 45745);
|
||||
|
||||
-- Harbor Guard Entry: 136633 SAI
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=136633;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (-@CGUID-30,-@CGUID-62,-@CGUID-74) 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`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_param4`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(-@CGUID-30,0,0,0,1,0,100,0,5000,15000,5000,15000,0,10,1,6,273,274,0,0,1,0,0,0,0,0,0,0,0,'Harbor Guard - OOC - Do random emote'),
|
||||
(-@CGUID-62,0,0,0,1,0,100,0,5000,15000,5000,15000,0,10,1,6,273,274,0,0,1,0,0,0,0,0,0,0,0,'Harbor Guard - OOC - Do random emote'),
|
||||
(-@CGUID-74,0,0,0,1,0,100,0,5000,15000,5000,15000,0,10,1,6,273,274,0,0,1,0,0,0,0,0,0,0,0,'Harbor Guard - OOC - Do random emote');
|
||||
|
||||
@@ -0,0 +1,83 @@
|
||||
-- Harbor Guard Captain Entry: 140350, Boralus
|
||||
SET @PHASE := 0;
|
||||
SET @SWAP := -1;
|
||||
SET @CGUID := 850599;
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+6;
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `PhaseGroup`, `terrainSwapMap`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES
|
||||
(@CGUID+0, 140350, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1056.8473, -995.05035, 16.498705, 5.410520553588867187, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+1, 140350, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1095.974, -634.11285, 17.630829, 3.155911922454833984, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+2, 140350, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1096.9497, -476.63196, 36.510532, 6.233836650848388671, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+3, 140350, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 1014.12115, -466.36838, 44.455368, 3.089592456817626953, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+4, 140350, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 989.7535, -458.97223, 44.41196, 3.809622764587402343, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+5, 140350, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 888.0174, -459.61978, 44.270454, 5.203876495361328125, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0),
|
||||
(@CGUID+6, 140350, 1643, 0, 0, 0, @PHASE, 0, @SWAP, 0, 1, 674.2747, -544.88184, 44.555004, 3.711420297622680664, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0);
|
||||
|
||||
DELETE FROM `creature_addon` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+6;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`mount`,`MountCreatureID`,`bytes1`,`bytes2`,`emote`,`aiAnimKit`,`movementAnimKit`,`meleeAnimKit`,`visibilityDistanceType`,`auras`) VALUES
|
||||
(@CGUID+0,0,0,0,0,1,0,0,0,0,0,'131700'),
|
||||
(@CGUID+1,0,0,0,0,1,0,0,0,0,0,'131700 273259'),
|
||||
(@CGUID+2,0,0,0,0,0,0,0,0,0,0,'131700'),
|
||||
(@CGUID+3,0,0,0,0,1,0,0,0,0,0,'131700'),
|
||||
(@CGUID+4,0,0,0,0,0,0,0,0,0,0,'131700'),
|
||||
(@CGUID+5,0,0,0,0,0,0,0,0,0,0,'131700'),
|
||||
(@CGUID+6,0,0,0,0,1,0,0,0,0,0,'131700');
|
||||
|
||||
-- Harbor Guard Captain Entry: 140350 SAI
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=140350;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (-@CGUID-2,-@CGUID-4,-@CGUID-5) 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`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_param4`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(-@CGUID-2,0,0,0,1,0,100,0,5000,15000,5000,15000,0,10,1,6,273,274,0,0,1,0,0,0,0,0,0,0,0,'Harbor Guard Captain - OOC - Do random emote'),
|
||||
(-@CGUID-4,0,0,0,1,0,100,0,5000,15000,5000,15000,0,10,1,6,273,274,0,0,1,0,0,0,0,0,0,0,0,'Harbor Guard Captain - OOC - Do random emote'),
|
||||
(-@CGUID-5,0,0,0,1,0,100,0,5000,15000,5000,15000,0,10,1,6,273,274,0,0,1,0,0,0,0,0,0,0,0,'Harbor Guard Captain - OOC - Do random emote');
|
||||
|
||||
-- Pathing for Harbor Guard Captain Entry: 140350
|
||||
SET @NPC := @CGUID+3;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `wander_distance`=0,`MovementType`=2,`position_x`=991,`position_y`=-465.16495,`position_z`=44.45536 WHERE `guid`=@NPC;
|
||||
UPDATE `creature_addon` SET `path_id`=@PATH WHERE `guid`=@NPC;
|
||||
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,991,-465.16495,44.45536,NULL,0,0,0,100,0),
|
||||
(@PATH,2,1014.882,-466.408,44.455368,NULL,4000,0,0,100,0),
|
||||
(@PATH,3,991,-465.16495,44.45536,NULL,0,0,0,100,0),
|
||||
(@PATH,4,952.2778,-465.24307,44.45536,NULL,0,0,0,100,0),
|
||||
(@PATH,5,937.3733,-466.38022,44.455368,NULL,0,0,0,100,0),
|
||||
(@PATH,6,913.6455,-469.19626,44.52638,NULL,0,0,0,100,0),
|
||||
(@PATH,7,888.033,-472.69272,44.466824,NULL,0,0,0,100,0),
|
||||
(@PATH,8,857.6893,-477.25174,44.556526,NULL,4000,0,0,100,0),
|
||||
(@PATH,9,888.033,-472.69272,44.466824,NULL,0,0,0,100,0),
|
||||
(@PATH,10,913.6024,-469.2014,44.54396,NULL,0,0,0,100,0),
|
||||
(@PATH,11,937.3733,-466.38022,44.455368,NULL,0,0,0,100,0),
|
||||
(@PATH,12,952.2778,-465.24307,44.45536,NULL,0,0,0,100,0);
|
||||
|
||||
-- Pathing for Harbor Guard Captain Entry: 140350
|
||||
SET @NPC := @CGUID+6;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `wander_distance`=0,`MovementType`=2,`position_x`=657.67017,`position_y`=-555.5208,`position_z`=44.520054 WHERE `guid`=@NPC;
|
||||
UPDATE `creature_addon` SET `path_id`=@PATH WHERE `guid`=@NPC;
|
||||
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,657.67017,-555.5208,44.520054,NULL,0,0,0,100,0),
|
||||
(@PATH,2,674.9167,-544.4705,44.55491,NULL,4000,0,0,100,0),
|
||||
(@PATH,3,657.67017,-555.5208,44.520054,NULL,0,0,0,100,0),
|
||||
(@PATH,4,642.6406,-565.5018,44.472332,NULL,0,0,0,100,0),
|
||||
(@PATH,5,618.8906,-581.25696,44.458122,NULL,0,0,0,100,0),
|
||||
(@PATH,6,608.8403,-588.61115,44.519245,NULL,0,0,0,100,0),
|
||||
(@PATH,7,594.6493,-600.5903,44.528545,NULL,0,0,0,100,0),
|
||||
(@PATH,8,575.8264,-616.2465,44.530075,NULL,0,0,0,100,0),
|
||||
(@PATH,9,562.9549,-627.9358,44.458122,NULL,0,0,0,100,0),
|
||||
(@PATH,10,549.7049,-640.13715,44.458122,NULL,0,0,0,100,0),
|
||||
(@PATH,11,537.11456,-653.59204,44.551437,NULL,0,0,0,100,0),
|
||||
(@PATH,12,523.42706,-668.3368,44.47702,NULL,0,0,0,100,0),
|
||||
(@PATH,13,509.61633,-685.40454,44.459534,NULL,0,0,0,100,0),
|
||||
(@PATH,14,497.8212,-700.42017,44.552464,NULL,4000,0,0,100,0),
|
||||
(@PATH,15,509.61633,-685.40454,44.459534,NULL,0,0,0,100,0),
|
||||
(@PATH,16,523.42706,-668.3368,44.47702,NULL,0,0,0,100,0),
|
||||
(@PATH,17,537.11456,-653.59204,44.551437,NULL,0,0,0,100,0),
|
||||
(@PATH,18,549.7049,-640.13715,44.458122,NULL,0,0,0,100,0),
|
||||
(@PATH,19,562.9549,-627.9358,44.458122,NULL,0,0,0,100,0),
|
||||
(@PATH,20,575.8264,-616.2465,44.530075,NULL,0,0,0,100,0),
|
||||
(@PATH,21,594.6493,-600.5903,44.528545,NULL,0,0,0,100,0),
|
||||
(@PATH,22,608.8403,-588.61115,44.519245,NULL,0,0,0,100,0),
|
||||
(@PATH,23,618.8906,-581.25696,44.458122,NULL,0,0,0,100,0),
|
||||
(@PATH,24,642.6406,-565.5018,44.472332,NULL,0,0,0,100,0);
|
||||
@@ -0,0 +1,623 @@
|
||||
--
|
||||
--
|
||||
-- Silverpine Forest
|
||||
|
||||
SET @CGUID := 395674;
|
||||
SET @OGUID := 239587;
|
||||
|
||||
--
|
||||
-- Forsaken Rear Guard
|
||||
|
||||
-- Detect: Quest Invis Zone 5
|
||||
DELETE FROM `spell_area` WHERE `spell`=84241 AND `area`=5386 AND `quest_start`=27065 AND `aura_spell`=0 AND `racemask`=0 AND `gender`=2;
|
||||
INSERT INTO `spell_area` (`spell`, `area`, `quest_start`, `quest_end`, `aura_spell`, `racemask`, `gender`, `flags`, `quest_start_status`, `quest_end_status`) VALUES
|
||||
(84241, 5386, 27065, 27098, 0, 0, 2, 3, 74, 1);
|
||||
|
||||
-- Dreadguard
|
||||
UPDATE `creature` SET `position_x`=1070.115, `position_y`=1506.748, `position_z`=31.02911, `MovementType`=2 WHERE `guid`=322043;
|
||||
UPDATE `creature` SET `position_x`=1070.115, `position_y`=1506.748, `position_z`=31.02911 WHERE `guid`=322042;
|
||||
|
||||
DELETE FROM `creature_addon` WHERE `guid` = 322043;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `MountCreatureID`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(322043, 3220430, 0, 0, 0, 1, 0, 0, 0, 0, 0, '18950');
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id` = 3220430;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`, `action`, `action_chance`, `wpguid`) VALUES
|
||||
(3220430, 1, 1070.11500, 1506.748, 31.02911, NULL, 0, 0, 0, 0, 0),
|
||||
(3220430, 2, 1092.72000, 1511.68, 29.87494, NULL, 0, 0, 0, 0, 0),
|
||||
(3220430, 3, 1109.26000, 1513.38, 32.26623, NULL, 0, 0, 0, 0, 0),
|
||||
(3220430, 4, 1122.57000, 1517.24, 34.48486, NULL, 0, 0, 0, 0, 0),
|
||||
(3220430, 5, 1125.36000, 1537.25, 31.45801, NULL, 0, 0, 0, 0, 0),
|
||||
(3220430, 6, 1124.48000, 1559.41, 30.35254, NULL, 0, 0, 0, 0, 0),
|
||||
(3220430, 7, 1123.99000, 1587.8, 29.22581, NULL, 0, 0, 0, 0, 0),
|
||||
(3220430, 8, 1120.64000, 1614.32, 29.03091, NULL, 0, 0, 0, 0, 0),
|
||||
(3220430, 9, 1120.64000, 1614.32, 29.03091, NULL, 0, 0, 0, 0, 0),
|
||||
(3220430, 10, 1092.70000, 1618.21, 27.43043, NULL, 0, 0, 0, 0, 0),
|
||||
(3220430, 11, 1064.64000, 1619.24, 28.03432, NULL, 0, 0, 0, 0, 0),
|
||||
(3220430, 12, 1022.61000, 1615.55, 23.80789, NULL, 0, 0, 0, 0, 0),
|
||||
(3220430, 13, 1010.27000, 1608.76, 24.62271, NULL, 0, 0, 0, 0, 0),
|
||||
(3220430, 14, 1010.56000, 1592.86, 25.89364, NULL, 0, 0, 0, 0, 0),
|
||||
(3220430, 15, 1005.36000, 1575.49, 28.67892, NULL, 0, 0, 0, 0, 0),
|
||||
(3220430, 16, 1003.64000, 1555.16, 28.84166, NULL, 0, 0, 0, 0, 0),
|
||||
(3220430, 17, 1004.17000, 1535.15, 32.03062, NULL, 0, 0, 0, 0, 0),
|
||||
(3220430, 18, 1010.66000, 1527.75, 33.21204, NULL, 0, 0, 0, 0, 0),
|
||||
(3220430, 19, 1037.60100, 1528.172, 31.5291, NULL, 0, 0, 0, 0, 0),
|
||||
(3220430, 20, 1048.53300, 1509.726, 32.8853, NULL, 0, 0, 0, 0, 0);
|
||||
|
||||
DELETE FROM `creature_formations` WHERE `memberGUID` IN (322043, 322042);
|
||||
INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`, `point_1`, `point_2`) VALUES
|
||||
(322043, 322043, 0, 0, 515, 0, 0),
|
||||
(322043, 322042, 3.5, 270, 515, 0, 0);
|
||||
|
||||
-- Franny Mertz
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60 WHERE `entry`=50463;
|
||||
|
||||
-- Commander Hickley
|
||||
UPDATE `creature_template` SET `minlevel`=30, `maxlevel`=30, `gossip_menu_id`=12025 WHERE `entry` =45496;
|
||||
|
||||
DELETE FROM `gossip_menu` WHERE `MenuID`=12025 AND `TextID`=16851;
|
||||
INSERT INTO `gossip_menu` (`MenuID`, `TextID`, `VerifiedBuild`) VALUES
|
||||
(12025, 16851, 45745);
|
||||
|
||||
UPDATE `gossip_menu_option` SET `OptionBroadcastTextID`=2822 WHERE `MenuID`=12025 AND `OptionID`=0;
|
||||
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=45496;
|
||||
INSERT INTO `npc_vendor` (`entry`, `slot`, `item`, `maxcount`, `ExtendedCost`, `type`, `PlayerConditionID`, `IgnoreFiltering`, `VerifiedBuild`) VALUES
|
||||
(45496, 11, 5048, 0, 0, 1, 0, 0, 45745), -- Blue Ribboned Wrapping Paper
|
||||
(45496, 10, 4542, 0, 0, 1, 0, 0, 45745), -- Moist Cornbread
|
||||
(45496, 9, 1205, 0, 0, 1, 0, 0, 45745), -- Melon Juice
|
||||
(45496, 8, 5042, 0, 0, 1, 0, 0, 45745), -- Red Ribboned Wrapping Paper
|
||||
(45496, 7, 4470, 0, 0, 1, 0, 0, 45745), -- Simple Wood
|
||||
(45496, 6, 4498, 0, 0, 1, 0, 0, 45745), -- Brown Leather Satchel
|
||||
(45496, 5, 4496, 0, 0, 1, 0, 0, 45745), -- Small Brown Pouch
|
||||
(45496, 4, 4541, 0, 0, 1, 0, 0, 45745), -- Freshly Baked Bread
|
||||
(45496, 3, 4540, 0, 0, 1, 0, 0, 45745), -- Tough Hunk of Bread
|
||||
(45496, 2, 1179, 0, 0, 1, 0, 0, 45745), -- Ice Cold Milk
|
||||
(45496, 1, 159, 0, 0, 1, 0, 0, 45745); -- Refreshing Spring Water
|
||||
|
||||
SET @ENTRY := 45496;
|
||||
DELETE FROM `smart_scripts` WHERE `entryOrGuid` = @ENTRY AND `source_type` = 0;
|
||||
UPDATE `creature_template` SET `AIName` = "SmartAI", `ScriptName` = "" WHERE `entry` = @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, 1000, 2000, 65000, 75000, 80, 32192200, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Every 65 - 75 seconds (1 - 2s initially) (OOC) - Self: Start timed action list id #32192200 (update out of combat)");
|
||||
|
||||
SET @ENTRY := 32192200;
|
||||
DELETE FROM `smart_scripts` WHERE `entryOrGuid` = @ENTRY 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
|
||||
(@ENTRY, 9, 0, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 66, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0.2617994, "After 1 seconds - Self: Set orientation to 0.2617994"),
|
||||
(@ENTRY, 9, 1, 0, 0, 0, 100, 0, 2000, 2000, 0, 0, 5, 274, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "After 2 seconds - Self: Play emote ONESHOT_NO(DNR) (274)"),
|
||||
(@ENTRY, 9, 2, 0, 0, 0, 100, 0, 20000, 25000, 0, 0, 66, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 3.2463124, "After 20 - 25 seconds - Self: Set orientation to 3.2463124");
|
||||
|
||||
-- "Salty" Rocka
|
||||
UPDATE `creature_template` SET `minlevel`=30, `maxlevel`=30, `ScriptName` = 'npc_silverpine_salty_rocka' WHERE `entry` = 45498;
|
||||
|
||||
DELETE FROM `creature_template_addon` WHERE `entry`=45498;
|
||||
INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `MountCreatureID`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(45498, 0, 0, 0, 0, 257, 0, 0, 0, 0, 0, '83829');
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` = 45498;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `SoundPlayType`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(45498, 0, 0, 'Hey over there! Hey! Hey! Over there! How\'sh everything going Gororgararar?', 14, 1, 100, 5, 0, 0, 0, 45623, 0, 'Rocka 00'),
|
||||
(45498, 1, 0, 'HA! Shows how much you know. I left the critter back on the third ship!', 14, 1, 100, 5, 0, 0, 0, 45634, 0, 'Rocka 01'),
|
||||
(45498, 2, 0, 'Yoo hoo! "Shmaltzy!" Hey, why come your shupplies... Whe... Oh... Um... You got lots of boxes to keep track of...', 14, 1, 100, 5, 0, 0, 0, 45624, 0, 'Rocka 10'),
|
||||
(45498, 3, 0, 'I didn\'t like that pet anyways. Beshides... people stop by all the time and give me their pets. If I lost one, it doesn\'t matter. I\'ve got dozens more to lose!', 14, 1, 100, 5, 0, 0, 0, 45637, 0, 'Rocka 11'),
|
||||
(45498, 4, 0, 'Hey over there! Hey! Hey! Over there! How\'sh everything going Gororgararar?', 14, 1, 100, 5, 0, 0, 0, 45623, 0, 'Rocka 20'),
|
||||
(45498, 5, 0, 'My pet! Oh no! Uh... I am shure that pet is around here somewhere...', 14, 1, 100, 5, 0, 0, 0, 45633, 0, 'Rocka 21'),
|
||||
(45498, 6, 0, 'Hey "Salty" when are you going to get a new name? Thish town ain\'t big \'nough for two of ussh...', 14, 1, 100, 5, 0, 0, 0, 45621, 0, 'Rocka 30'),
|
||||
(45498, 7, 0, 'Wait... whee is my pet? It\'s gone! No need to panic... Just need a quick drink and I can figure out where he went to.', 14, 1, 100, 5, 0, 0, 0, 45636, 0, 'Rocka 31'),
|
||||
(45498, 8, 0, '"Malty!" Hey, "Malty!" I thought you were going to get us shome more booze! What\'sh the hold up?', 14, 1, 100, 5, 0, 0, 0, 45626, 0, 'Rocka 40'),
|
||||
(45498, 9, 0, 'I didn\'t like that pet anyways. Beshides... people stop by all the time and give me their pets. If I lost one, it doesn\'t matter. I\'ve got dozens more to lose!', 14, 1, 100, 5, 0, 0, 0, 45637, 0, 'Rocka 41');
|
||||
|
||||
-- "Salty" Gorgar
|
||||
UPDATE `creature_template` SET `minlevel`=30, `maxlevel`=30 WHERE `entry` = 45497;
|
||||
|
||||
DELETE FROM `creature_template_addon` WHERE `entry`=45497;
|
||||
INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `MountCreatureID`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(45497, 0, 0, 0, 0, 257, 0, 0, 0, 0, 0, '83829');
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` = 45497;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `SoundPlayType`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(45497, 0, 0, 'Hey, shtop bothering me. You\'re a dishgrace to us all. You can\'t even hold onto your own petsh!', 14, 1, 100, 5, 0, 0, 0, 45631, 0, 'Gorgar 00'),
|
||||
(45497, 1, 0, 'Maybe you should worry about your pet and not me! I\'m taking care of my bishinesh jusht fine!', 14, 1, 100, 5, 0, 0, 0, 45628, 0, 'Gorgar 10'),
|
||||
(45497, 2, 0, 'Hey, shtop bothering me. You\'re a dishgrace to us all. You can\'t even hold onto your own petsh!', 14, 1, 100, 5, 0, 0, 0, 45631, 0, 'Gorgar 20'),
|
||||
(45497, 3, 0, 'It\'s "Salty!" I got here firsht! I got off the boat and onto land firsht! I called the name "Salty." Hey... Where\'s your pet at?', 14, 1, 100, 5, 0, 0, 0, 45627, 0, 'Gorgar 30'),
|
||||
(45497, 4, 0, '"Shalty." That\'s my name! Your name should be "I can\'t hold onto petsh." I can\'t believe anyone would trusht you with a beasht.', 14, 1, 100, 5, 0, 0, 0, 45629, 0, 'Gorgar 40');
|
||||
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=45497;
|
||||
INSERT INTO `npc_vendor` (`entry`, `slot`, `item`, `maxcount`, `ExtendedCost`, `type`, `PlayerConditionID`, `IgnoreFiltering`, `VerifiedBuild`) VALUES
|
||||
(45497, 29, 20815, 0, 0, 1, 0, 0, 45745), -- Jeweler's Kit
|
||||
(45497, 28, 39354, 0, 0, 1, 0, 0, 45745), -- Light Parchment
|
||||
(45497, 27, 2324, 0, 0, 1, 0, 0, 45745), -- Bleach
|
||||
(45497, 26, 2604, 0, 0, 1, 0, 0, 45745), -- Red Dye
|
||||
(45497, 25, 6260, 0, 0, 1, 0, 0, 45745), -- Blue Dye
|
||||
(45497, 24, 2605, 0, 0, 1, 0, 0, 45745), -- Green Dye
|
||||
(45497, 23, 6530, 0, 0, 1, 0, 0, 45745), -- Nightcrawlers
|
||||
(45497, 22, 6529, 0, 0, 1, 0, 0, 45745), -- Shiny Bauble
|
||||
(45497, 21, 4289, 0, 0, 1, 0, 0, 45745), -- Salt
|
||||
(45497, 20, 2880, 0, 0, 1, 0, 0, 45745), -- Weak Flux
|
||||
(45497, 19, 2678, 0, 0, 1, 0, 0, 45745), -- Mild Spices
|
||||
(45497, 18, 2321, 0, 0, 1, 0, 0, 45745), -- Fine Thread
|
||||
(45497, 17, 2320, 0, 0, 1, 0, 0, 45745), -- Coarse Thread
|
||||
(45497, 16, 3371, 0, 0, 1, 0, 0, 45745), -- Crystal Vial
|
||||
(45497, 15, 6217, 0, 0, 1, 0, 0, 45745), -- Copper Rod
|
||||
(45497, 14, 6256, 0, 0, 1, 0, 0, 45745), -- Fishing Pole
|
||||
(45497, 13, 39505, 0, 0, 1, 0, 0, 45745), -- Virtuoso Inking Set
|
||||
(45497, 12, 5956, 0, 0, 1, 0, 0, 45745), -- Blacksmith Hammer
|
||||
(45497, 11, 2901, 0, 0, 1, 0, 0, 45745), -- Mining Pick
|
||||
(45497, 10, 85663, 0, 0, 1, 0, 0, 45745), -- Herbalist's Spade
|
||||
(45497, 9, 7005, 0, 0, 1, 0, 0, 45745), -- Skinning Knife
|
||||
(45497, 8, 5042, 0, 0, 1, 0, 0, 45745), -- Red Ribboned Wrapping Paper
|
||||
(45497, 7, 4470, 0, 0, 1, 0, 0, 45745), -- Simple Wood
|
||||
(45497, 6, 4498, 0, 0, 1, 0, 0, 45745), -- Brown Leather Satchel
|
||||
(45497, 5, 4496, 0, 0, 1, 0, 0, 45745), -- Small Brown Pouch
|
||||
(45497, 4, 4541, 0, 0, 1, 0, 0, 45745), -- Freshly Baked Bread
|
||||
(45497, 3, 4540, 0, 0, 1, 0, 0, 45745), -- Tough Hunk of Bread
|
||||
(45497, 2, 1179, 0, 0, 1, 0, 0, 45745), -- Ice Cold Milk
|
||||
(45497, 1, 159, 0, 0, 1, 0, 0, 45745); -- Refreshing Spring Water
|
||||
|
||||
-- AreaTrigger - 6222 (Forsaken Rear Guard)
|
||||
DELETE FROM `areatrigger_scripts` WHERE `entry` = 6222;
|
||||
INSERT INTO `areatrigger_scripts` (`entry`, `ScriptName`) VALUES
|
||||
(6222, 'at_silverpine_forsaken_rear_guard');
|
||||
|
||||
-- Admiral Hatchet
|
||||
UPDATE `creature_template` SET `minlevel`=30, `maxlevel`=30, `ScriptName` = 'npc_silverpine_admiral_hatchet' WHERE `entry` = 44916;
|
||||
|
||||
DELETE FROM `gossip_menu` WHERE `MenuID`=11901 AND `TextID`=16702;
|
||||
INSERT INTO `gossip_menu` (`MenuID`, `TextID`, `VerifiedBuild`) VALUES
|
||||
(11901, 16702, 45745);
|
||||
|
||||
DELETE FROM `gossip_menu_option` WHERE `MenuID`=11901 AND `OptionID`=0;
|
||||
INSERT INTO `gossip_menu_option` (`MenuID`, `OptionID`, `OptionNpc`, `OptionText`, `OptionBroadcastTextID`, `Language`, `ActionMenuID`, `ActionPoiID`, `BoxCoded`, `BoxMoney`, `BoxText`, `BoxBroadcastTextID`, `VerifiedBuild`) VALUES
|
||||
(11901, 0, 0, 'I seem to have misplaced my sea pup, admiral. Do you have another that you could lend to me?', 45023, 0, 0, 0, 0, 0, NULL, 0, 45745);
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=11901;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(15, 11901, 0, 0, 1, 9, 0, 27069, 0, 0, 0, 0, 0, '', 'Show gossip option if player has quest 27069');
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=11897 AND `SourceEntry`=0 AND `SourceId`=0 AND `ElseGroup`=1 AND `ConditionTypeOrReference`=1 AND `ConditionTarget`=0 AND `ConditionValue1`=83839 AND `ConditionValue2`=1 AND `ConditionValue3`=0;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(15, 11901, 0, 0, 1, 1, 0, 83839, 1, 0, 1, 0, 0, '', 'Show gossip option if player doesn\'t have aura 83839');
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`= 44916;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `SoundPlayType`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(44916, 0, 0, 'Who\'s not drunk, Torok?', 12, 0, 100, 0, 0, 0, 0, 45018, 0, 'Admiral Hatchet to Player'),
|
||||
(44916, 1, 0, 'Yes.', 12, 0, 100, 0, 0, 0, 0, 45020, 0, 'Admiral Hatchet to Player');
|
||||
|
||||
-- Warlord Torok
|
||||
UPDATE `creature_template` SET `minlevel`=30, `maxlevel`=30 WHERE `entry` = 44917;
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` = 44917;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `SoundPlayType`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(44917, 0, 0, 'Including me?', 12, 0, 100, 0, 0, 0, 0, 45019, 0, 'Warlord Torok to Player'),
|
||||
(44917, 1, 0, '<hic!> Well... Let\'s see... By my count, nobody. The whole crew\'s drunk out of their gourds, admiral... \'cept the sea pups... <hic!>', 12, 0, 100, 0, 0, 0, 0, 45021, 0, 'Warlord Torok to Player');
|
||||
|
||||
-- Apothecary Wormcrud
|
||||
UPDATE `creature_template` SET `minlevel`=30, `maxlevel`=30, `ScriptName` = 'npc_silverpine_apothecary_wormcrud' WHERE `entry` = 44912;
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` = 44912;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `SoundPlayType`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(44912, 0, 0, 'Touch my chicken and I will kill you in your sleep. Am I understood?', 12, 1, 100, 1, 0, 0, 0, 45069, 0, '');
|
||||
|
||||
-- Orc Sea Dog (44913)
|
||||
UPDATE `creature_template` SET `minlevel`=30, `maxlevel`=30 WHERE `entry` = 44913;
|
||||
|
||||
UPDATE `creature` SET `orientation`=1.58 WHERE `guid`=321872;
|
||||
UPDATE `creature` SET `ScriptName`='npc_silverpine_orc_sea_dog_not_sick' WHERE `guid` IN (321875, 321872, 321925, 321930, 321930, 321927, 321871, 321915, 321870, 321874, 321911, 321869, 321933);
|
||||
UPDATE `creature` SET `ScriptName`='npc_silverpine_orc_sea_dog_sick' WHERE `guid` IN (321878, 321934, 321924, 321863);
|
||||
|
||||
DELETE FROM `creature_addon` WHERE `guid` IN (321916, 321918, 321919, 321921);
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `MountCreatureID`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(321916, 0, 0, 0, 0, 1, 0, 868, 0, 0, 0, '83829'),
|
||||
(321918, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, '83829'),
|
||||
(321919, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, '83829'),
|
||||
(321921, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, '83829');
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` = 44913;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `SoundPlayType`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(44913, 0, 0, 'What\'sh with the huuuuge bush chick-a-doodle?', 12, 1, 100, 1, 0, 0, 0, 45061, 0, ''),
|
||||
(44913, 1, 0, 'It\'sh makin\' me hungry... why\'s it shooo big? You shome kind of idiot or shomething? Makin\' a chicken so big... Who doesh that?', 12, 1, 100, 1, 0, 0, 0, 45062, 0, ''),
|
||||
(44913, 2, 0, 'Forshaken do... that\'sh who... It\'sh sho big... Look at it\'sh big stupid neck. I jusht want to choke it to death!', 12, 1, 100, 1, 0, 0, 0, 45063, 0, '');
|
||||
|
||||
--
|
||||
-- North Tide's Beachhead
|
||||
|
||||
-- Rabid Dog
|
||||
DELETE FROM `creature_loot_template` WHERE `Entry`=1766 AND `Item`=60793;
|
||||
INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
|
||||
(1766, 60793, 0, 40, 1, 1, 0, 1, 1, 'Item for questId 27082');
|
||||
|
||||
-- Giant Rabid Bear
|
||||
DELETE FROM `creature_loot_template` WHERE `Entry`=1797 AND `Item`=60793;
|
||||
INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
|
||||
(1797, 60793, 0, 40, 1, 1, 0, 1, 1, 'Item for questId 27082');
|
||||
|
||||
-- Reef Frenzy
|
||||
UPDATE `creature_template` SET `minlevel`=30, `maxlevel`=30 WHERE `entry` = 2173;
|
||||
|
||||
UPDATE `creature_template_addon` SET `bytes2`=1, `auras`='5888' WHERE `entry`=2173;
|
||||
|
||||
DELETE FROM `creature_template_scaling` WHERE (`Entry`=2173 AND `DifficultyID`=0);
|
||||
INSERT INTO `creature_template_scaling` (`Entry`, `DifficultyID`, `LevelScalingDeltaMin`, `LevelScalingDeltaMax`, `ContentTuningID`, `VerifiedBuild`) VALUES
|
||||
(2173, 0, 0, 0, 7, 45745);
|
||||
|
||||
-- Forest Ettin
|
||||
UPDATE `creature_template` SET `minlevel`=30, `maxlevel`=30, `AIName` = '', `ScriptName` = 'npc_silverpine_forest_ettin' WHERE `entry` = 44367;
|
||||
|
||||
UPDATE `creature` SET `position_x`=859.461, `position_y`=1608.500, `position_z`=30.4501, `MovementType`=2 WHERE `guid`= 321474;
|
||||
|
||||
DELETE FROM `creature_addon` WHERE `guid` = 321474;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `MountCreatureID`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(321474, 3214740, 0, 0, 0, 1, 0, 0, 0, 0, 4, '');
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id`= 3214740;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`, `action`, `action_chance`, `wpguid`) VALUES
|
||||
(3214740, 1, 860.453, 1547.99, 33.56122, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 2, 863.394, 1511.96, 37.08387, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 3, 894.108, 1503.59, 36.82511, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 4, 936.399, 1485.24, 39.62898, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 5, 952, 1464.76, 42.62051, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 6, 949.054, 1449.93, 44.44144, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 7, 946.674, 1406.7, 43.81255, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 8, 941.361, 1382.5, 45.44262, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 9, 968.085, 1368.38, 47.35212, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 10, 994.679, 1365.31, 46.46651, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 11, 1022.17, 1371.79, 43.73402, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 12, 1044.97, 1385.64, 40.32015, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 13, 1075.88, 1403.13, 38.78938, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 14, 1107.28, 1417.12, 38.96357, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 15, 1126.86, 1437.76, 40.30442, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 16, 1143.65, 1465.56, 36.97102, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 17, 1164.7, 1494.21, 36.14241, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 18, 1183.27, 1526.79, 34.55787, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 19, 1191.77, 1562.13, 30.12153, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 20, 1187.24, 1596.82, 25.16793, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 21, 1180.39, 1624.58, 25.20637, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 22, 1172.26, 1657.86, 22.88879, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 23, 1179.45, 1696.03, 16.91406, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 24, 1175.39, 1733.19, 13.28851, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 25, 1174.906, 1766.189, 14.37276, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 26, 1195.94, 1792.24, 17.68075, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 27, 1218.25, 1816.79, 12.99665, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 28, 1225.25, 1859.57, 11.28443, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 29, 1213.59, 1900.01, 11.36619, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 30, 1186.21, 1915.47, 10.18469, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 31, 1152.19, 1941.21, 11.13721, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 32, 1118.33, 1922.58, 16.06248, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 33, 1101.97, 1912.06, 18.04515, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 34, 1084.54, 1921.85, 15.57126, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 35, 1058.26, 1901.42, 9.566391, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 36, 1026.38, 1889.16, 8.246282, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 37, 977.4756, 1886.241, 9.116446, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 38, 928.488, 1887.07, 2.633808, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 39, 893.6934, 1883.174, 3.139614, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 40, 885.464, 1851.93, 4.246497, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 41, 903.932, 1809.15, 8.933544, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 42, 854.278, 1803.49, 7.936779, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 43, 861.115, 1762.9, 13.06791, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 44, 833.828, 1714.58, 20.25066, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 45, 835.399, 1669.13, 24.05216, NULL, 0, 0, 0, 0, 0),
|
||||
(3214740, 46, 847.825, 1630.31, 26.21234, NULL, 0, 0, 0, 0, 0);
|
||||
|
||||
UPDATE `creature` SET `position_x` = 818.707, `position_y` = 1677.33, `position_z` = 25.49682, `MovementType` = 2 WHERE `guid` = 321304;
|
||||
|
||||
DELETE FROM `creature_addon` WHERE `guid` = 321304;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `MountCreatureID`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(321304, 3213040, 0, 0, 0, 1, 0, 0, 0, 0, 3, '');
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id`= 3213040;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`, `action`, `action_chance`, `wpguid`) VALUES
|
||||
(3213040, 1, 818.707, 1677.33, 25.49682, NULL,0, 0, 0, 0, 0),
|
||||
(3213040, 2, 790.498, 1643.38, 28.69943, NULL, 0, 0, 0, 0, 0),
|
||||
(3213040, 3, 818.707, 1677.33, 25.49682, NULL, 0, 0, 0, 0, 0),
|
||||
(3213040, 4, 820.25, 1719.55, 24.42554, NULL, 0, 0, 0, 0, 0),
|
||||
(3213040, 5, 818.189, 1748.84, 20.39416, NULL, 0, 0, 0, 0, 0),
|
||||
(3213040, 6, 792.821, 1781.75, 15.09375, NULL, 0, 0, 0, 0, 0),
|
||||
(3213040, 7, 818.189, 1748.84, 20.39416, NULL, 0, 0, 0, 0, 0),
|
||||
(3213040, 8, 820.25, 1719.55, 24.42554, NULL, 0, 0, 0, 0, 0),
|
||||
(3213040, 9, 818.707, 1677.33, 25.49682, NULL, 0, 0, 0, 0, 0),
|
||||
(3213040, 10, 790.498, 1643.38, 28.69943, NULL, 0, 0, 0, 0, 0);
|
||||
|
||||
DELETE FROM `spell_script_names` WHERE `spell_id` = 83904 AND `ScriptName` = 'spell_gen_reverse_cast_target_to_caster_triggered';
|
||||
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
|
||||
(83904, 'spell_gen_reverse_cast_target_to_caster_triggered');
|
||||
|
||||
-- Orc Sea Pup (44914)
|
||||
UPDATE `creature_template` SET `unit_flags` = 33288, `VehicleId` = 1060, `ScriptName` = 'npc_silverpine_orc_sea_pup' WHERE `entry` = 44914;
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`=44914;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `SoundPlayType`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(44914, 0, 0, 'Where to going, captain?', 12, 1, 100, 66, 0, 0, 0, 44990, 5, 'Orc Sea Pup to Orc Crate'),
|
||||
(44914, 1, 0, 'OOF! Maybe trow little softer, captain?', 12, 1, 100, 0, 0, 0, 0, 44992, 5, 'Orc Sea Pup to Orc Crate'),
|
||||
(44914, 2, 0, 'Heavy... no can see notin.', 12, 1, 100, 0, 0, 0, 0, 44993, 5, 'Orc Sea Pup to Orc Crate'),
|
||||
(44914, 3, 0, 'Captain, pup need help!', 12, 1, 100, 0, 0, 0, 0, 44996, 5, 'Orc Sea Pup to Orc Crate'),
|
||||
(44914, 4, 0, 'Please, captain, I can put box down?', 12, 1, 100, 0, 0, 0, 0, 44999, 5, 'Orc Sea Pup to Orc Crate'),
|
||||
(44914, 5, 0, 'NO MORE! DIS IS MAXI... MAXIMO... ME... DIS TOO MUCH!', 12, 1, 100, 0, 0, 0, 0, 45003, 5, 'Orc Sea Pup to Orc Crate'),
|
||||
(44914, 6, 0, 'Where to put? Dey falling! HELP!', 12, 1, 100, 0, 0, 0, 0, 45025, 5, 'Orc Sea Pup to Orc Crate'),
|
||||
(44914, 7, 0, 'OOF!', 12, 1, 100, 0, 0, 0, 0, 45024, 5, 'Orc Sea Pup to Orc Crate');
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceEntry`= 83838 AND `SourceTypeOrReferenceId`= 13;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ScriptName`, `Comment`) VALUES
|
||||
(13, 1, 83838, 0, 0, 31, 0, 3, 44914, 0, 0, 0, '', 'Pick Up Orc Crate - Target Orc Sea Pup');
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceGroup`=1 AND `SourceEntry`=83865 AND `SourceId`=0 AND `ElseGroup`=0 AND `ConditionTypeOrReference`=31 AND `ConditionTarget`=0 AND `ConditionValue1`=3 AND `ConditionValue2`=44914 AND `ConditionValue3`=0;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(13, 1, 83865, 0, 0, 31, 0, 3, 44914, 0, 0, 0, 0, '', 'Sea Pup Trigger - Target Orc Sea Pup');
|
||||
|
||||
-- Despawn All Summons
|
||||
DELETE FROM `spell_script_names` WHERE `spell_id` = 83840 AND `ScriptName` = 'spell_silverpine_despawn_all_summons_steel_thunder';
|
||||
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
|
||||
(83840, 'spell_silverpine_despawn_all_summons_steel_thunder');
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceGroup`=1 AND `SourceEntry`=83840 AND `SourceId`=0 AND `ElseGroup`=1 AND `ConditionTypeOrReference`=31 AND `ConditionTarget`=0 AND `ConditionValue1`=3 AND `ConditionValue2`=44914 AND `ConditionValue3`=0;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(13, 1, 83840, 0, 1, 31, 0, 3, 44914, 0, 0, 0, 0, '', 'Despawn All Summons - Target Orc Sea Dog');
|
||||
|
||||
DELETE FROM `vehicle_seat_addon` WHERE `SeatEntry` IN (8421, 8422, 8423, 8424, 8425);
|
||||
INSERT INTO `vehicle_seat_addon` (`SeatEntry`, `SeatOrientation`, `ExitParamX`, `ExitParamY`, `ExitParamZ`, `ExitParamO`, `ExitParamValue`) VALUES
|
||||
(8421, 0, 3.8, 2.0, 0, 0, 1),
|
||||
(8422, 0, -2.3, 2.1, 0, 0, 1),
|
||||
(8423, 0, 3.3, -1.2, 0, 0, 1),
|
||||
(8424, 0, -2.8, -2.2, 0, 0, 1),
|
||||
(8425, 0, 4.1, -2.7, 0, 0, 1);
|
||||
|
||||
-- Sea Dog Crate
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+5;
|
||||
INSERT INTO `gameobject` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `PhaseGroup`, `position_x`, `position_y`, `position_z`, `orientation`, `rotation0`, `rotation1`, `rotation2`, `rotation3`, `spawntimesecs`, `animprogress`, `state`, `VerifiedBuild`) VALUES
|
||||
(@OGUID+0, 205165, 0, 130, 928, '0', 0, 0, 871.46502685546875, 1811.1199951171875, 8.559800148010253906, 0, 0, 0, 0, 1, 120, 255, 1, 45745), -- Sea Dog Crate (Area: North Tide's Beachhead - Difficulty: 0)
|
||||
(@OGUID+1, 205165, 0, 130, 928, '0', 0, 0, 916.91998291015625, 1762.8900146484375, 15.93459987640380859, 0, 0, 0, 0, 1, 120, 255, 1, 45745), -- Sea Dog Crate (Area: North Tide's Beachhead - Difficulty: 0)
|
||||
(@OGUID+2, 205165, 0, 130, 928, '0', 0, 0, 875.010009765625, 1889.3599853515625, 1.283589959144592285, 0, 0, 0, 0, 1, 120, 255, 1, 45745), -- Sea Dog Crate (Area: North Tide's Beachhead - Difficulty: 0)
|
||||
(@OGUID+3, 205165, 0, 130, 928, '0', 0, 0, 966.99298095703125, 1792.3599853515625, 14.43109989166259765, 2.181660413742065429, 0, 0, 0.887010574340820312, 0.461749136447906494, 120, 255, 1, 45745), -- Sea Dog Crate (Area: North Tide's Beachhead - Difficulty: 0)
|
||||
(@OGUID+4, 205165, 0, 130, 928, '0', '0', 0, 890.1199951171875, 1817.199951171875, 8.806759834289550781, 4.782202720642089843, 0, 0, -0.68199825286865234, 0.731353819370269775, 120, 255, 1, 45745); -- Sea Dog Crate (Area: North Tide's Beachhead - Difficulty: 0)
|
||||
|
||||
-- Orc Crate
|
||||
UPDATE `creature_template` SET `ScriptName` = 'npc_silverpine_orc_crate' WHERE `entry` = 44915;
|
||||
|
||||
DELETE FROM `spell_script_names` WHERE `spell_id` = 83838 AND `ScriptName` = 'spell_silverpine_pick_up_orc_crate';
|
||||
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
|
||||
(83838, 'spell_silverpine_pick_up_orc_crate');
|
||||
|
||||
-- North Tide's Invisible Stalker
|
||||
UPDATE `creature_template` SET `minlevel`=30, `maxlevel`=30, `unit_flags3`=16777217 WHERE `entry`=44920; -- North Tide's Invisible Stalker
|
||||
|
||||
SET @ENTRY := 44920;
|
||||
DELETE FROM `smart_scripts` WHERE `entryOrGuid` = @ENTRY AND `source_type` = 0;
|
||||
UPDATE `creature_template` SET `AIName` = "SmartAI", `ScriptName` = "" WHERE `entry` = @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, 8, 0, 100, 0, 83860, 0, 0, 0, 11, 83859, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "On spell Toss Torch (83860) hit - Self: Cast spell North Tide's Fire (83859) on random 1 Self");
|
||||
|
||||
-- North Tide's Invisible Stalker (Large)
|
||||
UPDATE `creature_template` SET `minlevel`=30, `maxlevel`=30, `unit_flags3`=16777217 WHERE `entry`=44923; -- North Tide's Invisible Stalker (Large)
|
||||
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+22;
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `PhaseGroup`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES
|
||||
(@CGUID+0, 44923, 0, 130, 928, '0', 169, 0, 0, 0, 857.04498291015625, 1988.510009765625, 33.87583160400390625, 0, 120, 0, 0, 1604, 0, 0, 0, 0, 0, 45745), -- North Tide's Invisible Stalker (Large) (Area: North Tide's Beachhead - Difficulty: 0) (Auras: 83859 - North Tide's Fire)
|
||||
(@CGUID+1, 44923, 0, 130, 928, '0', 169, 0, 0, 0, 758.46197509765625, 1980.030029296875, 20.40123367309570312, 0, 120, 0, 0, 1604, 0, 0, 0, 0, 0, 45745), -- North Tide's Invisible Stalker (Large) (Area: North Tide's Beachhead - Difficulty: 0) (Auras: 83859 - North Tide's Fire)
|
||||
(@CGUID+2, 44923, 0, 130, 928, '0', 169, 0, 0, 0, 854.37298583984375, 1978.0799560546875, 13.43593311309814453, 0, 120, 0, 0, 1604, 0, 0, 0, 0, 0, 45745), -- North Tide's Invisible Stalker (Large) (Area: North Tide's Beachhead - Difficulty: 0) (Auras: 83859 - North Tide's Fire)
|
||||
(@CGUID+3, 44923, 0, 130, 928, '0', 169, 0, 0, 0, 762.86102294921875, 2005.3199462890625, 17.35703468322753906, 0, 120, 0, 0, 1604, 0, 0, 0, 0, 0, 45745), -- North Tide's Invisible Stalker (Large) (Area: North Tide's Beachhead - Difficulty: 0) (Auras: 83859 - North Tide's Fire)
|
||||
(@CGUID+4, 44923, 0, 130, 928, '0', 169, 0, 0, 0, 872.2080078125, 2013.8199462890625, 7.5128936767578125, 0, 120, 0, 0, 1604, 0, 0, 0, 0, 0, 45745), -- North Tide's Invisible Stalker (Large) (Area: North Tide's Beachhead - Difficulty: 0) (Auras: 83859 - North Tide's Fire)
|
||||
(@CGUID+5, 44923, 0, 130, 928, '0', 169, 0, 0, 0, 755.88702392578125, 1980.81005859375, 39.68003082275390625, 0, 120, 0, 0, 1604, 0, 0, 0, 0, 0, 45745), -- North Tide's Invisible Stalker (Large) (Area: North Tide's Beachhead - Difficulty: 0) (Auras: 83859 - North Tide's Fire)
|
||||
(@CGUID+6, 44923, 0, 130, 928, '0', 169, 0, 0, 0, 897.33197021484375, 2001.800048828125, 22.52033424377441406, 0, 120, 0, 0, 1604, 0, 0, 0, 0, 0, 45745), -- North Tide's Invisible Stalker (Large) (Area: North Tide's Beachhead - Difficulty: 0) (Auras: 83859 - North Tide's Fire)
|
||||
(@CGUID+7, 44923, 0, 130, 928, '0', 169, 0, 0, 0, 854.9310302734375, 1996.1199951171875, 23.16783332824707031, 0, 120, 0, 0, 1604, 0, 0, 0, 0, 0, 45745), -- North Tide's Invisible Stalker (Large) (Area: North Tide's Beachhead - Difficulty: 0) (Auras: 83859 - North Tide's Fire)
|
||||
(@CGUID+8, 44923, 0, 130, 928, '0', 169, 0, 0, 0, 767.8330078125, 2012.5, 14.70353317260742187, 0, 120, 0, 0, 1604, 0, 0, 0, 0, 0, 45745), -- North Tide's Invisible Stalker (Large) (Area: North Tide's Beachhead - Difficulty: 0) (Auras: 83859 - North Tide's Fire)
|
||||
(@CGUID+9, 44923, 0, 130, 928, '0', 169, 0, 0, 0, 771.29901123046875, 1986.25, 10.92123317718505859, 0, 120, 0, 0, 1604, 0, 0, 0, 0, 0, 45745), -- North Tide's Invisible Stalker (Large) (Area: North Tide's Beachhead - Difficulty: 0)
|
||||
(@CGUID+10, 44923, 0, 130, 928, '0', 169, 0, 0, 0, 770.8060302734375, 1971.1199951171875, 18.53173446655273437, 0, 120, 0, 0, 1604, 0, 0, 0, 0, 0, 45745), -- North Tide's Invisible Stalker (Large) (Area: North Tide's Beachhead - Difficulty: 0) (Auras: 83859 - North Tide's Fire)
|
||||
(@CGUID+11, 44923, 0, 130, 928, '0', 169, 0, 0, 0, 894.36798095703125, 1999.25, 36.635833740234375, 0, 120, 0, 0, 1604, 0, 0, 0, 0, 0, 45745), -- North Tide's Invisible Stalker (Large) (Area: North Tide's Beachhead - Difficulty: 0)
|
||||
(@CGUID+12, 44923, 0, 130, 928, '0', 169, 0, 0, 0, 749.27801513671875, 1982.0699462890625, 28.21743392944335937, 0, 120, 0, 0, 1604, 0, 0, 0, 0, 0, 45745), -- North Tide's Invisible Stalker (Large) (Area: North Tide's Beachhead - Difficulty: 0)
|
||||
(@CGUID+13, 44923, 0, 130, 928, '0', 169, 0, 0, 0, 767.65301513671875, 2006.8499755859375, 43.02943038940429687, 0, 120, 0, 0, 1604, 0, 0, 0, 0, 0, 45745), -- North Tide's Invisible Stalker (Large) (Area: North Tide's Beachhead - Difficulty: 0)
|
||||
(@CGUID+14, 44923, 0, 130, 928, '0', 169, 0, 0, 0, 884.2550048828125, 2000.6800537109375, 20.49443435668945312, 0, 120, 0, 0, 1604, 0, 0, 0, 0, 0, 45745), -- North Tide's Invisible Stalker (Large) (Area: North Tide's Beachhead - Difficulty: 0) (Auras: 83859 - North Tide's Fire)
|
||||
(@CGUID+15, 44923, 0, 130, 928, '0', 169, 0, 0, 0, 868.49700927734375, 1969.4000244140625, 13.43403339385986328, 0, 120, 0, 0, 1604, 0, 0, 0, 0, 0, 45745), -- North Tide's Invisible Stalker (Large) (Area: North Tide's Beachhead - Difficulty: 0) (Auras: 83859 - North Tide's Fire)
|
||||
(@CGUID+16, 44923, 0, 130, 928, '0', 169, 0, 0, 0, 742.177001953125, 2012.43994140625, 15.46923255920410156, 0, 120, 0, 0, 1604, 0, 0, 0, 0, 0, 45745), -- North Tide's Invisible Stalker (Large) (Area: North Tide's Beachhead - Difficulty: 0) (Auras: 83859 - North Tide's Fire)
|
||||
(@CGUID+17, 44923, 0, 130, 928, '0', 169, 0, 0, 0, 777.81097412109375, 1966.75, 14.30103302001953125, 0, 120, 0, 0, 1604, 0, 0, 0, 0, 0, 45745), -- North Tide's Invisible Stalker (Large) (Area: North Tide's Beachhead - Difficulty: 0)
|
||||
(@CGUID+18, 44923, 0, 130, 928, '0', 169, 0, 0, 0, 858.28997802734375, 1988.22998046875, 21.47653388977050781, 0, 120, 0, 0, 1604, 0, 0, 0, 0, 0, 45745), -- North Tide's Invisible Stalker (Large) (Area: North Tide's Beachhead - Difficulty: 0) (Auras: 83859 - North Tide's Fire)
|
||||
(@CGUID+19, 44923, 0, 130, 928, '0', 169, 0, 0, 0, 853.24798583984375, 1963.1300048828125, 15.85483264923095703, 0, 120, 0, 0, 1604, 0, 0, 0, 0, 0, 45745), -- North Tide's Invisible Stalker (Large) (Area: North Tide's Beachhead - Difficulty: 0)
|
||||
(@CGUID+20, 44923, 0, 130, 928, '0', 169, 0, 0, 0, 854.50897216796875, 1971.530029296875, 16.14943313598632812, 0, 120, 0, 0, 1604, 0, 0, 0, 0, 0, 45745), -- North Tide's Invisible Stalker (Large) (Area: North Tide's Beachhead - Difficulty: 0) (Auras: 83859 - North Tide's Fire)
|
||||
(@CGUID+21, 44923, 0, 130, 928, '0', 169, 0, 0, 0, 769.34002685546875, 2010.5400390625, 30.17073440551757812, 0, 120, 0, 0, 1604, 0, 0, 0, 0, 0, 45745), -- North Tide's Invisible Stalker (Large) (Area: North Tide's Beachhead - Difficulty: 0) (Auras: 83859 - North Tide's Fire)
|
||||
(@CGUID+22, 44923, 0, 130, 928, '0', 169, 0, 0, 0, 883.5830078125, 1999.6099853515625, 30.94133377075195312, 0, 120, 0, 0, 1604, 0, 0, 0, 0, 0, 45745); -- North Tide's Invisible Stalker (Large) (Area: North Tide's Beachhead - Difficulty: 0) (Auras: 83859 - North Tide's Fire)
|
||||
|
||||
DELETE FROM `creature_addon` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+22;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(@CGUID+0, 0, 0, 0, 1, 0, 0, 0, 0, 0, '83859'), -- North Tide's Invisible Stalker - 83859 - North Tide's Fire
|
||||
(@CGUID+1, 0, 0, 0, 1, 0, 0, 0, 0, 0, '83859'), -- North Tide's Invisible Stalker - 83859 - North Tide's Fire
|
||||
(@CGUID+2, 0, 0, 0, 1, 0, 0, 0, 0, 0, '83859'), -- North Tide's Invisible Stalker - 83859 - North Tide's Fire
|
||||
(@CGUID+3, 0, 0, 0, 1, 0, 0, 0, 0, 0, '83859'), -- North Tide's Invisible Stalker - 83859 - North Tide's Fire
|
||||
(@CGUID+4, 0, 0, 0, 1, 0, 0, 0, 0, 0, '83859'), -- North Tide's Invisible Stalker - 83859 - North Tide's Fire
|
||||
(@CGUID+5, 0, 0, 0, 1, 0, 0, 0, 0, 0, '83859'), -- North Tide's Invisible Stalker - 83859 - North Tide's Fire
|
||||
(@CGUID+6, 0, 0, 0, 1, 0, 0, 0, 0, 0, '83859'), -- North Tide's Invisible Stalker - 83859 - North Tide's Fire
|
||||
(@CGUID+7, 0, 0, 0, 1, 0, 0, 0, 0, 0, '83859'), -- North Tide's Invisible Stalker - 83859 - North Tide's Fire
|
||||
(@CGUID+8, 0, 0, 0, 1, 0, 0, 0, 0, 0, '83859'), -- North Tide's Invisible Stalker - 83859 - North Tide's Fire
|
||||
(@CGUID+9, 0, 0, 0, 1, 0, 0, 0, 0, 0, '83859'), -- North Tide's Invisible Stalker - 83859 - North Tide's Fire
|
||||
(@CGUID+10, 0, 0, 0, 1, 0, 0, 0, 0, 0, '83859'), -- North Tide's Invisible Stalker - 83859 - North Tide's Fire
|
||||
(@CGUID+11, 0, 0, 0, 1, 0, 0, 0, 0, 0, '83859'), -- North Tide's Invisible Stalker - 83859 - North Tide's Fire
|
||||
(@CGUID+12, 0, 0, 0, 1, 0, 0, 0, 0, 0, '83859'), -- North Tide's Invisible Stalker - 83859 - North Tide's Fire
|
||||
(@CGUID+13, 0, 0, 0, 1, 0, 0, 0, 0, 0, '83859'), -- North Tide's Invisible Stalker - 83859 - North Tide's Fire
|
||||
(@CGUID+14, 0, 0, 0, 1, 0, 0, 0, 0, 0, '83859'), -- North Tide's Invisible Stalker - 83859 - North Tide's Fire
|
||||
(@CGUID+15, 0, 0, 0, 1, 0, 0, 0, 0, 0, '83859'), -- North Tide's Invisible Stalker - 83859 - North Tide's Fire
|
||||
(@CGUID+16, 0, 0, 0, 1, 0, 0, 0, 0, 0, '83859'), -- North Tide's Invisible Stalker - 83859 - North Tide's Fire
|
||||
(@CGUID+17, 0, 0, 0, 1, 0, 0, 0, 0, 0, '83859'), -- North Tide's Invisible Stalker - 83859 - North Tide's Fire
|
||||
(@CGUID+18, 0, 0, 0, 1, 0, 0, 0, 0, 0, '83859'), -- North Tide's Invisible Stalker - 83859 - North Tide's Fire
|
||||
(@CGUID+19, 0, 0, 0, 1, 0, 0, 0, 0, 0, '83859'), -- North Tide's Invisible Stalker - 83859 - North Tide's Fire
|
||||
(@CGUID+20, 0, 0, 0, 1, 0, 0, 0, 0, 0, '83859'), -- North Tide's Invisible Stalker - 83859 - North Tide's Fire
|
||||
(@CGUID+21, 0, 0, 0, 1, 0, 0, 0, 0, 0, '83859'), -- North Tide's Invisible Stalker - 83859 - North Tide's Fire
|
||||
(@CGUID+22, 0, 0, 0, 1, 0, 0, 0, 0, 0, '83859'); -- North Tide's Invisible Stalker - 83859 - North Tide's Fire
|
||||
|
||||
SET @ENTRY := 44923;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 0 AND `entryOrGuid` = @ENTRY;
|
||||
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` = @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, 0, 0, 55000, 60000, 11, 83859, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Every 55 - 60 seconds (0 - 0s initially) (OOC) - Self: Cast spell 83859 on Self (limit to 1 target)');
|
||||
|
||||
-- Bloodfang Scavenger
|
||||
UPDATE `creature_template` SET `minlevel`=30, `maxlevel`=30 WHERE `entry` IN (44547, 44549);
|
||||
|
||||
UPDATE `creature` SET `MovementType`= 1, `wander_distance`= 10 WHERE `id` IN (44547, 44549);
|
||||
|
||||
UPDATE `creature` SET `wander_distance`= 0, `position_x` = 909.885, `position_y` = 1812.9, `position_z` = 8.608471, `MovementType`= 2 WHERE `guid` = 321893;
|
||||
|
||||
DELETE FROM `creature_addon` WHERE `guid` = 321893;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `MountCreatureID`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(321893, 3218930, 0, 0, 0, 1, 0, 0, 0, 0, 0, '');
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id` = 3218930;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`, `action`, `action_chance`, `wpguid`) VALUES
|
||||
(3218930, 1, 909.88500, 1812.9, 8.608471, NULL, 0, 0, 0, 0, 0),
|
||||
(3218930, 2, 919.51400, 1792.47, 11.27575, NULL, 0, 0, 0, 0, 0),
|
||||
(3218930, 3, 943.59000, 1770.39, 12.75151, NULL, 0, 0, 0, 0, 0),
|
||||
(3218930, 4, 909.88500, 1812.9, 8.608471, NULL, 0, 0, 0, 0, 0),
|
||||
(3218930, 5, 894.66500, 1842.63, 4.458411, NULL, 0, 0, 0, 0, 0),
|
||||
(3218930, 6, 877.19400, 1868.39, 3.245327, NULL, 0, 0, 0, 0, 0),
|
||||
(3218930, 7, 877.23340, 1868.347, 3.264614, NULL, 0, 0, 0, 0, 0),
|
||||
(3218930, 8, 894.64060, 1842.675, 4.564612, NULL, 0, 0, 0, 0, 0);
|
||||
|
||||
UPDATE `creature` SET `MovementType` = 2, `wander_distance`= 0 WHERE `guid` = 321729;
|
||||
|
||||
DELETE FROM `creature_addon` WHERE `guid` = 321729;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `MountCreatureID`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(321729, 3217290, 0, 0, 0, 1, 0, 0, 0, 0, 0, '');
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id` = 3217290;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`, `action`, `action_chance`, `wpguid`) VALUES
|
||||
(3217290, 1, 885.007, 1731.87, 15.9815, NULL, 0, 0, 0, 0, 0),
|
||||
(3217290, 2, 877.171, 1737.25, 15.2819, NULL, 0, 0, 0, 0, 0),
|
||||
(3217290, 3, 865.628, 1758.11, 13.3475, NULL, 0, 0, 0, 0, 0),
|
||||
(3217290, 4, 864.333, 1768.15, 12.6892, NULL, 0, 0, 0, 0, 0),
|
||||
(3217290, 5, 857.621, 1776.82, 11.6192, NULL, 0, 0, 0, 0, 0),
|
||||
(3217290, 6, 847.002, 1790.71, 9.27837, NULL, 0, 0, 0, 0, 0),
|
||||
(3217290, 7, 843.96, 1805.72, 6.38237, NULL, 0, 0, 0, 0, 0),
|
||||
(3217290, 8, 837.155, 1828.31, 3.93294, NULL, 0, 0, 0, 0, 0),
|
||||
(3217290, 9, 830.699, 1846.04, 2.36316, NULL, 0, 0, 0, 0, 0),
|
||||
(3217290, 10, 837.155, 1828.31, 3.93294, NULL, 0, 0, 0, 0, 0),
|
||||
(3217290, 11, 843.96, 1805.72, 6.38237, NULL, 0, 0, 0, 0, 0),
|
||||
(3217290, 12, 847.002, 1790.71, 9.27837, NULL, 0, 0, 0, 0, 0),
|
||||
(3217290, 13, 857.621, 1776.82, 11.6192, NULL, 0, 0, 0, 0, 0),
|
||||
(3217290, 14, 864.333, 1768.15, 12.6892, NULL, 0, 0, 0, 0, 0),
|
||||
(3217290, 15, 865.628, 1758.11, 13.3475, NULL, 0, 0, 0, 0, 0),
|
||||
(3217290, 16, 877.171, 1737.25, 15.2819, NULL, 0, 0, 0, 0, 0);
|
||||
|
||||
SET @ENTRY := 44547;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 0 AND `entryOrGuid` = @ENTRY;
|
||||
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` = @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, 0, 0, 100, 0, 4000, 6000, 25000, 30000, 11, 84308, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Every 25 - 30 seconds (4 - 6s initially) (IC) - Self: Cast spell 84308 on Self'),
|
||||
(@ENTRY, 0, 1, 0, 9, 0, 100, 0, 0, 30, 14000, 15000, 11, 78509, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 'When victim in range 0 - 30 yards (cooldown 14000 - 15000 ms) - Self: Cast spell 78509 on Victim'),
|
||||
(@ENTRY, 0, 2, 3, 1, 0, 50, 0, 4000, 14000, 25000, 55000, 127, 0, 5500, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Every 25 - 55 seconds (4 - 14s initially) (OOC) - Self: Pause movement for 5.5sec on movement slot 0'),
|
||||
(@ENTRY, 0, 3, 4, 61, 0, 100, 0, 0, 0, 0, 0, 67, 1, 500, 500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Every 25 - 55 seconds (4 - 14s initially) (OOC) - Trigger timed event timedEvent[1] in 500 - 500 ms // -meta_wait'),
|
||||
(@ENTRY, 0, 4, 5, 61, 0, 100, 0, 0, 0, 0, 0, 67, 2, 1500, 1500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Every 25 - 55 seconds (4 - 14s initially) (OOC) - Trigger timed event timedEvent[2] in 1500 - 1500 ms // -meta_wait'),
|
||||
(@ENTRY, 0, 5, 0, 61, 0, 100, 0, 0, 0, 0, 0, 67, 3, 4000, 4000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Every 25 - 55 seconds (4 - 14s initially) (OOC) - Trigger timed event timedEvent[3] in 4000 - 4000 ms // -meta_wait'),
|
||||
(@ENTRY, 0, 6, 0, 59, 0, 100, 0, 1, 0, 0, 0, 66, 0, 0, 0, 0, 0, 0, 11, 44920, 20, 0, 0, 0, 0, 0, 'On timed event timedEvent[1] triggered - Self: Look at Creature North Tide\'s Invisible Stalker (44920) in 20 yd'),
|
||||
(@ENTRY, 0, 7, 8, 59, 0, 100, 0, 2, 0, 0, 0, 11, 83860, 0, 0, 1, 0, 0, 9, 44920, 0, 20, 0, 0, 0, 0, 'On timed event timedEvent[2] triggered - Self: Cast spell 83860 on Creature North Tide\'s Invisible Stalker (44920) in 0 - 20 yards (limit to 1 target)'),
|
||||
(@ENTRY, 0, 8, 0, 61, 0, 100, 0, 0, 0, 0, 0, 11, 83860, 0, 0, 1, 0, 0, 9, 44923, 0, 20, 0, 0, 0, 0, 'On timed event timedEvent[2] triggered - Self: Cast spell 83860 on Creature North Tide\'s Invisible Stalker (Large) (44923) in 0 - 20 yards (limit to 1 target)'),
|
||||
(@ENTRY, 0, 9, 0, 59, 0, 100, 0, 3, 0, 0, 0, 5, 15, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On timed event timedEvent[3] triggered - Self: Play emote 15'),
|
||||
(@ENTRY, 0, 10, 0, 83, 0, 30, 0, 83860, 30000, 40000, 0, 4, 17671, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On spell 83860 cast (wait 30000 - 40000 ms before next trigger) - Self: Play direct sound 17671 to every player in visibility range of Self');
|
||||
|
||||
SET @ENTRY := 44549;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 0 AND `entryOrGuid` = @ENTRY;
|
||||
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` = @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, 0, 0, 100, 0, 4000, 6000, 25000, 30000, 11, 84308, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Every 25 - 30 seconds (4 - 6s initially) (IC) - Self: Cast spell 84308 on Self'),
|
||||
(@ENTRY, 0, 1, 0, 9, 0, 100, 0, 0, 30, 14000, 15000, 11, 78509, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 'When victim in range 0 - 30 yards (cooldown 14000 - 15000 ms) - Self: Cast spell 78509 on Victim'),
|
||||
(@ENTRY, 0, 2, 3, 1, 0, 50, 0, 4000, 14000, 25000, 55000, 127, 0, 5500, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Every 25 - 55 seconds (4 - 14s initially) (OOC) - Self: Pause movement for 5.5sec on movement slot 0'),
|
||||
(@ENTRY, 0, 3, 4, 61, 0, 100, 0, 0, 0, 0, 0, 67, 1, 500, 500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Every 25 - 55 seconds (4 - 14s initially) (OOC) - Trigger timed event timedEvent[1] in 500 - 500 ms // -meta_wait'),
|
||||
(@ENTRY, 0, 4, 5, 61, 0, 100, 0, 0, 0, 0, 0, 67, 2, 1500, 1500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Every 25 - 55 seconds (4 - 14s initially) (OOC) - Trigger timed event timedEvent[2] in 1500 - 1500 ms // -meta_wait'),
|
||||
(@ENTRY, 0, 5, 0, 61, 0, 100, 0, 0, 0, 0, 0, 67, 3, 4000, 4000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Every 25 - 55 seconds (4 - 14s initially) (OOC) - Trigger timed event timedEvent[3] in 4000 - 4000 ms // -meta_wait'),
|
||||
(@ENTRY, 0, 6, 0, 59, 0, 100, 0, 1, 0, 0, 0, 66, 0, 0, 0, 0, 0, 0, 11, 44920, 20, 0, 0, 0, 0, 0, 'On timed event timedEvent[1] triggered - Self: Look at Creature North Tide\'s Invisible Stalker (44920) in 20 yd'),
|
||||
(@ENTRY, 0, 7, 8, 59, 0, 100, 0, 2, 0, 0, 0, 11, 83860, 0, 0, 1, 0, 0, 9, 44920, 0, 20, 0, 0, 0, 0, 'On timed event timedEvent[2] triggered - Self: Cast spell 83860 on Creature North Tide\'s Invisible Stalker (44920) in 0 - 20 yards (limit to 1 target)'),
|
||||
(@ENTRY, 0, 8, 0, 61, 0, 100, 0, 0, 0, 0, 0, 11, 83860, 0, 0, 1, 0, 0, 9, 44923, 0, 20, 0, 0, 0, 0, 'On timed event timedEvent[2] triggered - Self: Cast spell 83860 on Creature North Tide\'s Invisible Stalker (Large) (44923) in 0 - 20 yards (limit to 1 target)'),
|
||||
(@ENTRY, 0, 9, 0, 59, 0, 100, 0, 3, 0, 0, 0, 5, 15, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On timed event timedEvent[3] triggered - Self: Play emote 15'),
|
||||
(@ENTRY, 0, 10, 0, 83, 0, 30, 0, 83860, 30000, 40000, 0, 4, 17671, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On spell 83860 cast (wait 30000 - 40000 ms before next trigger) - Self: Play direct sound 17671 to every player in visibility range of Self');
|
||||
|
||||
-- Mutant Bush Chicken
|
||||
UPDATE `creature_template` SET `ScriptName` = 'npc_silverpine_mutant_bush_chicken' WHERE `entry` = 44935;
|
||||
|
||||
DELETE FROM `creature_template_movement` WHERE `CreatureId`=44935;
|
||||
INSERT INTO `creature_template_movement` (`CreatureId`, `Ground`, `Swim`, `Flight`, `Rooted`, `Chase`, `Random`, `InteractionPauseTimer`) VALUES
|
||||
(44935, 1, 1, 0, 0, 0, 0, NULL);
|
||||
|
||||
-- Release Diseased Mutant Bush Chicken
|
||||
DELETE FROM `spell_script_names` WHERE `spell_id` = 83902 AND `ScriptName` = 'spell_silverpine_release_diseased_mutant_bush_chicken';
|
||||
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
|
||||
(83902, 'spell_silverpine_release_diseased_mutant_bush_chicken');
|
||||
|
||||
--
|
||||
-- The Skittering Dark
|
||||
|
||||
-- Orc Sea Dog (44942)
|
||||
UPDATE `creature_template` SET `ScriptName` = 'npc_silverpine_orc_sea_dog' WHERE `entry` = 44942;
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` = 44942;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `SoundPlayType`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(44942, 0, 0, 'We gotta find the matriarch of this operation and end her!', 12, 1, 100, 5, 0, 0, 0, 45079, 5, 'Orc Sea Dog to Player'),
|
||||
(44942, 0, 1, 'Thank you, friend. Let\'s kill us some overgrown... spiders. Sounded better in my head.', 12, 1, 100, 5, 0, 0, 0, 45078, 5, 'Orc Sea Dog to Player'),
|
||||
(44942, 0, 2, 'I need a drink!', 12, 1, 100, 5, 0, 0, 0, 45080, 5, 'Orc Sea Dog to Player'),
|
||||
(44942, 0, 3, 'Welcome to the party, $g pal:lady;!', 12, 1, 100, 5, 0, 0, 0, 45077, 5, 'Orc Sea Dog to Player');
|
||||
|
||||
-- Despawn All Summons
|
||||
DELETE FROM `spell_script_names` WHERE `spell_id` = 83935 AND `ScriptName` = 'spell_gen_despawn_all_summons_owned_by_caster';
|
||||
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
|
||||
(83935, 'spell_gen_despawn_all_summons_owned_by_caster');
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceGroup`=1 AND `SourceEntry`=83935 AND `SourceId`=0 AND `ElseGroup`=1 AND `ConditionTypeOrReference`=31 AND `ConditionTarget`=0 AND `ConditionValue1`=3 AND `ConditionValue2`=44942 AND `ConditionValue3`=0;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(13, 1, 83935, 0, 1, 31, 0, 3, 44942, 0, 0, 0, 0, '', 'Despawn All Summons - Target Orc Sea Dog');
|
||||
|
||||
-- Skitterweb Lurker
|
||||
UPDATE `creature` SET `wander_distance`= 10, `MovementType`= 1 WHERE `id` = 1781;
|
||||
|
||||
SET @ENTRY := 1781;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 0 AND `entryOrGuid` = @ENTRY;
|
||||
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` = @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, 1, 0, 0, 100, 0, 6000, 9000, 18000, 24000, 85, 82715, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Every 18 - 24 seconds (6 - 9s initially) (IC) - Self: Cast spell 82715 on self'),
|
||||
(@ENTRY, 0, 1, 0, 61, 0, 100, 0, 0, 0, 0, 0, 67, 1, 1000, 1000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Every 18 - 24 seconds (6 - 9s initially) (IC) - Trigger timed event timedEvent[1] in 1000 - 1000 ms // -meta_wait'),
|
||||
(@ENTRY, 0, 2, 0, 59, 0, 100, 0, 1, 0, 0, 0, 85, 82717, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On timed event timedEvent[1] triggered - Self: Cast spell 82717 with flags triggered on self');
|
||||
|
||||
-- Skitterweb Striker
|
||||
SET @ENTRY := 1780;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 0 AND `entryOrGuid` = @ENTRY;
|
||||
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` = @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, 9, 0, 100, 0, 0, 5, 12000, 14000, 11, 87081, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 'When victim in range 0 - 5 yards (cooldown 12000 - 14000 ms) - Self: Cast spell 87081 on Victim');
|
||||
|
||||
-- Krethis the Shadowspinner
|
||||
SET @ENTRY := 12433;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 0 AND `entryOrGuid` = @ENTRY;
|
||||
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` = @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, 11, 0, 100, 0, 0, 0, 0, 0, 11, 1784, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On respawn - Self: Cast spell 1784 on Self'),
|
||||
(@ENTRY, 0, 1, 0, 25, 0, 100, 0, 0, 0, 0, 0, 11, 1784, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On reset - Self: Cast spell 1784 on Self'),
|
||||
(@ENTRY, 0, 2, 0, 9, 0, 100, 0, 0, 30, 12000, 14500, 11, 12023, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 'When victim in range 0 - 30 yards (cooldown 12000 - 14500 ms) - Self: Cast spell 12023 on Victim');
|
||||
|
||||
-- Skitterweb Matriarch
|
||||
UPDATE `creature_template` SET `ScriptName` = 'npc_silverpine_skitterweb_matriarch', `AIName` = '', `flags_extra` = 512 WHERE `entry` = 44906;
|
||||
|
||||
DELETE FROM `creature_template_scaling` WHERE (`Entry`=44906 AND `DifficultyID`=0);
|
||||
INSERT INTO `creature_template_scaling` (`Entry`, `DifficultyID`, `LevelScalingDeltaMin`, `LevelScalingDeltaMax`, `ContentTuningID`, `VerifiedBuild`) VALUES
|
||||
(44906, 0, 0, 0, 7, 45745);
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceEntry`= 83827 AND `SourceTypeOrReferenceId`= 13;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ScriptName`, `Comment`) VALUES
|
||||
(13, 1, 83827, 0, 0, 31, 0, 3, 44908, 0, 0, 0, '', 'Skitterweb Web - Target Skitterweb Stalker');
|
||||
|
||||
-- Skitterweb Invisible Stalker
|
||||
DELETE FROM `creature_template_movement` WHERE `CreatureId`=44908;
|
||||
INSERT INTO `creature_template_movement` (`CreatureId`, `Ground`, `Swim`, `Flight`, `Rooted`, `Chase`, `Random`, `InteractionPauseTimer`) VALUES
|
||||
(44908, NULL, NULL, 1, NULL, NULL, NULL, NULL);
|
||||
|
||||
-- Webbed Victim
|
||||
UPDATE `creature_template` SET `ScriptName` = 'npc_silverpine_webbed_victim' WHERE `entry` = 44941;
|
||||
|
||||
DELETE FROM `creature` WHERE `guid` IN (@CGUID+23, @CGUID+24, @CGUID+25, @CGUID+26, @CGUID+27, @CGUID+28, @CGUID+29, @CGUID+30, @CGUID+31);
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `phaseUseFlags`, `PhaseId`, `PhaseGroup`, `terrainSwapMap`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `ScriptName`, `VerifiedBuild`) VALUES
|
||||
(@CGUID+23, 44941, 0, 130, 226, 0, 0, 169, 0, -1, 0, 0, 1285.29, 1866.04, 24.8907, 2.51675, 300, 0, 0, 2, 0, 0, 0, 0, 0, '', 45745),
|
||||
(@CGUID+24, 44941, 0, 130, 226, 0, 0, 169, 0, -1, 0, 0, 1252.66, 1857.56, 14.3729, 3.42388, 300, 0, 0, 2, 0, 0, 0, 0, 0, '', 45745),
|
||||
(@CGUID+25, 44941, 0, 130, 226, 0, 0, 169, 0, -1, 0, 0, 1260.92, 1848.44, 16.6487, 4.18964, 300, 0, 0, 2, 0, 0, 0, 0, 0, '', 45745),
|
||||
(@CGUID+26, 44941, 0, 130, 226, 0, 0, 169, 0, -1, 0, 0, 1280.06, 1818.83, 20.8724, 3.49063, 300, 0, 0, 2, 0, 0, 0, 0, 0, '', 45745),
|
||||
(@CGUID+27, 44941, 0, 130, 226, 0, 0, 169, 0, -1, 0, 0, 1372.55, 1954.99, 13.8267, 1.93161, 300, 0, 0, 2, 0, 0, 0, 0, 0, '', 45745),
|
||||
(@CGUID+28, 44941, 0, 130, 226, 0, 0, 169, 0, -1, 0, 0, 1379.09, 1977.50, 14.1315, 4.51165, 300, 0, 0, 2, 0, 0, 0, 0, 0, '', 45745),
|
||||
(@CGUID+29, 44941, 0, 130, 226, 0, 0, 169, 0, -1, 0, 0, 1398.48, 1972.15, 18.3701, 2.79556, 300, 0, 0, 2, 0, 0, 0, 0, 0, '', 45745),
|
||||
(@CGUID+30, 44941, 0, 130, 226, 0, 0, 169, 0, -1, 0, 0, 1422.53, 1930.36, 9.9526, 1.84131, 300, 0, 0, 2, 0, 0, 0, 0, 0, '', 45745),
|
||||
(@CGUID+31, 44941, 0, 130, 226, 0, 0, 169, 0, -1, 0, 0, 1417.66, 1941.61, 9.8029, 0.46687, 300, 0, 0, 2, 0, 0, 0, 0, 0, '', 45745);
|
||||
|
||||
DELETE FROM `spell_script_names` WHERE `spell_id` = 83919 AND `ScriptName` = 'spell_silverpine_free_webbed_victim_random';
|
||||
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
|
||||
(83919, 'spell_silverpine_free_webbed_victim_random');
|
||||
@@ -0,0 +1 @@
|
||||
UPDATE `spell_script_names` SET `ScriptName` = 'spell_gen_despawn_all_summons_owned_by_caster' WHERE `ScriptName` = 'spell_despawn_all_summons_garrison_intro_only';
|
||||
@@ -0,0 +1,99 @@
|
||||
-- Inn, Boralus
|
||||
SET @PHASE := 0;
|
||||
SET @SWAP := -1;
|
||||
SET @CGUID := 850606;
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+6;
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `PhaseGroup`, `terrainSwapMap`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES
|
||||
(@CGUID+0,142752,1643,0,0,0,@PHASE,0,@SWAP,0,0,1185.2587,-593.9601,31.730467,4.018624782562255859,300,0,0,1,0,0,0,0,0,0),
|
||||
(@CGUID+1,142056,1643,0,0,0,@PHASE,0,@SWAP,0,0,1187.2413,-595.4583,32.942432,4.142158031463623046,300,0,0,1,0,0,0,0,0,0),
|
||||
(@CGUID+2,177193,1643,0,0,0,@PHASE,0,@SWAP,0,0,1171.6771,-597.67706,31.742126,1.357682228088378906,300,0,0,1,0,0,0,0,0,0),
|
||||
(@CGUID+3,138725,1643,0,0,0,@PHASE,0,@SWAP,0,0,1188.8785,-580.941,31.557228,5.265533924102783203,300,0,0,1,0,0,0,0,0,0),
|
||||
(@CGUID+4,138726,1643,0,0,0,@PHASE,0,@SWAP,0,0,1189.0226,-582.533,31.557224,0.805170536041259765,300,0,0,1,0,0,0,0,0,0),
|
||||
(@CGUID+5,138724,1643,0,0,0,@PHASE,0,@SWAP,0,0,1190.2274,-581.73615,31.585388,3.182176828384399414,300,0,0,1,0,0,0,0,0,0),
|
||||
(@CGUID+6,135153,1643,0,0,0,@PHASE,0,@SWAP,0,0,1181.9045,-596.1632,31.741201,1.415455222129821777,300,0,0,1,0,0,0,0,0,0);
|
||||
|
||||
DELETE FROM `creature_addon` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+6;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`mount`,`MountCreatureID`,`bytes1`,`bytes2`,`emote`,`aiAnimKit`,`movementAnimKit`,`meleeAnimKit`,`visibilityDistanceType`,`auras`) VALUES
|
||||
(@CGUID+0,0,0,0,0,1,0,16093,0,0,0,''),
|
||||
(@CGUID+1,0,0,0,0,1,0,0,0,0,0,'145953'),
|
||||
(@CGUID+2,0,0,0,0,1,0,0,0,0,0,''),
|
||||
(@CGUID+3,0,0,0,0,1,0,0,0,0,0,''),
|
||||
(@CGUID+4,0,0,0,0,1,0,0,0,0,0,''),
|
||||
(@CGUID+5,0,0,0,0,1,0,0,0,0,0,''),
|
||||
(@CGUID+6,0,0,0,0,1,0,0,0,0,0,'');
|
||||
|
||||
-- Archmage Zalia Entry: 138724, Archmage Auri Entry: 138725, Archmage Luci Entry: 138726 SAI
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry` IN (138724,138725,138726);
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (138724,138725,138726) 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`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_param4`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(138724,0,0,0,1,0,100,0,3000,4000,3000,4000,0,10,1,6,273,0,0,0,1,0,0,0,0,0,0,0,0,'Archmage Zalia - OOC - Do random emote'),
|
||||
(138724,0,1,0,1,0,100,0,10000,30000,25000,30000,0,11,56745,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Archmage Zalia - OOC - Cast ''Drink Alcohol'''),
|
||||
(138725,0,0,0,1,0,100,0,3000,4000,3000,4000,0,10,1,6,273,0,0,0,1,0,0,0,0,0,0,0,0,'Archmage Auri - OOC - Do random emote'),
|
||||
(138725,0,1,0,1,0,100,0,10000,30000,25000,30000,0,11,56745,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Archmage Auri - OOC - Cast ''Drink Alcohol'''),
|
||||
(138726,0,0,0,1,0,100,0,3000,4000,3000,4000,0,10,1,6,273,0,0,0,1,0,0,0,0,0,0,0,0,'Archmage Luci - OOC - Do random emote'),
|
||||
(138726,0,1,0,1,0,100,0,10000,30000,25000,30000,0,11,56745,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Archmage Luci - OOC - Cast ''Drink Alcohol''');
|
||||
|
||||
DELETE FROM `npc_vendor` WHERE `entry`=135153;
|
||||
INSERT INTO `npc_vendor` (`entry`, `slot`, `item`, `maxcount`, `ExtendedCost`, `type`, `PlayerConditionID`, `IgnoreFiltering`, `VerifiedBuild`) VALUES
|
||||
(135153, 1, 159867, 0, 0, 1, 0, 0, 45745),
|
||||
(135153, 2, 159868, 0, 0, 1, 0, 0, 45745),
|
||||
(135153, 3, 162026, 0, 0, 1, 0, 0, 45745),
|
||||
(135153, 4, 159850, 0, 0, 1, 0, 0, 45745),
|
||||
(135153, 5, 159846, 0, 0, 1, 0, 0, 45745),
|
||||
(135153, 6, 163019, 0, 0, 1, 0, 0, 45745),
|
||||
(135153, 7, 159874, 0, 0, 1, 0, 0, 45745),
|
||||
(135153, 8, 159878, 0, 0, 1, 0, 0, 45745),
|
||||
(135153, 9, 163052, 0, 0, 1, 0, 0, 45745),
|
||||
(135153, 10, 163107, 0, 0, 1, 0, 0, 45745);
|
||||
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=23196 WHERE `entry`=142752;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=26846 WHERE `entry`=177193;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=22552 WHERE `entry`=135153;
|
||||
UPDATE `npc_text` SET `Probability0`=1 WHERE `ID`=42723;
|
||||
|
||||
-- Pettable creatures on Boralus spell clicks
|
||||
DELETE FROM `npc_spellclick_spells` WHERE `npc_entry` IN (142056,143502,142139,143022,135521,143272,144175,144178,144177,144176,142069,142050,142055,142053,142052,142453,142031,142030,142035,142043,142042,142040,137199,137196,142029,142613,142032,142111,142046,142044,137201,138410,148906,138423,138422,138421,142051,144110,144327,144328,143444,148904,142119);
|
||||
INSERT INTO `npc_spellclick_spells` (`npc_entry`, `spell_id`, `cast_flags`, `user_type`) VALUES
|
||||
(142056, 224326, 3, 0),
|
||||
(143502, 224326, 3, 0),
|
||||
(142139, 224326, 3, 0),
|
||||
(143022, 224326, 3, 0),
|
||||
(135521, 224326, 3, 0),
|
||||
(143272, 224326, 3, 0),
|
||||
(144175, 224326, 3, 0),
|
||||
(144178, 224326, 3, 0),
|
||||
(144177, 224326, 3, 0),
|
||||
(144176, 224326, 3, 0),
|
||||
(142069, 224326, 3, 0),
|
||||
(142050, 224326, 3, 0),
|
||||
(142055, 224326, 3, 0),
|
||||
(142053, 224326, 3, 0),
|
||||
(142052, 224326, 3, 0),
|
||||
(142453, 224326, 3, 0),
|
||||
(142031, 224326, 3, 0),
|
||||
(142030, 224326, 3, 0),
|
||||
(142035, 224326, 3, 0),
|
||||
(142043, 224326, 3, 0),
|
||||
(142042, 224326, 3, 0),
|
||||
(142040, 224326, 3, 0),
|
||||
(137199, 224326, 3, 0),
|
||||
(137196, 224326, 3, 0),
|
||||
(142029, 224326, 3, 0),
|
||||
(142613, 224326, 3, 0),
|
||||
(142032, 224326, 3, 0),
|
||||
(142111, 224326, 3, 0),
|
||||
(142046, 224326, 3, 0),
|
||||
(142044, 224326, 3, 0),
|
||||
(137201, 224326, 3, 0),
|
||||
(138410, 224326, 3, 0),
|
||||
(148906, 224326, 3, 0),
|
||||
(138423, 224326, 3, 0),
|
||||
(138422, 224326, 3, 0),
|
||||
(138421, 224326, 3, 0),
|
||||
(142051, 224326, 3, 0),
|
||||
(144110, 224326, 3, 0),
|
||||
(144327, 224326, 3, 0),
|
||||
(144328, 224326, 3, 0),
|
||||
(143444, 224326, 3, 0),
|
||||
(148904, 224326, 3, 0),
|
||||
(142119, 224326, 3, 0);
|
||||
@@ -0,0 +1,131 @@
|
||||
-- The Relentless Transport to Boralus Harbor
|
||||
SET @CGUID := 850613; -- 15 required
|
||||
SET @OGUID := 501787; -- 24 required
|
||||
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+14;
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `PhaseGroup`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES
|
||||
(@CGUID+0, 143100, 2074, 0, 0, 0, 0, 0, 0, 0, -28.3567485809326171, -6.96379470825195312, 11.39751148223876953, 3.810218572616577148, 120, 0, 0, 22895, 0, 0, 0, 0, 0, 45745),
|
||||
(@CGUID+1, 143103, 2074, 0, 0, 0, 0, 0, 0, 0, -21.0138702392578125, 8.72396087646484375, 10.40711116790771484, 2.34253692626953125, 120, 0, 0, 22895, 0, 0, 0, 0, 0, 45745),
|
||||
(@CGUID+2, 143108, 2074, 0, 0, 0, 0, 0, 0, 0, -23.9956436157226562, 0.300490498542785644, 11.05834388732910156, 3.085541248321533203, 120, 0, 0, 22895, 0, 0, 0, 0, 0, 45745),
|
||||
(@CGUID+3, 143111, 2074, 0, 0, 0, 0, 0, 0, 1, -2.68590092658996582, -7.10210514068603515, 6.180718898773193359, 0.609188377857208251, 120, 0, 0, 22895, 0, 0, 0, 0, 0, 45745),
|
||||
(@CGUID+4, 143105, 2074, 0, 0, 0, 0, 0, 0, 1, 0.821236491203308105, 11.1654510498046875, 6.191501617431640625, 2.058152437210083007, 120, 0, 0, 22895, 0, 0, 0, 0, 0, 45745),
|
||||
(@CGUID+5, 143106, 2074, 0, 0, 0, 0, 0, 0, 0, -12.2801513671875, 4.378171443939208984, 10.91152667999267578, 0, 120, 0, 0, 22895, 0, 0, 0, 0, 0, 45745),
|
||||
(@CGUID+6, 143112, 2074, 0, 0, 0, 0, 0, 0, 1, -11.3444223403930664, 0.03439076617360115, 5.056095600128173828, 0.030206184834241867, 120, 0, 0, 22895, 0, 0, 0, 0, 0, 45745),
|
||||
(@CGUID+7, 143101, 2074, 0, 0, 0, 0, 0, 0, 0, 10.55232429504394531, -2.31570172309875488, 6.187692642211914062, 3.111004590988159179, 120, 0, 0, 22895, 0, 0, 0, 0, 0, 45745),
|
||||
(@CGUID+8, 143114, 2074, 0, 0, 0, 0, 0, 0, 0, 14.22231864929199218, 1.976284503936767578, 6.220947265625, 0, 120, 0, 0, 22895, 0, 0, 0, 0, 0, 45745),
|
||||
(@CGUID+9, 143109, 2074, 0, 0, 0, 0, 0, 0, 1, 36.24853515625, 8.35302734375, 13.11811256408691406, 1.560265898704528808, 120, 0, 0, 22895, 0, 0, 0, 0, 0, 45745),
|
||||
(@CGUID+10, 143110, 2074, 0, 0, 0, 0, 0, 0, 0, 33.16179275512695312, -2.73902463912963867, 6.512768268585205078, 2.287539005279541015, 120, 0, 0, 22895, 0, 0, 0, 0, 0, 45745),
|
||||
(@CGUID+11, 143098, 2074, 0, 0, 0, 0, 0, 0, 1, 33.82763671875, 9.7607421875, 19.44762039184570312, 1.595258712768554687, 120, 0, 0, 22895, 0, 0, 0, 0, 0, 45745),
|
||||
(@CGUID+12, 143104, 2074, 0, 0, 0, 0, 0, 0, 0, 27.82045555114746093, -4.94907808303833007, 12.92650318145751953, 1.191629528999328613, 120, 0, 0, 22895, 0, 0, 0, 0, 0, 45745),
|
||||
(@CGUID+13, 143116, 2074, 0, 0, 0, 0, 0, 0, 1, 30.45102310180664062, 5.035210609436035156, 13.05871200561523437, 3.173145532608032226, 120, 0, 0, 22895, 0, 0, 0, 0, 0, 45745),
|
||||
(@CGUID+14, 143107, 2074, 0, 0, 0, 0, 0, 0, 0, 38.45831298828125, -0.120262011885643, 20.56958389282226562, 3.051386356353759765, 120, 0, 0, 22895, 0, 0, 0, 0, 0, 45745);
|
||||
|
||||
DELETE FROM `creature_addon` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+14;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`mount`,`MountCreatureID`,`bytes1`,`bytes2`,`emote`,`aiAnimKit`,`movementAnimKit`,`meleeAnimKit`,`visibilityDistanceType`,`auras`) VALUES
|
||||
(@CGUID+0,0,0,0,0,1,0,0,0,0,0,'271087'),
|
||||
(@CGUID+1,0,0,0,0,1,69,0,0,0,0,''),
|
||||
(@CGUID+2,0,0,0,0,1,720,0,0,0,0,''),
|
||||
(@CGUID+3,0,0,0,0,1,0,16421,0,0,0,''),
|
||||
(@CGUID+4,0,0,0,0,0,714,0,0,0,0,''),
|
||||
(@CGUID+5,0,0,0,0,1,757,0,0,0,0,''),
|
||||
(@CGUID+6,0,0,0,0,0,714,0,0,0,0,''),
|
||||
(@CGUID+7,0,0,0,0,1,720,0,0,0,0,''),
|
||||
(@CGUID+8,0,0,0,0,1,0,0,0,0,0,''),
|
||||
(@CGUID+9,0,0,0,0,0,0,0,0,0,0,''),
|
||||
(@CGUID+10,0,0,0,0,0,0,0,0,0,0,'244868'),
|
||||
(@CGUID+11,0,0,0,0,0,0,0,0,0,0,'273268'),
|
||||
(@CGUID+12,0,0,0,0,0,0,0,0,0,0,'244868'),
|
||||
(@CGUID+13,0,0,0,0,0,714,0,0,0,0,''),
|
||||
(@CGUID+14,0,0,0,0,1,0,16390,0,0,0,'');
|
||||
|
||||
-- Pathing for Armorer Kautzman Entry: 143109
|
||||
SET @NPC := @CGUID+9;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `wander_distance`=0,`MovementType`=2,`position_x`=36.200806,`position_y`=3.8103027,`position_z`=13.118113 WHERE `guid`=@NPC;
|
||||
UPDATE `creature_addon` SET `path_id`=@PATH WHERE `guid`=@NPC;
|
||||
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,36.200806,3.8103027,13.118113,NULL,0,0,0,100,0),
|
||||
(@PATH,2,36.190796,-1.6036987,13.118113,NULL,4000,0,0,100,0),
|
||||
(@PATH,3,36.20056,3.8101807,13.118113,NULL,0,0,0,100,0),
|
||||
(@PATH,4,36.24887,8.355347,13.118113,NULL,4000,0,0,100,0);
|
||||
|
||||
-- Pathing for Captain Hicks Entry: 143098
|
||||
SET @NPC := @CGUID+11;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `wander_distance`=0,`MovementType`=2,`position_x`=33.959473,`position_y`=0.50927734,`position_z`=19.182081 WHERE `guid`=@NPC;
|
||||
UPDATE `creature_addon` SET `path_id`=@PATH WHERE `guid`=@NPC;
|
||||
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,33.959473,0.50927734,19.182081,NULL,0,0,0,100,0),
|
||||
(@PATH,2,33.777832,-4.916992,19.2878,NULL,4000,0,0,100,0),
|
||||
(@PATH,3,33.958984,0.50878906,19.182055,NULL,0,0,0,100,0),
|
||||
(@PATH,4,33.918457,6.048828,19.427113,NULL,0,0,0,100,0),
|
||||
(@PATH,5,33.827637,9.76123,19.447624,NULL,4000,0,0,100,0),
|
||||
(@PATH,6,33.918457,6.048828,19.427113,NULL,0,0,0,100,0);
|
||||
|
||||
DELETE FROM `npc_vendor` WHERE `entry` IN (143109,143114);
|
||||
INSERT INTO `npc_vendor` (`entry`, `slot`, `item`, `maxcount`, `ExtendedCost`, `type`, `PlayerConditionID`, `IgnoreFiltering`, `VerifiedBuild`) VALUES
|
||||
(143109, 1, 180733, 0, 0, 1, 0, 0, 45745),
|
||||
(143109, 2, 183952, 0, 0, 1, 0, 0, 45745),
|
||||
(143109, 3, 163569, 0, 0, 1, 0, 0, 45745),
|
||||
(143109, 4, 160502, 0, 0, 1, 0, 0, 45745),
|
||||
(143109, 5, 6219, 0, 0, 1, 0, 0, 45745),
|
||||
(143109, 6, 2901, 0, 0, 1, 0, 0, 45745),
|
||||
(143109, 7, 5956, 0, 0, 1, 0, 0, 45745),
|
||||
(143109, 8, 2880, 0, 0, 1, 0, 0, 45745),
|
||||
(143109, 9, 3466, 0, 0, 1, 0, 0, 45745),
|
||||
(143109, 10, 160298, 0, 0, 1, 0, 0, 45745),
|
||||
(143109, 11, 18567, 0, 0, 1, 0, 0, 45745),
|
||||
(143109, 12, 3857, 0, 0, 1, 0, 0, 45745),
|
||||
(143109, 13, 163203, 0, 6426, 1, 0, 0, 45745),
|
||||
(143114, 1, 39354, 0, 0, 1, 0, 0, 45745),
|
||||
(143114, 2, 3371, 0, 0, 1, 0, 0, 45745),
|
||||
(143114, 3, 38682, 0, 0, 1, 0, 0, 45745),
|
||||
(143114, 4, 4470, 0, 0, 1, 0, 0, 45745),
|
||||
(143114, 5, 90146, 0, 0, 1, 0, 0, 45745),
|
||||
(143114, 6, 138293, 0, 0, 1, 0, 0, 45745),
|
||||
(143114, 7, 2901, 0, 0, 1, 0, 0, 45745),
|
||||
(143114, 8, 7005, 0, 0, 1, 0, 0, 45745),
|
||||
(143114, 9, 85663, 0, 0, 1, 0, 0, 45745),
|
||||
(143114, 10, 6256, 0, 0, 1, 0, 0, 45745),
|
||||
(143114, 11, 6217, 0, 0, 1, 0, 0, 45745),
|
||||
(143114, 12, 5956, 0, 0, 1, 0, 0, 45745),
|
||||
(143114, 13, 20815, 0, 0, 1, 0, 0, 45745),
|
||||
(143114, 14, 39505, 0, 0, 1, 0, 0, 45745),
|
||||
(143114, 15, 64670, 0, 0, 1, 0, 0, 45745);
|
||||
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+23;
|
||||
INSERT INTO `gameobject` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `PhaseGroup`, `position_x`, `position_y`, `position_z`, `orientation`, `rotation0`, `rotation1`, `rotation2`, `rotation3`, `spawntimesecs`, `animprogress`, `state`, `VerifiedBuild`) VALUES
|
||||
(@OGUID+0, 290974, 2074, 0, 0, 0, 0, 0, -28.189798355102539, 6.735843181610107421, 11.2927865982055664, 4.791468143463134765, -0.05071926116943359, 0.034044265747070312, -0.67775344848632812, 0.732747375965118408, 120, 255, 1, 45745),
|
||||
(@OGUID+1, 279586, 2074, 0, 0, 0, 0, 0, -11.0326004028320312, -10.3330135345458984, 6.11485147476196289, 0.022991687059402465, 0, 0, 0.011495590209960937, 0.999933898448944091, 120, 255, 1, 45745),
|
||||
(@OGUID+2, 281638, 2074, 0, 0, 0, 0, 0, -5.70251417160034179, -11.6356134414672851, 6.087447166442871093, 5.334826469421386718, 0, 0, -0.45660877227783203, 0.8896675705909729, 120, 255, 1, 45745),
|
||||
(@OGUID+3, 290974, 2074, 0, 0, 0, 0, 0, 3.855296611785888671, -2.92783737182617187, 6.698000907897949218, 5.513477802276611328, -0.66702175140380859, 0.268473625183105468, -0.26242828369140625, 0.64353346824645996, 120, 255, 1, 45745),
|
||||
(@OGUID+4, 290974, 2074, 0, 0, 0, 0, 0, 2.983249902725219726, -2.99649357795715332, 6.101009368896484375, 5.085351467132568359, 0, 0, -0.56374835968017578, 0.825946629047393798, 120, 255, 1, 45745),
|
||||
(@OGUID+5, 293759, 2074, 0, 0, 0, 0, 0, 9.391781806945800781, 4.77878570556640625, 6.098782539367675781, 0.020655045285820961, 0, 0, 0.010327339172363281, 0.999946653842926025, 120, 255, 1, 45745),
|
||||
(@OGUID+6, 290974, 2074, 0, 0, 0, 0, 0, 12.95518970489501953, 4.09367227554321289, 12.38430690765380859, 5.880401134490966796, -0.68075418472290039, 0.099394798278808593, -0.1810007095336914, 0.702803790569305419, 120, 255, 1, 45745),
|
||||
(@OGUID+7, 290974, 2074, 0, 0, 0, 0, 0, 12.22782611846923828, 5.520253658294677734, 11.77816200256347656, 3.730464458465576171, 0.042165756225585937, -0.03092002868652343, -0.95603752136230468, 0.288545101881027221, 120, 255, 1, 45745),
|
||||
(@OGUID+8, 297570, 2074, 0, 0, 0, 0, 0, 17.65191268920898437, -5.5069427490234375, 6.182915687561035156, 6.047565937042236328, 0, 0, -0.11753749847412109, 0.993068456649780273, 120, 255, 1, 45745),
|
||||
(@OGUID+9, 297571, 2074, 0, 0, 0, 0, 0, 17.83073043823242187, -7.42013740539550781, 6.184665203094482421, 0.663221180438995361, 0, 0, 0.325566291809082031, 0.945519208908081054, 120, 255, 1, 45745),
|
||||
(@OGUID+10, 290974, 2074, 0, 0, 0, 0, 0, 11.93265533447265625, 4.030199050903320312, 11.7833261489868164, 4.748131752014160156, 0.020870208740234375, -0.04834461212158203, -0.69268321990966796, 0.719317197799682617, 120, 255, 1, 45745),
|
||||
(@OGUID+11, 297568, 2074, 0, 0, 0, 0, 0, 24.44184303283691406, -7.41666650772094726, 6.293860435485839843, 1.239181041717529296, 0, 0, 0.580701828002929687, 0.814116358757019042, 120, 255, 1, 45745),
|
||||
(@OGUID+12, 297569, 2074, 0, 0, 0, 0, 0, 26.290802001953125, -4.99999952316284179, 6.324167728424072265, 4.057891845703125, 0, 0, -0.89687252044677734, 0.442289173603057861, 120, 255, 1, 45745),
|
||||
(@OGUID+13, 297572, 2074, 0, 0, 0, 0, 0, 19.69184303283691406, -7.2256927490234375, 6.224917888641357421, 2.434734821319580078, 0, 0, 0.938191413879394531, 0.346116840839385986, 120, 255, 1, 45745),
|
||||
(@OGUID+14, 297573, 2074, 0, 0, 0, 0, 0, 26.42448043823242187, -6.89236164093017578, 6.325334548950195312, 2.434734821319580078, 0, 0, 0.938191413879394531, 0.346116840839385986, 120, 255, 1, 45745),
|
||||
(@OGUID+15, 297574, 2074, 0, 0, 0, 0, 0, 26.90191459655761718, 8.975694656372070312, 6.335384845733642578, 4.127703666687011718, 0, 0, -0.8808908462524414, 0.473319470882415771, 120, 255, 1, 45745),
|
||||
(@OGUID+16, 293775, 2074, 0, 0, 0, 0, 0, 28.55030632019042968, -9.65917110443115234, 12.8957672119140625, 1.535974383354187011, 0, 0, 0.694688796997070312, 0.719310402870178222, 120, 255, 1, 45745),
|
||||
(@OGUID+17, 297565, 2074, 0, 0, 0, 0, 0, 24.80295753479003906, 8.652777671813964843, 6.296417236328125, 5.925393581390380859, 0, 0, -0.17794322967529296, 0.984040737152099609, 120, 255, 1, 45745),
|
||||
(@OGUID+18, 297566, 2074, 0, 0, 0, 0, 0, 26.81163787841796875, 6.826388835906982421, 6.332414627075195312, 2.286378860473632812, 0, 0, 0.909960746765136718, 0.414694398641586303, 120, 255, 1, 45745),
|
||||
(@OGUID+19, 297567, 2074, 0, 0, 0, 0, 0, 24.91233253479003906, 6.583333969116210937, 6.301306724548339843, 0.811578273773193359, 0, 0, 0.394743919372558593, 0.918791174888610839, 120, 255, 1, 45745),
|
||||
(@OGUID+20, 293759, 2074, 0, 0, 0, 0, 0, 29.88576316833496093, -10.9288759231567382, 12.95425128936767578, 1.569266915321350097, 0, 0, 0.70656585693359375, 0.707647323608398437, 120, 255, 1, 45745),
|
||||
(@OGUID+21, 297562, 2074, 0, 0, 0, 0, 0, 39.26128387451171875, 1.47569429874420166, 13.0307769775390625, 5.785771369934082031, 0, 0, -0.24615097045898437, 0.969231486320495605, 120, 255, 1, 45745),
|
||||
(@OGUID+22, 297563, 2074, 0, 0, 0, 0, 0, 39.54948043823242187, -0.97569453716278076, 13.0307769775390625, 0.506144583225250244, 0, 0, 0.250379562377929687, 0.968147754669189453, 120, 255, 1, 45745),
|
||||
(@OGUID+23, 297564, 2074, 0, 0, 0, 0, 0, 42.76128387451171875, -0.07638958096504211, 13.03080463409423828, 3.159062385559082031, 0, 0, -0.99996185302734375, 0.008734640665352344, 120, 255, 1, 45745);
|
||||
|
||||
DELETE FROM `transports` WHERE `guid` IN (2,31);
|
||||
INSERT INTO `transports` (`guid`,`entry`,`name`,`phaseUseFlags`,`phaseid`,`phasegroup`,`ScriptName`) VALUES
|
||||
(31,294556,'Stormwind Harbor and Boralus Harbor ("Ship (The Relentless)")',0,0,0,'');
|
||||
|
||||
DELETE FROM `gameobject_template_addon` WHERE `entry`=294556;
|
||||
INSERT INTO `gameobject_template_addon` (`entry`,`faction`,`flags`,`mingold`,`maxgold`,`artkit0`,`artkit1`,`artkit2`,`artkit3`,`artkit4`,`WorldEffectID`,`AIAnimKitID`) VALUES
|
||||
(294556,0,1048616,0,0,0,0,0,0,0,0,0);
|
||||
@@ -0,0 +1,11 @@
|
||||
--
|
||||
-- Table structure for table `gossip_menu_option_addon`
|
||||
--
|
||||
DROP TABLE IF EXISTS `gossip_menu_option_addon`;
|
||||
CREATE TABLE `gossip_menu_option_addon` (
|
||||
`MenuID` int unsigned NOT NULL DEFAULT '0',
|
||||
`OptionID` int unsigned NOT NULL DEFAULT '0',
|
||||
`GarrTalentTreeID` int DEFAULT NULL,
|
||||
`VerifiedBuild` int NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`MenuID`,`OptionID`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
Reference in New Issue
Block a user