TDB 1120.25081 - 2025/08/16

This commit is contained in:
TDB Release
2025-08-16 15:03:50 +00:00
parent de80c713d0
commit b4d69dfd6d
70 changed files with 78 additions and 32 deletions

View File

@@ -0,0 +1,3 @@
-- TDB 1117.25071 auth
UPDATE `updates` SET `state`='ARCHIVED',`speed`=0;
REPLACE INTO `updates_include` (`path`, `state`) VALUES ('$/sql/old/11.x/auth', 'ARCHIVED');

View File

@@ -0,0 +1,41 @@
DELETE FROM `build_info` WHERE `build` IN (62213,62417,62438,62493);
INSERT INTO `build_info` (`build`,`majorVersion`,`minorVersion`,`bugfixVersion`,`hotfixVersion`) VALUES
(62213,11,2,0,NULL),
(62417,11,2,0,NULL),
(62438,11,2,0,NULL),
(62493,11,2,0,NULL);
DELETE FROM `build_auth_key` WHERE `build` IN (62213,62417,62438,62493);
INSERT INTO `build_auth_key` (`build`,`platform`,`arch`,`type`,`key`) VALUES
(62213,'Mac','A64','WoW',0x4EB479A10C122085CFA59633DBCADA17),
(62213,'Mac','A64','WoWC',0x101F2207C5AB43A29762838FC4C460BA),
(62213,'Mac','x64','WoW',0x94D5B0A9620333C4F068A5F7FD5E16C6),
(62213,'Mac','x64','WoWC',0xBAA3BAFC4F9209AFB9EDA4C89DBB506C),
(62213,'Win','A64','WoW',0xF565E632CBC04516F235F2A412C61569),
(62213,'Win','x64','WoW',0x062594033EA9753E81240476AB4E21BC),
(62213,'Win','x64','WoWC',0x8584238F7E35711E8817CD53951478B2),
(62417,'Mac','A64','WoW',0x020BBBA62C6539043095AE1603FC3A1F),
(62417,'Mac','A64','WoWC',0xDA7BB5E78E98856A679EB442EB683DD5),
(62417,'Mac','x64','WoW',0x8D15525965A59F4C1A886E6BCC09D75A),
(62417,'Mac','x64','WoWC',0x02C9B276B11F9B175A59021B1EB7F9E3),
(62417,'Win','A64','WoW',0xDC74AF249532EF367023C78F11E6F709),
(62417,'Win','x64','WoW',0x702FC86D79262CD311393AEB3F5B88E6),
(62417,'Win','x64','WoWC',0xB97B257A3D69BBA321DEC1427591EAD6),
(62438,'Mac','A64','WoW',0x5C974D816F1D4806F77A60D125902B11),
(62438,'Mac','A64','WoWC',0x333EEF08165D098594D01993FB5566C4),
(62438,'Mac','x64','WoW',0x8EE8E906F3277B995C3FB76A9472316D),
(62438,'Mac','x64','WoWC',0x2D92FAC97BE1600E3CF7C41C260B90E3),
(62438,'Win','A64','WoW',0x5F43B9C77DA61431AAF5E527FC6BA0BA),
(62438,'Win','x64','WoW',0x54B80A79B8A5C515E25366AB57F0ACB0),
(62438,'Win','x64','WoWC',0xCAE41A1DD7CF9C2E850CE388BB1EEF6D),
(62493,'Mac','A64','WoW',0x35663EF5187F38257E9768481F1894DC),
(62493,'Mac','A64','WoWC',0x5A48D3A43278A6EA31B2E3AE0DE6E601),
(62493,'Mac','x64','WoW',0x1BEEC427C9F41184EFAAC048D51C5207),
(62493,'Mac','x64','WoWC',0x15B0A1D7EA355891634507CD840B2E16),
(62493,'Win','A64','WoW',0x043025D94567792FA8284C282E77E57F),
(62493,'Win','x64','WoW',0x5B038E707AB60E3A862C2E03A8487220),
(62493,'Win','x64','WoWC',0x1A65B9347FD44EF0A77479173D098226);
UPDATE `realmlist` SET `gamebuild`=62493 WHERE `gamebuild`=61967;
ALTER TABLE `realmlist` CHANGE `gamebuild` `gamebuild` int unsigned NOT NULL DEFAULT '62493';

View File

@@ -0,0 +1,3 @@
-- TDB 1117.25071 characters
UPDATE `updates` SET `state`='ARCHIVED',`speed`=0;
REPLACE INTO `updates_include` (`path`, `state`) VALUES ('$/sql/old/11.x/characters', 'ARCHIVED');

View File

@@ -0,0 +1,128 @@
ALTER TABLE `characters`
ADD `bankTabs` tinyint unsigned NOT NULL DEFAULT 0 AFTER `bankSlots`,
DROP `bankBagSlotFlags1`,
DROP `bankBagSlotFlags2`,
DROP `bankBagSlotFlags3`,
DROP `bankBagSlotFlags4`,
DROP `bankBagSlotFlags5`,
DROP `bankBagSlotFlags6`,
DROP `bankBagSlotFlags7`;
UPDATE `characters` SET `bankTabs`=LEAST(6,GREATEST(
`bankSlots`,
IF((`playerFlags` & 0x20000000)<>0,6,0), -- unlocked void storage
IF((`playerFlagsEx` & 0x1)<>0,4,0), -- unlocked reagent bank
IF(`level`>=80,6,0)
));
--
-- Table structure for table `character_bank_tab_settings`
--
DROP TABLE IF EXISTS `character_bank_tab_settings`;
CREATE TABLE `character_bank_tab_settings` (
`characterGuid` bigint unsigned NOT NULL,
`tabId` tinyint unsigned NOT NULL,
`name` varchar(16) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`icon` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` varchar(2048) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`depositFlags` int DEFAULT '0',
PRIMARY KEY (`characterGuid`,`tabId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
INSERT INTO `character_bank_tab_settings` SELECT `guid`,0,'Tab 1',NULL,NULL,0 FROM `characters` WHERE `bankTabs` >= 1;
INSERT INTO `character_bank_tab_settings` SELECT `guid`,1,'Tab 2',NULL,NULL,0 FROM `characters` WHERE `bankTabs` >= 2;
INSERT INTO `character_bank_tab_settings` SELECT `guid`,2,'Tab 3',NULL,NULL,0 FROM `characters` WHERE `bankTabs` >= 3;
INSERT INTO `character_bank_tab_settings` SELECT `guid`,3,'Reagents',NULL,NULL,0x80 FROM `characters` WHERE `bankTabs` >= 4;
INSERT INTO `character_bank_tab_settings` SELECT `guid`,4,'Void Storage 1',NULL,NULL,0 FROM `characters` WHERE `bankTabs` >= 5;
INSERT INTO `character_bank_tab_settings` SELECT `guid`,5,'Void Storage 2',NULL,NULL,0 FROM `characters` WHERE `bankTabs` >= 6;
-- helper columns
-- character_inventory.bag_slot (inventory slot where the bag is stored)
-- character_inventory.new_slot
-- character_inventory.slot temporarily changed type to SMALLINT
ALTER TABLE `character_inventory`
ADD `bag_slot` INT,
ADD `new_slot` INT,
MODIFY `slot` SMALLINT UNSIGNED NOT NULL;
UPDATE `character_inventory` ci1
LEFT JOIN `character_inventory` ci2 ON ci1.bag = ci2.item
SET ci1.bag_slot = COALESCE(ci2.slot, 0);
-- move items that need moving out of the way
UPDATE `character_inventory` SET `slot`=`slot`+1000 WHERE `bag`=0 AND `slot` BETWEEN 63 AND 97; -- BankItemSlots/BankBagSlots
UPDATE `character_inventory` SET `slot`=`slot`+1000 WHERE `bag`=0 AND `slot` BETWEEN 110 AND 207; -- ReagentSlots
-- adjust BuyBackSlots/ChildEquipmentSlots/EquipableSpellSlots/AccountBankBagSlots
UPDATE `character_inventory` SET `slot`=`slot`-29 WHERE `bag`=0 AND `slot` BETWEEN 98 AND 109; -- BuyBackSlots
UPDATE `character_inventory` SET `slot`=`slot`-127 WHERE `bag`=0 AND `slot` BETWEEN 208 AND 231; -- ChildEquipmentSlots/EquipableSpellSlots/AccountBankBagSlots
SET @item_guid := 0;
SELECT MAX(guid) INTO @item_guid FROM item_instance;
-- create new bags
INSERT INTO `character_inventory` (`guid`,`bag`,`slot`,`item`)
SELECT cbts.characterGuid, 0, 63 + cbts.`tabId`, (@item_guid := @item_guid + 1) FROM `character_bank_tab_settings` cbts;
INSERT INTO `item_instance` (`guid`,`itemEntry`,`owner_guid`,`charges`,`flags`,`enchantments`,`playedTime`,`createTime`,`text`,`bonusListIDs`)
SELECT ci.`item`, 242709, ci.`guid`, '', 0x1, '0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ', c.totaltime, UNIX_TIMESTAMP(),'',''
FROM `character_inventory` ci
LEFT JOIN `characters` c ON c.`guid` = ci.`guid`
WHERE ci.`bag` = 0 AND ci.`slot` BETWEEN 63 AND 68;
-- calculate new slots for old banked items
UPDATE `character_inventory` ci
LEFT JOIN (
SELECT item, new_slot
FROM (
SELECT guid, bag, slot, item, IF(@prev <> guid, @row_num:=0,@row_num:=@row_num+1) AS new_slot, @prev:=guid
FROM character_inventory,
(SELECT @row_num:=0) rn,
(SELECT @prev:='') prev
WHERE (bag_slot = 0 AND slot BETWEEN 1063 AND 1097) OR bag_slot BETWEEN 91 AND 97
ORDER BY guid, bag_slot, slot
) `window`
) new_slots ON new_slots.item = ci.item
SET ci.new_slot = new_slots.new_slot;
-- assign new bags and slots
UPDATE `character_inventory` ci
LEFT JOIN `character_inventory` ci2 ON ci2.guid = ci.guid AND ci2.bag = 0 AND ci2.slot = (ci.new_slot DIV 98) + 63
SET ci.bag = ci2.item, ci.slot = ci.new_slot MOD 98
WHERE (ci.bag_slot = 0 AND ci.slot BETWEEN 1063 AND 1097) OR ci.bag_slot BETWEEN 91 AND 97;
-- move reagents as-is (bag is the same size)
UPDATE `character_inventory` ci
LEFT JOIN `character_inventory` ci2 ON ci2.guid = ci.guid AND ci2.bag = 0 AND ci2.slot = 66
SET ci.bag = ci2.item, ci.slot = ci.slot - 1110
WHERE (ci.bag_slot = 0 AND ci.slot BETWEEN 1110 AND 1207);
-- void storage
ALTER TABLE `character_void_storage`
ADD `itemGuid` BIGINT UNSIGNED,
ADD `bagGuid` BIGINT UNSIGNED;
-- generate guids for void storage
UPDATE `character_void_storage` cvs
SET
cvs.`itemGuid` = (@item_guid := @item_guid + 1),
cvs.`bagGuid` = (SELECT ci.`item` FROM `character_inventory` ci WHERE ci.`guid` = cvs.`playerGuid` AND ci.`bag` = 0 AND ci.`slot` = 67 + (cvs.`slot` DIV 80));
-- create items from void storage
INSERT INTO `item_instance` (`guid`, `itemEntry`, `owner_guid`, `creatorGuid`, `charges`, `flags`, `enchantments`, `randomBonusListId`, `durability`, `playedTime`, `createTime`, `text`, `context`, `bonusListIDs`)
SELECT cvs.`itemGuid`, cvs.`itemEntry`, cvs.`playerGuid`, cvs.`creatorGuid`, '', 0x1, '0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ', cvs.`randomBonusListId`, 999, c.`totaltime`, UNIX_TIMESTAMP(), '', cvs.context, cvs.bonusListIDs FROM `character_void_storage` cvs
LEFT JOIN `characters` c ON c.`guid` = cvs.`playerGuid`;
INSERT INTO `item_instance_modifiers` (`itemGuid`, `fixedScalingLevel`, `artifactKnowledgeLevel`)
SELECT cvs.`itemGuid`, COALESCE(cvs.`fixedScalingLevel`, 0), COALESCE(cvs.`artifactKnowledgeLevel`, 0) FROM `character_void_storage` cvs
WHERE cvs.`fixedScalingLevel` > 0 OR cvs.`artifactKnowledgeLevel` > 0;
INSERT INTO `character_inventory` (`guid`, `bag`, `slot`, `item`)
SELECT cvs.`playerGuid`, cvs.`bagGuid`, cvs.`slot` MOD 80, cvs.`itemGuid` FROM `character_void_storage` cvs;
ALTER TABLE `character_inventory`
DROP `bag_slot`,
DROP `new_slot`,
MODIFY `slot` TINYINT UNSIGNED NOT NULL DEFAULT 0;
DROP TABLE IF EXISTS `character_void_storage`;

View File

@@ -0,0 +1,3 @@
-- TDB 1117.25071 hotfixes
UPDATE `updates` SET `state`='ARCHIVED',`speed`=0;
REPLACE INTO `updates_include` (`path`, `state`) VALUES ('$/sql/old/11.x/hotfixes', 'ARCHIVED');

View File

@@ -0,0 +1,84 @@
ALTER TABLE `animation_data` MODIFY COLUMN `BehaviorTier` tinyint NOT NULL DEFAULT 0 AFTER `Fallback`;
DROP TABLE IF EXISTS `bank_bag_slot_prices`;
--
-- Table structure for table `bank_tab`
--
DROP TABLE IF EXISTS `bank_tab`;
CREATE TABLE `bank_tab` (
`ID` int unsigned NOT NULL DEFAULT '0',
`Cost` bigint unsigned NOT NULL DEFAULT '0',
`BankType` tinyint unsigned NOT NULL DEFAULT '0',
`OrderIndex` tinyint NOT NULL DEFAULT '0',
`PlayerConditionID` int NOT NULL DEFAULT '0',
`PurchasePromptTitle` int NOT NULL DEFAULT '0',
`PurchasePromptBody` int NOT NULL DEFAULT '0',
`PurchasePromptConfirmation` int NOT NULL DEFAULT '0',
`TabCleanupConfirmation` int NOT NULL DEFAULT '0',
`TabNameEditBoxHeader` int NOT NULL DEFAULT '0',
`VerifiedBuild` int NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`,`VerifiedBuild`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
ALTER TABLE `banned_addons` MODIFY COLUMN `Flags` int NOT NULL DEFAULT 0 AFTER `Version`;
ALTER TABLE `cfg_regions` ADD COLUMN `TimeEventRegionGroupID` int NOT NULL DEFAULT 0 AFTER `ChallengeOrigin`;
ALTER TABLE `char_titles` MODIFY COLUMN `Flags` int NOT NULL DEFAULT 0 AFTER `MaskID`;
ALTER TABLE `chr_classes`
ADD COLUMN `StartingLevel` int NOT NULL DEFAULT 0 AFTER `Flags`,
ADD COLUMN `HasStrengthBonus` tinyint UNSIGNED NOT NULL DEFAULT 0 AFTER `ID`,
ADD COLUMN `DamageBonusStat` tinyint UNSIGNED NOT NULL DEFAULT 0 AFTER `RolesMask`,
ADD COLUMN `HasRelicSlot` tinyint UNSIGNED NOT NULL DEFAULT 0 AFTER `DamageBonusStat`;
ALTER TABLE `creature_family` ADD COLUMN `CategoryEnumID` int NOT NULL DEFAULT 0 AFTER `PetTalentType`;
ALTER TABLE `expected_stat` ADD COLUMN `ContentSetID` int NOT NULL DEFAULT 0 AFTER `CreatureSpellDamage`;
ALTER TABLE `item` MODIFY COLUMN `ClassID` int NOT NULL DEFAULT 0 AFTER `ID`;
ALTER TABLE `item_set_spell` ADD COLUMN `TraitSubTreeID` smallint UNSIGNED NOT NULL DEFAULT 0 AFTER `SpellID`;
ALTER TABLE `map_challenge_mode`
ADD COLUMN `FirstRewardQuestID1` int NOT NULL DEFAULT 0 AFTER `CriteriaCount3`,
ADD COLUMN `FirstRewardQuestID2` int NOT NULL DEFAULT 0 AFTER `FirstRewardQuestID1`,
ADD COLUMN `FirstRewardQuestID3` int NOT NULL DEFAULT 0 AFTER `FirstRewardQuestID2`,
ADD COLUMN `FirstRewardQuestID4` int NOT NULL DEFAULT 0 AFTER `FirstRewardQuestID3`,
ADD COLUMN `FirstRewardQuestID5` int NOT NULL DEFAULT 0 AFTER `FirstRewardQuestID4`,
ADD COLUMN `FirstRewardQuestID6` int NOT NULL DEFAULT 0 AFTER `FirstRewardQuestID5`,
ADD COLUMN `RewardQuestID1` int NOT NULL DEFAULT 0 AFTER `FirstRewardQuestID6`,
ADD COLUMN `RewardQuestID2` int NOT NULL DEFAULT 0 AFTER `RewardQuestID1`,
ADD COLUMN `RewardQuestID3` int NOT NULL DEFAULT 0 AFTER `RewardQuestID2`,
ADD COLUMN `RewardQuestID4` int NOT NULL DEFAULT 0 AFTER `RewardQuestID3`,
ADD COLUMN `RewardQuestID5` int NOT NULL DEFAULT 0 AFTER `RewardQuestID4`,
ADD COLUMN `RewardQuestID6` int NOT NULL DEFAULT 0 AFTER `RewardQuestID5`;
ALTER TABLE `map_challenge_mode` MODIFY COLUMN `Flags` int NOT NULL DEFAULT 0 AFTER `MapID`;
ALTER TABLE `spell_category`
MODIFY COLUMN `UsesPerWeek` int NOT NULL DEFAULT 0 AFTER `Flags`,
MODIFY COLUMN `MaxCharges` int NOT NULL DEFAULT 0 AFTER `UsesPerWeek`;
ALTER TABLE `spell_equipped_items` MODIFY COLUMN `EquippedItemClass` int NOT NULL DEFAULT 0 AFTER `SpellID`;
ALTER TABLE `spell_visual_kit`
ADD COLUMN `MinimumSpellVisualDensityFilterType` int NOT NULL DEFAULT 0 AFTER `DelayMax`,
ADD COLUMN `MinimumSpellVisualDensityFilterParam` int NOT NULL DEFAULT 0 AFTER `MinimumSpellVisualDensityFilterType`,
ADD COLUMN `ReducedSpellVisualDensityFilterType` int NOT NULL DEFAULT 0 AFTER `MinimumSpellVisualDensityFilterParam`,
ADD COLUMN `ReducedSpellVisualDensityFilterParam` int NOT NULL DEFAULT 0 AFTER `ReducedSpellVisualDensityFilterType`;
ALTER TABLE `unit_power_bar` MODIFY COLUMN `Flags` int NOT NULL DEFAULT 0 AFTER `BarType`;
ALTER TABLE `warband_scene`
DROP COLUMN `Source`,
DROP COLUMN `SourceType`;
ALTER TABLE `warband_scene_locale` DROP COLUMN `Source_lang`;
DELETE FROM `item_sparse` WHERE `ID` IN (208392,242709);
INSERT INTO `item_sparse` (`ID`, `AllowableRace`, `Description`, `Display3`, `Display2`, `Display1`, `Display`, `ExpansionID`, `DmgVariance`, `LimitCategory`, `DurationInInventory`, `QualityModifier`, `BagFamily`, `StartQuestID`, `LanguageID`, `ItemRange`, `StatPercentageOfSocket1`, `StatPercentageOfSocket2`, `StatPercentageOfSocket3`, `StatPercentageOfSocket4`, `StatPercentageOfSocket5`, `StatPercentageOfSocket6`, `StatPercentageOfSocket7`, `StatPercentageOfSocket8`, `StatPercentageOfSocket9`, `StatPercentageOfSocket10`, `StatPercentEditor1`, `StatPercentEditor2`, `StatPercentEditor3`, `StatPercentEditor4`, `StatPercentEditor5`, `StatPercentEditor6`, `StatPercentEditor7`, `StatPercentEditor8`, `StatPercentEditor9`, `StatPercentEditor10`, `StatModifierBonusStat1`, `StatModifierBonusStat2`, `StatModifierBonusStat3`, `StatModifierBonusStat4`, `StatModifierBonusStat5`, `StatModifierBonusStat6`, `StatModifierBonusStat7`, `StatModifierBonusStat8`, `StatModifierBonusStat9`, `StatModifierBonusStat10`, `Stackable`, `MaxCount`, `MinReputation`, `RequiredAbility`, `SellPrice`, `BuyPrice`, `VendorStackCount`, `PriceVariance`, `PriceRandomValue`, `Flags1`, `Flags2`, `Flags3`, `Flags4`, `Flags5`, `FactionRelated`, `ModifiedCraftingReagentItemID`, `ContentTuningID`, `PlayerLevelToItemLevelCurveID`, `ItemNameDescriptionID`, `RequiredTransmogHoliday`, `RequiredHoliday`, `GemProperties`, `SocketMatchEnchantmentId`, `TotemCategoryID`, `InstanceBound`, `ZoneBound1`, `ZoneBound2`, `ItemSet`, `LockID`, `PageID`, `ItemDelay`, `MinFactionID`, `RequiredSkillRank`, `RequiredSkill`, `ItemLevel`, `AllowableClass`, `ArtifactID`, `SpellWeight`, `SpellWeightCategory`, `SocketType1`, `SocketType2`, `SocketType3`, `SheatheType`, `Material`, `PageMaterialID`, `Bonding`, `DamageDamageType`, `ContainerSlots`, `RequiredPVPMedal`, `RequiredPVPRank`, `RequiredLevel`, `InventoryType`, `OverallQualityID`, `VerifiedBuild`) VALUES
(208392,-1,'','','','','Account Bank Tab Bag (DNT)',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,0,0,0,0,0,1,1,1.034399986267089843,0,0,67375104,268437504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,-1,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,18,1,62493),
(242709,-1,'','','','','Character Bank Tab Bag (DNT)',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,0,0,0,0,0,1,1,0.990899980068206787,0,0,67375104,268437504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,-1,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,18,1,62493);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,4 @@
-- TDB 1117.25071 world
UPDATE `version` SET `db_version`='TDB 1117.25071', `cache_id`=25071 LIMIT 1;
UPDATE `updates` SET `state`='ARCHIVED',`speed`=0;
REPLACE INTO `updates_include` (`path`, `state`) VALUES ('$/sql/old/11.x/world', 'ARCHIVED');

View File

@@ -0,0 +1,447 @@
SET @CGUID := 7003178;
SET @OGUID := 7000632;
-- Creature
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+94;
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`, `MovementType`, `npcflag`, `unit_flags`, `unit_flags2`, `unit_flags3`, `VerifiedBuild`) VALUES
(@CGUID+0, 130165, 1643, 8721, 8721, '0', 0, 0, 0, 0, -727.69097900390625, 1355.1146240234375, 23.3473968505859375, 0.372618287801742553, 120, 3, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Highland Shoat (Area: Drustvar - Difficulty: 0) CreateObject2 (possible waypoints or random movement)
(@CGUID+1, 130165, 1643, 8721, 8721, '0', 0, 0, 0, 0, -738.8211669921875, 1365.69970703125, 26.24887847900390625, 1.485788345336914062, 120, 3, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Highland Shoat (Area: Drustvar - Difficulty: 0) CreateObject2 (possible waypoints or random movement)
(@CGUID+2, 130165, 1643, 8721, 8721, '0', 0, 0, 0, 0, -664.435791015625, 1375.1319580078125, 29.245819091796875, 0.787384986877441406, 120, 3, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Highland Shoat (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+3, 127526, 1643, 8721, 9264, '0', 0, 0, 0, 0, -588.20831298828125, 1288.5364990234375, 0.691107034683227539, 5.15903472900390625, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Scavenging Snapclaw (Area: Mudfish Lodge - Difficulty: 0) CreateObject2
(@CGUID+4, 130165, 1643, 8721, 8721, '0', 0, 0, 0, 0, -722.078125, 1361.3629150390625, 25.68696212768554687, 5.843300819396972656, 120, 3, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Highland Shoat (Area: Drustvar - Difficulty: 0) CreateObject2 (possible waypoints or random movement)
(@CGUID+5, 129137, 1643, 8721, 8721, '0', 0, 0, 0, 0, -727.26214599609375, 1349.564208984375, 22.97634124755859375, 5.218525886535644531, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Thicket Hare (Area: Drustvar - Difficulty: 0) CreateObject2 (possible waypoints or random movement)
(@CGUID+6, 130165, 1643, 8721, 8721, '0', 0, 0, 0, 0, -693.203125, 1362.3802490234375, 27.17545318603515625, 1.226134300231933593, 120, 3, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Highland Shoat (Area: Drustvar - Difficulty: 0) CreateObject2 (possible waypoints or random movement)
(@CGUID+7, 130164, 1643, 8721, 8721, '0', 0, 0, 0, 0, -718.5555419921875, 1358.8125, 25.34671401977539062, 5.788094997406005859, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Highland Boar (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+8, 126353, 1643, 8721, 8721, '0', 0, 0, 0, 0, -713.4288330078125, 1365.829833984375, 33.36644744873046875, 6.155664443969726562, 120, 6, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Woodland Bat (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+9, 130164, 1643, 8721, 8721, '0', 0, 0, 0, 0, -814.3125, 1396.439208984375, 21.92026519775390625, 4.144854068756103515, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Highland Boar (Area: Drustvar - Difficulty: 0) CreateObject2 (possible waypoints or random movement)
(@CGUID+10, 130164, 1643, 8721, 8721, '0', 0, 0, 0, 0, -661.53643798828125, 1377.420166015625, 29.6895599365234375, 1.814188957214355468, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Highland Boar (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+11, 127526, 1643, 8721, 9264, '0', 0, 0, 0, 0, -543.94268798828125, 1295.142333984375, 0.590597331523895263, 5.888964653015136718, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Scavenging Snapclaw (Area: Mudfish Lodge - Difficulty: 0) CreateObject2
(@CGUID+12, 130164, 1643, 8721, 8721, '0', 0, 0, 0, 0, -688.61456298828125, 1359.9757080078125, 26.94134140014648437, 0.852011263370513916, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Highland Boar (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+13, 127530, 1643, 8721, 9265, '0', 0, 0, 0, 0, -801.23089599609375, 1278.8333740234375, 3.456723213195800781, 5.343322277069091796, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Ravenous Gull (Area: Snapclaw Shore - Difficulty: 0) CreateObject2 (Auras: )
(@CGUID+14, 127530, 1643, 8721, 9265, '0', 0, 0, 0, 0, -865.4444580078125, 1309.123291015625, 0.977530658245086669, 1.445237278938293457, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Ravenous Gull (Area: Snapclaw Shore - Difficulty: 0) CreateObject2
(@CGUID+15, 127530, 1643, 8721, 9265, '0', 0, 0, 0, 0, -798.11456298828125, 1277.90625, 3.44584512710571289, 3.676903963088989257, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Ravenous Gull (Area: Snapclaw Shore - Difficulty: 0) CreateObject2 (Auras: )
(@CGUID+16, 127530, 1643, 8721, 9265, '0', 0, 0, 0, 0, -831.17364501953125, 1286.34375, 25.02601814270019531, 1.178093314170837402, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Ravenous Gull (Area: Snapclaw Shore - Difficulty: 0) CreateObject2 (possible waypoints or random movement)
(@CGUID+17, 127530, 1643, 8721, 9265, '0', 0, 0, 0, 0, -823.31768798828125, 1307.26220703125, 6.73795318603515625, 4.504976272583007812, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Ravenous Gull (Area: Snapclaw Shore - Difficulty: 0) CreateObject2
(@CGUID+18, 127530, 1643, 8721, 9265, '0', 0, 0, 0, 0, -865.873291015625, 1312.0989990234375, 1.204643487930297851, 4.209236621856689453, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Ravenous Gull (Area: Snapclaw Shore - Difficulty: 0) CreateObject2
(@CGUID+19, 127526, 1643, 8721, 9265, '0', 0, 0, 0, 0, -823.326416015625, 1273.15283203125, 0.991255760192871093, 5.894612789154052734, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Scavenging Snapclaw (Area: Snapclaw Shore - Difficulty: 0) CreateObject2 (Auras: )
(@CGUID+20, 127526, 1643, 8721, 9265, '0', 0, 0, 0, 0, -792.763916015625, 1251.1805419921875, 0.193085014820098876, 3.558018445968627929, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Scavenging Snapclaw (Area: Snapclaw Shore - Difficulty: 0) CreateObject2 (Auras: )
(@CGUID+21, 127526, 1643, 8721, 9265, '0', 0, 0, 0, 0, -817.2899169921875, 1263.8680419921875, 0.841438174247741699, 0.468191713094711303, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Scavenging Snapclaw (Area: Snapclaw Shore - Difficulty: 0) CreateObject2
(@CGUID+22, 127530, 1643, 8721, 9265, '0', 0, 0, 0, 0, -825.2257080078125, 1307.6475830078125, 6.4569854736328125, 3.688308238983154296, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Ravenous Gull (Area: Snapclaw Shore - Difficulty: 0) CreateObject2
(@CGUID+23, 127526, 1643, 8721, 9265, '0', 0, 0, 0, 0, -843.48614501953125, 1257.8021240234375, -2.28969049453735351, 0.323933660984039306, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Scavenging Snapclaw (Area: Snapclaw Shore - Difficulty: 0) CreateObject2 (possible waypoints or random movement)
(@CGUID+24, 127530, 1643, 8721, 9265, '0', 0, 0, 0, 0, -842.498291015625, 1280.8385009765625, 2.984570503234863281, 4.864971160888671875, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Ravenous Gull (Area: Snapclaw Shore - Difficulty: 0) CreateObject2
(@CGUID+25, 129137, 1643, 8721, 9265, '0', 0, 0, 0, 0, -806.0086669921875, 1314.4600830078125, 10.59224128723144531, 2.755614280700683593, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Thicket Hare (Area: Snapclaw Shore - Difficulty: 0) CreateObject2 (possible waypoints or random movement)
(@CGUID+26, 127526, 1643, 8721, 9265, '0', 0, 0, 0, 0, -812.11456298828125, 1263.23095703125, 1.208698034286499023, 3.074378728866577148, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Scavenging Snapclaw (Area: Snapclaw Shore - Difficulty: 0) CreateObject2
(@CGUID+27, 127526, 1643, 8721, 9265, '0', 0, 0, 0, 0, -778.89410400390625, 1238.390625, 0.238037407398223876, 0.468191713094711303, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Scavenging Snapclaw (Area: Snapclaw Shore - Difficulty: 0) CreateObject2
(@CGUID+28, 127526, 1643, 8721, 9265, '0', 0, 0, 0, 0, -717.07464599609375, 1218.4896240234375, 0.724489808082580566, 2.461985349655151367, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Scavenging Snapclaw (Area: Snapclaw Shore - Difficulty: 0) CreateObject2 (Auras: )
(@CGUID+29, 127526, 1643, 8721, 9265, '0', 0, 0, 0, 0, -728.40625, 1204.8489990234375, -2.49589920043945312, 4.397478103637695312, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Scavenging Snapclaw (Area: Snapclaw Shore - Difficulty: 0) CreateObject2
(@CGUID+30, 127526, 1643, 8721, 9265, '0', 0, 0, 0, 0, -751.1961669921875, 1230.7083740234375, 0.991963803768157958, 4.595852375030517578, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Scavenging Snapclaw (Area: Snapclaw Shore - Difficulty: 0) CreateObject2
(@CGUID+31, 127530, 1643, 8721, 9265, '0', 0, 0, 0, 0, -765.15106201171875, 1258.642333984375, 1.543103575706481933, 3.676904201507568359, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Ravenous Gull (Area: Snapclaw Shore - Difficulty: 0) CreateObject2
(@CGUID+32, 127526, 1643, 8721, 9265, '0', 0, 0, 0, 0, -707.19793701171875, 1222.064208984375, 0.513160943984985351, 0.673750996589660644, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Scavenging Snapclaw (Area: Snapclaw Shore - Difficulty: 0) CreateObject2
(@CGUID+33, 127530, 1643, 8721, 9265, '0', 0, 0, 0, 0, -772.49481201171875, 1288.6666259765625, 9.006483078002929687, 4.864971160888671875, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Ravenous Gull (Area: Snapclaw Shore - Difficulty: 0) CreateObject2
(@CGUID+34, 127530, 1643, 8721, 9265, '0', 0, 0, 0, 0, -767.092041015625, 1258.751708984375, 1.642134904861450195, 5.366741657257080078, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Ravenous Gull (Area: Snapclaw Shore - Difficulty: 0) CreateObject2
(@CGUID+35, 127530, 1643, 8721, 9265, '0', 0, 0, 0, 0, -731.68231201171875, 1230.28125, 0.762691617012023925, 4.60064697265625, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Ravenous Gull (Area: Snapclaw Shore - Difficulty: 0) CreateObject2 (Auras: )
(@CGUID+36, 127530, 1643, 8721, 9265, '0', 0, 0, 0, 0, -742.185791015625, 1301.93408203125, 16.07320594787597656, 5.25076913833618164, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Ravenous Gull (Area: Snapclaw Shore - Difficulty: 0) CreateObject2
(@CGUID+37, 127530, 1643, 8721, 9265, '0', 0, 0, 0, 0, -710.25518798828125, 1258.9305419921875, 6.775804519653320312, 4.023269176483154296, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Ravenous Gull (Area: Snapclaw Shore - Difficulty: 0) CreateObject2
(@CGUID+38, 127526, 1643, 8721, 9265, '0', 0, 0, 0, 0, -699.37677001953125, 1198.73095703125, -0.39634671807289123, 0.77066349983215332, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Scavenging Snapclaw (Area: Snapclaw Shore - Difficulty: 0) CreateObject2
(@CGUID+39, 127530, 1643, 8721, 9265, '0', 0, 0, 0, 0, -733.1649169921875, 1229.845458984375, 0.918452918529510498, 5.789493560791015625, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Ravenous Gull (Area: Snapclaw Shore - Difficulty: 0) CreateObject2 (Auras: )
(@CGUID+40, 127530, 1643, 8721, 9265, '0', 0, 0, 0, 0, -745.7899169921875, 1301.8663330078125, 16.10391998291015625, 4.201458454132080078, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Ravenous Gull (Area: Snapclaw Shore - Difficulty: 0) CreateObject2
(@CGUID+41, 127530, 1643, 8721, 9265, '0', 0, 0, 0, 0, -790.201416015625, 1258.24658203125, 21.11149787902832031, 5.105092048645019531, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Ravenous Gull (Area: Snapclaw Shore - Difficulty: 0) CreateObject2
(@CGUID+42, 127526, 1643, 8721, 9265, '0', 0, 0, 0, 0, -705.3350830078125, 1226.2135009765625, 0.370980530977249145, 4.96037912368774414, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Scavenging Snapclaw (Area: Snapclaw Shore - Difficulty: 0) CreateObject2
(@CGUID+43, 127530, 1643, 8721, 9265, '0', 0, 0, 0, 0, -758.045166015625, 1258.3941650390625, 18.62761497497558593, 5.105092048645019531, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Ravenous Gull (Area: Snapclaw Shore - Difficulty: 0) CreateObject2
(@CGUID+44, 127526, 1643, 8721, 9265, '0', 0, 0, 0, 0, -756.46356201171875, 1211.392333984375, -1.23745489120483398, 0.705930829048156738, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Scavenging Snapclaw (Area: Snapclaw Shore - Difficulty: 0) CreateObject2
(@CGUID+45, 127530, 1643, 8721, 9265, '0', 0, 0, 0, 0, -733.0225830078125, 1240.486083984375, 19.314971923828125, 1.178093314170837402, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Ravenous Gull (Area: Snapclaw Shore - Difficulty: 0) CreateObject2
(@CGUID+46, 127530, 1643, 8721, 9265, '0', 0, 0, 0, 0, -735.28302001953125, 1263.8507080078125, 1.129084587097167968, 0.540636599063873291, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Ravenous Gull (Area: Snapclaw Shore - Difficulty: 0) CreateObject2
(@CGUID+47, 127526, 1643, 8721, 9265, '0', 0, 0, 0, 0, -777.36114501953125, 1236.8472900390625, 0.312203884124755859, 1.650610685348510742, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Scavenging Snapclaw (Area: Snapclaw Shore - Difficulty: 0) CreateObject2
(@CGUID+48, 127526, 1643, 8721, 9265, '0', 0, 0, 0, 0, -770.404541015625, 1223.3680419921875, -0.66497111320495605, 4.062172889709472656, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Scavenging Snapclaw (Area: Snapclaw Shore - Difficulty: 0) CreateObject2
(@CGUID+49, 127526, 1643, 8721, 9265, '0', 0, 0, 0, 0, -747.19964599609375, 1194.5816650390625, -1.96580922603607177, 3.429046869277954101, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Scavenging Snapclaw (Area: Snapclaw Shore - Difficulty: 0) CreateObject2
(@CGUID+50, 127530, 1643, 8721, 9265, '0', 0, 0, 0, 0, -773.1336669921875, 1234.203125, 16.49652481079101562, 5.105092048645019531, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Ravenous Gull (Area: Snapclaw Shore - Difficulty: 0) CreateObject2
(@CGUID+51, 127553, 1643, 8721, 9264, '0', 0, 0, 0, 0, -613.56768798828125, 1203.935791015625, 5.272043228149414062, 1.930952668190002441, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Brinebeak (Area: Mudfish Lodge - Difficulty: 0) CreateObject2
(@CGUID+52, 127530, 1643, 8721, 9264, '0', 0, 0, 0, 0, -640.97393798828125, 1287.3836669921875, 13.81244659423828125, 0.198666483163833618, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Ravenous Gull (Area: Mudfish Lodge - Difficulty: 0) CreateObject2
(@CGUID+53, 127530, 1643, 8721, 9264, '0', 0, 0, 0, 0, -641.232666015625, 1260.045166015625, 15.20421695709228515, 2.093986988067626953, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Ravenous Gull (Area: Mudfish Lodge - Difficulty: 0) CreateObject2
(@CGUID+54, 127530, 1643, 8721, 9264, '0', 0, 0, 0, 0, -634.28472900390625, 1226.0242919921875, 15.3011474609375, 2.790626287460327148, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Ravenous Gull (Area: Mudfish Lodge - Difficulty: 0) CreateObject2
(@CGUID+55, 127530, 1643, 8721, 9264, '0', 0, 0, 0, 0, -608.295166015625, 1230.6129150390625, 5.877149581909179687, 4.21269845962524414, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Ravenous Gull (Area: Mudfish Lodge - Difficulty: 0) CreateObject2
(@CGUID+56, 127530, 1643, 8721, 9264, '0', 0, 0, 0, 0, -668.55206298828125, 1282.4444580078125, 36.26724624633789062, 1.178093314170837402, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Ravenous Gull (Area: Mudfish Lodge - Difficulty: 0) CreateObject2
(@CGUID+57, 127530, 1643, 8721, 9264, '0', 0, 0, 0, 0, -609.78643798828125, 1228.751708984375, 5.856270313262939453, 1.035397052764892578, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Ravenous Gull (Area: Mudfish Lodge - Difficulty: 0) CreateObject2
(@CGUID+58, 127530, 1643, 8721, 9264, '0', 0, 0, 0, 0, -681.36981201171875, 1264.873291015625, 38.48355865478515625, 5.105092048645019531, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Ravenous Gull (Area: Mudfish Lodge - Difficulty: 0) CreateObject2
(@CGUID+59, 127530, 1643, 8721, 9264, '0', 0, 0, 0, 0, -665.19268798828125, 1276.0242919921875, 13.8170633316040039, 4.084651947021484375, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Ravenous Gull (Area: Mudfish Lodge - Difficulty: 0) CreateObject2
(@CGUID+60, 127530, 1643, 8721, 9264, '0', 0, 0, 0, 0, -608.763916015625, 1270.545166015625, 5.174061298370361328, 0.094555534422397613, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Ravenous Gull (Area: Mudfish Lodge - Difficulty: 0) CreateObject2
(@CGUID+61, 127526, 1643, 8721, 9264, '0', 0, 0, 0, 0, -535.33160400390625, 1308.3802490234375, 3.500948429107666015, 1.246457338333129882, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Scavenging Snapclaw (Area: Mudfish Lodge - Difficulty: 0) CreateObject2
(@CGUID+62, 127530, 1643, 8721, 9264, '0', 0, 0, 0, 0, -639.0225830078125, 1287.015625, 13.73761177062988281, 2.162952423095703125, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Ravenous Gull (Area: Mudfish Lodge - Difficulty: 0) CreateObject2
(@CGUID+63, 127530, 1643, 8721, 9264, '0', 0, 0, 0, 0, -610.12152099609375, 1269.0728759765625, 5.195971488952636718, 5.416916370391845703, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Ravenous Gull (Area: Mudfish Lodge - Difficulty: 0) CreateObject2
(@CGUID+64, 127530, 1643, 8721, 9264, '0', 0, 0, 0, 0, -651, 1267.578125, 35.390869140625, 1.178093314170837402, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Ravenous Gull (Area: Mudfish Lodge - Difficulty: 0) CreateObject2
(@CGUID+65, 127526, 1643, 8721, 9264, '0', 0, 0, 0, 0, -559.3680419921875, 1270.6475830078125, -0.0230071023106575, 3.560774564743041992, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Scavenging Snapclaw (Area: Mudfish Lodge - Difficulty: 0) CreateObject2
(@CGUID+66, 127526, 1643, 8721, 9264, '0', 0, 0, 0, 0, -562.9132080078125, 1290.6805419921875, 1.797439217567443847, 4.409995079040527343, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Scavenging Snapclaw (Area: Mudfish Lodge - Difficulty: 0) CreateObject2
(@CGUID+67, 128772, 1643, 8721, 9265, '0', 0, 0, 0, 0, -596.44097900390625, 1273.375, 1.340177774429321289, 0, 120, 3, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mudwallow Frog (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@CGUID+68, 128772, 1643, 8721, 9265, '0', 0, 0, 0, 0, -525.4288330078125, 1323.467041015625, 2.430429458618164062, 0.622211337089538574, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mudwallow Frog (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@CGUID+69, 128772, 1643, 8721, 9265, '0', 0, 0, 0, 0, -580.90887451171875, 1266.0501708984375, -0.07698092609643936, 3.693265676498413085, 120, 3, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mudwallow Frog (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@CGUID+70, 128772, 1643, 8721, 9265, '0', 0, 0, 0, 0, -601.4305419921875, 1233.939208984375, 0.668629884719848632, 5.790529251098632812, 120, 3, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mudwallow Frog (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@CGUID+71, 128772, 1643, 8721, 9265, '0', 0, 0, 0, 0, -567.28472900390625, 1274.6302490234375, 0.530616521835327148, 2.29919743537902832, 120, 3, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mudwallow Frog (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@CGUID+72, 128772, 1643, 8721, 9265, '0', 0, 0, 0, 0, -547.18096923828125, 1285.9139404296875, 0.241623058915138244, 4.846943378448486328, 120, 3, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mudwallow Frog (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@CGUID+73, 128772, 1643, 8721, 9265, '0', 0, 0, 0, 0, -527.44964599609375, 1325.4617919921875, 2.19077301025390625, 0.922905147075653076, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mudwallow Frog (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@CGUID+74, 127558, 1643, 8721, 9265, '0', 0, 0, 0, 1, -663.7117919921875, 1184.357666015625, 5.708058834075927734, 4.752450942993164062, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Art Hughie (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@CGUID+75, 128772, 1643, 8721, 9264, '0', 0, 0, 0, 0, -707.96875, 1206.607666015625, 0.564762592315673828, 4.597264289855957031, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mudwallow Frog (Area: Mudfish Lodge - Difficulty: 0) CreateObject1
(@CGUID+76, 128772, 1643, 8721, 9264, '0', 0, 0, 0, 0, -709.04168701171875, 1207.826416015625, 0.593884408473968505, 3.499276638031005859, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mudwallow Frog (Area: Mudfish Lodge - Difficulty: 0) CreateObject1
(@CGUID+77, 127548, 1643, 8721, 9264, '0', 0, 0, 0, 0, -712.51910400390625, 1216.07470703125, 0.614556431770324707, 4.933927059173583984, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Fishing Rod (Area: Mudfish Lodge - Difficulty: 0) CreateObject1 (Auras: 253105 - Fishing Rod)
(@CGUID+78, 128772, 1643, 8721, 9264, '0', 0, 0, 0, 0, -726.60693359375, 1234.07275390625, 0.231143072247505187, 1.206368923187255859, 120, 3, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mudwallow Frog (Area: Mudfish Lodge - Difficulty: 0) CreateObject1
(@CGUID+79, 128772, 1643, 8721, 9264, '0', 0, 0, 0, 0, -729.35821533203125, 1255.5938720703125, -0.20717242360115051, 4.093502044677734375, 120, 3, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mudwallow Frog (Area: Mudfish Lodge - Difficulty: 0) CreateObject1
(@CGUID+80, 128772, 1643, 8721, 9264, '0', 0, 0, 0, 0, -744.67706298828125, 1245.376708984375, 2.204370021820068359, 4.597264289855957031, 120, 3, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mudwallow Frog (Area: Mudfish Lodge - Difficulty: 0) CreateObject1
(@CGUID+81, 128772, 1643, 8721, 9264, '0', 0, 0, 0, 0, -741.51080322265625, 1241.96875, -0.11475798487663269, 6.244170188903808593, 120, 3, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mudwallow Frog (Area: Mudfish Lodge - Difficulty: 0) CreateObject1
(@CGUID+82, 128772, 1643, 8721, 9264, '0', 0, 0, 0, 0, -746.810791015625, 1247.3004150390625, 1.885159254074096679, 2.740456581115722656, 120, 3, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mudwallow Frog (Area: Mudfish Lodge - Difficulty: 0) CreateObject1
(@CGUID+83, 127548, 1643, 8721, 9264, '0', 0, 0, 0, 0, -755.90625, 1225.6163330078125, 0.551871001720428466, 5.006527423858642578, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Fishing Rod (Area: Mudfish Lodge - Difficulty: 0) CreateObject1 (Auras: 253105 - Fishing Rod)
(@CGUID+84, 128772, 1643, 8721, 9264, '0', 0, 0, 0, 0, -762.267578125, 1232.8397216796875, 1.08823704719543457, 3.851911544799804687, 120, 3, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mudwallow Frog (Area: Mudfish Lodge - Difficulty: 0) CreateObject1
(@CGUID+85, 128772, 1643, 8721, 9264, '0', 0, 0, 0, 0, -766.9288330078125, 1248.69970703125, 0.738383471965789794, 6.117122173309326171, 120, 3, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mudwallow Frog (Area: Mudfish Lodge - Difficulty: 0) CreateObject1
(@CGUID+86, 127548, 1643, 8721, 9264, '0', 0, 0, 0, 0, -779.951416015625, 1240.3663330078125, 0.246002435684204101, 3.358357429504394531, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Fishing Rod (Area: Mudfish Lodge - Difficulty: 0) CreateObject1 (Auras: 253105 - Fishing Rod)
(@CGUID+87, 128772, 1643, 8721, 9264, '0', 0, 0, 0, 0, -792.83331298828125, 1264.3211669921875, 3.525282621383666992, 2.819799661636352539, 120, 3, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mudwallow Frog (Area: Mudfish Lodge - Difficulty: 0) CreateObject1
(@CGUID+88, 127548, 1643, 8721, 9265, '0', 0, 0, 0, 0, -806.7742919921875, 1259.3629150390625, 0.766896009445190429, 4.030555248260498046, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Fishing Rod (Area: Snapclaw Shore - Difficulty: 0) CreateObject1 (Auras: 253105 - Fishing Rod)
(@CGUID+89, 128772, 1643, 8721, 9265, '0', 0, 0, 0, 0, -831.4132080078125, 1270.1754150390625, 0.976042509078979492, 2.248590946197509765, 120, 3, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mudwallow Frog (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@CGUID+90, 127548, 1643, 8721, 9265, '0', 0, 0, 0, 0, -841.80902099609375, 1281.23095703125, 0.384869009256362915, 3.765257596969604492, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Fishing Rod (Area: Snapclaw Shore - Difficulty: 0) CreateObject1 (Auras: 253105 - Fishing Rod)
(@CGUID+91, 128772, 1643, 8721, 9265, '0', 0, 0, 0, 0, -855.87677001953125, 1295.1458740234375, 0.731626868247985839, 4.76127481460571289, 120, 3, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mudwallow Frog (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@CGUID+92, 128772, 1643, 8721, 9265, '0', 0, 0, 0, 0, -850.1949462890625, 1297.061279296875, 0.535593867301940917, 5.013759613037109375, 120, 3, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mudwallow Frog (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@CGUID+93, 128772, 1643, 8721, 9265, '0', 0, 0, 0, 0, -858.333984375, 1294.55322265625, -0.24207666516304016, 4.712388992309570312, 120, 3, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mudwallow Frog (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@CGUID+94, 127548, 1643, 8721, 9265, '0', 0, 0, 0, 0, -871.0242919921875, 1310.0242919921875, 0.404536634683609008, 3.325029850006103515, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967); -- Fishing Rod (Area: Snapclaw Shore - Difficulty: 0) CreateObject1 (Auras: 253105 - Fishing Rod)
DELETE FROM `creature_addon` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+94;
INSERT INTO `creature_addon` (`guid`, `PathId`, `mount`, `StandState`, `AnimTier`, `VisFlags`, `SheathState`, `PvpFlags`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
(@CGUID+13, 0, 0, 0, 0, 0, 1, 0, 428, 0, 0, 0, 0, ''), -- Ravenous Gull
(@CGUID+14, 0, 0, 0, 0, 0, 1, 0, 428, 0, 0, 0, 0, ''), -- Ravenous Gull
(@CGUID+15, 0, 0, 0, 0, 0, 1, 0, 428, 0, 0, 0, 0, ''), -- Ravenous Gull
(@CGUID+17, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, ''), -- Ravenous Gull
(@CGUID+18, 0, 0, 0, 0, 0, 1, 0, 428, 0, 0, 0, 0, ''), -- Ravenous Gull
(@CGUID+22, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, ''), -- Ravenous Gull
(@CGUID+24, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, ''), -- Ravenous Gull
(@CGUID+31, 0, 0, 0, 0, 0, 1, 0, 428, 0, 0, 0, 0, ''), -- Ravenous Gull
(@CGUID+33, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, ''), -- Ravenous Gull
(@CGUID+34, 0, 0, 0, 0, 0, 1, 0, 428, 0, 0, 0, 0, ''), -- Ravenous Gull
(@CGUID+36, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, ''), -- Ravenous Gull
(@CGUID+37, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, ''), -- Ravenous Gull
(@CGUID+40, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, ''), -- Ravenous Gull
(@CGUID+46, 0, 0, 0, 0, 0, 1, 0, 428, 0, 0, 0, 0, ''), -- Ravenous Gull
(@CGUID+51, 0, 0, 0, 0, 0, 1, 0, 428, 0, 0, 0, 0, ''), -- Brinebeak
(@CGUID+52, 0, 0, 0, 0, 0, 1, 0, 428, 0, 0, 0, 0, ''), -- Ravenous Gull
(@CGUID+53, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, ''), -- Ravenous Gull
(@CGUID+54, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, ''), -- Ravenous Gull
(@CGUID+55, 0, 0, 0, 0, 0, 1, 0, 428, 0, 0, 0, 0, ''), -- Ravenous Gull
(@CGUID+57, 0, 0, 0, 0, 0, 1, 0, 428, 0, 0, 0, 0, ''), -- Ravenous Gull
(@CGUID+59, 0, 0, 0, 0, 0, 1, 0, 428, 0, 0, 0, 0, ''), -- Ravenous Gull
(@CGUID+60, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, ''), -- Ravenous Gull
(@CGUID+62, 0, 0, 0, 0, 0, 1, 0, 428, 0, 0, 0, 0, ''), -- Ravenous Gull
(@CGUID+63, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, ''); -- Ravenous Gull
-- GameObject
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+46;
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, 276471, 1643, 8721, 9265, '0', 0, 0, -647.4444580078125, 1285.21875, 13.71358776092529296, 0.834376394748687744, 0, 0, 0.405191421508789062, 0.914231836795806884, 120, 255, 1, 61967), -- Rotting Fish (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@OGUID+1, 276471, 1643, 8721, 9265, '0', 0, 0, -613.72393798828125, 1204.7100830078125, 2.035724401473999023, 0, 0, 0, 0, 1, 120, 255, 1, 61967), -- Rotting Fish (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@OGUID+2, 276471, 1643, 8721, 9265, '0', 0, 0, -665.06597900390625, 1187.045166015625, 5.624722003936767578, 2.557938337326049804, 0, 0, 0.957719802856445312, 0.287702620029449462, 120, 255, 1, 61967), -- Rotting Fish (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@OGUID+3, 276471, 1643, 8721, 9265, '0', 0, 0, -661.7100830078125, 1184.1822509765625, 5.62472391128540039, 6.230826377868652343, 0, 0, -0.02617645263671875, 0.999657332897186279, 120, 255, 1, 61967), -- Rotting Fish (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@OGUID+4, 276471, 1643, 8721, 9265, '0', 0, 0, -648.185791015625, 1286.9722900390625, 13.67893314361572265, 2.739741086959838867, 0, 0, 0.979882240295410156, 0.199576556682586669, 120, 255, 1, 61967), -- Rotting Fish (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@OGUID+5, 276471, 1643, 8721, 9265, '0', 0, 0, -614.7725830078125, 1205.5242919921875, 2.184391260147094726, 3.364484071731567382, 0, 0, -0.99379634857177734, 0.111215099692344665, 120, 255, 1, 61967), -- Rotting Fish (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@OGUID+6, 296698, 1643, 8721, 9265, '0', 0, 0, -664.69268798828125, 1184.8836669921875, 5.5749359130859375, 5.654868602752685546, 0, 0, -0.30901622772216796, 0.95105677843093872, 120, 255, 1, 61967), -- Chair (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@OGUID+7, 276471, 1643, 8721, 9265, '0', 0, 0, -666.04339599609375, 1275.0069580078125, 13.73371601104736328, 4.52684640884399414, 0, 0, -0.76957130432128906, 0.638560891151428222, 120, 255, 1, 61967), -- Rotting Fish (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@OGUID+8, 276471, 1643, 8721, 9265, '0', 0, 0, -676.2413330078125, 1247.3228759765625, 14, 3.481034517288208007, 0, 0, -0.98563194274902343, 0.168907210230827331, 120, 255, 1, 61967), -- Rotting Fish (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@OGUID+9, 276502, 1643, 8721, 9265, '0', 0, 0, -665.52081298828125, 1184.0191650390625, 5.624720573425292968, 6.230826377868652343, 0, 0, -0.02617645263671875, 0.999657332897186279, 120, 255, 1, 61967), -- Mudfish Innards (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@OGUID+10, 276471, 1643, 8721, 9265, '0', 0, 0, -640.00347900390625, 1287.4288330078125, 13.70024013519287109, 5.97910165786743164, 0, 0, -0.15145683288574218, 0.988463878631591796, 120, 255, 1, 61967), -- Rotting Fish (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@OGUID+11, 276513, 1643, 8721, 9265, '0', 0, 0, -676.30902099609375, 1245.0972900390625, 13.96423053741455078, 0, 0, 0, 0, 1, 120, 255, 1, 61967), -- Intact Mudfish (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@OGUID+12, 276471, 1643, 8721, 9265, '0', 0, 0, -674.60589599609375, 1246.8697509765625, 13.97380447387695312, 1.326288461685180664, 0, 0, 0.615597724914550781, 0.788060545921325683, 120, 255, 1, 61967), -- Rotting Fish (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@OGUID+13, 276471, 1643, 8721, 9265, '0', 0, 0, -676.24652099609375, 1242.717041015625, 13.94618034362792968, 4.52684640884399414, 0, 0, -0.76957130432128906, 0.638560891151428222, 120, 255, 1, 61967), -- Rotting Fish (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@OGUID+14, 276471, 1643, 8721, 9265, '0', 0, 0, -649.734375, 1270.0867919921875, 13.50401115417480468, 4.52684640884399414, 0, 0, -0.76957130432128906, 0.638560891151428222, 120, 255, 1, 61967), -- Rotting Fish (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@OGUID+15, 276471, 1643, 8721, 9265, '0', 0, 0, -608.80902099609375, 1229.7396240234375, 5.764249324798583984, 0, 0, 0, 0, 1, 120, 255, 1, 61967), -- Rotting Fish (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@OGUID+16, 276471, 1643, 8721, 9265, '0', 0, 0, -666.61114501953125, 1184.15625, 5.690206050872802734, 3.500449895858764648, 0, 0, -0.98394584655761718, 0.17846730351448059, 120, 255, 1, 61967), -- Rotting Fish (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@OGUID+17, 276502, 1643, 8721, 9265, '0', 0, 0, -665.6007080078125, 1183.0885009765625, 5.690206050872802734, 3.860703945159912109, 0, 0, -0.93605327606201171, 0.351858317852020263, 120, 255, 1, 61967), -- Mudfish Innards (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@OGUID+18, 276502, 1643, 8721, 9265, '0', 0, 0, -661.71356201171875, 1182.94970703125, 5.69020700454711914, 2.189471960067749023, 0, 0, 0.888807296752929687, 0.458281159400939941, 120, 255, 1, 61967), -- Mudfish Innards (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@OGUID+19, 276471, 1643, 8721, 9265, '0', 0, 0, -613.46527099609375, 1205.685791015625, 2.045465707778930664, 5.267747879028320312, 0, 0, -0.48618507385253906, 0.873855888843536376, 120, 255, 1, 61967), -- Rotting Fish (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@OGUID+20, 276471, 1643, 8721, 9265, '0', 0, 0, -735.6961669921875, 1246.454833984375, 0.270667135715484619, 0, 0, 0, 0, 1, 120, 255, 1, 61967), -- Rotting Fish (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@OGUID+21, 276471, 1643, 8721, 9265, '0', 0, 0, -733.34722900390625, 1221.4114990234375, 0.422193288803100585, 4.52684640884399414, 0, 0, -0.76957130432128906, 0.638560891151428222, 120, 255, 1, 61967), -- Rotting Fish (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@OGUID+22, 276471, 1643, 8721, 9265, '0', 0, 0, -704.138916015625, 1224.670166015625, 0.382522225379943847, 0, 0, 0, 0, 1, 120, 255, 1, 61967), -- Rotting Fish (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@OGUID+23, 276471, 1643, 8721, 9265, '0', 0, 0, -704.78472900390625, 1223.2535400390625, 0.47671017050743103, 1.186894655227661132, 0, 0, 0.559222221374511718, 0.829017817974090576, 120, 255, 1, 61967), -- Rotting Fish (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@OGUID+24, 276471, 1643, 8721, 9265, '0', 0, 0, -731.72918701171875, 1229.4635009765625, 0.760358929634094238, 0, 0, 0, 0, 1, 120, 255, 1, 61967), -- Rotting Fish (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@OGUID+25, 276486, 1643, 8721, 9265, '0', 0, 0, -712.23785400390625, 1215.171875, 0.418239057064056396, 3.332872867584228515, 0, 0, -0.99542999267578125, 0.095494255423545837, 120, 255, 1, 61967), -- Rod Holder (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@OGUID+26, 276471, 1643, 8721, 9265, '0', 0, 0, -734.43927001953125, 1264.6632080078125, 1.301799535751342773, 0, 0, 0, 0, 1, 120, 255, 1, 61967), -- Rotting Fish (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@OGUID+27, 276486, 1643, 8721, 9265, '0', 0, 0, -739.140625, 1221.77783203125, 0.165550202131271362, 2.750118732452392578, 0, 0, 0.980904579162597656, 0.194489538669586181, 120, 255, 1, 61967), -- Rod Holder (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@OGUID+28, 276471, 1643, 8721, 9265, '0', 0, 0, -750.53125, 1257.0052490234375, 0.991849184036254882, 0, 0, 0, 0, 1, 120, 255, 1, 61967), -- Rotting Fish (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@OGUID+29, 276486, 1643, 8721, 9265, '0', 0, 0, -755.54168701171875, 1224.75, 0.208154156804084777, 3.412051200866699218, 0, 0, -0.99087047576904296, 0.134817361831665039, 120, 255, 1, 61967), -- Rod Holder (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@OGUID+30, 276471, 1643, 8721, 9265, '0', 0, 0, -751.01214599609375, 1228.8507080078125, 1.029752373695373535, 0, 0, 0, 0, 1, 120, 255, 1, 61967), -- Rotting Fish (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@OGUID+31, 276471, 1643, 8721, 9265, '0', 0, 0, -752.95660400390625, 1253.6666259765625, 0.984304964542388916, 0, 0, 0, 0, 1, 120, 255, 1, 61967), -- Rotting Fish (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@OGUID+32, 276471, 1643, 8721, 9265, '0', 0, 0, -766.31597900390625, 1258.1771240234375, 1.492533087730407714, 0, 0, 0, 0, 1, 120, 255, 1, 61967), -- Rotting Fish (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@OGUID+33, 276486, 1643, 8721, 9264, '0', 0, 0, -780.935791015625, 1240.0660400390625, 0.002035160781815648, 1.759358525276184082, 0, 0, 0.770534515380859375, 0.637398302555084228, 120, 255, 1, 61967), -- Rod Holder (Area: Mudfish Lodge - Difficulty: 0) CreateObject1
(@OGUID+34, 276471, 1643, 8721, 9264, '0', 0, 0, -778.09722900390625, 1248.9774169921875, 0.558413386344909667, 0, 0, 0, 0, 1, 120, 255, 1, 61967), -- Rotting Fish (Area: Mudfish Lodge - Difficulty: 0) CreateObject1
(@OGUID+35, 276471, 1643, 8721, 9264, '0', 0, 0, -783.326416015625, 1259.5242919921875, 1.439633727073669433, 0, 0, 0, 0, 1, 120, 255, 1, 61967), -- Rotting Fish (Area: Mudfish Lodge - Difficulty: 0) CreateObject1
(@OGUID+36, 276486, 1643, 8721, 9264, '0', 0, 0, -807.39239501953125, 1258.46533203125, 0.619764626026153564, 2.168961524963378906, 0, 0, 0.884060859680175781, 0.467371821403503417, 120, 255, 1, 61967), -- Rod Holder (Area: Mudfish Lodge - Difficulty: 0) CreateObject1
(@OGUID+37, 276471, 1643, 8721, 9264, '0', 0, 0, -814.11114501953125, 1263.123291015625, 0.938786625862121582, 0, 0, 0, 0, 1, 120, 255, 1, 61967), -- Rotting Fish (Area: Mudfish Lodge - Difficulty: 0) CreateObject1
(@OGUID+38, 276471, 1643, 8721, 9264, '0', 0, 0, -776.96527099609375, 1238.4427490234375, 0.379305660724639892, 0, 0, 0, 0, 1, 120, 255, 1, 61967), -- Rotting Fish (Area: Mudfish Lodge - Difficulty: 0) CreateObject1
(@OGUID+39, 276471, 1643, 8721, 9264, '0', 0, 0, -799.75518798828125, 1277.3038330078125, 3.123456001281738281, 0, 0, 0, 0, 1, 120, 255, 1, 61967), -- Rotting Fish (Area: Mudfish Lodge - Difficulty: 0) CreateObject1
(@OGUID+40, 276471, 1643, 8721, 9264, '0', 0, 0, -794.2586669921875, 1261.6129150390625, 1.769251108169555664, 0, 0, 0, 0, 1, 120, 255, 1, 61967), -- Rotting Fish (Area: Mudfish Lodge - Difficulty: 0) CreateObject1
(@OGUID+41, 276471, 1643, 8721, 9264, '0', 0, 0, -814.63018798828125, 1264.7535400390625, 1.218963027000427246, 1.411776900291442871, 0, 0, 0.648710250854492187, 0.761035501956939697, 120, 255, 1, 61967), -- Rotting Fish (Area: Mudfish Lodge - Difficulty: 0) CreateObject1
(@OGUID+42, 276486, 1643, 8721, 9264, '0', 0, 0, -842.45660400390625, 1280.6649169921875, 0.094687938690185546, 2.266081809997558593, 0, 0, 0.905705451965332031, 0.423907577991485595, 120, 255, 1, 61967), -- Rod Holder (Area: Mudfish Lodge - Difficulty: 0) CreateObject1
(@OGUID+43, 276471, 1643, 8721, 9265, '0', 0, 0, -865.29168701171875, 1310.267333984375, 1.024560928344726562, 0.732372224330902099, 0, 0, 0.358057022094726562, 0.933699727058410644, 120, 255, 1, 61967), -- Rotting Fish (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@OGUID+44, 276471, 1643, 8721, 9265, '0', 0, 0, -866.44097900390625, 1311.1822509765625, 0.968453288078308105, 5.831486701965332031, 0, 0, -0.22393417358398437, 0.974604249000549316, 120, 255, 1, 61967), -- Rotting Fish (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@OGUID+45, 276486, 1643, 8721, 9265, '0', 0, 0, -871.9149169921875, 1309.8021240234375, 0.126857176423072814, 1.714108943939208984, 0, 0, 0.755917549133300781, 0.654666841030120849, 120, 255, 1, 61967), -- Rod Holder (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
(@OGUID+46, 276515, 1643, 8721, 9265, '0', 0, 0, -738.4774169921875, 1222.467041015625, 0.353597909212112426, 5.213128089904785156, -0.70429039001464843, 0.467242240905761718, 0.42122650146484375, 0.328980207443237304, 120, 255, 1, 61967); -- Fishing Rod (Area: Snapclaw Shore - Difficulty: 0) CreateObject1
-- Template Addon
DELETE FROM `creature_template_addon` WHERE `entry` IN (127548 /*127548 (Fishing Rod) - Fishing Rod*/, 127558 /*127558 (Art Hughie)*/);
INSERT INTO `creature_template_addon` (`entry`, `PathId`, `mount`, `StandState`, `AnimTier`, `VisFlags`, `SheathState`, `PvpFlags`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
(127548, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, '253105'), -- 127548 (Fishing Rod) - Fishing Rod
(127558, 0, 0, 0, 0, 0, 1, 0, 0, 8037, 0, 0, 3, ''); -- 127558 (Art Hughie)
-- Template
UPDATE `gameobject_template` SET `ContentTuningId`=187, `VerifiedBuild`=61967 WHERE `entry`=276513; -- Intact Mudfish
UPDATE `gameobject_template` SET `ContentTuningId`=464, `VerifiedBuild`=61967 WHERE `entry`=293972; -- Azerite Chunk
UPDATE `gameobject_template` SET `ContentTuningId`=187, `VerifiedBuild`=61967 WHERE `entry`=276515; -- Fishing Rod
UPDATE `gameobject_template` SET `ContentTuningId`=464, `VerifiedBuild`=61967 WHERE `entry`=290754; -- Egg Sac
UPDATE `gameobject_template` SET `ContentTuningId`=187, `VerifiedBuild`=61967 WHERE `entry`=272792; -- Egg Sac
-- Difficulty
UPDATE `creature_template_difficulty` SET `VerifiedBuild`=61967 WHERE (`DifficultyID`=0 AND `Entry` IN (126824,126151,144215,127558,69018,126677,126434,129137,128798,125130,126353,125132,130165,130164));
UPDATE `creature_template_difficulty` SET `StaticFlags1`=0x20000000, `VerifiedBuild`=61967 WHERE (`Entry`=126953 AND `DifficultyID`=0); -- 126953 (Tiragarde Hawk) - Floating
UPDATE `creature_template_difficulty` SET `StaticFlags1`=0x10000000, `VerifiedBuild`=61967 WHERE (`Entry`=130083 AND `DifficultyID`=0); -- 130083 (Curseformed Ravager) - CanSwim
UPDATE `creature_template_difficulty` SET `StaticFlags1`=0x30000000, `VerifiedBuild`=61967 WHERE (`Entry`=128937 AND `DifficultyID`=0); -- 128937 (Scavenging Raven) - CanSwim, Floating
UPDATE `creature_template_difficulty` SET `StaticFlags1`=0x10000000, `VerifiedBuild`=61967 WHERE (`Entry`=132166 AND `DifficultyID`=0); -- 132166 (Ian Glassel) - CanSwim
UPDATE `creature_template_difficulty` SET `StaticFlags1`=0x10000000, `VerifiedBuild`=61967 WHERE (`Entry`=128942 AND `DifficultyID`=0); -- 128942 (Mudfisher Crab) - CanSwim
UPDATE `creature_template_difficulty` SET `StaticFlags1`=0x10000000, `VerifiedBuild`=61967 WHERE (`Entry`=127526 AND `DifficultyID`=0); -- 127526 (Scavenging Snapclaw) - CanSwim
UPDATE `creature_template_difficulty` SET `StaticFlags1`=0x10000000, `VerifiedBuild`=61967 WHERE (`Entry`=127553 AND `DifficultyID`=0); -- 127553 (Brinebeak) - CanSwim
UPDATE `creature_template_difficulty` SET `StaticFlags1`=0x30000100, `VerifiedBuild`=61967 WHERE (`Entry`=127548 AND `DifficultyID`=0); -- 127548 (Fishing Rod) - Sessile, CanSwim, Floating
UPDATE `creature_template_difficulty` SET `StaticFlags1`=0x20000100, `VerifiedBuild`=61967 WHERE (`Entry`=115913 AND `DifficultyID`=0); -- 115913 (Target) - Sessile, Floating
UPDATE `creature_template_difficulty` SET `StaticFlags1`=0x10000000, `VerifiedBuild`=61967 WHERE (`Entry`=127530 AND `DifficultyID`=0); -- 127530 (Ravenous Gull) - CanSwim
DELETE FROM `creature_static_flags_override` WHERE `SpawnId` IN (@CGUID+16,@CGUID+41,@CGUID+50,@CGUID+45,@CGUID+43,@CGUID+58,@CGUID+56,@CGUID+64);
INSERT INTO `creature_static_flags_override` (`SpawnId`, `DifficultyId`, `StaticFlags1`, `StaticFlags2`, `StaticFlags3`, `StaticFlags4`, `StaticFlags5`, `StaticFlags6`, `StaticFlags7`, `StaticFlags8`) VALUES
(@CGUID+16, 0, 0x20000000, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(@CGUID+41, 0, 0x20000000, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(@CGUID+50, 0, 0x20000000, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(@CGUID+45, 0, 0x20000000, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(@CGUID+43, 0, 0x20000000, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(@CGUID+58, 0, 0x20000000, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(@CGUID+56, 0, 0x20000000, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(@CGUID+64, 0, 0x20000000, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-- Quest
DELETE FROM `quest_greeting` WHERE (`ID`=127558 AND `Type`=0);
INSERT INTO `quest_greeting` (`ID`, `Type`, `GreetEmoteType`, `GreetEmoteDelay`, `Greeting`, `VerifiedBuild`) VALUES
(127558, 0, 0, 0, 'Do you like to fish? ...I love to fish... love to catch...\n\nI only keep the best... livers... stomachs... hearts... only the best...', 61967); -- 127558
DELETE FROM `quest_details` WHERE `ID` IN (48881 /*The Reel Deal*/, 48882 /*I Like Fish Guts and I Cannot Lie*/, 48904 /*Take the Bait*/, 48880 /*Mean Gulls*/);
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
(48881, 0, 0, 0, 0, 0, 0, 0, 0, 61967), -- The Reel Deal
(48882, 0, 0, 0, 0, 0, 0, 0, 0, 61967), -- I Like Fish Guts and I Cannot Lie
(48904, 0, 0, 0, 0, 0, 0, 0, 0, 61967), -- Take the Bait
(48880, 0, 0, 0, 0, 0, 0, 0, 0, 61967); -- Mean Gulls
DELETE FROM `creature_queststarter` WHERE (`id`=127558 AND `quest` IN (48904,48880));
INSERT INTO `creature_queststarter` (`id`, `quest`, `VerifiedBuild`) VALUES
(127558, 48904, 61967), -- Take the Bait offered by Art Hughie
(127558, 48880, 61967); -- Mean Gulls offered by Art Hughie
DELETE FROM `creature_questender` WHERE (`id`=127558 AND `quest` IN (48880,48904));
INSERT INTO `creature_questender` (`id`, `quest`, `VerifiedBuild`) VALUES
(127558, 48880, 61967), -- Mean Gulls ended by Art Hughie
(127558, 48904, 61967); -- Take the Bait ended by Art Hughie
DELETE FROM `gameobject_queststarter` WHERE (`id`=276515 AND `quest`=48881) OR (`id`=276513 AND `quest`=48882);
INSERT INTO `gameobject_queststarter` (`id`, `quest`, `VerifiedBuild`) VALUES
(276515, 48881, 61967), -- The Reel Deal offered by Fishing Rod
(276513, 48882, 61967); -- I Like Fish Guts and I Cannot Lie offered by Intact Mudfish
DELETE FROM `ui_map_quest_line` WHERE (`UIMapId`=896 AND `QuestLineId`=5673);
INSERT INTO `ui_map_quest_line` (`UIMapId`, `QuestLineId`, `VerifiedBuild`) VALUES
(896, 5673, 61967);
-- Path for Ravenous Gull
SET @MOVERGUID := @CGUID+16;
SET @ENTRY := 127530;
SET @PATHOFFSET := 0;
SET @PATH := @ENTRY * 100 + @PATHOFFSET;
DELETE FROM `waypoint_path` WHERE `PathId`= @PATH;
INSERT INTO `waypoint_path` (`PathId`, `MoveType`, `Flags`, `Velocity`, `Comment`) VALUES
(@PATH, 0, 0x2, 2.8683, 'Ravenous Gull - Cyclic Path');
DELETE FROM `waypoint_path_node` WHERE `PathId`= @PATH;
INSERT INTO `waypoint_path_node` (`PathId`, `NodeId`, `PositionX`, `PositionY`, `PositionZ`, `Orientation`, `Delay`) VALUES
(@PATH, 0, -828.2447, 1293.4148, 25.026018, NULL, 0),
(@PATH, 1, -821.17365, 1296.3438, 25.026018, NULL, 0),
(@PATH, 2, -814.1026, 1293.4148, 25.026018, NULL, 0),
(@PATH, 3, -811.17365, 1286.3438, 25.026018, NULL, 0),
(@PATH, 4, -814.1026, 1279.2727, 25.026018, NULL, 0),
(@PATH, 5, -821.17365, 1276.3438, 25.026018, NULL, 0),
(@PATH, 6, -828.2447, 1279.2727, 25.026018, NULL, 0),
(@PATH, 7, -831.17365, 1286.3438, 25.026018, NULL, 0),
(@PATH, 8, -828.2447, 1293.4148, 25.026018, NULL, 0);
UPDATE `creature` SET `wander_distance`=0, `MovementType`=2 WHERE `guid`=@MOVERGUID;
DELETE FROM `creature_addon` WHERE `guid`=@MOVERGUID;
INSERT INTO `creature_addon` (`guid`, `PathId`, `SheathState`) VALUES
(@MOVERGUID, @PATH, 1);
-- Path for Ravenous Gull
SET @MOVERGUID := @CGUID+41;
SET @ENTRY := 127530;
SET @PATHOFFSET := 1;
SET @PATH := @ENTRY * 100 + @PATHOFFSET;
DELETE FROM `waypoint_path` WHERE `PathId`= @PATH;
INSERT INTO `waypoint_path` (`PathId`, `MoveType`, `Flags`, `Velocity`, `Comment`) VALUES
(@PATH, 0, 0x2, 2.8682, 'Ravenous Gull - Cyclic Path');
DELETE FROM `waypoint_path_node` WHERE `PathId`= @PATH;
INSERT INTO `waypoint_path_node` (`PathId`, `NodeId`, `PositionX`, `PositionY`, `PositionZ`, `Orientation`, `Delay`) VALUES
(@PATH, 0, -787.27246, 1251.1755, 21.111498, NULL, 0),
(@PATH, 1, -780.2014, 1248.2466, 21.111498, NULL, 0),
(@PATH, 2, -773.1304, 1251.1755, 21.111498, NULL, 0),
(@PATH, 3, -770.2014, 1258.2466, 21.111498, NULL, 0),
(@PATH, 4, -773.1304, 1265.3176, 21.111498, NULL, 0),
(@PATH, 5, -780.2014, 1268.2466, 21.111498, NULL, 0),
(@PATH, 6, -787.27246, 1265.3176, 21.111498, NULL, 0),
(@PATH, 7, -790.2014, 1258.2466, 21.111498, NULL, 0);
UPDATE `creature` SET `wander_distance`=0, `MovementType`=2 WHERE `guid`=@MOVERGUID;
DELETE FROM `creature_addon` WHERE `guid`=@MOVERGUID;
INSERT INTO `creature_addon` (`guid`, `PathId`, `SheathState`) VALUES
(@MOVERGUID, @PATH, 1);
-- Path for Ravenous Gull
SET @MOVERGUID := @CGUID+43;
SET @ENTRY := 127530;
SET @PATHOFFSET := 2;
SET @PATH := @ENTRY * 100 + @PATHOFFSET;
DELETE FROM `waypoint_path` WHERE `PathId`= @PATH;
INSERT INTO `waypoint_path` (`PathId`, `MoveType`, `Flags`, `Velocity`, `Comment`) VALUES
(@PATH, 0, 0x2, 2.8683, 'Ravenous Gull - Cyclic Path');
DELETE FROM `waypoint_path_node` WHERE `PathId`= @PATH;
INSERT INTO `waypoint_path_node` (`PathId`, `NodeId`, `PositionX`, `PositionY`, `PositionZ`, `Orientation`, `Delay`) VALUES
(@PATH, 0, -755.1162, 1251.3231, 18.627615, NULL, 0),
(@PATH, 1, -748.04517, 1248.3942, 18.627615, NULL, 0),
(@PATH, 2, -740.9741, 1251.3231, 18.627615, NULL, 0),
(@PATH, 3, -738.04517, 1258.3942, 18.627615, NULL, 0),
(@PATH, 4, -740.9741, 1265.4652, 18.627615, NULL, 0),
(@PATH, 5, -748.04517, 1268.3942, 18.627615, NULL, 0),
(@PATH, 6, -755.1162, 1265.4652, 18.627615, NULL, 0),
(@PATH, 7, -758.04517, 1258.3942, 18.627615, NULL, 0);
UPDATE `creature` SET `wander_distance`=0, `MovementType`=2 WHERE `guid`=@MOVERGUID;
DELETE FROM `creature_addon` WHERE `guid`=@MOVERGUID;
INSERT INTO `creature_addon` (`guid`, `PathId`, `SheathState`) VALUES
(@MOVERGUID, @PATH, 1);
-- Path for Ravenous Gull
SET @MOVERGUID := @CGUID+45;
SET @ENTRY := 127530;
SET @PATHOFFSET := 3;
SET @PATH := @ENTRY * 100 + @PATHOFFSET;
DELETE FROM `waypoint_path` WHERE `PathId`= @PATH;
INSERT INTO `waypoint_path` (`PathId`, `MoveType`, `Flags`, `Velocity`, `Comment`) VALUES
(@PATH, 0, 0x2, 2.8683, 'Ravenous Gull - Cyclic Path');
DELETE FROM `waypoint_path_node` WHERE `PathId`= @PATH;
INSERT INTO `waypoint_path_node` (`PathId`, `NodeId`, `PositionX`, `PositionY`, `PositionZ`, `Orientation`, `Delay`) VALUES
(@PATH, 0, -730.0936, 1247.5571, 19.314972, NULL, 0),
(@PATH, 1, -723.0226, 1250.4861, 19.314972, NULL, 0),
(@PATH, 2, -715.95154, 1247.5571, 19.314972, NULL, 0),
(@PATH, 3, -713.0226, 1240.4861, 19.314972, NULL, 0),
(@PATH, 4, -715.95154, 1233.415, 19.314972, NULL, 0),
(@PATH, 5, -723.0226, 1230.4861, 19.314972, NULL, 0),
(@PATH, 6, -730.0936, 1233.415, 19.314972, NULL, 0),
(@PATH, 7, -733.0226, 1240.4861, 19.314972, NULL, 0);
UPDATE `creature` SET `wander_distance`=0, `MovementType`=2 WHERE `guid`=@MOVERGUID;
DELETE FROM `creature_addon` WHERE `guid`=@MOVERGUID;
INSERT INTO `creature_addon` (`guid`, `PathId`, `SheathState`) VALUES
(@MOVERGUID, @PATH, 1);
-- Path for Ravenous Gull
SET @MOVERGUID := @CGUID+50;
SET @ENTRY := 127530;
SET @PATHOFFSET := 4;
SET @PATH := @ENTRY * 100 + @PATHOFFSET;
DELETE FROM `waypoint_path` WHERE `PathId`= @PATH;
INSERT INTO `waypoint_path` (`PathId`, `MoveType`, `Flags`, `Velocity`, `Comment`) VALUES
(@PATH, 0, 0x2, 2.8683, 'Ravenous Gull - Cyclic Path');
DELETE FROM `waypoint_path_node` WHERE `PathId`= @PATH;
INSERT INTO `waypoint_path_node` (`PathId`, `NodeId`, `PositionX`, `PositionY`, `PositionZ`, `Orientation`, `Delay`) VALUES
(@PATH, 0, -770.2047, 1227.1321, 16.496525, NULL, 0),
(@PATH, 1, -763.13367, 1224.2031, 16.496525, NULL, 0),
(@PATH, 2, -756.0626, 1227.1321, 16.496525, NULL, 0),
(@PATH, 3, -753.13367, 1234.2031, 16.496525, NULL, 0),
(@PATH, 4, -756.0626, 1241.2742, 16.496525, NULL, 0),
(@PATH, 5, -763.13367, 1244.2031, 16.496525, NULL, 0),
(@PATH, 6, -770.2047, 1241.2742, 16.496525, NULL, 0),
(@PATH, 7, -773.13367, 1234.2031, 16.496525, NULL, 0);
UPDATE `creature` SET `wander_distance`=0, `MovementType`=2 WHERE `guid`=@MOVERGUID;
DELETE FROM `creature_addon` WHERE `guid`=@MOVERGUID;
INSERT INTO `creature_addon` (`guid`, `PathId`, `SheathState`) VALUES
(@MOVERGUID, @PATH, 1);
-- Path for Ravenous Gull
SET @MOVERGUID := @CGUID+56;
SET @ENTRY := 127530;
SET @PATHOFFSET := 5;
SET @PATH := @ENTRY * 100 + @PATHOFFSET;
DELETE FROM `waypoint_path` WHERE `PathId`= @PATH;
INSERT INTO `waypoint_path` (`PathId`, `MoveType`, `Flags`, `Velocity`, `Comment`) VALUES
(@PATH, 0, 0x2, 2.8683, 'Ravenous Gull - Cyclic Path');
DELETE FROM `waypoint_path_node` WHERE `PathId`= @PATH;
INSERT INTO `waypoint_path_node` (`PathId`, `NodeId`, `PositionX`, `PositionY`, `PositionZ`, `Orientation`, `Delay`) VALUES
(@PATH, 0, -665.6231, 1289.5155, 36.267246, NULL, 0),
(@PATH, 1, -658.55206, 1292.4445, 36.267246, NULL, 0),
(@PATH, 2, -651.481, 1289.5155, 36.267246, NULL, 0),
(@PATH, 3, -648.55206, 1282.4445, 36.267246, NULL, 0),
(@PATH, 4, -651.481, 1275.3734, 36.267246, NULL, 0),
(@PATH, 5, -658.55206, 1272.4445, 36.267246, NULL, 0),
(@PATH, 6, -665.6231, 1275.3734, 36.267246, NULL, 0),
(@PATH, 7, -668.55206, 1282.4445, 36.267246, NULL, 0);
UPDATE `creature` SET `orientation`=0, `wander_distance`=0, `MovementType`=2 WHERE `guid`=@MOVERGUID;
DELETE FROM `creature_addon` WHERE `guid`=@MOVERGUID;
INSERT INTO `creature_addon` (`guid`, `PathId`, `SheathState`) VALUES
(@MOVERGUID, @PATH, 1);
-- Path for Ravenous Gull
SET @MOVERGUID := @CGUID+58;
SET @ENTRY := 127530;
SET @PATHOFFSET := 6;
SET @PATH := @ENTRY * 100 + @PATHOFFSET;
DELETE FROM `waypoint_path` WHERE `PathId`= @PATH;
INSERT INTO `waypoint_path` (`PathId`, `MoveType`, `Flags`, `Velocity`, `Comment`) VALUES
(@PATH, 0, 0x2, 2.8682, 'Ravenous Gull - Cyclic Path');
DELETE FROM `waypoint_path_node` WHERE `PathId`= @PATH;
INSERT INTO `waypoint_path_node` (`PathId`, `NodeId`, `PositionX`, `PositionY`, `PositionZ`, `Orientation`, `Delay`) VALUES
(@PATH, 0, -678.44086, 1257.8022, 38.48356, NULL, 0),
(@PATH, 1, -671.3698, 1254.8733, 38.48356, NULL, 0),
(@PATH, 2, -664.29877, 1257.8022, 38.48356, NULL, 0),
(@PATH, 3, -661.3698, 1264.8733, 38.48356, NULL, 0),
(@PATH, 4, -664.29877, 1271.9443, 38.48356, NULL, 0),
(@PATH, 5, -671.3698, 1274.8733, 38.48356, NULL, 0),
(@PATH, 6, -678.44086, 1271.9443, 38.48356, NULL, 0),
(@PATH, 7, -681.3698, 1264.8733, 38.48356, NULL, 0);
UPDATE `creature` SET `wander_distance`=0, `MovementType`=2 WHERE `guid`=@MOVERGUID;
DELETE FROM `creature_addon` WHERE `guid`=@MOVERGUID;
INSERT INTO `creature_addon` (`guid`, `PathId`, `SheathState`) VALUES
(@MOVERGUID, @PATH, 1);
-- Path for Ravenous Gull
SET @MOVERGUID := @CGUID+64;
SET @ENTRY := 127530;
SET @PATHOFFSET := 7;
SET @PATH := @ENTRY * 100 + @PATHOFFSET;
DELETE FROM `waypoint_path` WHERE `PathId`= @PATH;
INSERT INTO `waypoint_path` (`PathId`, `MoveType`, `Flags`, `Velocity`, `Comment`) VALUES
(@PATH, 0, 0x2, 2.8682, 'Ravenous Gull - Cyclic Path');
DELETE FROM `waypoint_path_node` WHERE `PathId`= @PATH;
INSERT INTO `waypoint_path_node` (`PathId`, `NodeId`, `PositionX`, `PositionY`, `PositionZ`, `Orientation`, `Delay`) VALUES
(@PATH, 0, -648.07104, 1274.6492, 35.39087, NULL, 0),
(@PATH, 1, -641, 1277.5781, 35.39087, NULL, 0),
(@PATH, 2, -633.92896, 1274.6492, 35.39087, NULL, 0),
(@PATH, 3, -631, 1267.5781, 35.39087, NULL, 0),
(@PATH, 4, -633.92896, 1260.5071, 35.39087, NULL, 0),
(@PATH, 5, -641, 1257.5781, 35.39087, NULL, 0),
(@PATH, 6, -648.07104, 1260.5071, 35.39087, NULL, 0),
(@PATH, 7, -651, 1267.5781, 35.39087, NULL, 0);
UPDATE `creature` SET `wander_distance`=0, `MovementType`=2 WHERE `guid`=@MOVERGUID;
DELETE FROM `creature_addon` WHERE `guid`=@MOVERGUID;
INSERT INTO `creature_addon` (`guid`, `PathId`, `SheathState`) VALUES
(@MOVERGUID, @PATH, 1);

View File

@@ -0,0 +1,2 @@
ALTER TABLE `vehicle_template`
ADD `CustomFlags` INT UNSIGNED NOT NULL DEFAULT 0 AFTER `Pitch`;

View File

@@ -0,0 +1,3 @@
DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_dh_chaos_strike_initial';
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
(344862,'spell_dh_chaos_strike_initial');

View File

@@ -0,0 +1,87 @@
SET @CGUID := 6005878;
SET @SPAWNGROUP := 1268;
-- Creature
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+2;
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`, `MovementType`, `npcflag`, `unit_flags`, `unit_flags2`, `unit_flags3`, `VerifiedBuild`) VALUES
(@CGUID+0, 116804, 1651, 8443, 8443, '23,2,8', '0', 0, 0, 0, -11140.375, -1886.9410400390625, 165.8487396240234375, 3.765622377395629882, 7200, 0, 0, 0, NULL, NULL, NULL, NULL, 61609), -- Scene Actor (Area: Karazhan - Difficulty: Mythic) CreateObject2
(@CGUID+1, 115491, 1651, 8443, 8443, '23,2,8', '0', 0, 0, 0, -11168.97265625, -1911.078125, 165.8487548828125, 6.273388862609863281, 7200, 0, 0, 0, NULL, NULL, NULL, NULL, 61609), -- Medivh (Area: Karazhan - Difficulty: Mythic) CreateObject2 (Auras: 229485 - Vision)
(@CGUID+2, 114462, 1651, 8443, 8443, '23,2,8', '0', 0, 0, 0, -11164.689453125, -1912.8975830078125, 165.8487396240234375, 1.612735271453857421, 7200, 0, 0, 0, NULL, NULL, NULL, NULL, 61609); -- The Curator (Area: Karazhan - Difficulty: Mythic) CreateObject2 (Auras: 229609 - Vision)
UPDATE `creature_template` SET `ScriptName`='boss_the_curator_rtk' WHERE `entry`=114247;
UPDATE `creature_template` SET `faction`=16, `BaseAttackTime`=2000, `unit_flags2`=0x800, `unit_flags3`=0x80000, `AIName`='SmartAI' WHERE `entry`=114249; -- Volatile Energy
UPDATE `creature_template` SET `unit_flags3`=0x1000001 WHERE `entry`=116804; -- Scene Actor
UPDATE `creature_template` SET `unit_flags`=0x300, `unit_flags2`=0x800 WHERE `entry`=114462; -- The Curator
UPDATE `creature_template` SET `unit_flags2`=0x800 WHERE `entry` IN (116124, 115491); -- Medivh
DELETE FROM `creature_template_addon` WHERE `entry` IN (114462, 115491, 114249);
INSERT INTO `creature_template_addon` (`entry`, `PathId`, `mount`, `StandState`, `AnimTier`, `VisFlags`, `SheathState`, `PvpFlags`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
(114249, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, '227268'), -- 114249 (Volatile Energy) - Volatile Energy Passive
(114462, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 4, '229609'), -- 114462 (The Curator) - Vision
(115491, 0, 0, 0, 0, 0, 1, 0, 0, 4817, 0, 0, 4, '229485'); -- 115491 (Medivh) - Vision
-- Difficulty
DELETE FROM `creature_template_difficulty` WHERE (`DifficultyID`=23 AND `Entry` IN (114462,115491));
INSERT INTO `creature_template_difficulty` (`Entry`, `DifficultyID`, `LevelScalingDeltaMin`, `LevelScalingDeltaMax`, `ContentTuningID`, `StaticFlags1`, `StaticFlags2`, `StaticFlags3`, `StaticFlags4`, `StaticFlags5`, `StaticFlags6`, `StaticFlags7`, `StaticFlags8`, `VerifiedBuild`) VALUES
(114462, 23, 0, 0, 629, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 61609), -- 114462 (The Curator) -
(115491, 23, 0, 0, 629, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 61609); -- 115491 (Medivh) -
UPDATE `creature_template_difficulty` SET `HealthScalingExpansion`=6, `HealthModifier`=13.75, `CreatureDifficultyID`=119052, `TypeFlags`=0x4 WHERE (`Entry`=115491 AND `DifficultyID`=23); -- Medivh
UPDATE `creature_template_difficulty` SET `HealthScalingExpansion`=6, `HealthModifier`=44, `ManaModifier`=20, `CreatureDifficultyID`=117838, `TypeFlags`=0x24 WHERE (`Entry`=114462 AND `DifficultyID`=23); -- The Curator
UPDATE `creature_template_difficulty` SET `LevelScalingDeltaMin`=1, `LevelScalingDeltaMax`=1, `ContentTuningID`=629, `VerifiedBuild`=61609 WHERE (`Entry`=114249 AND `DifficultyID`=23); -- 114249 (Volatile Energy) -
DELETE FROM `creature_summon_groups` WHERE `summonerId`=114247;
INSERT INTO `creature_summon_groups` (`summonerId`, `summonerType`, `groupId`, `entry`, `position_x`, `position_y`, `position_z`, `orientation`, `summonType`, `summonTime`, `Comment`) VALUES
(114247, 0, 0, 116804, -11140.375, -1886.9410400390625, 165.8487396240234375, 3.765622377395629882, 8, 0, 'The Curator - Summon group on death'),
(114247, 0, 0, 114462, -11164.689453125, -1912.8975830078125, 165.8487396240234375, 1.612735271453857421, 8, 0, 'The Curator - Summon group on death'),
(114247, 0, 0, 115491, -11168.97265625, -1911.078125, 165.8487548828125, 6.273388862609863281, 8, 0, 'The Curator - Summon group on death');
-- Spells
DELETE FROM `spell_script_names` WHERE `ScriptName` IN ('spell_the_curator_rtk_summon_volatile_energy_selector', 'spell_the_curator_rtk_power_discharge_selector', 'spell_the_curator_rtk_arc_lightning_selector', 'spell_the_curator_rtk_static_charge_selector', 'spell_the_curator_rtk_overload');
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
(234416, 'spell_the_curator_rtk_summon_volatile_energy_selector'),
(227278, 'spell_the_curator_rtk_power_discharge_selector'),
(227269, 'spell_the_curator_rtk_arc_lightning_selector'),
(228735, 'spell_the_curator_rtk_static_charge_selector'),
(227256, 'spell_the_curator_rtk_overload');
-- Areatriggers
DELETE FROM `areatrigger_create_properties` WHERE (`IsCustom`=0 AND `Id` = 8780);
INSERT INTO `areatrigger_create_properties` (`Id`, `IsCustom`, `AreaTriggerId`, `IsAreatriggerCustom`, `Flags`, `MoveCurveId`, `ScaleCurveId`, `MorphCurveId`, `FacingCurveId`, `AnimId`, `AnimKitId`, `DecalPropertiesId`, `SpellForVisuals`, `TimeToTargetScale`, `Speed`, `Shape`, `ShapeData0`, `ShapeData1`, `ShapeData2`, `ShapeData3`, `ShapeData4`, `ShapeData5`, `ShapeData6`, `ShapeData7`, `ScriptName`, `VerifiedBuild`) VALUES
(8780, 0, 12848, 0, 0, 0, 0, 0, 0, -1, 0, 0, NULL, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 'at_the_curator_rtk_power_discharge', 61609); -- Spell: 227289 (Power Discharge)
DELETE FROM `areatrigger_template` WHERE (`IsCustom`=0 AND `Id` = 12848);
INSERT INTO `areatrigger_template` (`Id`, `IsCustom`, `Flags`, `VerifiedBuild`) VALUES
(12848, 0, 0, 61609);
-- Texts
DELETE FROM `creature_text` WHERE `CreatureID` IN (115491, 114462, 114247);
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(115491, 0, 0, 'Now you\'re ready to oversee the tower\'s protection in my absence.', 12, 0, 100, 1, 0, 78197, 124000, 0, 'Medivh'),
(115491, 1, 0, 'Hmm, I must remember to shut you down from time to time. Overuse might cause you to become... erratic.', 12, 0, 100, 25, 0, 78198, 124002, 0, 'Medivh'),
(114462, 0, 0, 'Defense protocols activated.', 14, 0, 100, 0, 0, 78201, 124001, 0, 'Curator to Medivh'),
(114247, 0, 0, 'Welcome to the-- TERMINATE INTRUDERS!', 14, 0, 100, 0, 0, 77229, 123421, 0, 'The Curator'),
(114247, 0, 1, 'The Menagerie is for-- ERADICATE! ERADICATE!', 14, 0, 100, 0, 0, 77181, 123138, 0, 'The Curator'),
(114247, 1, 0, 'Countermeasures deployed.', 12, 0, 100, 0, 0, 77224, 123423, 0, 'The Curator'),
(114247, 1, 1, 'DETERRENT ACTIVATED!', 12, 0, 100, 0, 0, 77227, 123424, 0, 'The Curator'),
(114247, 2, 0, 'Overload in progress. Prepare for-- PURGE! PURGE! PURGE!', 12, 0, 100, 0, 0, 77183, 123140, 0, 'The Curator'),
(114247, 3, 0, 'EXTERMINATED!', 12, 0, 100, 0, 0, 77184, 123141, 0, 'The Curator'),
(114247, 3, 1, 'Attention guests: DIE! DIE! DIE!', 12, 0, 100, 0, 0, 77185, 123142, 0, 'The Curator'),
(114247, 4, 0, 'Curator is no longer op... er... ation... al.', 14, 0, 100, 0, 0, 77182, 123139, 0, 'The Curator'),
(114247, 4, 1, 'System... failure... im... mi... nent...', 14, 0, 100, 0, 0, 77228, 123422, 0, 'The Curator');
-- SAI
DELETE FROM `smart_scripts` WHERE `entryorguid`=114249 AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `Difficulties`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `event_param_string`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `action_param7`, `action_param_string`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_param_string`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(114249, 0, 0, 0, '', 0, 0, 100, 0, 0, 1000, 6000, 6000, 0, '', 85, 228735, 0, 0, 0, 0, 0, 0, NULL, 1, 0, 0, 0, 0, NULL, 0, 0, 0, 0, 'Volatile Energy - In combat (6 seconds) - Cast "Static Charge"');
-- Spawngroup
DELETE FROM `spawn_group` WHERE `groupId`=@SPAWNGROUP;
INSERT INTO `spawn_group` (`groupId`, `spawnType`, `spawnId`) VALUES
(@SPAWNGROUP, 0, @CGUID+0),
(@SPAWNGROUP, 0, @CGUID+1),
(@SPAWNGROUP, 0, @CGUID+2);
DELETE FROM `spawn_group_template` WHERE `groupId`=@SPAWNGROUP;
INSERT INTO `spawn_group_template` (`groupId`, `groupName`, `groupFlags`) VALUES
(@SPAWNGROUP, 'Karazhan - The Curator outro', 4);

View File

@@ -0,0 +1,23 @@
-- Quest
DELETE FROM `quest_offer_reward_locale` WHERE `locale`='esMX' AND `ID` IN (24959,28608,26799,28652,24960,25089,26800);
INSERT INTO `quest_offer_reward_locale` (`ID`, `locale`, `RewardText`, `VerifiedBuild`) VALUES
(24959, 'esMX', 'Hola. Tú debes de ser... ¿$n?', 61967),
(28608, 'esMX', 'Es exactamente lo que necesitaba. Vas a ser una gran baza para los Renegados, $n.$b$bSe rumorea que en tu vida anterior fuiste $gun:una; $c de renombre. A lo mejor debería asignarte una tarea más emocionante.', 61967),
(26799, 'esMX', 'Ni siquiera el poder de las Val\'kyr bastó para salvar a estas criaturas. Estaban condenadas desde el principio.$b$bTe conseguí algo de equipo, $n. No es mucho, pero te ayudará.', 61967),
(28652, 'esMX', '¿? ¿Y quién eres?', 61967),
(24960, 'esMX', 'Has hecho bien, $c. Como puedes ver, no todos nos hemos resignado a nuestro destino. Me alegra ver que estás deseando trabajar, al menos.$b$bValdred será un recurso valioso para los Renegados. En cuanto a los otros dos... No hay mucho que podamos hacer. No podemos obligarlos a que se unan a nosotros.', 61967),
(25089, 'esMX', 'Últimamente esas Val\'kyr no dan abasto resucitando a $glos novatos:las novatas; como tú. Esta mañana ya he visto varias docenas de cadáveres corriendo por estas colinas.$b$bPero tú eres $gel:la; $c más $gprometedor:prometedora; que he visto en lo que va de día.', 61967),
(26800, 'esMX', 'Buen trabajo, $n, sabía que no eras $gun:una; inútil.$b$bTen, quédate con uno de estos. Los guardias de la Muerte tienen montones enteros de estos trastos cogiendo polvo.', 61967);
DELETE FROM `quest_request_items_locale` WHERE `locale`='esMX' AND `ID` IN (28608,26799,24960,26800);
INSERT INTO `quest_request_items_locale` (`ID`, `locale`, `CompletionText`, `VerifiedBuild`) VALUES
(28608, 'esMX', 'Encontrarás los objetos en el Sepulcro Sombrío. Creo que me los dejé en mi mesa de trabajo.', 61967),
(26799, 'esMX', 'No llegarás lejos en esta nueva vida si no puedes matar ni a las más débiles y descerebradas de las criaturas, $n. No vuelvas hasta que puedas informar de tu éxito.', 61967),
(24960, 'esMX', 'Se acabó el perder el tiempo. Ahora estás entre los Renegados, y los nuestros ocupan un escalafón más alto.', 61967),
(26800, 'esMX', '¿Has conseguido recuperar algún cadáver?', 61967);
UPDATE `quest_request_items` SET `CompletionText`='You will not go far in this new life if you are unable to kill even the weakest, most brainless creatures, $n. Do not return until you have success to report.', `VerifiedBuild`=61967 WHERE `ID`=26799; -- Those That Couldn't Be Saved
DELETE FROM `quest_request_items` WHERE `ID`=26800;
INSERT INTO `quest_request_items` (`ID`, `EmoteOnComplete`, `EmoteOnIncomplete`, `EmoteOnCompleteDelay`, `EmoteOnIncompleteDelay`, `CompletionText`, `VerifiedBuild`) VALUES
(26800, 0, 6, 0, 0, 'Have you managed to scavenge up some corpses?', 61967); -- Recruitment

View File

@@ -0,0 +1,8 @@
-- Areatrigger
DELETE FROM `areatrigger_template` WHERE (`Id`=39879 AND `IsCustom`=0);
INSERT INTO `areatrigger_template` (`Id`, `IsCustom`, `Flags`, `VerifiedBuild`) VALUES
(39879, 0, 0, 61967);
DELETE FROM `areatrigger_create_properties` WHERE (`Id`=38187 AND `IsCustom`=0);
INSERT INTO `areatrigger_create_properties` (`Id`, `IsCustom`, `AreaTriggerId`, `IsAreatriggerCustom`, `Flags`, `MoveCurveId`, `ScaleCurveId`, `MorphCurveId`, `FacingCurveId`, `AnimId`, `AnimKitId`, `DecalPropertiesId`, `SpellForVisuals`, `TimeToTargetScale`, `Speed`, `Shape`, `ShapeData0`, `ShapeData1`, `ShapeData2`, `ShapeData3`, `ShapeData4`, `ShapeData5`, `ShapeData6`, `ShapeData7`, `VerifiedBuild`) VALUES
(38187, 0, 39879, 0, 0, 0, 0, 0, 0, -1, 0, 0, NULL, 30000, /*UNKNOWN*/ 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 61967); -- Spell: 1231411 (Recuperate)

View File

@@ -0,0 +1,15 @@
-- Class Warlock
DELETE FROM `playercreateinfo_action` WHERE (`race`=1 AND `class`=9 AND `button`=10) OR (`race`=2 AND `class`=9 AND `button`=10) OR (`race`=3 AND `class`=9 AND `button`=10) OR (`race`=4 AND `class`=9 AND `button`=10) OR (`race`=5 AND `class`=9 AND `button`=10) OR (`race`=6 AND `class`=9 AND `button`=10) OR (`race`=7 AND `class`=9 AND `button`=10) OR (`race`=8 AND `class`=9 AND `button`=10) OR (`race`=9 AND `class`=9 AND `button`=11) OR (`race`=10 AND `class`=9 AND `button`=10) OR (`race`=11 AND `class`=9 AND `button`=10) OR (`race`=22 AND `class`=9 AND `button`=10);
INSERT INTO `playercreateinfo_action` (`race`, `class`, `button`, `action`, `type`) VALUES
(1, 9, 10, 1231411, 0), -- Recuperate
(2, 9, 10, 1231411, 0), -- Recuperate
(3, 9, 10, 1231411, 0), -- Recuperate
(4, 9, 10, 1231411, 0), -- Recuperate
(5, 9, 10, 1231411, 0), -- Recuperate
(6, 9, 10, 1231411, 0), -- Recuperate
(7, 9, 10, 1231411, 0), -- Recuperate
(8, 9, 10, 1231411, 0), -- Recuperate
(9, 9, 11, 1231411, 0), -- Recuperate
(10, 9, 10, 1231411, 0), -- Recuperate
(11, 9, 10, 1231411, 0), -- Recuperate
(22, 9, 10, 1231411, 0); -- Recuperate

View File

@@ -0,0 +1,14 @@
-- Class Rogue
DELETE FROM `playercreateinfo_action` WHERE (`race`=1 AND `class`=4 AND `button`=10) OR (`race`=2 AND `class`=4 AND `button`=10) OR (`race`=3 AND `class`=4 AND `button`=10) OR (`race`=4 AND `class`=4 AND `button`=10) OR (`race`=5 AND `class`=4 AND `button`=10) OR (`race`=6 AND `class`=4 AND `button`=10) OR (`race`=7 AND `class`=4 AND `button`=10) OR (`race`=9 AND `class`=4 AND `button`=11) OR (`race`=11 AND `class`=4 AND `button`=10) OR (`race`=22 AND `class`=4 AND `button`=10) OR (`race`=24 AND `class`=4 AND `button`=10);
INSERT INTO `playercreateinfo_action` (`race`, `class`, `button`, `action`, `type`) VALUES
(1, 4, 10, 1231411, 0), -- Recuperate
(2, 4, 10, 1231411, 0), -- Recuperate
(3, 4, 10, 1231411, 0), -- Recuperate
(4, 4, 10, 1231411, 0), -- Recuperate
(5, 4, 10, 1231411, 0), -- Recuperate
(6, 4, 10, 1231411, 0), -- Recuperate
(7, 4, 10, 1231411, 0), -- Recuperate
(9, 4, 11, 1231411, 0), -- Recuperate
(11, 4, 10, 1231411, 0), -- Recuperate
(22, 4, 10, 1231411, 0), -- Recuperate
(24, 4, 10, 1231411, 0); -- Recuperate

View File

@@ -0,0 +1,14 @@
-- Class Shaman
DELETE FROM `playercreateinfo_action` WHERE (`race`=2 AND `class`=7 AND `button`=10) OR (`race`=3 AND `class`=7 AND `button`=10) OR (`race`=6 AND `class`=7 AND `button`=10) OR (`race`=8 AND `class`=7 AND `button`=10) OR (`race`=9 AND `class`=7 AND `button`=11) OR (`race`=11 AND `class`=7 AND `button`=10) OR (`race`=24 AND `class`=7 AND `button`=10) OR (`race`=28 AND `class`=7 AND `button`=7) OR (`race`=35 AND `class`=7 AND `button`=7) OR (`race`=36 AND `class`=7 AND `button`=7) OR (`race`=36 AND `class`=7 AND `button`=8);
INSERT INTO `playercreateinfo_action` (`race`, `class`, `button`, `action`, `type`) VALUES
(2, 7, 10, 1231411, 0), -- Recuperate
(3, 7, 10, 1231411, 0), -- Recuperate
(6, 7, 10, 1231411, 0), -- Recuperate
(8, 7, 10, 1231411, 0), -- Recuperate
(9, 7, 11, 1231411, 0), -- Recuperate
(11, 7, 10, 1231411, 0), -- Recuperate
(24, 7, 10, 1231411, 0), -- Recuperate
(28, 7, 7, 2645, 0), -- Ghost Wolf
(35, 7, 7, 2645, 0), -- Ghost Wolf
(36, 7, 7, 2645, 0), -- Ghost Wolf
(36, 7, 8, 8004, 0); -- Healing Surge

View File

@@ -0,0 +1,16 @@
-- Class Warrior
DELETE FROM `playercreateinfo_action` WHERE (`race`=10 AND `class`=1 AND `button`=10) OR (`race`=8 AND `class`=1 AND `button`=10) OR (`race`=6 AND `class`=1 AND `button`=10) OR (`race`=5 AND `class`=1 AND `button`=10) OR (`race`=2 AND `class`=1 AND `button`=10) OR (`race`=24 AND `class`=1 AND `button`=10) OR (`race`=3 AND `class`=1 AND `button`=10) OR (`race`=4 AND `class`=1 AND `button`=10) OR (`race`=7 AND `class`=1 AND `button`=10) OR (`race`=11 AND `class`=1 AND `button`=10) OR (`race`=22 AND `class`=1 AND `button`=10) OR (`race`=9 AND `class`=1 AND `button`=11) OR (`race`=1 AND `class`=1 AND `button`=10) OR (`race`=3 AND `class`=2 AND `button`=10) OR (`race`=11 AND `class`=2 AND `button`=10) OR (`race`=1 AND `class`=2 AND `button`=10) OR (`race`=10 AND `class`=2 AND `button`=10) OR (`race`=6 AND `class`=2 AND `button`=10) OR (`race`=8 AND `class`=11 AND `button`=10) OR (`race`=6 AND `class`=11 AND `button`=10) OR (`race`=22 AND `class`=11 AND `button`=10) OR (`race`=4 AND `class`=11 AND `button`=10);
INSERT INTO `playercreateinfo_action` (`race`, `class`, `button`, `action`, `type`) VALUES
(1, 1, 10, 1231411, 0), -- Recuperate
(2, 1, 10, 1231411, 0), -- Recuperate
(3, 1, 10, 1231411, 0), -- Recuperate
(4, 1, 10, 1231411, 0), -- Recuperate
(5, 1, 10, 1231411, 0), -- Recuperate
(6, 1, 10, 1231411, 0), -- Recuperate
(7, 1, 10, 1231411, 0), -- Recuperate
(8, 1, 10, 1231411, 0), -- Recuperate
(9, 1, 11, 1231411, 0), -- Recuperate
(10, 1, 10, 1231411, 0), -- Recuperate
(11, 1, 10, 1231411, 0), -- Recuperate
(22, 1, 10, 1231411, 0), -- Recuperate
(24, 1, 10, 1231411, 0); -- Recuperate

View File

@@ -0,0 +1,8 @@
-- Class Paladin
DELETE FROM `playercreateinfo_action` WHERE (`race`=1 AND `class`=2 AND `button`=10) OR (`race`=3 AND `class`=2 AND `button`=10) OR (`race`=6 AND `class`=2 AND `button`=10) OR (`race`=10 AND `class`=2 AND `button`=10) OR (`race`=11 AND `class`=2 AND `button`=10);
INSERT INTO `playercreateinfo_action` (`race`, `class`, `button`, `action`, `type`) VALUES
(1, 2, 10, 1231411, 0), -- Recuperate
(3, 2, 10, 1231411, 0), -- Recuperate
(6, 2, 10, 1231411, 0), -- Recuperate
(10, 2, 10, 1231411, 0), -- Recuperate
(11, 2, 10, 1231411, 0); -- Recuperate

View File

@@ -0,0 +1,7 @@
-- Class Druid
DELETE FROM `playercreateinfo_action` WHERE (`race`=4 AND `class`=11 AND `button`=10) OR (`race`=6 AND `class`=11 AND `button`=10) OR (`race`=8 AND `class`=11 AND `button`=10) OR (`race`=22 AND `class`=11 AND `button`=10);
INSERT INTO `playercreateinfo_action` (`race`, `class`, `button`, `action`, `type`) VALUES
(4, 11, 10, 1231411, 0), -- Recuperate
(6, 11, 10, 1231411, 0), -- Recuperate
(8, 11, 10, 1231411, 0), -- Recuperate
(22, 11, 10, 1231411, 0); -- Recuperate

View File

@@ -0,0 +1,67 @@
-- Class Death Knight
DELETE FROM `playercreateinfo_action` WHERE (`race`=1 AND `class`=6 AND `button`=10) OR (`race`=5 AND `class`=6 AND `button`=9) OR (`race`=10 AND `class`=6 AND `button`=10) OR (`race`=25 AND `class`=6 AND `button`=9) OR (`race`=25 AND `class`=6 AND `button`=4) OR (`race`=25 AND `class`=6 AND `button`=3) OR (`race`=25 AND `class`=6 AND `button`=1) OR (`race`=25 AND `class`=6 AND `button`=0) OR (`race`=26 AND `class`=6 AND `button`=0) OR (`race`=26 AND `class`=6 AND `button`=1) OR (`race`=26 AND `class`=6 AND `button`=2) OR (`race`=26 AND `class`=6 AND `button`=3) OR (`race`=26 AND `class`=6 AND `button`=5) OR (`race`=26 AND `class`=6 AND `button`=9);
INSERT INTO `playercreateinfo_action` (`race`, `class`, `button`, `action`, `type`) VALUES
(1, 6, 10, 1231411, 0), -- Recuperate
(5, 6, 9, 7744, 0), -- Will of the Forsaken
(10, 6, 10, 50613, 0), -- Arcane Torrent
(25, 6, 0, 316239, 0), -- Rune Strike
(25, 6, 1, 47541, 0), -- Death Coil
(25, 6, 3, 43265, 0), -- Death and Decay
(25, 6, 4, 49576, 0), -- Death Grip
(25, 6, 9, 107079, 0), -- Quaking Palm
(26, 6, 0, 316239, 0), -- Rune Strike
(26, 6, 1, 47541, 0), -- Death Coil
(26, 6, 2, 53428, 0), -- Runeforging
(26, 6, 3, 43265, 0), -- Death and Decay
(26, 6, 5, 49576, 0), -- Death Grip
(26, 6, 9, 107079, 0); -- Quaking Palm
UPDATE `playercreateinfo_action` SET `action`=316239 WHERE (`race`=1 AND `class`=6 AND `button`=0); -- Rune Strike
UPDATE `playercreateinfo_action` SET `action`=316239 WHERE (`race`=2 AND `class`=6 AND `button`=0); -- Rune Strike
UPDATE `playercreateinfo_action` SET `action`=316239 WHERE (`race`=3 AND `class`=6 AND `button`=0); -- Rune Strike
UPDATE `playercreateinfo_action` SET `action`=316239 WHERE (`race`=4 AND `class`=6 AND `button`=0); -- Rune Strike
UPDATE `playercreateinfo_action` SET `action`=316239 WHERE (`race`=5 AND `class`=6 AND `button`=0); -- Rune Strike
UPDATE `playercreateinfo_action` SET `action`=316239 WHERE (`race`=6 AND `class`=6 AND `button`=0); -- Rune Strike
UPDATE `playercreateinfo_action` SET `action`=316239 WHERE (`race`=7 AND `class`=6 AND `button`=0); -- Rune Strike
UPDATE `playercreateinfo_action` SET `action`=316239 WHERE (`race`=8 AND `class`=6 AND `button`=0); -- Rune Strike
UPDATE `playercreateinfo_action` SET `action`=316239 WHERE (`race`=9 AND `class`=6 AND `button`=0); -- Rune Strike
UPDATE `playercreateinfo_action` SET `action`=316239 WHERE (`race`=10 AND `class`=6 AND `button`=0); -- Rune Strike
UPDATE `playercreateinfo_action` SET `action`=316239 WHERE (`race`=11 AND `class`=6 AND `button`=0); -- Rune Strike
UPDATE `playercreateinfo_action` SET `action`=316239 WHERE (`race`=22 AND `class`=6 AND `button`=0); -- Rune Strike
UPDATE `playercreateinfo_action` SET `action`=47541 WHERE (`race`=1 AND `class`=6 AND `button`=1); -- Death Coil
UPDATE `playercreateinfo_action` SET `action`=47541 WHERE (`race`=2 AND `class`=6 AND `button`=1); -- Death Coil
UPDATE `playercreateinfo_action` SET `action`=47541 WHERE (`race`=3 AND `class`=6 AND `button`=1); -- Death Coil
UPDATE `playercreateinfo_action` SET `action`=47541 WHERE (`race`=4 AND `class`=6 AND `button`=1); -- Death Coil
UPDATE `playercreateinfo_action` SET `action`=47541 WHERE (`race`=5 AND `class`=6 AND `button`=1); -- Death Coil
UPDATE `playercreateinfo_action` SET `action`=47541 WHERE (`race`=6 AND `class`=6 AND `button`=1); -- Death Coil
UPDATE `playercreateinfo_action` SET `action`=47541 WHERE (`race`=7 AND `class`=6 AND `button`=1); -- Death Coil
UPDATE `playercreateinfo_action` SET `action`=47541 WHERE (`race`=8 AND `class`=6 AND `button`=1); -- Death Coil
UPDATE `playercreateinfo_action` SET `action`=47541 WHERE (`race`=9 AND `class`=6 AND `button`=1); -- Death Coil
UPDATE `playercreateinfo_action` SET `action`=47541 WHERE (`race`=10 AND `class`=6 AND `button`=1); -- Death Coil
UPDATE `playercreateinfo_action` SET `action`=47541 WHERE (`race`=11 AND `class`=6 AND `button`=1); -- Death Coil
UPDATE `playercreateinfo_action` SET `action`=47541 WHERE (`race`=22 AND `class`=6 AND `button`=1); -- Death Coil
UPDATE `playercreateinfo_action` SET `action`=53428 WHERE (`race`=27 AND `class`=6 AND `button`=2); -- Runeforging
UPDATE `playercreateinfo_action` SET `action`=43265 WHERE (`race`=1 AND `class`=6 AND `button`=3); -- Death and Decay
UPDATE `playercreateinfo_action` SET `action`=43265 WHERE (`race`=2 AND `class`=6 AND `button`=3); -- Death and Decay
UPDATE `playercreateinfo_action` SET `action`=43265 WHERE (`race`=3 AND `class`=6 AND `button`=3); -- Death and Decay
UPDATE `playercreateinfo_action` SET `action`=43265 WHERE (`race`=4 AND `class`=6 AND `button`=3); -- Death and Decay
UPDATE `playercreateinfo_action` SET `action`=43265 WHERE (`race`=5 AND `class`=6 AND `button`=3); -- Death and Decay
UPDATE `playercreateinfo_action` SET `action`=43265 WHERE (`race`=6 AND `class`=6 AND `button`=3); -- Death and Decay
UPDATE `playercreateinfo_action` SET `action`=43265 WHERE (`race`=7 AND `class`=6 AND `button`=3); -- Death and Decay
UPDATE `playercreateinfo_action` SET `action`=43265 WHERE (`race`=8 AND `class`=6 AND `button`=3); -- Death and Decay
UPDATE `playercreateinfo_action` SET `action`=43265 WHERE (`race`=9 AND `class`=6 AND `button`=3); -- Death and Decay
UPDATE `playercreateinfo_action` SET `action`=43265 WHERE (`race`=10 AND `class`=6 AND `button`=3); -- Death and Decay
UPDATE `playercreateinfo_action` SET `action`=43265 WHERE (`race`=11 AND `class`=6 AND `button`=3); -- Death and Decay
UPDATE `playercreateinfo_action` SET `action`=43265 WHERE (`race`=22 AND `class`=6 AND `button`=3); -- Death and Decay
UPDATE `playercreateinfo_action` SET `action`=49576 WHERE (`race`=1 AND `class`=6 AND `button`=5); -- Death Grip
UPDATE `playercreateinfo_action` SET `action`=49576 WHERE (`race`=2 AND `class`=6 AND `button`=5); -- Death Grip
UPDATE `playercreateinfo_action` SET `action`=49576 WHERE (`race`=3 AND `class`=6 AND `button`=5); -- Death Grip
UPDATE `playercreateinfo_action` SET `action`=49576 WHERE (`race`=4 AND `class`=6 AND `button`=5); -- Death Grip
UPDATE `playercreateinfo_action` SET `action`=49576 WHERE (`race`=5 AND `class`=6 AND `button`=5); -- Death Grip
UPDATE `playercreateinfo_action` SET `action`=49576 WHERE (`race`=6 AND `class`=6 AND `button`=5); -- Death Grip
UPDATE `playercreateinfo_action` SET `action`=49576 WHERE (`race`=7 AND `class`=6 AND `button`=5); -- Death Grip
UPDATE `playercreateinfo_action` SET `action`=49576 WHERE (`race`=8 AND `class`=6 AND `button`=5); -- Death Grip
UPDATE `playercreateinfo_action` SET `action`=49576 WHERE (`race`=9 AND `class`=6 AND `button`=5); -- Death Grip
UPDATE `playercreateinfo_action` SET `action`=49576 WHERE (`race`=10 AND `class`=6 AND `button`=5); -- Death Grip
UPDATE `playercreateinfo_action` SET `action`=49576 WHERE (`race`=11 AND `class`=6 AND `button`=5); -- Death Grip
UPDATE `playercreateinfo_action` SET `action`=49576 WHERE (`race`=22 AND `class`=6 AND `button`=5); -- Death Grip

View File

@@ -0,0 +1,16 @@
-- Class Mage
DELETE FROM `playercreateinfo_action` WHERE (`race`=1 AND `class`=8 AND `button`=10) OR (`race`=2 AND `class`=8 AND `button`=10) OR (`race`=3 AND `class`=8 AND `button`=10) OR (`race`=4 AND `class`=8 AND `button`=10) OR (`race`=5 AND `class`=8 AND `button`=10) OR (`race`=6 AND `class`=8 AND `button`=10) OR (`race`=7 AND `class`=8 AND `button`=10) OR (`race`=8 AND `class`=8 AND `button`=10) OR (`race`=9 AND `class`=8 AND `button`=11) OR (`race`=10 AND `class`=8 AND `button`=10) OR (`race`=11 AND `class`=8 AND `button`=10) OR (`race`=22 AND `class`=8 AND `button`=10) OR (`race`=24 AND `class`=8 AND `button`=10);
INSERT INTO `playercreateinfo_action` (`race`, `class`, `button`, `action`, `type`) VALUES
(1, 8, 10, 1231411, 0), -- Recuperate
(2, 8, 10, 1231411, 0), -- Recuperate
(3, 8, 10, 1231411, 0), -- Recuperate
(4, 8, 10, 1231411, 0), -- Recuperate
(5, 8, 10, 1231411, 0), -- Recuperate
(6, 8, 10, 1231411, 0), -- Recuperate
(7, 8, 10, 1231411, 0), -- Recuperate
(8, 8, 10, 1231411, 0), -- Recuperate
(9, 8, 11, 1231411, 0), -- Recuperate
(11, 8, 10, 1231411, 0), -- Recuperate
(10, 8, 10, 1231411, 0), -- Recuperate
(22, 8, 10, 1231411, 0), -- Recuperate
(24, 8, 10, 1231411, 0); -- Recuperate

View File

@@ -0,0 +1,16 @@
-- Class Priest
DELETE FROM `playercreateinfo_action` WHERE (`race`=1 AND `class`=5 AND `button`=10) OR (`race`=2 AND `class`=5 AND `button`=10) OR (`race`=3 AND `class`=5 AND `button`=10) OR (`race`=4 AND `class`=5 AND `button`=10) OR (`race`=5 AND `class`=5 AND `button`=10) OR (`race`=6 AND `class`=5 AND `button`=10) OR (`race`=7 AND `class`=5 AND `button`=10) OR (`race`=8 AND `class`=5 AND `button`=10) OR (`race`=9 AND `class`=5 AND `button`=11) OR (`race`=10 AND `class`=5 AND `button`=10) OR (`race`=11 AND `class`=5 AND `button`=10) OR (`race`=22 AND `class`=5 AND `button`=10) OR (`race`=24 AND `class`=5 AND `button`=10);
INSERT INTO `playercreateinfo_action` (`race`, `class`, `button`, `action`, `type`) VALUES
(1, 5, 10, 1231411, 0), -- Recuperate
(2, 5, 10, 1231411, 0), -- Recuperate
(3, 5, 10, 1231411, 0), -- Recuperate
(4, 5, 10, 1231411, 0), -- Recuperate
(5, 5, 10, 1231411, 0), -- Recuperate
(6, 5, 10, 1231411, 0), -- Recuperate
(7, 5, 10, 1231411, 0), -- Recuperate
(8, 5, 10, 1231411, 0), -- Recuperate
(9, 5, 11, 1231411, 0), -- Recuperate
(10, 5, 10, 1231411, 0), -- Recuperate
(11, 5, 10, 1231411, 0), -- Recuperate
(22, 5, 10, 1231411, 0), -- Recuperate
(24, 5, 10, 1231411, 0); -- Recuperate

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,406 @@
SET @CGUID := 7003273;
-- Creature
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+101;
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`, `MovementType`, `npcflag`, `unit_flags`, `unit_flags2`, `unit_flags3`, `VerifiedBuild`) VALUES
(@CGUID+0, 129886, 1643, 8721, 8721, '0', 0, 0, 0, 0, -248.017364501953125, 2352.407958984375, 62.87564468383789062, 3.081491470336914062, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mountain Rabbit (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+1, 127808, 1643, 8721, 8721, '0', 0, 0, 0, 0, -259.173614501953125, 2356.928955078125, 61.37173843383789062, 0.363085150718688964, 120, 6, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mountain Fawn (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+2, 129886, 1643, 8721, 8721, '0', 0, 0, 0, 0, -257.532989501953125, 2395.404541015625, 72.11810302734375, 4.989075183868408203, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mountain Rabbit (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+3, 127808, 1643, 8721, 8721, '0', 0, 0, 0, 0, -290.9132080078125, 2320.600830078125, 63.23931121826171875, 1.478368163108825683, 120, 6, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mountain Fawn (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+4, 129886, 1643, 8721, 8721, '0', 0, 0, 0, 0, -288.79339599609375, 2319.0869140625, 63.17291259765625, 0.699583113193511962, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mountain Rabbit (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+5, 127806, 1643, 8721, 8721, '0', 0, 0, 0, 0, -254.850692749023437, 2382.564208984375, 67.54994964599609375, 5.054188251495361328, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Greatstag (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+6, 127808, 1643, 8721, 8721, '0', 0, 0, 0, 0, -250.5, 2334.958251953125, 61.47085952758789062, 5.079715251922607421, 120, 6, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mountain Fawn (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+7, 127808, 1643, 8721, 8721, '0', 0, 0, 0, 0, -251.479171752929687, 2350.29345703125, 62.23786163330078125, 2.467104434967041015, 120, 6, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mountain Fawn (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+8, 129888, 1643, 8721, 8721, '0', 0, 0, 0, 0, -301.138885498046875, 2346.59716796875, 64.334320068359375, 6.047640323638916015, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Rimed Peeper (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+9, 127806, 1643, 8721, 8721, '0', 0, 0, 0, 0, -234.107635498046875, 2361.04345703125, 70.0010223388671875, 4.519479751586914062, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Greatstag (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+10, 127808, 1643, 8721, 8721, '0', 0, 0, 0, 0, -283.71527099609375, 2354.671875, 63.92791748046875, 4.033522605895996093, 120, 6, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mountain Fawn (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+11, 127808, 1643, 8721, 8721, '0', 0, 0, 0, 0, -275.501739501953125, 2380.673583984375, 67.3201141357421875, 6.083749294281005859, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Fawn (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+12, 127807, 1643, 8721, 8721, '0', 0, 0, 0, 0, -274.73785400390625, 2377.501708984375, 66.693511962890625, 4.950794219970703125, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Doe (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+13, 127808, 1643, 8721, 8721, '0', 0, 0, 0, 0, -278.48785400390625, 2371.732666015625, 65.03809356689453125, 0.330310553312301635, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Fawn (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+14, 127807, 1643, 8721, 8721, '0', 0, 0, 0, 0, -275.20660400390625, 2372.404541015625, 65.512542724609375, 0.177587702870368957, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Doe (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+15, 127806, 1643, 8721, 8721, '0', 0, 0, 0, 0, -271.289947509765625, 2375.123291015625, 65.60343170166015625, 4.672250747680664062, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Greatstag (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+16, 127808, 1643, 8721, 8721, '0', 0, 0, 0, 0, -279.248260498046875, 2376.01220703125, 65.73297882080078125, 0.100328005850315093, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Fawn (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+17, 128852, 1643, 8721, 8721, '0', 0, 0, 0, 0, -271.484375, 2353.395751953125, 76.87457275390625, 5.788966178894042968, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Chillwind Hawk (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+18, 127806, 1643, 8721, 8721, '0', 0, 0, 0, 0, -240.510421752929687, 2378.163330078125, 72.236358642578125, 4.519479751586914062, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Greatstag (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+19, 129888, 1643, 8721, 8721, '0', 0, 0, 0, 0, -290.572906494140625, 2317.43408203125, 64.9517669677734375, 3.437305212020874023, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Rimed Peeper (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+20, 127807, 1643, 8721, 8721, '0', 0, 0, 0, 0, -313.05902099609375, 2374.017333984375, 61.06576156616210937, 4.146316051483154296, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Doe (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+21, 127807, 1643, 8721, 8721, '0', 0, 0, 0, 0, -250.777786254882812, 2368.616455078125, 61.51596832275390625, 1.478428840637207031, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Doe (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+22, 127806, 1643, 8721, 8721, '0', 0, 0, 0, 0, -312.375, 2369.5244140625, 61.39560317993164062, 2.585978507995605468, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Greatstag (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+23, 129888, 1643, 8721, 8721, '0', 0, 0, 0, 0, -298.701385498046875, 2303.911376953125, 61.3016357421875, 0.652158200740814208, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Rimed Peeper (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+24, 129886, 1643, 8721, 8721, '0', 0, 0, 0, 0, -257.63714599609375, 2381.713623046875, 67.42078399658203125, 2.592519760131835937, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Rabbit (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+25, 129886, 1643, 8721, 8721, '0', 0, 0, 0, 0, -247.053817749023437, 2363.1181640625, 62.08816909790039062, 3.011483669281005859, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mountain Rabbit (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+26, 127807, 1643, 8721, 8721, '0', 0, 0, 0, 0, -314.295135498046875, 2367.192626953125, 61.41523361206054687, 2.585978507995605468, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Doe (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+27, 127807, 1643, 8721, 8721, '0', 0, 0, 0, 0, -260.1875, 2364.100830078125, 61.33723831176757812, 2.402752876281738281, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Doe (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+28, 127807, 1643, 8721, 8721, '0', 0, 0, 0, 0, -252.208328247070312, 2356.739501953125, 61.95616912841796875, 5.136470794677734375, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Doe (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+29, 127806, 1643, 8721, 8721, '0', 0, 0, 0, 0, -285.173614501953125, 2359.307373046875, 63.66244125366210937, 0, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Greatstag (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+30, 127807, 1643, 8721, 8721, '0', 0, 0, 0, 0, -281.723968505859375, 2365.736083984375, 63.51564407348632812, 2.585978507995605468, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Doe (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+31, 129888, 1643, 8721, 8721, '0', 0, 0, 0, 0, -287.51910400390625, 2318.260498046875, 63.11978912353515625, 1.28601384162902832, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Rimed Peeper (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+32, 129888, 1643, 8721, 8721, '0', 0, 0, 0, 0, -299.151031494140625, 2386.890625, 61.6787567138671875, 6.069543838500976562, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Rimed Peeper (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+33, 129886, 1643, 8721, 8721, '0', 0, 0, 0, 0, -284.348968505859375, 2365.210205078125, 63.62543869018554687, 5.160645961761474609, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mountain Rabbit (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+34, 129886, 1643, 8721, 8721, '0', 0, 0, 0, 0, -249.59722900390625, 2381.2744140625, 66.4730377197265625, 4.802081584930419921, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mountain Rabbit (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+35, 127807, 1643, 8721, 8721, '0', 0, 0, 0, 0, -288.993072509765625, 2309.677001953125, 62.33449172973632812, 2.13262176513671875, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Doe (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+36, 127807, 1643, 8721, 8721, '0', 0, 0, 0, 0, -238.958328247070312, 2378.35595703125, 72.05450439453125, 1.517837166786193847, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Doe (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+37, 129888, 1643, 8721, 8721, '0', 0, 0, 0, 0, -242.857635498046875, 2278.572998046875, 56.69730377197265625, 4.043294906616210937, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Rimed Peeper (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+38, 127807, 1643, 8721, 8721, '0', 0, 0, 0, 0, -250.168411254882812, 2348.6025390625, 61.59560775756835937, 4.086003780364990234, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Doe (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+39, 129886, 1643, 8721, 8721, '0', 0, 0, 0, 0, -263.321197509765625, 2370, 62.43521881103515625, 0.22725805640220642, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Rabbit (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+40, 127807, 1643, 8721, 8721, '0', 0, 0, 0, 0, -244.89410400390625, 2350.036376953125, 62.69144058227539062, 1.478428840637207031, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Doe (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+41, 129888, 1643, 8721, 8721, '0', 0, 0, 0, 0, -259.689239501953125, 2305.032958984375, 63.98743820190429687, 2.011989831924438476, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Rimed Peeper (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+42, 129886, 1643, 8721, 8721, '0', 0, 0, 0, 0, -248.630203247070312, 2308.583251953125, 63.87073898315429687, 2.375813961029052734, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mountain Rabbit (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+43, 129888, 1643, 8721, 8721, '0', 0, 0, 0, 0, -273.91839599609375, 2282.232666015625, 59.21466827392578125, 3.087697505950927734, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Rimed Peeper (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+44, 129888, 1643, 8721, 8721, '0', 0, 0, 0, 0, -215.835067749023437, 2286.1806640625, 62.7799530029296875, 3.697027206420898437, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Rimed Peeper (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+45, 128852, 1643, 8721, 8721, '0', 0, 0, 0, 0, -254.215286254882812, 2306.92529296875, 69.430694580078125, 1.46271669864654541, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Chillwind Hawk (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+46, 129888, 1643, 8721, 8721, '0', 0, 0, 0, 0, -290.026031494140625, 2279.630126953125, 58.63593673706054687, 1.018799424171447753, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Rimed Peeper (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+47, 129886, 1643, 8721, 8721, '0', 0, 0, 0, 0, -228.142364501953125, 2378.177001953125, 71.01312255859375, 4.718141078948974609, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Rabbit (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+48, 129886, 1643, 8721, 8721, '0', 0, 0, 0, 0, -226.70660400390625, 2368.65283203125, 71.91766357421875, 3.522953033447265625, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Rabbit (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+49, 127801, 1643, 8721, 8721, '0', 0, 0, 0, 0, -209.302078247070312, 2402.140625, 78.41228485107421875, 0.459695667028427124, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mountain Squirrel (Area: Drustvar - Difficulty: 0) CreateObject2 (possible waypoints or random movement)
(@CGUID+50, 129886, 1643, 8721, 8721, '0', 0, 0, 0, 0, -236.96875, 2412.338623046875, 78.86785888671875, 5.712992191314697265, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Rabbit (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+51, 127806, 1643, 8721, 8721, '0', 0, 0, 0, 0, -178.998260498046875, 2451.77783203125, 96.49987030029296875, 0, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Greatstag (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+52, 127807, 1643, 8721, 8721, '0', 0, 0, 0, 0, -212.87847900390625, 2410.5400390625, 80.19142913818359375, 4.905102729797363281, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Doe (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+53, 127808, 1643, 8721, 8721, '0', 0, 0, 0, 0, -219.619796752929687, 2410.32470703125, 79.52257537841796875, 3.496132373809814453, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Fawn (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+54, 127808, 1643, 8721, 8721, '0', 0, 0, 0, 0, -181.527786254882812, 2448.276123046875, 95.4117431640625, 0, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Fawn (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+55, 127801, 1643, 8721, 8721, '0', 0, 0, 0, 0, -175.413192749023437, 2388.763916015625, 72.04367828369140625, 2.799005746841430664, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mountain Squirrel (Area: Drustvar - Difficulty: 0) CreateObject2 (possible waypoints or random movement)
(@CGUID+56, 127808, 1643, 8721, 8721, '0', 0, 0, 0, 0, -182.145828247070312, 2453.71533203125, 96.4125213623046875, 0.377007484436035156, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Fawn (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+57, 127806, 1643, 8721, 8721, '0', 0, 0, 0, 0, -215.074661254882812, 2414.802001953125, 81.325927734375, 0, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Greatstag (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+58, 127808, 1643, 8721, 8721, '0', 0, 0, 0, 0, -217.1875, 2412.755126953125, 80.629119873046875, 2.297600984573364257, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Fawn (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+59, 127807, 1643, 8721, 8721, '0', 0, 0, 0, 0, -185.423614501953125, 2452.720458984375, 96.0025177001953125, 2.638262748718261718, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Doe (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+60, 128852, 1643, 8721, 8721, '0', 0, 0, 0, 0, -226.229171752929687, 2397.079833984375, 93.12921142578125, 1.009299039840698242, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Chillwind Hawk (Area: Drustvar - Difficulty: 0) CreateObject2 (possible waypoints or random movement)
(@CGUID+61, 127807, 1643, 8721, 8721, '0', 0, 0, 0, 0, -104.920143127441406, 2482.255126953125, 114.78314208984375, 0.932810485363006591, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Doe (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%) (possible waypoints or random movement)
(@CGUID+62, 127801, 1643, 8721, 8721, '0', 0, 0, 0, 0, -116.489593505859375, 2442.23779296875, 99.4659271240234375, 0.532619237899780273, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mountain Squirrel (Area: Drustvar - Difficulty: 0) CreateObject2 (possible waypoints or random movement)
(@CGUID+63, 127808, 1643, 8721, 8721, '0', 0, 0, 0, 0, -213.510421752929687, 2440.397705078125, 87.9723663330078125, 0.60954219102859497, 120, 6, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mountain Fawn (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%) (possible waypoints or random movement)
(@CGUID+64, 127807, 1643, 8721, 8721, '0', 0, 0, 0, 0, -210.423614501953125, 2439.34375, 88.02120208740234375, 0.057635135948657989, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Doe (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%) (possible waypoints or random movement)
(@CGUID+65, 127807, 1643, 8721, 8721, '0', 0, 0, 0, 0, -206.37847900390625, 2436.201416015625, 88.23760986328125, 1.230524778366088867, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Doe (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%) (possible waypoints or random movement)
(@CGUID+66, 127806, 1643, 8721, 8721, '0', 0, 0, 0, 0, -206.56597900390625, 2440.96875, 88.929931640625, 0, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Greatstag (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%) (possible waypoints or random movement)
(@CGUID+67, 127808, 1643, 8721, 8721, '0', 0, 0, 0, 0, -211.590286254882812, 2434.736083984375, 86.67578125, 0.86262822151184082, 120, 6, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Fawn (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%) (possible waypoints or random movement)
(@CGUID+68, 127808, 1643, 8721, 8721, '0', 0, 0, 0, 0, -207.572921752929687, 2433.078125, 87.284698486328125, 1.217238664627075195, 120, 6, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mountain Fawn (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%) (possible waypoints or random movement)
(@CGUID+69, 127801, 1643, 8721, 8721, '0', 0, 0, 0, 0, -121.442710876464843, 2425.725830078125, 93.58391571044921875, 3.377142906188964843, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mountain Squirrel (Area: Drustvar - Difficulty: 0) CreateObject2 (possible waypoints or random movement)
(@CGUID+70, 128852, 1643, 8721, 8721, '0', 0, 0, 0, 0, -168.614578247070312, 2429.583251953125, 116.9599380493164062, 2.082644939422607421, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Chillwind Hawk (Area: Drustvar - Difficulty: 0) CreateObject2 (possible waypoints or random movement)
(@CGUID+71, 127801, 1643, 8721, 8721, '0', 0, 0, 0, 0, -93.0694427490234375, 2489.329833984375, 118.75439453125, 5.55127716064453125, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mountain Squirrel (Area: Drustvar - Difficulty: 0) CreateObject2 (possible waypoints or random movement)
(@CGUID+72, 127801, 1643, 8721, 8721, '0', 0, 0, 0, 0, -93.2135391235351562, 2465.2900390625, 109.235137939453125, 3.821393489837646484, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mountain Squirrel (Area: Drustvar - Difficulty: 0) CreateObject2 (possible waypoints or random movement)
(@CGUID+73, 127806, 1643, 8721, 8721, '0', 0, 0, 0, 0, -107.335067749023437, 2479.861083984375, 114.6367340087890625, 4.895513057708740234, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Greatstag (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+74, 127807, 1643, 8721, 8721, '0', 0, 0, 0, 0, -63.8489570617675781, 2505.8134765625, 125.7322769165039062, 0.687230825424194335, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Doe (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+75, 127806, 1643, 8721, 8721, '0', 0, 0, 0, 0, -22.7361106872558593, 2514.533935546875, 134.716949462890625, 0.602410554885864257, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mountain Greatstag (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+76, 127807, 1643, 8721, 8721, '0', 0, 0, 0, 0, -35.9236106872558593, 2510.799560546875, 130.0979461669921875, 0.470038354396820068, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Doe (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+77, 127806, 1643, 8721, 8721, '0', 0, 0, 0, 0, -55.5572929382324218, 2498.661376953125, 123.5835952758789062, 5.852807044982910156, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Mountain Greatstag (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+78, 127801, 1643, 8721, 8721, '0', 0, 0, 0, 0, -34.5347213745117187, 2463.97216796875, 117.5094451904296875, 2.194599628448486328, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Squirrel (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+79, 127801, 1643, 8721, 8721, '0', 0, 0, 0, 0, 25.05729103088378906, 2476.579833984375, 133.3482666015625, 4.460426807403564453, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Squirrel (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+80, 127808, 1643, 8721, 8721, '0', 0, 0, 0, 0, -65.9652786254882812, 2498.90283203125, 123.7018966674804687, 0.785071730613708496, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Fawn (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+81, 127808, 1643, 8721, 8721, '0', 0, 0, 0, 0, -54.9201393127441406, 2501.92529296875, 125.3840484619140625, 1.201155781745910644, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Fawn (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+82, 127801, 1643, 8721, 8721, '0', 0, 0, 0, 0, -18.307291030883789, 2522.952392578125, 139.2266693115234375, 3.544527530670166015, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Squirrel (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+83, 128852, 1643, 8721, 8721, '0', 0, 0, 0, 0, -2.09375, 2473.0556640625, 142.0468292236328125, 4.105377197265625, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Chillwind Hawk (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+84, 127807, 1643, 8721, 8721, '0', 0, 0, 0, 0, -73.0208358764648437, 2502.710205078125, 124.5821533203125, 3.348693609237670898, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Doe (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+85, 127801, 1643, 8721, 8721, '0', 0, 0, 0, 0, -12.9826393127441406, 2477.963623046875, 127.196533203125, 0.769550502300262451, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Squirrel (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+86, 127806, 1643, 8721, 8721, '0', 0, 0, 0, 0, -35.8003463745117187, 2449.907958984375, 113.36004638671875, 1.95473790168762207, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Mountain Greatstag (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: 123169 - Mod Scale 105-110%)
(@CGUID+87, 128852, 1643, 8721, 8721, '0', 0, 0, 0, 0, -152.109375, 2372.904541015625, 75.1953277587890625, 3.03727126121520996, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Chillwind Hawk (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+88, 129888, 1643, 8721, 8721, '0', 0, 0, 0, 0, -321.180572509765625, 2363.611083984375, 60.5477294921875, 3.041397809982299804, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Rimed Peeper (Area: Drustvar - Difficulty: 0) CreateObject2 (possible waypoints or random movement)
(@CGUID+89, 129888, 1643, 8721, 8721, '0', 0, 0, 0, 0, -292.430572509765625, 2405.1337890625, 64.52591705322265625, 3.588846683502197265, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Rimed Peeper (Area: Drustvar - Difficulty: 0) CreateObject2 (possible waypoints or random movement)
(@CGUID+90, 129873, 1643, 8721, 8721, '0', 0, 0, 0, 0, -329.711822509765625, 2465.96533203125, 85.12066650390625, 5.260919570922851562, 120, 6, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Ruin Sentinel (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+91, 129873, 1643, 8721, 8721, '0', 0, 0, 0, 0, -376.914947509765625, 2335.3369140625, 85.16961669921875, 5.049091339111328125, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Ruin Sentinel (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+92, 129888, 1643, 8721, 8721, '0', 0, 0, 0, 0, -319.265625, 2399.880126953125, 62.40819549560546875, 4.99767160415649414, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Rimed Peeper (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+93, 129888, 1643, 8721, 8721, '0', 0, 0, 0, 0, -350.8125, 2373.1806640625, 60.85578155517578125, 4.168284416198730468, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Rimed Peeper (Area: Drustvar - Difficulty: 0) CreateObject2 (Auras: ) (possible waypoints or random movement)
(@CGUID+94, 129888, 1643, 8721, 8721, '0', 0, 0, 0, 0, -318.8125, 2341.201416015625, 61.42816162109375, 4.204686164855957031, 120, 4, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Rimed Peeper (Area: Drustvar - Difficulty: 0) CreateObject2 (possible waypoints or random movement)
(@CGUID+95, 129873, 1643, 8721, 8721, '0', 0, 0, 0, 0, -431.039947509765625, 2402.55908203125, 104.7013931274414062, 0.508233308792114257, 120, 6, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Ruin Sentinel (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+96, 129888, 1643, 8721, 8721, '0', 0, 0, 0, 0, -341.810760498046875, 2444.032958984375, 65.043731689453125, 3.447429895401000976, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Rimed Peeper (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+97, 129873, 1643, 8721, 8721, '0', 0, 0, 0, 0, -338.064239501953125, 2409.826416015625, 65.5396728515625, 4.568089485168457031, 120, 6, 0, 1, NULL, NULL, NULL, NULL, 61967), -- Ruin Sentinel (Area: Drustvar - Difficulty: 0) CreateObject2
(@CGUID+98, 128852, 1643, 8721, 8904, '0', 0, 0, 0, 0, -328.44097900390625, 2270.382080078125, 84.57648468017578125, 5.950843334197998046, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Chillwind Hawk (Area: Glenbrook Hunting Grounds - Difficulty: 0) CreateObject2
(@CGUID+99, 128852, 1643, 8721, 8904, '0', 0, 0, 0, 0, -338.93402099609375, 2261.173583984375, 84.83089447021484375, 1.939924955368041992, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Chillwind Hawk (Area: Glenbrook Hunting Grounds - Difficulty: 0) CreateObject2
(@CGUID+100, 128852, 1643, 8721, 8904, '0', 0, 0, 0, 0, -373.868072509765625, 2301.0244140625, 128.0042266845703125, 5.105090141296386718, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967), -- Chillwind Hawk (Area: Glenbrook Hunting Grounds - Difficulty: 0) CreateObject2
(@CGUID+101, 129771, 1643, 8721, 8904, '0', 0, 0, 0, 0, -256.244354248046875, 2394.38525390625, 71.18920135498046875, 3.660562992095947265, 120, 0, 0, 0, NULL, NULL, NULL, NULL, 61967); -- Athair (Area: Glenbrook Hunting Grounds - Difficulty: 0) CreateObject1 (Auras: 257499 - Forest Guardian)
DELETE FROM `creature_addon` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+101;
INSERT INTO `creature_addon` (`guid`, `PathId`, `mount`, `StandState`, `AnimTier`, `VisFlags`, `SheathState`, `PvpFlags`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
(@CGUID+9, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, '123169'), -- Mountain Greatstag - 123169 - Mod Scale 105-110%
(@CGUID+18, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, '123169'), -- Mountain Greatstag - 123169 - Mod Scale 105-110%
(@CGUID+20, 0, 0, 0, 0, 0, 1, 0, 418, 0, 0, 0, 0, '123169'), -- Mountain Doe - 123169 - Mod Scale 105-110%
(@CGUID+21, 0, 0, 0, 0, 0, 1, 0, 418, 0, 0, 0, 0, '123169'), -- Mountain Doe - 123169 - Mod Scale 105-110%
(@CGUID+22, 0, 0, 0, 0, 0, 1, 0, 418, 0, 0, 0, 0, '123169'), -- Mountain Greatstag - 123169 - Mod Scale 105-110%
(@CGUID+26, 0, 0, 0, 0, 0, 1, 0, 418, 0, 0, 0, 0, '123169'), -- Mountain Doe - 123169 - Mod Scale 105-110%
(@CGUID+27, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, '123169'), -- Mountain Doe - 123169 - Mod Scale 105-110%
(@CGUID+28, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, '123169'), -- Mountain Doe - 123169 - Mod Scale 105-110%
(@CGUID+29, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, '123169'), -- Mountain Greatstag - 123169 - Mod Scale 105-110%
(@CGUID+30, 0, 0, 0, 0, 0, 1, 0, 418, 0, 0, 0, 0, '123169'), -- Mountain Doe - 123169 - Mod Scale 105-110%
(@CGUID+35, 0, 0, 0, 0, 0, 1, 0, 418, 0, 0, 0, 0, '123169'), -- Mountain Doe - 123169 - Mod Scale 105-110%
(@CGUID+36, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, '123169'), -- Mountain Doe - 123169 - Mod Scale 105-110%
(@CGUID+38, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, '123169'), -- Mountain Doe - 123169 - Mod Scale 105-110%
(@CGUID+40, 0, 0, 0, 0, 0, 1, 0, 418, 0, 0, 0, 0, '123169'), -- Mountain Doe - 123169 - Mod Scale 105-110%
(@CGUID+45, 0, 0, 0, 0, 0, 1, 0, 455, 0, 0, 0, 0, ''), -- Chillwind Hawk
(@CGUID+51, 0, 0, 0, 0, 0, 1, 0, 418, 0, 0, 0, 0, '123169'), -- Mountain Greatstag - 123169 - Mod Scale 105-110%
(@CGUID+52, 0, 0, 0, 0, 0, 1, 0, 418, 0, 0, 0, 0, '123169'), -- Mountain Doe - 123169 - Mod Scale 105-110%
(@CGUID+59, 0, 0, 0, 0, 0, 1, 0, 418, 0, 0, 0, 0, '123169'), -- Mountain Doe - 123169 - Mod Scale 105-110%
(@CGUID+73, 0, 0, 0, 0, 0, 1, 0, 418, 0, 0, 0, 0, '123169'), -- Mountain Greatstag - 123169 - Mod Scale 105-110%
(@CGUID+74, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, '123169'), -- Mountain Doe - 123169 - Mod Scale 105-110%
(@CGUID+76, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, '123169'), -- Mountain Doe - 123169 - Mod Scale 105-110%
(@CGUID+84, 0, 0, 0, 0, 0, 1, 0, 418, 0, 0, 0, 0, '123169'), -- Mountain Doe - 123169 - Mod Scale 105-110%
(@CGUID+87, 0, 0, 0, 0, 0, 1, 0, 455, 0, 0, 0, 0, ''), -- Chillwind Hawk
(@CGUID+99, 0, 0, 0, 0, 0, 1, 0, 455, 0, 0, 0, 0, ''); -- Chillwind Hawk
-- Template Addon
DELETE FROM `creature_template_addon` WHERE `entry` IN (129771 /*129771 (Athair) - Forest Guardian*/);
INSERT INTO `creature_template_addon` (`entry`, `PathId`, `mount`, `StandState`, `AnimTier`, `VisFlags`, `SheathState`, `PvpFlags`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
(129771, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, '257499'); -- 129771 (Athair) - Forest Guardian
UPDATE `creature_template_difficulty` SET `StaticFlags1`=0x10000000, `VerifiedBuild`=61967 WHERE (`Entry`=129771 AND `DifficultyID`=0); -- 129771 (Athair) - CanSwim
-- Gossip
DELETE FROM `creature_template_gossip` WHERE (`CreatureID`=129771 AND `MenuID`=22634);
INSERT INTO `creature_template_gossip` (`CreatureID`, `MenuID`, `VerifiedBuild`) VALUES
(129771, 22634, 61967); -- Athair
DELETE FROM `conditions` WHERE (`SourceTypeOrReferenceId` = 15) AND (`SourceGroup` IN (22634));
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `ConditionStringValue1`, `NegativeCondition`, `Comment`) VALUES
(15, 22634, 0, 0, 0, 15, 0, 1024, 0, 0, '', 0, 'Player for which gossip text is shown class is part of classmask 1024');
UPDATE `gossip_menu` SET `VerifiedBuild`=61967 WHERE (`MenuID`=22634 AND `TextID`=34864);
-- Path for Athair
SET @ENTRY := 129771;
SET @PATHOFFSET := 0;
SET @PATH := @ENTRY * 100 + @PATHOFFSET;
DELETE FROM `waypoint_path` WHERE `PathId`= @PATH;
INSERT INTO `waypoint_path` (`PathId`, `MoveType`, `Flags`, `Velocity`, `Comment`) VALUES
(@PATH, 0, 0x0, NULL, 'Athair - Cosmetic Path');
DELETE FROM `waypoint_path_node` WHERE `PathId`= @PATH;
INSERT INTO `waypoint_path_node` (`PathId`, `NodeId`, `PositionX`, `PositionY`, `PositionZ`, `Orientation`, `Delay`) VALUES
(@PATH, 0, -263.0486, 2390.427, 70.62732, NULL, 0),
(@PATH, 1, -271.36978, 2385.519, 68.67537, NULL, 0),
(@PATH, 2, -278.66666, 2383.3196, 66.7293, NULL, 0),
(@PATH, 3, -284.86285, 2381.4966, 65.009605, NULL, 0),
(@PATH, 4, -295.10245, 2372.816, 63.02745, NULL, 0),
(@PATH, 5, -305.14236, 2363.8455, 63.233566, NULL, 0),
(@PATH, 6, -310.56598, 2356.0278, 63.757217, NULL, 0),
(@PATH, 7, -311.46527, 2345.3074, 63.4551, NULL, 0),
(@PATH, 8, -309.2205, 2338.8542, 62.721394, NULL, 0),
(@PATH, 9, -305.5139, 2328.6719, 62.10858, NULL, 0),
(@PATH, 10, -302.80035, 2321.7014, 62.082268, NULL, 0),
(@PATH, 11, -298.06424, 2312.9792, 62.358334, NULL, 0),
(@PATH, 12, -292.19446, 2305.092, 61.94219, NULL, 0),
(@PATH, 13, -284.5625, 2296.3508, 61.35898, NULL, 0),
(@PATH, 14, -280.67535, 2290.962, 60.695404, NULL, 0),
(@PATH, 15, -275.75522, 2286.7986, 60.124084, NULL, 0),
(@PATH, 16, -273.07227, 2285.457, 60.548405, NULL, 0),
(@PATH, 17, -267.0486, 2282.448, 60.557785, NULL, 0),
(@PATH, 18, -257.93576, 2280.507, 59.98526, NULL, 0),
(@PATH, 19, -248.24826, 2283.665, 60.337368, NULL, 0),
(@PATH, 20, -240.59201, 2287.2517, 61.015423, NULL, 0),
(@PATH, 21, -234.96007, 2292.2222, 61.800323, NULL, 0),
(@PATH, 22, -232.41145, 2299.7327, 62.46541, NULL, 0),
(@PATH, 23, -229.8125, 2310.421, 64.05904, NULL, 0),
(@PATH, 24, -228.77951, 2315.302, 64.48692, NULL, 0),
(@PATH, 25, -225.53711, 2324.755, 64.271355, NULL, 0),
(@PATH, 26, -222.75174, 2335.6736, 64.23583, NULL, 0),
(@PATH, 27, -218.64062, 2344.1355, 65.11617, NULL, 0),
(@PATH, 28, -213.20486, 2352.1963, 66.16695, NULL, 0),
(@PATH, 29, -205.47395, 2362.0364, 66.52604, NULL, 0),
(@PATH, 30, -196.4375, 2369.717, 68.24368, NULL, 0),
(@PATH, 31, -192.25868, 2380.25, 69.2291, NULL, 0),
(@PATH, 32, -193.00868, 2390.4253, 71.97444, NULL, 0),
(@PATH, 33, -202.73785, 2395.4966, 75.35087, NULL, 0),
(@PATH, 34, -211.3802, 2394.6562, 75.936325, NULL, 0),
(@PATH, 35, -221.6632, 2396.467, 74.66867, NULL, 0),
(@PATH, 36, -227.625, 2398.559, 75.48683, NULL, 0),
(@PATH, 37, -232.52951, 2401.217, 76.277954, NULL, 0),
(@PATH, 38, -238.25694, 2403.7534, 75.62111, NULL, 0);
UPDATE `creature` SET `wander_distance`=0, `MovementType`=2 WHERE `guid`=@CGUID+101;
UPDATE `creature_template_addon` SET `PathId` = @PATH WHERE `entry` = 129771;
-- Path for Chillwind Hawk
SET @MOVERGUID := @CGUID+17;
SET @ENTRY := 128852;
SET @PATHOFFSET := 5;
SET @PATH := @ENTRY * 100 + @PATHOFFSET;
DELETE FROM `waypoint_path` WHERE `PathId`= @PATH;
INSERT INTO `waypoint_path` (`PathId`, `MoveType`, `Flags`, `Velocity`, `Comment`) VALUES
(@PATH, 0, 0x2, 2.8687, 'Chillwind Hawk - Cyclic Path');
DELETE FROM `waypoint_path_node` WHERE `PathId`= @PATH;
INSERT INTO `waypoint_path_node` (`PathId`, `NodeId`, `PositionX`, `PositionY`, `PositionZ`, `Orientation`, `Delay`) VALUES
(@PATH, 0, -258.00867, 2346.1348, 76.87457, NULL, 0),
(@PATH, 1, -253.61414, 2331.472, 76.87457, NULL, 0),
(@PATH, 2, -260.875, 2317.9963, 76.87457, NULL, 0),
(@PATH, 3, -275.53796, 2313.6016, 76.87457, NULL, 0),
(@PATH, 4, -289.01367, 2320.8625, 76.87457, NULL, 0),
(@PATH, 5, -293.4082, 2335.5254, 76.87457, NULL, 0),
(@PATH, 6, -286.14734, 2349.0012, 76.87457, NULL, 0),
(@PATH, 7, -271.48438, 2353.3958, 76.87457, NULL, 0);
UPDATE `creature` SET `wander_distance`=0, `MovementType`=2 WHERE `guid`=@MOVERGUID;
DELETE FROM `creature_addon` WHERE `guid`=@MOVERGUID;
INSERT INTO `creature_addon` (`guid`, `PathId`, `SheathState`) VALUES
(@MOVERGUID, @PATH, 1);
-- Path for Chillwind Hawk
SET @MOVERGUID := @CGUID+60;
SET @ENTRY := 128852;
SET @PATHOFFSET := 6;
SET @PATH := @ENTRY * 100 + @PATHOFFSET;
DELETE FROM `waypoint_path` WHERE `PathId`= @PATH;
INSERT INTO `waypoint_path` (`PathId`, `MoveType`, `Flags`, `Velocity`, `Comment`) VALUES
(@PATH, 0, 0x2, 2.8685, 'Chillwind Hawk - Cyclic Path');
DELETE FROM `waypoint_path_node` WHERE `PathId`= @PATH;
INSERT INTO `waypoint_path_node` (`PathId`, `NodeId`, `PositionX`, `PositionY`, `PositionZ`, `Orientation`, `Delay`) VALUES
(@PATH, 0, -219.30132, 2408.0933, 93.12921, NULL, 0),
(@PATH, 1, -206.61487, 2410.9824, 93.12921, NULL, 0),
(@PATH, 2, -195.60138, 2404.0544, 93.12921, NULL, 0),
(@PATH, 3, -192.71239, 2391.368, 93.12921, NULL, 0),
(@PATH, 4, -199.64023, 2380.3545, 93.12921, NULL, 0),
(@PATH, 5, -212.32669, 2377.4656, 93.12921, NULL, 0),
(@PATH, 6, -223.34018, 2384.3933, 93.12921, NULL, 0),
(@PATH, 7, -226.22917, 2397.0798, 93.12921, NULL, 0),
(@PATH, 8, -219.30132, 2408.0933, 93.12921, NULL, 0);
UPDATE `creature` SET `wander_distance`=0, `MovementType`=2 WHERE `guid`=@MOVERGUID;
DELETE FROM `creature_addon` WHERE `guid`=@MOVERGUID;
INSERT INTO `creature_addon` (`guid`, `PathId`, `SheathState`) VALUES
(@MOVERGUID, @PATH, 1);
-- Path for Chillwind Hawk
SET @MOVERGUID := @CGUID+70;
SET @ENTRY := 128852;
SET @PATHOFFSET := 7;
SET @PATH := @ENTRY * 100 + @PATHOFFSET;
DELETE FROM `waypoint_path` WHERE `PathId`= @PATH;
INSERT INTO `waypoint_path` (`PathId`, `MoveType`, `Flags`, `Velocity`, `Comment`) VALUES
(@PATH, 0, 0x2, 2.8686, 'Chillwind Hawk - Cyclic Path');
DELETE FROM `waypoint_path_node` WHERE `PathId`= @PATH;
INSERT INTO `waypoint_path_node` (`PathId`, `NodeId`, `PositionX`, `PositionY`, `PositionZ`, `Orientation`, `Delay`) VALUES
(@PATH, 0, -177.98627, 2446.2651, 116.95994, NULL, 0),
(@PATH, 1, -172.81712, 2464.688, 116.95994, NULL, 0),
(@PATH, 2, -156.13516, 2474.0596, 118.37039, NULL, 0),
(@PATH, 3, -137.71245, 2468.8904, 116.95994, NULL, 0),
(@PATH, 4, -128.34076, 2452.2085, 116.95994, NULL, 0),
(@PATH, 5, -133.5099, 2433.786, 116.95994, NULL, 0),
(@PATH, 6, -150.19186, 2424.414, 116.95994, NULL, 0),
(@PATH, 7, -168.61458, 2429.5833, 116.95994, NULL, 0),
(@PATH, 8, -177.98627, 2446.2651, 116.95994, NULL, 0);
UPDATE `creature` SET `wander_distance`=0, `MovementType`=2 WHERE `guid`=@MOVERGUID;
DELETE FROM `creature_addon` WHERE `guid`=@MOVERGUID;
INSERT INTO `creature_addon` (`guid`, `PathId`, `SheathState`) VALUES
(@MOVERGUID, @PATH, 1);
-- Path for Chillwind Hawk
SET @MOVERGUID := @CGUID+83;
SET @ENTRY := 128852;
SET @PATHOFFSET := 8;
SET @PATH := @ENTRY * 100 + @PATHOFFSET;
DELETE FROM `waypoint_path` WHERE `PathId`= @PATH;
INSERT INTO `waypoint_path` (`PathId`, `MoveType`, `Flags`, `Velocity`, `Comment`) VALUES
(@PATH, 0, 0x2, 2.8687, 'Chillwind Hawk - Cyclic Path');
DELETE FROM `waypoint_path_node` WHERE `PathId`= @PATH;
INSERT INTO `waypoint_path_node` (`PathId`, `NodeId`, `PositionX`, `PositionY`, `PositionZ`, `Orientation`, `Delay`) VALUES
(@PATH, 0, -10.825282, 2460.483, 142.04683, NULL, 0),
(@PATH, 1, -25.889706, 2457.7666, 142.04683, NULL, 0),
(@PATH, 2, -38.462494, 2466.4983, 142.04683, NULL, 0),
(@PATH, 3, -41.178673, 2481.5627, 142.04683, NULL, 0),
(@PATH, 4, -32.447136, 2494.1355, 142.04683, NULL, 0),
(@PATH, 5, -17.382706, 2496.8516, 142.04683, NULL, 0),
(@PATH, 6, -4.809923, 2488.12, 142.04683, NULL, 0),
(@PATH, 7, -2.09375, 2473.0557, 142.04683, NULL, 0);
UPDATE `creature` SET `wander_distance`=0, `MovementType`=2 WHERE `guid`=@MOVERGUID;
DELETE FROM `creature_addon` WHERE `guid`=@MOVERGUID;
INSERT INTO `creature_addon` (`guid`, `PathId`, `SheathState`) VALUES
(@MOVERGUID, @PATH, 1);
-- Path for Chillwind Hawk
SET @MOVERGUID := @CGUID+98;
SET @ENTRY := 128852;
SET @PATHOFFSET := 9;
SET @PATH := @ENTRY * 100 + @PATHOFFSET;
DELETE FROM `waypoint_path` WHERE `PathId`= @PATH;
INSERT INTO `waypoint_path` (`PathId`, `MoveType`, `Flags`, `Velocity`, `Comment`) VALUES
(@PATH, 0, 0x2, 2.8687, 'Chillwind Hawk - Cyclic Path');
DELETE FROM `waypoint_path_node` WHERE `PathId`= @PATH;
INSERT INTO `waypoint_path_node` (`PathId`, `NodeId`, `PositionX`, `PositionY`, `PositionZ`, `Orientation`, `Delay`) VALUES
(@PATH, 0, -313.97125, 2265.388, 84.576485, NULL, 0),
(@PATH, 1, -300.20822, 2272.0881, 84.576485, NULL, 0),
(@PATH, 2, -295.21405, 2286.5579, 84.576485, NULL, 0),
(@PATH, 3, -301.9143, 2300.321, 84.576485, NULL, 0),
(@PATH, 4, -316.38403, 2305.3152, 84.576485, NULL, 0),
(@PATH, 5, -330.14706, 2298.6147, 84.576485, NULL, 0),
(@PATH, 6, -335.14124, 2284.145, 84.576485, NULL, 0),
(@PATH, 7, -328.44098, 2270.382, 84.576485, NULL, 0);
UPDATE `creature` SET `wander_distance`=0, `MovementType`=2 WHERE `guid`=@MOVERGUID;
DELETE FROM `creature_addon` WHERE `guid`=@MOVERGUID;
INSERT INTO `creature_addon` (`guid`, `PathId`, `SheathState`) VALUES
(@MOVERGUID, @PATH, 1);
-- Path for Chillwind Hawk
SET @MOVERGUID := @CGUID+100;
SET @ENTRY := 128852;
SET @PATHOFFSET := 10;
SET @PATH := @ENTRY * 100 + @PATHOFFSET;
DELETE FROM `waypoint_path` WHERE `PathId`= @PATH;
INSERT INTO `waypoint_path` (`PathId`, `MoveType`, `Flags`, `Velocity`, `Comment`) VALUES
(@PATH, 0, 0x2, 2.8687, 'Chillwind Hawk - Cyclic Path');
DELETE FROM `waypoint_path_node` WHERE `PathId`= @PATH;
INSERT INTO `waypoint_path_node` (`PathId`, `NodeId`, `PositionX`, `PositionY`, `PositionZ`, `Orientation`, `Delay`) VALUES
(@PATH, 0, -368.0102, 2286.8823, 128.00423, NULL, 0),
(@PATH, 1, -353.86807, 2281.0244, 128.00423, NULL, 0),
(@PATH, 2, -339.72595, 2286.8823, 128.00423, NULL, 0),
(@PATH, 3, -333.86807, 2301.0244, 128.00423, NULL, 0),
(@PATH, 4, -339.72592, 2315.1665, 128.00423, NULL, 0),
(@PATH, 5, -353.86807, 2321.0244, 128.00423, NULL, 0),
(@PATH, 6, -368.0102, 2315.1665, 128.00423, NULL, 0),
(@PATH, 7, -373.86807, 2301.0244, 128.00423, NULL, 0);
UPDATE `creature` SET `wander_distance`=0, `MovementType`=2 WHERE `guid`=@MOVERGUID;
DELETE FROM `creature_addon` WHERE `guid`=@MOVERGUID;
INSERT INTO `creature_addon` (`guid`, `PathId`, `SheathState`) VALUES
(@MOVERGUID, @PATH, 1);
-- Path for Mountain Greatstag
DELETE FROM `creature_formations` WHERE `leaderGUID` = @CGUID+15;
INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`, `point_1`, `point_2`) VALUES
(@CGUID+15, @CGUID+15, 0, 0, 515, 0, 0),
(@CGUID+15, @CGUID+12, 3, 320, 515, 0, 0),
(@CGUID+15, @CGUID+14, 3, 40, 515, 0, 0),
(@CGUID+15, @CGUID+11, 6, 320, 515, 0, 0),
(@CGUID+15, @CGUID+13, 6, 40, 515, 0, 0),
(@CGUID+15, @CGUID+16, 9, 40, 515, 0, 0);
SET @MOVERGUID := @CGUID+15;
SET @ENTRY := 127806;
SET @PATHOFFSET := 1;
SET @PATH := @ENTRY * 100 + @PATHOFFSET;
DELETE FROM `waypoint_path` WHERE `PathId`= @PATH;
INSERT INTO `waypoint_path` (`PathId`, `MoveType`, `Flags`, `Velocity`, `Comment`) VALUES
(@PATH, 0, 0x0, NULL, 'Mountain Greatstag - Formation Path');
DELETE FROM `waypoint_path_node` WHERE `PathId`= @PATH;
INSERT INTO `waypoint_path_node` (`PathId`, `NodeId`, `PositionX`, `PositionY`, `PositionZ`, `Orientation`, `Delay`) VALUES
(@PATH, 0, -269.79102, 2363.5017, 62.128517, NULL, 0),
(@PATH, 1, -269.75, 2357.8784, 61.71071, NULL, 0),
(@PATH, 2, -267.1771, 2346.3525, 61.38913, NULL, 0),
(@PATH, 3, -253.80904, 2336.7952, 61.38713, NULL, 0),
(@PATH, 4, -247.48438, 2334.0347, 61.40633, NULL, 0),
(@PATH, 5, -241.11806, 2330.6892, 61.962967, NULL, 0),
(@PATH, 6, -235.01389, 2326.481, 63.332283, NULL, 0),
(@PATH, 7, -232.71529, 2320.434, 64.25597, NULL, 0),
(@PATH, 8, -233.6302, 2313.1355, 64.55538, NULL, 0),
(@PATH, 9, -233.90625, 2305.677, 63.61457, NULL, 0),
(@PATH, 10, -240.96355, 2305.8645, 64.22283, NULL, 0),
(@PATH, 11, -253.34895, 2318.1667, 61.889046, NULL, 0),
(@PATH, 12, -264.30902, 2321.5557, 61.38821, NULL, 0),
(@PATH, 13, -281.06076, 2332.9844, 61.38644, NULL, 0),
(@PATH, 14, -287.63715, 2338.0557, 61.60556, NULL, 0),
(@PATH, 15, -293.1771, 2345.5156, 64.0586, NULL, 0),
(@PATH, 16, -294.66147, 2350.25, 64.68876, NULL, 0),
(@PATH, 17, -296.87848, 2357.7222, 63.645245, NULL, 0),
(@PATH, 18, -297.99133, 2370.3403, 62.888367, NULL, 0),
(@PATH, 19, -293.8507, 2378.7292, 63.225227, NULL, 0),
(@PATH, 20, -286.65103, 2383.0034, 65.054825, NULL, 0),
(@PATH, 21, -280.6979, 2382.2395, 65.94957, NULL, 0),
(@PATH, 22, -276.36633, 2377.4565, 66.54025, NULL, 408),
(@PATH, 23, -271.49478, 2370.1875, 64.05723, NULL, 0);
UPDATE `creature` SET `wander_distance`=0, `MovementType`=2 WHERE `guid`=@MOVERGUID;
DELETE FROM `creature_addon` WHERE `guid`=@MOVERGUID;
INSERT INTO `creature_addon` (`guid`, `PathId`, `SheathState`) VALUES
(@MOVERGUID, @PATH, 1);

View File

@@ -0,0 +1,29 @@
-- Dori'thur smart ai
SET @ENTRY := 152000;
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` = @ENTRY;
DELETE FROM `smart_scripts` WHERE `source_type` = 0 AND `entryOrGuid` = @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`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `action_param7`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`, `Difficulties`) VALUES
(@ENTRY, 0, 0, 0, 19, 0, 100, 0, 53847, 0, 0, 0, 0, 80, 15200000, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On player accepted quest On Whispered Winds (53847) - Self: Start timed action list id #Dori\'thur #0 (15200000) (update out of combat)', '');
-- Timed list 15200000 smart ai
SET @ENTRY := 15200000;
DELETE FROM `smart_scripts` WHERE `source_type` = 9 AND `entryOrGuid` = @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`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `action_param7`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`, `Difficulties`) VALUES
(@ENTRY, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 149, 8, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'After 0 seconds - Self: Become personal clone for Last action invoker for 0 seconds (manual despawn)', ''),
(@ENTRY, 9, 1, 0, 0, 0, 100, 0, 2000, 2000, 0, 0, 0, 53, 0, 15200000, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 2 seconds - Self: Start path #15200000, walk, do not repeat, Passive', ''),
(@ENTRY, 9, 2, 0, 0, 0, 100, 0, 20000, 20000, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 20 seconds - Self: Despawn instantly', '');
-- Path for Dorithur
SET @ENTRY := 152000;
SET @PATHOFFSET := 0;
SET @PATH := @ENTRY * 100 + @PATHOFFSET;
DELETE FROM `waypoint_path` WHERE `PathId`= @PATH;
INSERT INTO `waypoint_path` (`PathId`, `MoveType`, `Flags`, `Velocity`, `Comment`) VALUES
(@PATH, 0, 0x0, NULL, 'Dori''thur - Scripted Path');
DELETE FROM `waypoint_path_node` WHERE `PathId`= @PATH;
INSERT INTO `waypoint_path_node` (`PathId`, `NodeId`, `PositionX`, `PositionY`, `PositionZ`, `Orientation`, `Delay`) VALUES
(@PATH, 0, 1011.7518, -532.82117, 17.748726, NULL, 0),
(@PATH, 1, 1001.0643, -528.4427, 20.407505, NULL, 0),
(@PATH, 2, 988.2969, -523.7031, 27.573282, NULL, 0),
(@PATH, 3, 943.97186, -507.2486, 64.51297, NULL, 0);

View File

@@ -0,0 +1,269 @@
-- Path for Darkmoon Faire Mystic Mage
SET @MOVERGUID := 314353;
SET @ENTRY := 54334;
SET @PATHOFFSET := 0;
SET @PATH := @ENTRY * 100 + @PATHOFFSET;
DELETE FROM `waypoint_path` WHERE `PathId`= @PATH;
INSERT INTO `waypoint_path` (`PathId`, `MoveType`, `Flags`, `Velocity`, `Comment`) VALUES
(@PATH, 0, 0x0, NULL, 'Darkmoon Faire Mystic Mage - Cosmetic Path');
DELETE FROM `waypoint_path_node` WHERE `PathId`= @PATH;
INSERT INTO `waypoint_path_node` (`PathId`, `NodeId`, `PositionX`, `PositionY`, `PositionZ`, `Orientation`, `Delay`) VALUES
(@PATH, 0, -8719.774, 802.79517, 97.47743, NULL, 0),
(@PATH, 1, -8718.497, 795.90454, 97.214096, NULL, 0),
(@PATH, 2, -8722.663, 785.625, 97.57916, NULL, 0),
(@PATH, 3, -8728.694, 778.07294, 97.81004, NULL, 0),
(@PATH, 4, -8733.151, 768.6302, 98.0085, NULL, 0),
(@PATH, 5, -8732.594, 761.50867, 98.11391, NULL, 0),
(@PATH, 6, -8725.719, 749.783, 98.21408, NULL, 0),
(@PATH, 7, -8719.364, 742.0417, 97.85816, NULL, 0),
(@PATH, 8, -8716.681, 736.0955, 97.81734, NULL, 0),
(@PATH, 9, -8722.304, 727.9705, 99.95421, NULL, 0),
(@PATH, 10, -8730.734, 721.96356, 101.73567, NULL, 0),
(@PATH, 11, -8738.768, 716.10767, 100.08177, NULL, 0),
(@PATH, 12, -8746.248, 714.19794, 98.237915, NULL, 0),
(@PATH, 13, -8752.96, 720.8889, 98.186455, NULL, 0),
(@PATH, 14, -8758.45, 730.23267, 98.63279, NULL, 0),
(@PATH, 15, -8764.832, 736.5869, 99.110054, NULL, 0),
(@PATH, 16, -8775.9795, 741.684, 99.52734, NULL, 0),
(@PATH, 17, -8792.481, 747.42365, 97.95969, NULL, 0),
(@PATH, 18, -8806.87, 743.2205, 97.71975, NULL, 0),
(@PATH, 19, -8828.545, 733.79517, 98.243355, NULL, 0),
(@PATH, 20, -8839.518, 726.191, 97.68563, NULL, 0),
(@PATH, 21, -8848.183, 729.4097, 98.71321, NULL, 0),
(@PATH, 22, -8854.837, 739.1302, 100.78014, NULL, 0),
(@PATH, 23, -8860.052, 747.90454, 100.05014, NULL, 0),
(@PATH, 24, -8867.628, 756.9747, 97.57906, NULL, 0),
(@PATH, 25, -8871.997, 759.6632, 96.854645, NULL, 0),
(@PATH, 26, -8877.863, 757.3802, 96.47247, NULL, 0),
(@PATH, 27, -8883.661, 758.3125, 95.523094, NULL, 0),
(@PATH, 28, -8889.033, 762.55206, 93.928925, NULL, 0),
(@PATH, 29, -8893.395, 768.5434, 92.16087, NULL, 0),
(@PATH, 30, -8899.018, 776.2917, 90.267105, NULL, 0),
(@PATH, 31, -8905.788, 784.11115, 88.55657, NULL, 0),
(@PATH, 32, -8909.614, 789.10767, 87.66653, NULL, 0),
(@PATH, 33, -8915.901, 787.1007, 87.34531, NULL, 0),
(@PATH, 34, -8920.156, 783.51215, 87.44876, NULL, 0),
(@PATH, 35, -8926.469, 778.6042, 87.588005, NULL, 0),
(@PATH, 36, -8933.161, 775.2691, 88.82934, NULL, 0),
(@PATH, 37, -8938.908, 774.26044, 89.49738, NULL, 0),
(@PATH, 38, -8946.946, 771.1823, 91.06405, NULL, 0),
(@PATH, 39, -8954.947, 770.8701, 92.9094, NULL, 0),
(@PATH, 40, -8962.009, 772.1268, 94.43578, NULL, 0),
(@PATH, 41, -8972.357, 777.54517, 96.47718, NULL, 0),
(@PATH, 42, -8980.77, 786.6024, 98.84705, NULL, 0),
(@PATH, 43, -8983.908, 790.875, 99.81322, NULL, 0),
(@PATH, 44, -8986.252, 795.28906, 101.12416, NULL, 0),
(@PATH, 45, -8989.761, 802.86285, 102.98389, NULL, 0),
(@PATH, 46, -8992.529, 810.7049, 103.81305, NULL, 0),
(@PATH, 47, -8994.774, 818.7292, 104.40303, NULL, 0),
(@PATH, 48, -8997.4, 825.2168, 105.22429, NULL, 0),
(@PATH, 49, -8998.149, 827.0799, 105.37602, NULL, 0),
(@PATH, 50, -8998.873, 828.9453, 105.52703, NULL, 0),
(@PATH, 51, -8998.959, 829.167, 105.56283, NULL, 0),
(@PATH, 52, -8999.213, 832.01953, 105.876076, NULL, 0),
(@PATH, 53, -8999.207, 832.27954, 105.87296, NULL, 0),
(@PATH, 54, -8999.622, 835.01215, 105.8968, NULL, 0),
(@PATH, 55, -8993.2, 836.9167, 105.77137, NULL, 0),
(@PATH, 56, -8988.431, 837.7708, 105.86601, NULL, 0),
(@PATH, 57, -8983.353, 842.77606, 105.77137, NULL, 0),
(@PATH, 58, -8980.247, 847.23956, 105.748146, NULL, 0),
(@PATH, 59, -8976.158, 853.79865, 105.85513, NULL, 0),
(@PATH, 60, -8975.359, 859.52954, 106.33237, NULL, 0),
(@PATH, 61, -8975.276, 867.4149, 106.85978, NULL, 0),
(@PATH, 62, -8976.302, 876.7778, 106.66535, NULL, 0),
(@PATH, 63, -8985.123, 890.54865, 105.79091, NULL, 0),
(@PATH, 64, -8993.444, 895.5399, 105.5973, NULL, 0),
(@PATH, 65, -9001.474, 900.67365, 105.98782, NULL, 0),
(@PATH, 66, -9013.052, 915.8542, 106.859116, NULL, 0),
(@PATH, 67, -9014.349, 924.98267, 107.86649, NULL, 0),
(@PATH, 68, -9013.734, 933.8472, 108.398315, NULL, 0),
(@PATH, 69, -9012.716, 937.36456, 108.67495, NULL, 0),
(@PATH, 70, -9009.342, 945.56946, 109.29364, NULL, 0),
(@PATH, 71, -9006.333, 952.7083, 110.30128, NULL, 0),
(@PATH, 72, -9000.957, 957.0903, 112.02603, NULL, 0),
(@PATH, 73, -8995.988, 958.9653, 113.26961, NULL, 0),
(@PATH, 74, -8985.228, 960.0868, 115.80413, NULL, 0),
(@PATH, 75, -8975.42, 959.6424, 116.95566, NULL, 0),
(@PATH, 76, -8970.716, 958.84204, 117.66588, NULL, 0),
(@PATH, 77, -8955.766, 956.4983, 117.74338, NULL, 0),
(@PATH, 78, -8946.333, 952.23615, 117.2276, NULL, 0),
(@PATH, 79, -8932.582, 949.7066, 117.306435, NULL, 0),
(@PATH, 80, -8917.528, 948.4948, 117.4852, NULL, 0),
(@PATH, 81, -8912.224, 940.98615, 117.19875, NULL, 0),
(@PATH, 82, -8908.757, 934.9705, 116.69887, NULL, 0),
(@PATH, 83, -8903.904, 927.38574, 115.19058, NULL, 0),
(@PATH, 84, -8897.893, 917.9983, 112.38008, NULL, 0),
(@PATH, 85, -8894.653, 912.4653, 110.82919, NULL, 0),
(@PATH, 86, -8890.726, 901.8559, 107.4559, NULL, 0),
(@PATH, 87, -8889.382, 893.19965, 104.66232, NULL, 0),
(@PATH, 88, -8892.596, 879.59375, 100.53962, NULL, 0),
(@PATH, 89, -8899.353, 864.8073, 96.51212, NULL, 0),
(@PATH, 90, -8904.442, 853.15625, 96.21318, NULL, 0),
(@PATH, 91, -8907.685, 846.4549, 96.11577, NULL, 0),
(@PATH, 92, -8904.738, 838.65454, 95.02879, NULL, 0),
(@PATH, 93, -8898.981, 825.2535, 92.45025, NULL, 0),
(@PATH, 94, -8901.714, 813.6632, 89.05249, NULL, 0),
(@PATH, 95, -8900.252, 804.34204, 87.89269, NULL, 0),
(@PATH, 96, -8902.606, 797.84375, 87.34943, NULL, 0),
(@PATH, 97, -8906.667, 792.75, 87.53647, NULL, 0),
(@PATH, 98, -8904.634, 786.2743, 88.3625, NULL, 0),
(@PATH, 99, -8901.667, 782.4722, 89.16582, NULL, 0),
(@PATH, 100, -8897.556, 778.7674, 90.0926, NULL, 0),
(@PATH, 101, -8893.022, 772.7518, 91.43268, NULL, 0),
(@PATH, 102, -8888.06, 764.80554, 93.63571, NULL, 0),
(@PATH, 103, -8883.665, 759.5347, 95.25863, NULL, 0),
(@PATH, 104, -8880.861, 756.6875, 96.15961, NULL, 0),
(@PATH, 105, -8876.484, 757.36115, 96.60792, NULL, 0),
(@PATH, 106, -8870.868, 760.5573, 96.79639, NULL, 0),
(@PATH, 107, -8865.929, 756.06946, 97.920044, NULL, 0),
(@PATH, 108, -8861.622, 751.2882, 99.40069, NULL, 0),
(@PATH, 109, -8856.821, 742.0174, 100.73092, NULL, 0),
(@PATH, 110, -8853.554, 734.9132, 100.3797, NULL, 0),
(@PATH, 111, -8850.502, 729.79865, 98.99333, NULL, 0),
(@PATH, 112, -8846.274, 722.9132, 97.42926, NULL, 0),
(@PATH, 113, -8841.038, 714.01044, 97.65904, NULL, 0),
(@PATH, 114, -8835.263, 702.1215, 97.628784, NULL, 0),
(@PATH, 115, -8827.558, 683.9618, 97.18829, NULL, 0),
(@PATH, 116, -8824.325, 678.3125, 97.66692, NULL, 0),
(@PATH, 117, -8819.3545, 679.4705, 97.929436, NULL, 0),
(@PATH, 118, -8806.513, 684.2934, 100.510826, NULL, 0),
(@PATH, 119, -8794.441, 682.9705, 101.56852, NULL, 0),
(@PATH, 120, -8788.476, 681.1649, 102.246544, NULL, 0),
(@PATH, 121, -8781.397, 675.8316, 103.01643, NULL, 0),
(@PATH, 122, -8775.5625, 669.0625, 103.32521, NULL, 0),
(@PATH, 123, -8768.098, 659.06946, 103.76924, NULL, 0),
(@PATH, 124, -8761.507, 647.36633, 103.918335, NULL, 0),
(@PATH, 125, -8758.833, 638.4809, 103.40195, NULL, 0),
(@PATH, 126, -8758.619, 628.48047, 102.22868, NULL, 0),
(@PATH, 127, -8764.109, 615.7257, 98.51982, NULL, 0),
(@PATH, 128, -8769.306, 609.7743, 97.447426, NULL, 0),
(@PATH, 129, -8766.63, 604.8403, 97.0215, NULL, 0),
(@PATH, 130, -8755.308, 593.74304, 97.30838, NULL, 0),
(@PATH, 131, -8743.567, 581.59375, 97.526764, NULL, 0),
(@PATH, 132, -8738.884, 575.7899, 97.55916, NULL, 0),
(@PATH, 133, -8741.701, 569.5643, 97.42569, NULL, 0),
(@PATH, 134, -8745.554, 563.4722, 97.450714, NULL, 0),
(@PATH, 135, -8744.415, 555.00696, 98.37792, NULL, 0),
(@PATH, 136, -8737.558, 547.17017, 100.80291, NULL, 0),
(@PATH, 137, -8727.223, 535.92365, 100.73588, NULL, 0),
(@PATH, 138, -8718.007, 524.7708, 98.26837, NULL, 0),
(@PATH, 139, -8715.286, 519.1719, 97.121956, NULL, 0),
(@PATH, 140, -8719.566, 515.54865, 96.77778, NULL, 0),
(@PATH, 141, -8711.601, 498.01215, 95.69655, NULL, 0),
(@PATH, 142, -8703.52, 489.3212, 95.39444, NULL, 0),
(@PATH, 143, -8695.45, 477.49652, 95.38501, NULL, 0),
(@PATH, 144, -8698.224, 470.37326, 95.63808, NULL, 0),
(@PATH, 145, -8703.306, 465.34723, 96.25411, NULL, 0),
(@PATH, 146, -8711.466, 457.44098, 97.07352, NULL, 0),
(@PATH, 147, -8716.997, 449.25, 97.225716, NULL, 0),
(@PATH, 148, -8720.703, 435.45834, 97.685196, NULL, 0),
(@PATH, 149, -8722.752, 422.56424, 97.97319, NULL, 0),
(@PATH, 150, -8728.136, 411.32986, 97.73159, NULL, 0),
(@PATH, 151, -8737.103, 403.81076, 97.93082, NULL, 0),
(@PATH, 152, -8745.441, 396.7691, 100.17637, NULL, 0),
(@PATH, 153, -8751.364, 392.16647, 101.084274, NULL, 0),
(@PATH, 154, -8753.676, 384.0486, 101.084274, NULL, 0),
(@PATH, 155, -8756.936, 379.3941, 101.084274, NULL, 0),
(@PATH, 156, -8762.0625, 375.42188, 100.841034, NULL, 0),
(@PATH, 157, -8765.304, 366.14932, 100.85254, NULL, 0),
(@PATH, 158, -8759.279, 357.25, 100.61345, NULL, 0),
(@PATH, 159, -8745.634, 350.74478, 100.50663, NULL, 0),
(@PATH, 160, -8737.958, 357.64932, 101.581696, NULL, 0),
(@PATH, 161, -8737.439, 367.48438, 100.882576, NULL, 0),
(@PATH, 162, -8740.274, 372.92188, 100.84024, NULL, 0),
(@PATH, 163, -8745.683, 380.00522, 101.08427, NULL, 0),
(@PATH, 164, -8749.151, 385.5816, 101.084274, NULL, 0),
(@PATH, 165, -8750.317, 391.01425, 101.08427, NULL, 0),
(@PATH, 166, -8744.252, 395.84375, 100.072815, NULL, 0),
(@PATH, 167, -8736.243, 401.5712, 97.931694, NULL, 0),
(@PATH, 168, -8723.375, 406.98785, 97.81342, NULL, 0),
(@PATH, 169, -8710.075, 406.033, 98.88298, NULL, 0),
(@PATH, 170, -8700.545, 401.75522, 101.11141, NULL, 0),
(@PATH, 171, -8690.56, 396.92883, 102.03673, NULL, 0),
(@PATH, 172, -8679.849, 398.6059, 102.920456, NULL, 0),
(@PATH, 173, -8665.513, 409.4479, 103.30877, NULL, 0),
(@PATH, 174, -8652.986, 421.9271, 102.08664, NULL, 0),
(@PATH, 175, -8643.736, 432.9757, 101.37027, NULL, 0),
(@PATH, 176, -8633.703, 447.71875, 102.479034, NULL, 0),
(@PATH, 177, -8634.7295, 459.7205, 102.309006, NULL, 0),
(@PATH, 178, -8637.982, 467.0712, 102.28828, NULL, 0),
(@PATH, 179, -8643.801, 477.17014, 102.587906, NULL, 0),
(@PATH, 180, -8639.724, 482.8507, 102.589325, NULL, 0),
(@PATH, 181, -8626.359, 493.95312, 102.69009, NULL, 0),
(@PATH, 182, -8611.931, 504.4705, 103.33815, NULL, 0),
(@PATH, 183, -8610.895, 509.03647, 103.68855, NULL, 0),
(@PATH, 184, -8611.542, 513.88715, 103.56824, NULL, 0),
(@PATH, 185, -8606.306, 520.44794, 105.676994, NULL, 0),
(@PATH, 186, -8593.95, 531.1389, 105.82333, NULL, 0),
(@PATH, 187, -8584.033, 538.99304, 103.00553, NULL, 0),
(@PATH, 188, -8580.118, 544.4393, 102.10439, NULL, 0),
(@PATH, 189, -8584.045, 556.3368, 101.96088, NULL, 0),
(@PATH, 190, -8588.005, 572.9097, 102.88371, NULL, 0),
(@PATH, 191, -8583.731, 589.8733, 103.67403, NULL, 0),
(@PATH, 192, -8573.132, 607.17365, 103.03934, NULL, 0),
(@PATH, 193, -8566.258, 612.9922, 102.669304, NULL, 0),
(@PATH, 194, -8555.141, 619.4566, 102.03815, NULL, 0),
(@PATH, 195, -8538.317, 632.4983, 100.56155, NULL, 0),
(@PATH, 196, -8525.513, 639.24133, 100.03801, NULL, 0),
(@PATH, 197, -8513.207, 650.8299, 100.51783, NULL, 0),
(@PATH, 198, -8513.011, 657.7656, 101.18127, NULL, 0),
(@PATH, 199, -8522.058, 670.2552, 102.90278, NULL, 0),
(@PATH, 200, -8529.732, 681.4167, 99.86046, NULL, 0),
(@PATH, 201, -8534, 687.55206, 97.702705, NULL, 0),
(@PATH, 202, -8542.149, 686.9028, 97.726456, NULL, 0),
(@PATH, 203, -8551.475, 681.0664, 97.341095, NULL, 0),
(@PATH, 204, -8561.061, 674.9809, 97.04618, NULL, 0),
(@PATH, 205, -8566.429, 679.8108, 97.026855, NULL, 0),
(@PATH, 206, -8578.413, 694.36456, 97.05377, NULL, 0),
(@PATH, 207, -8589.87, 708.4601, 96.920074, NULL, 0),
(@PATH, 208, -8591.8545, 715.375, 96.836044, NULL, 0),
(@PATH, 209, -8588.828, 726.0573, 96.789696, NULL, 0),
(@PATH, 210, -8580.585, 735.49304, 96.850204, NULL, 0),
(@PATH, 211, -8571.083, 747.8924, 96.932785, NULL, 0),
(@PATH, 212, -8576.785, 756.5382, 96.7876, NULL, 0),
(@PATH, 213, -8590.031, 758.4028, 96.87665, NULL, 0),
(@PATH, 214, -8602.107, 758.94965, 96.92761, NULL, 0),
(@PATH, 215, -8609.919, 760.0278, 97.00215, NULL, 0),
(@PATH, 216, -8620.877, 751.79865, 96.96823, NULL, 0),
(@PATH, 217, -8634.45, 740.625, 96.974525, NULL, 0),
(@PATH, 218, -8642.554, 739.0174, 96.81596, NULL, 0),
(@PATH, 219, -8652.481, 747.8594, 96.84505, NULL, 0),
(@PATH, 220, -8661.841, 760.033, 97.06029, NULL, 0),
(@PATH, 221, -8655.819, 771.684, 96.7471, NULL, 0),
(@PATH, 222, -8642.431, 780.9375, 97.02266, NULL, 0),
(@PATH, 223, -8634.226, 786.73267, 97.05513, NULL, 0),
(@PATH, 224, -8634.061, 797.8333, 96.88832, NULL, 0),
(@PATH, 225, -8633.611, 814.5, 96.79932, NULL, 0),
(@PATH, 226, -8627.509, 825.25696, 96.749954, NULL, 0),
(@PATH, 227, -8608.453, 842.2448, 96.86923, NULL, 0),
(@PATH, 228, -8590.877, 855.5035, 97.03652, NULL, 0),
(@PATH, 229, -8574.518, 862.74304, 98.938545, NULL, 0),
(@PATH, 230, -8571.17, 878.29865, 99.33418, NULL, 0),
(@PATH, 231, -8584.308, 886.2899, 97.31538, NULL, 0),
(@PATH, 232, -8597.052, 896.86285, 97.80273, NULL, 0),
(@PATH, 233, -8608.7295, 907.2083, 98.30627, NULL, 0),
(@PATH, 234, -8621.558, 914.8472, 99.23853, NULL, 0),
(@PATH, 235, -8628.078, 929.8333, 99.30535, NULL, 0),
(@PATH, 236, -8621.042, 943.8333, 99.52959, NULL, 0),
(@PATH, 237, -8607.488, 956.61115, 99.55832, NULL, 0),
(@PATH, 238, -8591.363, 968.48267, 98.21163, NULL, 0),
(@PATH, 239, -8584.939, 979.84894, 97.64515, NULL, 0),
(@PATH, 240, -8595.497, 981.8264, 97.92367, NULL, 0),
(@PATH, 241, -8606.278, 973.46704, 98.96188, NULL, 0),
(@PATH, 242, -8620.134, 957.98956, 99.47615, NULL, 0),
(@PATH, 243, -8632.904, 946.86285, 98.8155, NULL, 0),
(@PATH, 244, -8633.439, 935.38367, 98.60818, NULL, 0),
(@PATH, 245, -8637.335, 923.9653, 98.11321, NULL, 0),
(@PATH, 246, -8653.118, 905.41144, 97.93225, NULL, 0),
(@PATH, 247, -8666.764, 891.533, 97.55361, NULL, 0),
(@PATH, 248, -8680.882, 878.4792, 97.12232, NULL, 0),
(@PATH, 249, -8707.511, 860.36115, 97.3031, NULL, 0),
(@PATH, 250, -8723.139, 842.69446, 96.192535, NULL, 0),
(@PATH, 251, -8727.54, 832.67365, 96.25582, NULL, 0),
(@PATH, 252, -8727.3125, 815.9149, 97.250824, NULL, 0);
UPDATE `creature` SET `position_x`=-8719.774, `position_y`=802.79517, `position_z`=97.47743, `orientation`=0, `wander_distance`=0, `MovementType`=2 WHERE `guid`=@MOVERGUID;
DELETE FROM `creature_addon` WHERE `guid`=@MOVERGUID;
INSERT INTO `creature_addon` (`guid`, `PathId`, `SheathState`) VALUES
(@MOVERGUID, @PATH, 1);

View File

@@ -0,0 +1,3 @@
ALTER TABLE `areatrigger_create_properties_orbit` CHANGE `StartDelay` `ExtraTimeForBlending` INT NOT NULL DEFAULT 0;
ALTER TABLE `creature_template_difficulty` ADD `TypeFlags3` INT UNSIGNED NOT NULL DEFAULT 0 AFTER `TypeFlags2`;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long