mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-22 18:15:31 +01:00
TDB 927.22111 - 2022/11/20
This commit is contained in:
@@ -1,10 +0,0 @@
|
||||
--
|
||||
SET @PERMISSION := 883;
|
||||
|
||||
DELETE FROM `rbac_linked_permissions` WHERE `linkedId`=@PERMISSION;
|
||||
DELETE FROM `rbac_permissions` WHERE `id`=@PERMISSION;
|
||||
INSERT INTO `rbac_permissions` (`id`, `name`) VALUES
|
||||
(@PERMISSION, 'Command: quest objective complete');
|
||||
|
||||
INSERT INTO `rbac_linked_permissions` (`id`, `linkedId`) VALUES
|
||||
(196, @PERMISSION);
|
||||
@@ -1,7 +0,0 @@
|
||||
DELETE FROM `build_info` WHERE `build`=45338;
|
||||
INSERT INTO `build_info` (`build`,`majorVersion`,`minorVersion`,`bugfixVersion`,`hotfixVersion`,`winAuthSeed`,`win64AuthSeed`,`mac64AuthSeed`,`winChecksumSeed`,`macChecksumSeed`) VALUES
|
||||
(45338,9,2,7,NULL,NULL,'5CE2094A41B61EDA9DF56378BC3B1DE0',NULL,NULL,NULL);
|
||||
|
||||
UPDATE `realmlist` SET `gamebuild`=45338 WHERE `gamebuild` IN(45114, 45161);
|
||||
|
||||
ALTER TABLE `realmlist` CHANGE `gamebuild` `gamebuild` int unsigned NOT NULL DEFAULT '45338';
|
||||
@@ -1,7 +0,0 @@
|
||||
DELETE FROM `build_info` WHERE `build`=45745;
|
||||
INSERT INTO `build_info` (`build`,`majorVersion`,`minorVersion`,`bugfixVersion`,`hotfixVersion`,`winAuthSeed`,`win64AuthSeed`,`mac64AuthSeed`,`winChecksumSeed`,`macChecksumSeed`) VALUES
|
||||
(45745,9,2,7,NULL,NULL,'0F6DC90161694D765A595A3AF603166B',NULL,NULL,NULL);
|
||||
|
||||
UPDATE `realmlist` SET `gamebuild`=45745 WHERE `gamebuild`=45338;
|
||||
|
||||
ALTER TABLE `realmlist` CHANGE `gamebuild` `gamebuild` int unsigned NOT NULL DEFAULT '45745';
|
||||
@@ -1,3 +0,0 @@
|
||||
DELETE FROM `rbac_account_permissions` WHERE `permissionId`=416;
|
||||
DELETE FROM `rbac_linked_permissions` WHERE `linkedId`=416;
|
||||
DELETE FROM `rbac_permissions` WHERE `id`=416;
|
||||
@@ -1,3 +1,3 @@
|
||||
-- TDB 927.22082 auth
|
||||
-- TDB 927.22111 auth
|
||||
UPDATE `updates` SET `state`='ARCHIVED',`speed`=0;
|
||||
REPLACE INTO `updates_include` (`path`, `state`) VALUES ('$/sql/old/9.x/auth', 'ARCHIVED');
|
||||
@@ -1 +0,0 @@
|
||||
ALTER TABLE `character_action` MODIFY `action` bigint unsigned NOT NULL DEFAULT 0;
|
||||
@@ -1,30 +0,0 @@
|
||||
--
|
||||
-- Table structure for table `character_instance_lock`
|
||||
--
|
||||
DROP TABLE IF EXISTS `character_instance_lock`;
|
||||
CREATE TABLE `character_instance_lock` (
|
||||
`guid` bigint unsigned NOT NULL,
|
||||
`mapId` int unsigned NOT NULL,
|
||||
`lockId` int unsigned NOT NULL,
|
||||
`instanceId` int unsigned DEFAULT NULL,
|
||||
`difficulty` tinyint unsigned DEFAULT NULL,
|
||||
`data` text COLLATE utf8mb4_unicode_ci,
|
||||
`completedEncountersMask` int unsigned DEFAULT NULL,
|
||||
`entranceWorldSafeLocId` int unsigned DEFAULT NULL,
|
||||
`expiryTime` bigint unsigned DEFAULT NULL,
|
||||
`extended` tinyint unsigned DEFAULT NULL,
|
||||
PRIMARY KEY (`guid`,`mapId`,`lockId`),
|
||||
UNIQUE KEY `uk_character_instanceId` (`guid`,`instanceId`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
--
|
||||
-- Table structure for table `instance`
|
||||
--
|
||||
DROP TABLE IF EXISTS `instance`;
|
||||
CREATE TABLE `instance` (
|
||||
`instanceId` int unsigned NOT NULL,
|
||||
`data` text COLLATE utf8mb4_unicode_ci,
|
||||
`completedEncountersMask` int unsigned DEFAULT NULL,
|
||||
`entranceWorldSafeLocId` int unsigned DEFAULT NULL,
|
||||
PRIMARY KEY (`instanceId`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
@@ -1,3 +0,0 @@
|
||||
DROP TABLE IF EXISTS `character_instance`;
|
||||
DROP TABLE IF EXISTS `group_instance`;
|
||||
DROP TABLE IF EXISTS `instance_reset`;
|
||||
@@ -1 +0,0 @@
|
||||
DROP TABLE IF EXISTS `instance_scenario_progress`;
|
||||
@@ -1,3 +1,3 @@
|
||||
-- TDB 927.22082 characters
|
||||
-- TDB 927.22111 characters
|
||||
UPDATE `updates` SET `state`='ARCHIVED',`speed`=0;
|
||||
REPLACE INTO `updates_include` (`path`, `state`) VALUES ('$/sql/old/9.x/characters', 'ARCHIVED');
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,44 +0,0 @@
|
||||
--
|
||||
-- Table structure for table `garr_talent_tree`
|
||||
--
|
||||
DROP TABLE IF EXISTS `garr_talent_tree`;
|
||||
CREATE TABLE `garr_talent_tree` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Name` text,
|
||||
`GarrTypeID` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`ClassID` int(11) NOT NULL DEFAULT '0',
|
||||
`MaxTiers` tinyint(4) NOT NULL DEFAULT '0',
|
||||
`UiOrder` tinyint(4) NOT NULL DEFAULT '0',
|
||||
`Flags` int(11) NOT NULL DEFAULT '0',
|
||||
`UiTextureKitID` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`GarrTalentTreeType` int(11) NOT NULL DEFAULT '0',
|
||||
`PlayerConditionID` int(11) NOT NULL DEFAULT '0',
|
||||
`FeatureTypeIndex` tinyint(4) NOT NULL DEFAULT '0',
|
||||
`FeatureSubtypeIndex` tinyint(4) NOT NULL DEFAULT '0',
|
||||
`CurrencyID` int(11) NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` int(11) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`,`VerifiedBuild`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
--
|
||||
-- Table structure for table `garr_talent_tree_locale`
|
||||
--
|
||||
DROP TABLE IF EXISTS `garr_talent_tree_locale`;
|
||||
CREATE TABLE `garr_talent_tree_locale` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`locale` varchar(4) NOT NULL,
|
||||
`Name_lang` text,
|
||||
`VerifiedBuild` int(11) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
|
||||
PARTITION BY LIST COLUMNS(locale)
|
||||
(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB,
|
||||
PARTITION esES VALUES IN ('esES') ENGINE = InnoDB,
|
||||
PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB,
|
||||
PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB,
|
||||
PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB,
|
||||
PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB,
|
||||
PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB,
|
||||
PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB,
|
||||
PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB,
|
||||
PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB);
|
||||
@@ -1,3 +1,3 @@
|
||||
-- TDB 927.22082 hotfixes
|
||||
-- TDB 927.22111 hotfixes
|
||||
UPDATE `updates` SET `state`='ARCHIVED',`speed`=0;
|
||||
REPLACE INTO `updates_include` (`path`, `state`) VALUES ('$/sql/old/9.x/hotfixes', 'ARCHIVED');
|
||||
@@ -1,30 +0,0 @@
|
||||
UPDATE `creature_template` SET `scriptname` = 'npc_baros_alexston' WHERE `entry` = 79243;
|
||||
|
||||
UPDATE `gossip_menu_option` SET `OptionType`=1, `OptionNpcFlag`=1 WHERE `MenuID`=16871 AND `OptionID`=0;
|
||||
|
||||
-- TerrainSwap
|
||||
DELETE FROM `terrain_swap_defaults` WHERE (`MapId` = 1116 AND `TerrainSwapMap` = 1158);
|
||||
INSERT INTO `terrain_swap_defaults` (`MapId`, `TerrainSwapMap`, `Comment`) VALUES
|
||||
(1116, 1158, 'SMV Alliance Garrison Level 1');
|
||||
|
||||
-- Condition
|
||||
DELETE FROM `conditions` WHERE (`SourceTypeOrReferenceId` = 25 AND `SourceGroup` = 0 AND `SourceEntry` = 1158) OR (`SourceTypeOrReferenceId` = 13 AND `SourceGroup` = 1 AND `SourceEntry` = 160938) OR (`SourceTypeOrReferenceId`=15 AND `SourceGroup`=16871 AND `SourceEntry`=0 AND `SourceId`=0);
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `Comment`) VALUES
|
||||
(25, 0, 1158, 0, 0, 47, 0, 36797, 66, 0, 0, 'TerrainSwap to 1158 if Quest: 36797 is complete/rewarded'),
|
||||
(13, 1, 160938, 0, 0, 31, 0, 3, 79655, 0, 0, 'Spell "Despawn All Summons (Garrison Intro Only) can hit Vindicator Maraad'),
|
||||
(13, 1, 160938, 0, 1, 31, 0, 3, 79635, 0, 0, 'Spell "Despawn All Summons (Garrison Intro Only) can hit Prophet Velen'),
|
||||
(13, 1, 160938, 0, 2, 31, 0, 3, 79656, 0, 0, 'Spell "Despawn All Summons (Garrison Intro Only) can hit Yrel'),
|
||||
(15, 16871, 0, 0, 0, 47, 0, 34586, 8, 0, 0, 'Show gossip option if player has Establish Your Garrison (34586) in state incomplete');
|
||||
|
||||
-- Hidden Tracker Quest
|
||||
DELETE FROM `quest_template` WHERE `ID` = 36797;
|
||||
INSERT INTO `quest_template` (`ID`, `QuestType`, `QuestPackageID`, `ContentTuningID`, `QuestSortID`, `QuestInfoID`, `SuggestedGroupNum`, `RewardNextQuest`, `RewardXPDifficulty`, `RewardXPMultiplier`, `RewardMoneyDifficulty`, `RewardMoneyMultiplier`, `RewardBonusMoney`, `RewardDisplaySpell1`, `RewardDisplaySpell2`, `RewardDisplaySpell3`, `RewardSpell`, `RewardHonor`, `RewardKillHonor`, `StartItem`, `RewardArtifactXPDifficulty`, `RewardArtifactXPMultiplier`, `RewardArtifactCategoryID`, `Flags`, `FlagsEx`, `FlagsEx2`, `RewardItem1`, `RewardAmount1`, `RewardItem2`, `RewardAmount2`, `RewardItem3`, `RewardAmount3`, `RewardItem4`, `RewardAmount4`, `ItemDrop1`, `ItemDropQuantity1`, `ItemDrop2`, `ItemDropQuantity2`, `ItemDrop3`, `ItemDropQuantity3`, `ItemDrop4`, `ItemDropQuantity4`, `RewardChoiceItemID1`, `RewardChoiceItemQuantity1`, `RewardChoiceItemDisplayID1`, `RewardChoiceItemID2`, `RewardChoiceItemQuantity2`, `RewardChoiceItemDisplayID2`, `RewardChoiceItemID3`, `RewardChoiceItemQuantity3`, `RewardChoiceItemDisplayID3`, `RewardChoiceItemID4`, `RewardChoiceItemQuantity4`, `RewardChoiceItemDisplayID4`, `RewardChoiceItemID5`, `RewardChoiceItemQuantity5`, `RewardChoiceItemDisplayID5`, `RewardChoiceItemID6`, `RewardChoiceItemQuantity6`, `RewardChoiceItemDisplayID6`, `POIContinent`, `POIx`, `POIy`, `POIPriority`, `RewardTitle`, `RewardArenaPoints`, `RewardSkillLineID`, `RewardNumSkillUps`, `PortraitGiver`, `PortraitGiverMount`, `PortraitGiverModelSceneID`, `PortraitTurnIn`, `RewardFactionID1`, `RewardFactionValue1`, `RewardFactionOverride1`, `RewardFactionCapIn1`, `RewardFactionID2`, `RewardFactionValue2`, `RewardFactionOverride2`, `RewardFactionCapIn2`, `RewardFactionID3`, `RewardFactionValue3`, `RewardFactionOverride3`, `RewardFactionCapIn3`, `RewardFactionID4`, `RewardFactionValue4`, `RewardFactionOverride4`, `RewardFactionCapIn4`, `RewardFactionID5`, `RewardFactionValue5`, `RewardFactionOverride5`, `RewardFactionCapIn5`, `RewardFactionFlags`, `RewardCurrencyID1`, `RewardCurrencyQty1`, `RewardCurrencyID2`, `RewardCurrencyQty2`, `RewardCurrencyID3`, `RewardCurrencyQty3`, `RewardCurrencyID4`, `RewardCurrencyQty4`, `AcceptedSoundKitID`, `CompleteSoundKitID`, `AreaGroupID`, `TimeAllowed`, `AllowableRaces`, `TreasurePickerID`, `Expansion`, `ManagedWorldStateID`, `QuestSessionBonus`, `LogTitle`, `LogDescription`, `QuestDescription`, `AreaDescription`, `PortraitGiverText`, `PortraitGiverName`, `PortraitTurnInText`, `PortraitTurnInName`, `QuestCompletionLog`, `VerifiedBuild`) VALUES
|
||||
(36797, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, (0x00000400), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '[Hidden Tracker] Founded Garrison', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0);
|
||||
|
||||
DELETE FROM `spell_script_names` WHERE `spell_id`= 160938;
|
||||
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
|
||||
(160938, 'spell_despawn_all_summons_garrison_intro_only');
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` = 79243;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(79243, 0, 0, 'Let me know when you are ready to start construction, commander.', 12, 0, 100, 1, 0, 0, 81887, 5, 'Baros Alexston to Player - On Quest Accept 34586');
|
||||
File diff suppressed because one or more lines are too long
@@ -1,192 +0,0 @@
|
||||
SET @CGUID := 1051272;
|
||||
|
||||
-- Creature Spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+45;
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `PhaseGroup`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES
|
||||
(@CGUID+0, 156716, 2175, 10424, 10588, '0', 0, 0, 0, 0, 133.8541717529296875, -2389.6494140625, 87.3015594482421875, 1.669788122177124023, 7200, 0, 0, 155, 0, 0, 0, 0, 0, 45114), -- Wandering Boar (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+1, 165757, 2175, 10424, 10588, '0', 0, 0, 0, 0, 70.939239501953125, -2444.085205078125, 92.91721343994140625, 0.12396908551454544, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+2, 156716, 2175, 10424, 10588, '0', 0, 0, 0, 0, 108.3148193359375, -2397.228515625, 90.84764862060546875, 2.589593887329101562, 7200, 6, 0, 155, 0, 1, 0, 0, 0, 45114), -- Wandering Boar (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+3, 156716, 2175, 10424, 10588, '0', 0, 0, 0, 0, 125.1448440551757812, -2446.943359375, 95.5216064453125, 1.496568918228149414, 7200, 6, 0, 155, 0, 1, 0, 0, 0, 45114), -- Wandering Boar (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+4, 165757, 2175, 10424, 10588, '0', 0, 0, 0, 0, 72.189239501953125, -2443.697998046875, 92.7999725341796875, 1.067926526069641113, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+5, 156716, 2175, 10424, 10588, '0', 0, 0, 0, 0, 149.359375, -2411.12158203125, 88.23934173583984375, 5.588286876678466796, 7200, 0, 0, 155, 0, 0, 0, 0, 0, 45114), -- Wandering Boar (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+6, 156716, 2175, 10424, 10588, '0', 0, 0, 0, 0, 132.3541717529296875, -2428.291748046875, 90.7895660400390625, 4.670226097106933593, 7200, 0, 0, 155, 0, 0, 0, 0, 0, 45114), -- Wandering Boar (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+7, 165757, 2175, 10424, 10588, '0', 0, 0, 0, 0, 71.20659637451171875, -2444.270751953125, 92.95135498046875, 1.480058193206787109, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+8, 165711, 2175, 10424, 10588, '0', 0, 0, 0, 0, 150.376312255859375, -2431.200439453125, 98.82639312744140625, 4.449901580810546875, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Plains Fawn (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+9, 165757, 2175, 10424, 10588, '0', 0, 0, 0, 0, 75.5635833740234375, -2449.210205078125, 89.837158203125, 3.442314863204956054, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0) (possible waypoints or random movement)
|
||||
(@CGUID+10, 165757, 2175, 10424, 10588, '0', 0, 0, 0, 0, 71.14583587646484375, -2443.87841796875, 92.94049835205078125, 4.500075340270996093, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+11, 156716, 2175, 10424, 10588, '0', 0, 0, 0, 0, 88.31449127197265625, -2407.98974609375, 93.68480682373046875, 3.192429542541503906, 7200, 6, 0, 155, 0, 1, 0, 0, 0, 45114), -- Wandering Boar (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+12, 165757, 2175, 10424, 10588, '0', 0, 0, 0, 0, 72.18576812744140625, -2442.904541015625, 92.52027130126953125, 0.726595580577850341, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+13, 165727, 2175, 10424, 10588, '0', 0, 0, 0, 0, 154.007354736328125, -2459.154296875, 99.77579498291015625, 0.178138419985771179, 7200, 0, 0, 99, 0, 0, 0, 0, 0, 45114), -- Plains Doe (Area: -Unknown- - Difficulty: 0) (possible waypoints or random movement)
|
||||
(@CGUID+14, 165757, 2175, 10424, 10588, '0', 0, 0, 0, 0, 118.782989501953125, -2352.845458984375, 94.31085968017578125, 4.031653881072998046, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+15, 161265, 2175, 10424, 10588, '0', 0, 0, 0, 0, -93.8338775634765625, -2249.970703125, 6.827668666839599609, 0.641155540943145751, 7200, 0, 0, 45790, 0, 0, 0, 0, 0, 45114), -- Jrokgar (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+16, 165757, 2175, 10424, 10588, '0', 0, 0, 0, 0, 115.0156326293945312, -2362.63720703125, 94.59381103515625, 1.903324484825134277, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+17, 165727, 2175, 10424, 10588, '0', 0, 0, 0, 0, 152.711669921875, -2449.7939453125, 100.0215988159179687, 0.198544532060623168, 7200, 0, 0, 99, 0, 0, 0, 0, 0, 45114), -- Plains Doe (Area: -Unknown- - Difficulty: 0) (possible waypoints or random movement)
|
||||
(@CGUID+18, 165757, 2175, 10424, 10588, '0', 0, 0, 0, 0, 66.86675262451171875, -2443.7861328125, 91.92314910888671875, 1.209511399269104003, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0) (possible waypoints or random movement)
|
||||
(@CGUID+19, 156716, 2175, 10424, 10588, '0', 0, 0, 0, 0, 88.907989501953125, -2497.111083984375, 93.51092529296875, 4.725202560424804687, 7200, 0, 0, 155, 0, 0, 0, 0, 0, 45114), -- Wandering Boar (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+20, 165757, 2175, 10424, 10588, '0', 0, 0, 0, 0, 120.8506927490234375, -2358.979248046875, 94.13584136962890625, 2.982165098190307617, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+21, 156716, 2175, 10424, 10588, '0', 0, 0, 0, 0, 64.42229461669921875, -2421.48681640625, 95.63857269287109375, 3.744560718536376953, 7200, 6, 0, 155, 0, 1, 0, 0, 0, 45114), -- Wandering Boar (Area: -Unknown- - Difficulty: 0) (possible waypoints or random movement)
|
||||
(@CGUID+22, 165757, 2175, 10424, 10588, '0', 0, 0, 0, 0, 121.3819427490234375, -2359.302001953125, 94.1555023193359375, 2.982165098190307617, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+23, 165730, 2175, 10424, 10588, '0', 0, 0, 0, 0, 156.9467010498046875, -2453.823974609375, 100.0669326782226562, 0.206590697169303894, 7200, 0, 0, 149, 0, 0, 0, 0, 0, 45114), -- Plains Stag (Area: -Unknown- - Difficulty: 0) (possible waypoints or random movement)
|
||||
(@CGUID+24, 165711, 2175, 10424, 10588, '0', 0, 0, 0, 0, 156.6161651611328125, -2425.406494140625, 98.5303955078125, 4.50579833984375, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Plains Fawn (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+25, 165757, 2175, 10424, 10588, '0', 0, 0, 0, 0, 114.270843505859375, -2362.444580078125, 94.6962890625, 1.903324484825134277, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+26, 165727, 2175, 10424, 10588, '0', 0, 0, 0, 0, 148.5320892333984375, -2458.330810546875, 99.635833740234375, 0.157513976097106933, 7200, 0, 0, 99, 0, 0, 0, 0, 0, 45114), -- Plains Doe (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+27, 165757, 2175, 10424, 10588, '0', 0, 0, 0, 0, 114.6961822509765625, -2362.2275390625, 94.62363433837890625, 1.903324484825134277, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+28, 156716, 2175, 10424, 10588, '0', 0, 0, 0, 0, 91.423614501953125, -2496.86279296875, 94.4752044677734375, 4.249760627746582031, 7200, 0, 0, 155, 0, 0, 0, 0, 0, 45114), -- Wandering Boar (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+29, 165757, 2175, 10424, 10588, '0', 0, 0, 0, 0, 121.3611068725585937, -2358.892333984375, 94.15444183349609375, 2.982165098190307617, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+30, 165757, 2175, 10424, 10588, '0', 0, 0, 0, 0, 66.82344818115234375, -2443.90087890625, 91.91361236572265625, 1.209511399269104003, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0) (possible waypoints or random movement)
|
||||
(@CGUID+31, 165711, 2175, 10424, 10588, '0', 0, 0, 0, 0, 152.1183013916015625, -2454.75146484375, 99.95864105224609375, 0.196629285812377929, 7200, 0, 0, 5, 0, 0, 0, 0, 0, 45114), -- Plains Fawn (Area: -Unknown- - Difficulty: 0) (possible waypoints or random movement)
|
||||
(@CGUID+32, 156716, 2175, 10424, 10588, '0', 0, 0, 0, 0, 165.5902862548828125, -2462.382080078125, 100.6990966796875, 5.406887054443359375, 7200, 0, 0, 155, 0, 0, 0, 0, 0, 45114), -- Wandering Boar (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+33, 165727, 2175, 10424, 10588, '0', 0, 0, 0, 0, 161.329864501953125, -2420.5087890625, 97.13147735595703125, 4.283008098602294921, 7200, 0, 0, 99, 0, 0, 0, 0, 0, 45114), -- Plains Doe (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+34, 165730, 2175, 10424, 10588, '0', 0, 0, 0, 0, 156.982635498046875, -2433.319580078125, 98.7963714599609375, 1.506459712982177734, 7200, 0, 0, 149, 0, 0, 0, 0, 0, 45114), -- Plains Stag (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+35, 165757, 2175, 10424, 10588, '0', 0, 0, 0, 0, 118.416656494140625, -2352.657958984375, 94.303924560546875, 4.031653881072998046, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+36, 156716, 2175, 10424, 10588, '0', 0, 0, 0, 0, 176.9138031005859375, -2432.449462890625, 97.3933868408203125, 2.516263246536254882, 7200, 0, 0, 155, 0, 0, 0, 0, 0, 45114), -- Wandering Boar (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+37, 165757, 2175, 10424, 10588, '0', 0, 0, 0, 0, 118.2378463745117187, -2353.14404296875, 94.3211822509765625, 4.031653881072998046, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+38, 156716, 2175, 10424, 10588, '0', 0, 0, 0, 0, 149.515350341796875, -2485.336669921875, 101.8175506591796875, 1.419780969619750976, 7200, 6, 0, 155, 0, 1, 0, 0, 0, 45114), -- Wandering Boar (Area: -Unknown- - Difficulty: 0) (possible waypoints or random movement)
|
||||
(@CGUID+39, 165727, 2175, 10424, 10588, '0', 0, 0, 0, 0, 147.57049560546875, -2452.617919921875, 99.8560943603515625, 0.182826042175292968, 7200, 0, 0, 99, 0, 0, 0, 0, 0, 45114), -- Plains Doe (Area: -Unknown- - Difficulty: 0) (possible waypoints or random movement)
|
||||
(@CGUID+40, 165757, 2175, 10424, 10588, '0', 0, 0, 0, 0, 118.645843505859375, -2353.39404296875, 94.33294677734375, 4.031653881072998046, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+41, 165711, 2175, 10424, 10588, '0', 0, 0, 0, 0, 161.6871795654296875, -2429.494384765625, 98.24547576904296875, 4.820652961730957031, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Plains Fawn (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+42, 156716, 2175, 10424, 10588, '0', 0, 0, 0, 0, 116.24432373046875, -2472.654296875, 96.70088958740234375, 2.567673683166503906, 7200, 6, 0, 155, 0, 1, 0, 0, 0, 45114), -- Wandering Boar (Area: -Unknown- - Difficulty: 0) (possible waypoints or random movement)
|
||||
(@CGUID+43, 165757, 2175, 10424, 10588, '0', 0, 0, 0, 0, 120.8368072509765625, -2359.458251953125, 94.10631561279296875, 2.982165098190307617, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+44, 156716, 2175, 10424, 10588, '0', 0, 0, 0, 0, 137.5942230224609375, -2468.358642578125, 98.94635009765625, 0.426950782537460327, 7200, 6, 0, 155, 0, 1, 0, 0, 0, 45114), -- Wandering Boar (Area: -Unknown- - Difficulty: 0) (possible waypoints or random movement)
|
||||
(@CGUID+45, 6491, 2175, 10424, 10588, '0', 0, 0, 0, 0, 77.07639312744140625, -2405.088623046875, 95.26456451416015625, 3.693318128585815429, 7200, 0, 0, 15918, 0, 0, 0, 0, 0, 45114); -- Spirit Healer (Area: -Unknown- - Difficulty: 0) (Auras: 9036 - Ghost, 10848 - Shroud of Death)
|
||||
|
||||
-- Creature Addon
|
||||
DELETE FROM `creature_addon` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+45;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(@CGUID+33, 0, 0, 1, 1, 0, 0, 0, 0, 0, ''), -- Plains Doe
|
||||
(@CGUID+34, 0, 0, 1, 1, 0, 0, 0, 0, 0, ''); -- Plains Stag
|
||||
|
||||
-- Creature Formation & Waypoints
|
||||
DELETE FROM `creature_formations` WHERE `leaderGUID` = @CGUID+23;
|
||||
INSERT INTO `creature_formations`(`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`, `point_1`, `point_2`) VALUES
|
||||
(@CGUID+23, @CGUID+23, 0, 0, 515, 0, 0),
|
||||
(@CGUID+23, @CGUID+31, 4, 0, 515, 0, 0),
|
||||
(@CGUID+23, @CGUID+17, 4, 300, 515, 0, 0),
|
||||
(@CGUID+23, @CGUID+13, 4, 60, 515, 0, 0),
|
||||
(@CGUID+23, @CGUID+39, 9, 350, 515, 0, 0),
|
||||
(@CGUID+23, @CGUID+26, 9, 10, 515, 0, 0);
|
||||
|
||||
SET @PATH := @CGUID+23 * 10;
|
||||
DELETE FROM `waypoint_data` WHERE `id`= @PATH;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`) VALUES
|
||||
(@PATH, 0, 163.0604, -2452.522, 100.6053, NULL, 0, 0),
|
||||
(@PATH, 1, 163.5053, -2447.874, 100.2212, NULL, 0, 0),
|
||||
(@PATH, 2, 165.373, -2445.526, 100.1888, NULL, 0, 0),
|
||||
(@PATH, 3, 167.2662, -2443.146, 99.93058, NULL, 0, 0),
|
||||
(@PATH, 4, 169.0742, -2440.885, 99.56559, NULL, 0, 0),
|
||||
(@PATH, 5, 170.0694, -2437.797, 98.88688, NULL, 0, 0),
|
||||
(@PATH, 6, 171.4512, -2435.191, 97.94059, NULL, 0, 0),
|
||||
(@PATH, 7, 172.8613, -2432.533, 97.39526, NULL, 0, 0),
|
||||
(@PATH, 8, 174.2497, -2429.922, 97.14587, NULL, 0, 0),
|
||||
(@PATH, 9, 175.6429, -2427.27, 97.39526, NULL, 0, 0),
|
||||
(@PATH, 10, 177.0622, -2424.583, 97.34766, NULL, 0, 0),
|
||||
(@PATH, 11, 178.541, -2421.91, 96.66614, NULL, 0, 0),
|
||||
(@PATH, 12, 179.916, -2419.357, 96.27026, NULL, 0, 0),
|
||||
(@PATH, 13, 181.1976, -2416.955, 96.46655, NULL, 0, 0),
|
||||
(@PATH, 14, 181.1976, -2416.955, 96.46655, NULL, 5222, 0),
|
||||
(@PATH, 15, 169.672, -2436.905, 98.71159, NULL, 0, 1),
|
||||
(@PATH, 16, 164.9196, -2444.966, 99.99973, NULL, 0, 1),
|
||||
(@PATH, 17, 158.5221, -2452.303, 100.0255, NULL, 0, 1),
|
||||
(@PATH, 18, 151.388, -2458.885, 99.73032, NULL, 0, 1),
|
||||
(@PATH, 19, 143.9, -2464.996, 99.67295, NULL, 0, 1),
|
||||
(@PATH, 20, 136.346, -2471.161, 99.01308, NULL, 0, 1),
|
||||
(@PATH, 21, 126.8439, -2472.119, 98.58028, NULL, 0, 1),
|
||||
(@PATH, 22, 117.1313, -2473.381, 96.99386, NULL, 2780, 0),
|
||||
(@PATH, 23, 94.76286, -2462.67, 91.92911, NULL, 0, 0),
|
||||
(@PATH, 24, 94.05879, -2461.926, 91.81265, NULL, 0, 0),
|
||||
(@PATH, 25, 91.99985, -2459.75, 91.05753, NULL, 0, 0),
|
||||
(@PATH, 26, 89.95687, -2457.591, 90.30826, NULL, 0, 0),
|
||||
(@PATH, 27, 87.93568, -2455.455, 89.85977, NULL, 0, 0),
|
||||
(@PATH, 28, 85.99609, -2453.4, 89.74503, NULL, 0, 0),
|
||||
(@PATH, 29, 83.81716, -2451.103, 89.8002, NULL, 0, 0),
|
||||
(@PATH, 30, 81.74625, -2448.907, 89.68863, NULL, 0, 0),
|
||||
(@PATH, 31, 79.75195, -2446.803, 89.99503, NULL, 0, 0),
|
||||
(@PATH, 32, 78.33559, -2443.882, 90.71378, NULL, 0, 0),
|
||||
(@PATH, 33, 76.65039, -2441.424, 91.74503, NULL, 0, 0),
|
||||
(@PATH, 34, 74.94785, -2438.952, 91.9523, NULL, 0, 0),
|
||||
(@PATH, 35, 73.32158, -2436.586, 92.3367, NULL, 0, 0),
|
||||
(@PATH, 36, 71.66211, -2434.17, 92.87003, NULL, 0, 0),
|
||||
(@PATH, 37, 69.3297, -2431.92, 93.87524, NULL, 0, 0),
|
||||
(@PATH, 38, 67.38042, -2429.63, 94.4126, NULL, 0, 0),
|
||||
(@PATH, 39, 65.55664, -2427.48, 94.58858, NULL, 0, 0),
|
||||
(@PATH, 40, 63.51595, -2425.091, 95.0666, NULL, 0, 0),
|
||||
(@PATH, 41, 65.87372, -2421.512, 95.47725, NULL, 0, 0),
|
||||
(@PATH, 42, 66.10563, -2418.463, 95.81538, NULL, 0, 0),
|
||||
(@PATH, 43, 66.33622, -2415.448, 95.96358, NULL, 0, 0),
|
||||
(@PATH, 44, 71.29095, -2418.11, 95.56079, NULL, 0, 1),
|
||||
(@PATH, 45, 74.46993, -2418.209, 95.56421, NULL, 0, 1),
|
||||
(@PATH, 46, 77.65055, -2418.308, 95.42078, NULL, 0, 1),
|
||||
(@PATH, 47, 78.78057, -2418.343, 95.28088, NULL, 0, 1),
|
||||
(@PATH, 48, 86.44755, -2430.922, 92.45325, NULL, 0, 1),
|
||||
(@PATH, 49, 86.45873, -2430.933, 92.44885, NULL, 0, 1),
|
||||
(@PATH, 50, 93.04184, -2437.553, 90.09744, NULL, 0, 1),
|
||||
(@PATH, 51, 101.0762, -2442.375, 92.0791, NULL, 0, 1),
|
||||
(@PATH, 52, 109.4235, -2446.714, 94.44043, NULL, 0, 1),
|
||||
(@PATH, 53, 118.4783, -2449.23, 95.20435, NULL, 0, 1),
|
||||
(@PATH, 54, 127.8787, -2450.975, 96.86743, NULL, 0, 1),
|
||||
(@PATH, 55, 136.834, -2453.803, 98.23032, NULL, 0, 1),
|
||||
(@PATH, 56, 142.3554, -2459.989, 99.12547, NULL, 0, 1),
|
||||
(@PATH, 57, 144.7783, -2469.527, 100.5452, NULL, 0, 1),
|
||||
(@PATH, 58, 137.2123, -2474.921, 99.71852, NULL, 0, 1),
|
||||
(@PATH, 59, 128.8783, -2480.145, 99.50704, NULL, 0, 1),
|
||||
(@PATH, 60, 120.6107, -2471.24, 97.29342, NULL, 0, 1),
|
||||
(@PATH, 61, 111.7804, -2468.305, 95.13143, NULL, 0, 1),
|
||||
(@PATH, 62, 102.4922, -2465.877, 93.8291, NULL, 0, 1),
|
||||
(@PATH, 63, 103.5723, -2457.534, 93.90308, NULL, 0, 1),
|
||||
(@PATH, 64, 106.2256, -2447.986, 93.44849, NULL, 0, 1),
|
||||
(@PATH, 65, 116.2922, -2445.646, 94.47644, NULL, 0, 1),
|
||||
(@PATH, 66, 124.8515, -2448.322, 96.08203, NULL, 0, 1),
|
||||
(@PATH, 67, 133.4792, -2452.495, 97.39024, NULL, 0, 0),
|
||||
(@PATH, 68, 142.1108, -2456.67, 99.09617, NULL, 0, 0),
|
||||
(@PATH, 69, 146.6297, -2459.019, 99.73032, NULL, 0, 0),
|
||||
(@PATH, 70, 151.1184, -2454.951, 100.1268, NULL, 0, 0),
|
||||
(@PATH, 71, 154.1175, -2454.353, 99.85532, NULL, 0, 0),
|
||||
(@PATH, 72, 157.1032, -2453.759, 99.98032, NULL, 0, 0),
|
||||
(@PATH, 73, 160.0643, -2453.169, 100.3756, NULL, 0, 0);
|
||||
|
||||
UPDATE `creature` SET `position_x`= 163.0604, `position_y`= -2452.522, `position_z`= 100.6053, `orientation`= 0, `wander_distance`= 0, `MovementType`= 2 WHERE `guid`= @CGUID+23;
|
||||
DELETE FROM `creature_addon` WHERE `guid`= @CGUID+23;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `bytes2`) VALUES
|
||||
(@CGUID+23, @PATH, 1);
|
||||
|
||||
-- Waypoints for CGUID+9
|
||||
SET @PATH := @CGUID+9 * 10;
|
||||
DELETE FROM `waypoint_data` WHERE `id`= @PATH;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`) VALUES
|
||||
(@PATH, 0, 70.97916, -2450.632, 89.87003, NULL, 0, 1),
|
||||
(@PATH, 1, 65.77952, -2446.663, 91.48135, NULL, 0, 1),
|
||||
(@PATH, 2, 68.09896, -2440.528, 92.62369, NULL, 0, 1),
|
||||
(@PATH, 3, 78.01041, -2448.451, 89.81961, NULL, 0, 1);
|
||||
|
||||
UPDATE `creature` SET `position_x`= 70.97916, `position_y`= -2450.632, `position_z`= 89.87003, `orientation`= 0, `wander_distance`= 0, `MovementType`= 2 WHERE `guid`= @CGUID+9;
|
||||
DELETE FROM `creature_addon` WHERE `guid`= @CGUID+9;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `bytes2`) VALUES
|
||||
(@CGUID+9, @PATH, 1);
|
||||
|
||||
-- Waypoints for CGUID+18
|
||||
SET @PATH := @CGUID+18 * 10;
|
||||
DELETE FROM `waypoint_data` WHERE `id`= @PATH;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`) VALUES
|
||||
(@PATH, 0, 65.77952, -2446.663, 91.48135, NULL, 0, 1),
|
||||
(@PATH, 1, 68.09896, -2440.528, 92.62369, NULL, 0, 1),
|
||||
(@PATH, 2, 78.01041, -2448.451, 89.81961, NULL, 0, 1),
|
||||
(@PATH, 3, 70.97916, -2450.632, 89.87003, NULL, 0, 1);
|
||||
|
||||
UPDATE `creature` SET `position_x`= 65.77952, `position_y`= -2446.663, `position_z`= 91.48135, `orientation`= 0, `wander_distance`= 0, `MovementType`= 2 WHERE `guid`= @CGUID+18;
|
||||
DELETE FROM `creature_addon` WHERE `guid`= @CGUID+18;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `bytes2`) VALUES
|
||||
(@CGUID+18, @PATH, 1);
|
||||
|
||||
-- Waypoints for CGUID+30
|
||||
SET @PATH := @CGUID+30 * 10;
|
||||
DELETE FROM `waypoint_data` WHERE `id`= @PATH;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`) VALUES
|
||||
(@PATH, 0, 68.09896, -2440.528, 92.62369, NULL, 0, 1),
|
||||
(@PATH, 1, 78.01041, -2448.451, 89.81961, NULL, 0, 1),
|
||||
(@PATH, 2, 70.97916, -2450.632, 89.87003, NULL, 0, 1),
|
||||
(@PATH, 3, 65.77952, -2446.663, 91.48135, NULL, 0, 1);
|
||||
|
||||
UPDATE `creature` SET `position_x`= 68.09896, `position_y`= -2440.528, `position_z`= 92.62369, `orientation`= 0, `wander_distance`= 0, `MovementType`= 2 WHERE `guid`= @CGUID+30;
|
||||
DELETE FROM `creature_addon` WHERE `guid`= @CGUID+30;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `bytes2`) VALUES
|
||||
(@CGUID+30, @PATH, 1);
|
||||
@@ -1,40 +0,0 @@
|
||||
SET @CGUID := 460682;
|
||||
SET @OGUID := 395672;
|
||||
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+4;
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `PhaseGroup`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES
|
||||
(@CGUID+0, 70859, 1116, 7004, 0, '0', 3196, 0, 0, 1, 5611.7099609375, 4525.859375, 120.2640228271484375, 0.194926872849464416, 7200, 0, 0, 2955600, 320750, 0, 0, 0, 0, 45114), -- Thrall (Area: 0 - Difficulty: 0)
|
||||
(@CGUID+1, 76411, 1116, 7004, 0, '0', 3196, 0, 0, 0, 5611.736328125, 4533.6083984375, 121.02215576171875, 6.025817394256591796, 7200, 0, 0, 24630, 0, 0, 0, 0, 0, 45114), -- Farseer Drek'Thar (Area: 0 - Difficulty: 0)
|
||||
(@CGUID+2, 78288, 1116, 7004, 0, '0', 3196, 0, 0, 1, 5612.44970703125, 4523.4912109375, 119.755645751953125, 0.29847005009651184, 7200, 0, 0, 19710, 9573, 0, 0, 0, 0, 45114), -- Archmage Khadgar (Area: 0 - Difficulty: 0)
|
||||
(@CGUID+3, 78272, 1116, 7004, 0, '0', 3331, 0, 0, 1, 5610.61962890625, 4521.2412109375, 119.8433837890625, 0.209163606166839599, 7200, 0, 0, 738900, 0, 0, 0, 0, 0, 45114), -- Durotan (Area: 0 - Difficulty: 0)
|
||||
(@CGUID+4, 78466, 1116, 7004, 7004, '0', 3197, 0, 0, 1, 5628.99658203125, 4525.7666015625, 119.05975341796875, 2.934297561645507812, 7200, 0, 0, 3325, 0, 0, 0, 0, 0, 45114); -- Gazlowe (Area: -Unknown- - Difficulty: 0)
|
||||
|
||||
-- GameObject
|
||||
DELETE FROM `gameobject` WHERE `guid` = @OGUID+0;
|
||||
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, 229057, 1116, 7004, 7004, '0', 3427, 0, 5630.2197265625, 4529.671875, 119.0678482055664062, 3.66789412498474121, 0, 0, -0.96557521820068359, 0.260124027729034423, 7200, 255, 1, 45114); -- Horde Banner (Area: -Unknown- - Difficulty: 0)
|
||||
|
||||
-- Phasing
|
||||
DELETE FROM `phase_area` WHERE (`AreaId` = 7004 AND `PhaseId` IN (3196, 3331, 3427, 3197));
|
||||
INSERT INTO `phase_area` (`AreaId`, `PhaseId`, `Comment`) VALUES
|
||||
(7004, 3196, 'Cosmetic - Iconics at Garrison Location'),
|
||||
(7004, 3331, 'Cosmetic - Durotan at Garrison Location'),
|
||||
(7004, 3427, 'Frostfire Ridge Intro - Horde'),
|
||||
(7004, 3197, 'Cosmetic - Gazlowe at Initial Garrison Location');
|
||||
|
||||
-- Conditon
|
||||
DELETE FROM `conditions` WHERE (`SourceTypeOrReferenceId` = 26 AND `SourceGroup` = 3196 AND `SourceEntry` = 7004) OR (`SourceTypeOrReferenceId` = 26 AND `SourceGroup` = 3331 AND `SourceEntry` = 7004) OR (`SourceTypeOrReferenceId` = 26 AND `SourceGroup` = 3427 AND `SourceEntry` = 7004) OR (`SourceTypeOrReferenceId` = 26 AND `SourceGroup` = 3197 AND `SourceEntry` = 7004) OR (`SourceTypeOrReferenceId` = 32 AND `SourceGroup` = 8 AND `SourceEntry` = 229057);
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `Comment`) VALUES
|
||||
(26, 3196, 7004, 0, 0, 47, 0, 34402, 2 | 64, 0, 0, 'Apply Phase 3196 If Quest IS complete / rewarded'),
|
||||
(26, 3331, 7004, 0, 0, 47, 0, 34402, 2 | 64, 0, 0, 'Apply Phase 3331 If Quest 34402 IS complete / rewarded'),
|
||||
(26, 3331, 7004, 0, 0, 47, 0, 34364, 64, 0, 1, 'Apply Phase 3331 if Quest 34364 is NOT rewarded'),
|
||||
(26, 3427, 7004, 0, 0, 47, 0, 34378, 64, 0, 1, 'Apply Phase 3427 If Quest 34378 IS NOT rewarded'),
|
||||
(26, 3197, 7004, 0, 0, 47, 0, 34364, 2 | 64, 0, 0, 'Apply Phase 3197 If Quest 34364 IS complete / rewarded'),
|
||||
-- Horde Banner Gob
|
||||
(32, 8, 229057, 0, 0, 47, 0, 34364, 2 | 8 | 64, 0, 0, 'Horde Banner gets visible if Quest: 34364 is in Progress / complete / rewarded');
|
||||
|
||||
DELETE FROM `gossip_menu` WHERE (`MenuID`=16271 AND `TextID`=23530);
|
||||
INSERT INTO `gossip_menu` (`MenuID`, `TextID`, `VerifiedBuild`) VALUES
|
||||
(16271, 23530, 45114); -- 76411 (Farseer Drek'Thar)
|
||||
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=16271 WHERE `entry`=76411; -- Farseer Drek'Thar
|
||||
@@ -1,50 +0,0 @@
|
||||
SET @CGUID := 460687;
|
||||
SET @OGUID := 395673;
|
||||
|
||||
SET @NPCTEXTID := 550031;
|
||||
|
||||
-- Creature
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+4;
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `PhaseGroup`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES
|
||||
(@CGUID+0, 80225, 1116, 7004, 0, '0', 3887, 0, 0, 1, 5572.51220703125, 4640.20751953125, 146.4850616455078125, 4.986562252044677734, 7200, 0, 0, 2463, 0, 0, 0, 0, 0, 45114), -- Skaggit (Area: 0 - Difficulty: 0)
|
||||
(@CGUID+1, 63420, 1116, 7004, 0, '0', 3887, 0, 0, 0, 5567.82666015625, 4636.73095703125, 146.71600341796875, 0, 7200, 0, 0, 1989, 0, 0, 0, 0, 0, 45114), -- SLG Generic MoP (Area: 0 - Difficulty: 0)
|
||||
(@CGUID+2, 80222, 1116, 7004, 0, '0', 3887, 0, 0, 1, 5563.8505859375, 4641.017578125, 147.0868072509765625, 5.23178863525390625, 7200, 0, 0, 2463, 0, 0, 0, 0, 0, 45114), -- Mr. Pleeb (Area: 0 - Difficulty: 0)
|
||||
(@CGUID+3, 80223, 1116, 7004, 0, '0', 3887, 0, 0, 1, 5564.5849609375, 4639.666015625, 146.953125, 4.985915660858154296, 7200, 0, 0, 2463, 0, 0, 0, 0, 0, 45114), -- Lady Sena (Area: 0 - Difficulty: 0)
|
||||
(@CGUID+4, 80221, 1116, 7004, 0, '0', 3887, 0, 0, 1, 5569.72216796875, 4641.03662109375, 146.6927032470703125, 5.053752899169921875, 7200, 0, 0, 2463, 0, 0, 0, 0, 0, 45114); -- Libby Wrenchwrecker (Area: 0 - Difficulty: 0)
|
||||
|
||||
-- GameObject
|
||||
DELETE FROM `gameobject` WHERE `guid` = @OGUID+0;
|
||||
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, 233664, 1116, 7004, 7004, '0', 3887, 0, 5567.4755859375, 4636.34912109375, 146.6606292724609375, 4.785277843475341796, 0, 0, -0.68087291717529296, 0.732401549816131591, 7200, 255, 0, 45114); -- Master Surveyor (Area: -Unknown- - Difficulty: 0)
|
||||
|
||||
-- Creature Template Data
|
||||
UPDATE `creature_template` SET `unit_flags3`=16777217 WHERE `entry`=63420; -- SLG Generic MoP
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=16474, `minlevel`=40, `maxlevel`=40 WHERE `entry`=80223; -- Lady Sena
|
||||
UPDATE `creature_template` SET `minlevel`=40, `maxlevel`=40 WHERE `entry`=80225; -- Skaggit
|
||||
UPDATE `creature_template` SET `minlevel`=40, `maxlevel`=40 WHERE `entry`=80222; -- Mr. Pleeb
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=16473 WHERE `entry`=80221; -- Libby Wrenchwrecker
|
||||
|
||||
-- Gossip
|
||||
DELETE FROM `npc_text` WHERE `ID` BETWEEN @NPCTEXTID+0 AND @NPCTEXTID+1;
|
||||
INSERT INTO `npc_text` (`ID`, `Probability0`, `Probability1`, `Probability2`, `Probability3`, `Probability4`, `Probability5`, `Probability6`, `Probability7`, `BroadcastTextId0`, `BroadcastTextId1`, `BroadcastTextId2`, `BroadcastTextId3`, `BroadcastTextId4`, `BroadcastTextId5`, `BroadcastTextId6`, `BroadcastTextId7`, `VerifiedBuild`) VALUES
|
||||
(@NPCTEXTID+0, 1, 0, 0, 0, 0, 0, 0, 0, 85494, 0, 0, 0, 0, 0, 0, 0, 45114), -- 80221 (Libby Wrenchwrecker)
|
||||
(@NPCTEXTID+1, 1, 0, 0, 0, 0, 0, 0, 0, 85496, 0, 0, 0, 0, 0, 0, 0, 45114); -- 80223 (Lady Sena)
|
||||
|
||||
DELETE FROM `gossip_menu` WHERE (`MenuID`=16473 AND `TextID`=@NPCTEXTID+0) OR (`MenuID`=16474 AND `TextID`=@NPCTEXTID+1);
|
||||
INSERT INTO `gossip_menu` (`MenuID`, `TextID`, `VerifiedBuild`) VALUES
|
||||
(16473, @NPCTEXTID+0, 45114), -- 80221 (Libby Wrenchwrecker)
|
||||
(16474, @NPCTEXTID+1, 45114); -- 80223 (Lady Sena)
|
||||
|
||||
-- Phasing
|
||||
DELETE FROM `phase_area` WHERE (`AreaId` = 7004 AND `PhaseId` = 3887);
|
||||
INSERT INTO `phase_area` (`AreaId`, `PhaseId`, `Comment`) VALUES
|
||||
(7004, 3887, 'Cosmetic - See Master Surveyor');
|
||||
|
||||
DELETE FROM `phase_name` WHERE `ID` = 3887;
|
||||
INSERT INTO `phase_name` (`ID`, `Name`) VALUES
|
||||
(3887, 'Cosmetic - See Master Surveyor');
|
||||
|
||||
-- Condition
|
||||
DELETE FROM `conditions` WHERE (`SourceTypeOrReferenceId` = 26 AND `SourceGroup` = 3887 AND `SourceEntry` = 7004);
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `Comment`) VALUES
|
||||
(26, 3887, 7004, 0, 0, 47, 0, 34378, 8, 0, 0, 'Player has Establish Your Garrison (34378) in state incomplete');
|
||||
File diff suppressed because one or more lines are too long
@@ -1,110 +0,0 @@
|
||||
SET @CGUID := 1051321;
|
||||
SET @OGUID := 600229;
|
||||
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+63;
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `PhaseGroup`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES
|
||||
(@CGUID+0, 161006, 2175, 10424, 11011, '0', 0, 0, 0, 0, 248.15972900390625, -2011.6163330078125, 79.40108489990234375, 1.519477725028991699, 7200, 0, 0, 149, 0, 0, 0, 0, 0, 45114), -- Ogre Shadowcaster (Area: -Unknown- - Difficulty: 0) (Auras: 145363 - Permanent Feign Death (Stun, Untrackable, Immune))
|
||||
(@CGUID+1, 172026, 2175, 10424, 11011, '0', 0, 0, 0, 0, 288.19781494140625, -1992.7802734375, 77.91809844970703125, 3.541005373001098632, 7200, 4, 0, 5, 0, 2, 0, 0, 0, 45114), -- Cockroach (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+2, 172026, 2175, 10424, 11011, '0', 0, 0, 0, 0, 295.2821044921875, -1992.187744140625, 77.87058258056640625, 1.164662003517150878, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Cockroach (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+3, 172026, 2175, 10424, 11011, '0', 0, 0, 0, 0, 274.635986328125, -1996.230712890625, 78.062652587890625, 4.651137828826904296, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Cockroach (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+4, 161006, 2175, 10424, 11011, '0', 0, 0, 0, 0, 239.1354217529296875, -2027.876708984375, 79.94861602783203125, 1.998577237129211425, 7200, 0, 0, 149, 0, 0, 0, 0, 0, 45114), -- Ogre Shadowcaster (Area: -Unknown- - Difficulty: 0) (Auras: 145363 - Permanent Feign Death (Stun, Untrackable, Immune))
|
||||
(@CGUID+5, 172026, 2175, 10424, 11011, '0', 0, 0, 0, 0, 270.150421142578125, -1998.6605224609375, 77.807098388671875, 5.127995967864990234, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Cockroach (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+6, 172026, 2175, 10424, 11011, '0', 0, 0, 0, 0, 269.310333251953125, -1993.9666748046875, 77.83879852294921875, 2.889052629470825195, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Cockroach (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+7, 172027, 2175, 10424, 11011, '0', 0, 0, 0, 0, 311.005218505859375, -1975.232666015625, 77.44677734375, 1.249116301536560058, 7200, 0, 0, 5, 0, 0, 0, 0, 0, 45114), -- Nibbling Scavenger (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+8, 172026, 2175, 10424, 11011, '0', 0, 0, 0, 0, 279.6104736328125, -1998.158203125, 78.1585693359375, 5.684083461761474609, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Cockroach (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+9, 172026, 2175, 10424, 11011, '0', 0, 0, 0, 0, 286.692840576171875, -1998.408935546875, 78.055999755859375, 5.289997100830078125, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Cockroach (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+10, 172026, 2175, 10424, 11011, '0', 0, 0, 0, 0, 294.103973388671875, -1987.12890625, 77.55968475341796875, 0.594617247581481933, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Cockroach (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+11, 172026, 2175, 10424, 11011, '0', 0, 0, 0, 0, 276.203399658203125, -1998.2034912109375, 78.1262054443359375, 2.65345931053161621, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Cockroach (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+12, 172027, 2175, 10424, 11011, '0', 0, 0, 0, 0, 310.01910400390625, -1981.0972900390625, 77.927154541015625, 0.109653525054454803, 7200, 0, 0, 5, 0, 0, 0, 0, 0, 45114), -- Nibbling Scavenger (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+13, 172026, 2175, 10424, 11011, '0', 0, 0, 0, 0, 301.752288818359375, -1983.2999267578125, 77.96352386474609375, 2.839550495147705078, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Cockroach (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+14, 172026, 2175, 10424, 11011, '0', 0, 0, 0, 0, 284.022857666015625, -1987.0972900390625, 77.83969879150390625, 5.160910606384277343, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Cockroach (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+15, 172026, 2175, 10424, 11011, '0', 0, 0, 0, 0, 299.850738525390625, -1990.1983642578125, 78.0007171630859375, 1.234702587127685546, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Cockroach (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+16, 172026, 2175, 10424, 11011, '0', 0, 0, 0, 0, 297.892852783203125, -1989.4344482421875, 77.7454071044921875, 2.735143899917602539, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Cockroach (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+17, 172026, 2175, 10424, 11011, '0', 0, 0, 0, 0, 292.26495361328125, -1997.93896484375, 77.827423095703125, 0.947819709777832031, 7200, 4, 0, 5, 0, 0, 1, 0, 0, 45114), -- Cockroach (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+18, 172026, 2175, 10424, 11011, '0', 0, 0, 0, 0, 269.71197509765625, -1992.8385009765625, 77.83599090576171875, 6.127718925476074218, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Cockroach (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+19, 172026, 2175, 10424, 11011, '0', 0, 0, 0, 0, 281.730133056640625, -1992.7728271484375, 78.377716064453125, 2.958071708679199218, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Cockroach (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+20, 172026, 2175, 10424, 11011, '0', 0, 0, 0, 0, 280.58221435546875, -2000.6510009765625, 78.05225372314453125, 3.804633617401123046, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Cockroach (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+21, 172026, 2175, 10424, 11011, '0', 0, 0, 0, 0, 270.30792236328125, -1997.654052734375, 77.80768585205078125, 4.148012161254882812, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Cockroach (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+22, 172026, 2175, 10424, 11011, '0', 0, 0, 0, 0, 297.848907470703125, -1984.603515625, 77.38451385498046875, 0.43133711814880371, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Cockroach (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+23, 172026, 2175, 10424, 11011, '0', 0, 0, 0, 0, 273.777587890625, -1988.8291015625, 77.81970977783203125, 5.193759441375732421, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Cockroach (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+24, 172027, 2175, 10424, 11011, '0', 0, 0, 0, 0, 298.623260498046875, -1977.1927490234375, 77.73435211181640625, 1.250232696533203125, 7200, 0, 0, 5, 0, 0, 0, 0, 0, 45114), -- Nibbling Scavenger (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+25, 172026, 2175, 10424, 11011, '0', 0, 0, 0, 0, 289.356109619140625, -1983.24609375, 77.770355224609375, 5.603207588195800781, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Cockroach (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+26, 172026, 2175, 10424, 11011, '0', 0, 0, 0, 0, 269.793182373046875, -1992.7335205078125, 77.8348236083984375, 0.517088353633880615, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Cockroach (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+27, 172026, 2175, 10424, 11011, '0', 0, 0, 0, 0, 300.877685546875, -1989.7099609375, 78.08319854736328125, 1.468073010444641113, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Cockroach (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+28, 172027, 2175, 10424, 11011, '0', 0, 0, 0, 0, 299.388885498046875, -1976.8350830078125, 77.73435211181640625, 2.304511070251464843, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Nibbling Scavenger (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+29, 172026, 2175, 10424, 11011, '0', 0, 0, 0, 0, 289.194793701171875, -1979.338134765625, 77.71779632568359375, 0.016641009598970413, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Cockroach (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+30, 172026, 2175, 10424, 11011, '0', 0, 0, 0, 0, 283.11492919921875, -1986.8773193359375, 77.7598114013671875, 3.591572284698486328, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Cockroach (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+31, 172026, 2175, 10424, 11011, '0', 0, 0, 0, 0, 269.735107421875, -2002.2535400390625, 77.86246490478515625, 5.228423595428466796, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Cockroach (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+32, 161006, 2175, 10424, 11011, '0', 0, 0, 0, 0, 224.798614501953125, -2021.9947509765625, 79.75852203369140625, 4.973180770874023437, 7200, 0, 0, 149, 0, 0, 0, 0, 0, 45114), -- Ogre Shadowcaster (Area: -Unknown- - Difficulty: 0) (Auras: 145363 - Permanent Feign Death (Stun, Untrackable, Immune))
|
||||
(@CGUID+33, 172027, 2175, 10424, 11011, '0', 0, 0, 0, 0, 285.251739501953125, -1998.3785400390625, 77.73626708984375, 3.679943084716796875, 7200, 0, 0, 5, 0, 0, 0, 0, 0, 45114), -- Nibbling Scavenger (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+34, 172026, 2175, 10424, 11011, '0', 0, 0, 0, 0, 283.04351806640625, -1997.1580810546875, 78.05489349365234375, 4.906396865844726562, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Cockroach (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+35, 172026, 2175, 10424, 11011, '0', 0, 0, 0, 0, 271.849456787109375, -2004.9453125, 77.8506011962890625, 0.926486432552337646, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Cockroach (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+36, 172026, 2175, 10424, 11011, '0', 0, 0, 0, 0, 274.5906982421875, -1999.092529296875, 78.04541778564453125, 0.966549694538116455, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Cockroach (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+37, 161006, 2175, 10424, 11011, '0', 0, 0, 0, 0, 223.65972900390625, -2012.5816650390625, 80.46463775634765625, 6.282768726348876953, 7200, 0, 0, 149, 0, 0, 0, 0, 0, 45114), -- Ogre Shadowcaster (Area: -Unknown- - Difficulty: 0) (Auras: 145363 - Permanent Feign Death (Stun, Untrackable, Immune))
|
||||
(@CGUID+38, 172026, 2175, 10424, 11011, '0', 0, 0, 0, 0, 299.300506591796875, -1986.4254150390625, 77.61298370361328125, 1.640192627906799316, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Cockroach (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+39, 172026, 2175, 10424, 11011, '0', 0, 0, 0, 0, 271.510589599609375, -2000.8414306640625, 77.7993927001953125, 3.993740081787109375, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Cockroach (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+40, 172027, 2175, 10424, 11011, '0', 0, 0, 0, 0, 297.53472900390625, -1977.01220703125, 77.70937347412109375, 0.707951843738555908, 7200, 0, 0, 5, 0, 0, 0, 0, 0, 45114), -- Nibbling Scavenger (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+41, 172026, 2175, 10424, 11011, '0', 0, 0, 0, 0, 295.72540283203125, -1984.094482421875, 77.24219512939453125, 3.971421241760253906, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Cockroach (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+42, 154268, 2175, 10424, 11011, '0', 0, 0, 0, 0, 212.750762939453125, -2040.2274169921875, 96.8371124267578125, 4.7701416015625, 7200, 0, 0, 136, 0, 0, 0, 0, 0, 45114), -- Hungry Vulture (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+43, 154268, 2175, 10424, 11011, '0', 0, 0, 0, 0, 172.9589996337890625, -2073.767333984375, 104.377655029296875, 1.304056048393249511, 7200, 0, 0, 136, 0, 0, 0, 0, 0, 45114), -- Hungry Vulture (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+44, 171997, 2175, 10424, 11011, '0', 0, 0, 0, 0, 248.3645782470703125, -2027.9271240234375, 106.019134521484375, 2.400225639343261718, 7200, 0, 0, 149, 0, 0, 0, 0, 0, 45114), -- Woodlands Watcher (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+45, 161006, 2175, 10424, 11011, '0', 0, 0, 0, 0, 220.173614501953125, -2039.3038330078125, 78.941680908203125, 4.481699466705322265, 7200, 0, 0, 149, 0, 0, 0, 0, 0, 45114), -- Ogre Shadowcaster (Area: -Unknown- - Difficulty: 0) (Auras: 145363 - Permanent Feign Death (Stun, Untrackable, Immune))
|
||||
(@CGUID+46, 154268, 2175, 10424, 11011, '0', 0, 0, 0, 0, 184.22711181640625, -2088.139404296875, 111.8939132690429687, 2.940387487411499023, 7200, 0, 0, 136, 0, 0, 0, 0, 0, 45114), -- Hungry Vulture (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+47, 172027, 2175, 10424, 11011, '0', 0, 0, 0, 0, 208.2470855712890625, -2048.836669921875, 78.20540618896484375, 2.475290298461914062, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Nibbling Scavenger (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+48, 161006, 2175, 10424, 11011, '0', 0, 0, 0, 0, 207.3350677490234375, -2061.84716796875, 78.7346954345703125, 0.203099057078361511, 7200, 0, 0, 149, 0, 0, 0, 0, 0, 45114), -- Ogre Shadowcaster (Area: -Unknown- - Difficulty: 0) (Auras: 145363 - Permanent Feign Death (Stun, Untrackable, Immune))
|
||||
(@CGUID+49, 172027, 2175, 10424, 11011, '0', 0, 0, 0, 0, 204.4708099365234375, -2054.31396484375, 77.86822509765625, 2.900879383087158203, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Nibbling Scavenger (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+50, 161006, 2175, 10424, 11011, '0', 0, 0, 0, 0, 214.3559112548828125, -2078.75341796875, 78.9085540771484375, 2.623500823974609375, 7200, 0, 0, 149, 0, 0, 0, 0, 0, 45114), -- Ogre Shadowcaster (Area: -Unknown- - Difficulty: 0) (Auras: 145363 - Permanent Feign Death (Stun, Untrackable, Immune))
|
||||
(@CGUID+51, 172027, 2175, 10424, 11011, '0', 0, 0, 0, 0, 197.4309539794921875, -2075.5302734375, 77.41428375244140625, 3.752988100051879882, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Nibbling Scavenger (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+52, 172027, 2175, 10424, 11011, '0', 0, 0, 0, 0, 171.140625, -2064.54345703125, 77.81885528564453125, 3.144254207611083984, 7200, 0, 0, 5, 0, 0, 0, 0, 0, 45114), -- Nibbling Scavenger (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+53, 172027, 2175, 10424, 11011, '0', 0, 0, 0, 0, 207.368377685546875, -2098.573974609375, 80.07639312744140625, 3.209979057312011718, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Nibbling Scavenger (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+54, 172027, 2175, 10424, 11011, '0', 0, 0, 0, 0, 172.6996612548828125, -2062.7119140625, 77.81884002685546875, 0.559787929058074951, 7200, 0, 0, 5, 0, 0, 0, 0, 0, 45114), -- Nibbling Scavenger (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+55, 172027, 2175, 10424, 11011, '0', 0, 0, 0, 0, 174.31597900390625, -2062.73779296875, 77.81884002685546875, 3.144254207611083984, 7200, 0, 0, 5, 0, 0, 0, 0, 0, 45114), -- Nibbling Scavenger (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+56, 172027, 2175, 10424, 11011, '0', 0, 0, 0, 0, 183.4342041015625, -2084.3818359375, 77.8585052490234375, 2.288524866104125976, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Nibbling Scavenger (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+57, 172027, 2175, 10424, 11011, '0', 0, 0, 0, 0, 177.9083404541015625, -2080.123046875, 77.93352508544921875, 2.837572336196899414, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Nibbling Scavenger (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+58, 172027, 2175, 10424, 11011, '0', 0, 0, 0, 0, 169.2881927490234375, -2065.654541015625, 77.82209014892578125, 1.250232696533203125, 7200, 0, 0, 5, 0, 0, 0, 0, 0, 45114), -- Nibbling Scavenger (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+59, 171997, 2175, 10424, 11011, '0', 0, 0, 0, 0, 215.361114501953125, -2120.447998046875, 99.539337158203125, 1.818612456321716308, 7200, 0, 0, 149, 0, 0, 0, 0, 0, 45114), -- Woodlands Watcher (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+60, 172027, 2175, 10424, 11011, '0', 0, 0, 0, 0, 171.9936676025390625, -2092.832763671875, 78.53928375244140625, 5.04897165298461914, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Nibbling Scavenger (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+61, 171997, 2175, 10424, 11011, '0', 0, 0, 0, 0, 162.642364501953125, -2077.013916015625, 93.541839599609375, 5.877742290496826171, 7200, 0, 0, 149, 0, 0, 0, 0, 0, 45114), -- Woodlands Watcher (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+62, 172027, 2175, 10424, 11011, '0', 0, 0, 0, 0, 198.1689605712890625, -2119.4765625, 84.428253173828125, 4.079430580139160156, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114), -- Nibbling Scavenger (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+63, 172027, 2175, 10424, 11011, '0', 0, 0, 0, 0, 212.9317169189453125, -2120.7041015625, 83.8814697265625, 4.057169914245605468, 7200, 4, 0, 5, 0, 1, 0, 0, 0, 45114); -- Nibbling Scavenger (Area: -Unknown- - Difficulty: 0)
|
||||
|
||||
-- Creature Addon
|
||||
DELETE FROM `creature_addon` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+63;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(@CGUID+44, 0, 0, 50331649, 1, 0, 0, 0, 0, 0, ''), -- Woodlands Watcher
|
||||
(@CGUID+61, 0, 0, 50331649, 1, 0, 0, 0, 0, 0, ''), -- Woodlands Watcher
|
||||
(@CGUID+59, 0, 0, 50331649, 1, 0, 0, 0, 0, 0, ''); -- Woodlands Watcher
|
||||
|
||||
-- Creature Template Addon Data
|
||||
DELETE FROM `creature_template_addon` WHERE `entry` IN (154268, 153266, 161006);
|
||||
INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(154268, 0, 0, 50331648, 1, 0, 0, 0, 0, 3, ''), -- 154268 (Hungry Vulture)
|
||||
(153266, 0, 0, 0, 1, 0, 0, 0, 0, 4, '313373'), -- 153266 (Killclaw the Terrible) - -Unknown-
|
||||
(161006, 0, 0, 262144, 1, 0, 0, 0, 0, 0, '145363'); -- 161006 (Ogre Shadowcaster) - Permanent Feign Death (Stun, Untrackable; Immune)
|
||||
|
||||
-- Creature Template Data
|
||||
UPDATE `creature_template` SET `faction`=188, `BaseAttackTime`=2000, `unit_flags2`=2048 WHERE `entry`=172027; -- Nibbling Scavenger
|
||||
UPDATE `creature_template` SET `faction`=188, `BaseAttackTime`=2000, `unit_flags2`=2048 WHERE `entry`=172026; -- Cockroach
|
||||
UPDATE `creature_template` SET `minlevel`=10, `maxlevel`=10, `faction`=2057, `BaseAttackTime`=2000, `unit_flags`=537166592, `unit_flags2`=2049, `unit_flags3`=8192 WHERE `entry`=161006; -- Ogre Shadowcaster
|
||||
UPDATE `creature_template` SET `minlevel`=10, `maxlevel`=10, `faction`=31, `BaseAttackTime`=2000, `unit_flags`=32768, `unit_flags2`=2048 WHERE `entry`=171997; -- Woodlands Watcher
|
||||
|
||||
-- Creature MovementType
|
||||
DELETE FROM `creature_template_movement` WHERE `CreatureId` = 154268;
|
||||
INSERT INTO `creature_template_movement` (`CreatureId`, `Ground`, `Swim`, `Flight`, `Rooted`, `Chase`, `Random`, `InteractionPauseTimer`) VALUES
|
||||
(154268, 0, 0, 1, 0, 0, 0, NULL);
|
||||
|
||||
-- GameObject
|
||||
DELETE FROM `gameobject` WHERE `guid` = @OGUID+0;
|
||||
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, 330627, 2175, 10424, 11011, '0', 0, 0, 210.638885498046875, -2167.5, 92.2349853515625, 3.927583217620849609, 0, 0, -0.92376613616943359, 0.382957041263580322, 7200, 255, 1, 45114); -- Danger Sign (Area: -Unknown- - Difficulty: 0)
|
||||
|
||||
-- Scaling
|
||||
DELETE FROM `creature_template_scaling` WHERE (`Entry`=167582 AND `DifficultyID`=0);
|
||||
INSERT INTO `creature_template_scaling` (`Entry`, `DifficultyID`, `LevelScalingDeltaMin`, `LevelScalingDeltaMax`, `ContentTuningID`, `VerifiedBuild`) VALUES
|
||||
(167582, 0, 0, 0, 741, 45114);
|
||||
|
||||
UPDATE `creature_template_scaling` SET `VerifiedBuild`=45114 WHERE (`DifficultyID`=0 AND `Entry` IN (161265,164827,171997,154268,164927,165730,165757,153266,165711,172027,165727,172026,161006));
|
||||
|
||||
DELETE FROM `creature_model_info` WHERE `DisplayID`=96513;
|
||||
INSERT INTO `creature_model_info` (`DisplayID`, `BoundingRadius`, `CombatReach`, `DisplayID_Other_Gender`, `VerifiedBuild`) VALUES
|
||||
(96513, 0.305999994277954101, 1.5, 0, 45114);
|
||||
@@ -1,52 +0,0 @@
|
||||
SET @CGUID := 1051385;
|
||||
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+21;
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `PhaseGroup`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES
|
||||
(@CGUID+0, 160394, 2175, 10424, 10527, '0', 0, 0, 0, 0, 85.24202728271484375, -2275.666259765625, 60.3869476318359375, 1.411876201629638671, 7200, 4, 0, 124, 0, 1, 0, 0, 0, 45114), -- Barrow Spider (Area: -Unknown- - Difficulty: 0) (Auras: 316915 - -Unknown-) (possible waypoints or random movement)
|
||||
(@CGUID+1, 160433, 2175, 10424, 10527, '0', 0, 0, 0, 0, 78.1845550537109375, -2186.92724609375, 24.75084877014160156, 5.387650966644287109, 7200, 2, 0, 37, 0, 1, 0, 0, 0, 45114), -- Barrow Spiderling (Area: -Unknown- - Difficulty: 0) (Auras: 316915 - -Unknown-) (possible waypoints or random movement)
|
||||
(@CGUID+2, 160394, 2175, 10424, 10527, '0', 0, 0, 0, 0, 107.0506134033203125, -2219.107177734375, 31.8289947509765625, 3.13928842544555664, 7200, 4, 0, 124, 0, 1, 0, 0, 0, 45114), -- Barrow Spider (Area: -Unknown- - Difficulty: 0) (Auras: 316915 - -Unknown-) (possible waypoints or random movement)
|
||||
(@CGUID+3, 160394, 2175, 10424, 10527, '0', 0, 0, 0, 0, 70.72725677490234375, -2275.736083984375, 43.4692230224609375, 1.070562481880187988, 7200, 4, 0, 124, 0, 1, 0, 0, 0, 45114), -- Barrow Spider (Area: -Unknown- - Difficulty: 0) (Auras: 316915 - -Unknown-)
|
||||
(@CGUID+4, 160433, 2175, 10424, 10527, '0', 0, 0, 0, 0, 118.5678329467773437, -2274.194580078125, 42.686126708984375, 2.738408327102661132, 7200, 2, 0, 37, 0, 1, 0, 0, 0, 45114), -- Barrow Spiderling (Area: -Unknown- - Difficulty: 0) (Auras: 316915 - -Unknown-) (possible waypoints or random movement)
|
||||
(@CGUID+5, 160394, 2175, 10424, 10527, '0', 0, 0, 0, 0, 99.0129241943359375, -2253.35009765625, 39.6536865234375, 2.930016994476318359, 7200, 4, 0, 124, 0, 1, 0, 0, 0, 45114), -- Barrow Spider (Area: -Unknown- - Difficulty: 0) (Auras: 316915 - -Unknown-)
|
||||
(@CGUID+6, 160433, 2175, 10424, 10527, '0', 0, 0, 0, 0, 32.54230499267578125, -2230.325927734375, 11.46560192108154296, 3.190922260284423828, 7200, 2, 0, 37, 0, 1, 0, 0, 0, 45114), -- Barrow Spiderling (Area: -Unknown- - Difficulty: 0) (Auras: 316915 - -Unknown-) (possible waypoints or random movement)
|
||||
(@CGUID+7, 160433, 2175, 10424, 10527, '0', 0, 0, 0, 0, 71.9236297607421875, -2187.74951171875, 24.16413116455078125, 4.715922355651855468, 7200, 2, 0, 37, 0, 1, 0, 0, 0, 45114), -- Barrow Spiderling (Area: -Unknown- - Difficulty: 0) (Auras: 316915 - -Unknown-) (possible waypoints or random movement)
|
||||
(@CGUID+8, 160433, 2175, 10424, 10527, '0', 0, 0, 0, 0, 119.7234115600585937, -2274.120361328125, 42.29446029663085937, 2.505269289016723632, 7200, 2, 0, 37, 0, 1, 0, 0, 0, 45114), -- Barrow Spiderling (Area: -Unknown- - Difficulty: 0) (Auras: 316915 - -Unknown-) (possible waypoints or random movement)
|
||||
(@CGUID+9, 160433, 2175, 10424, 10527, '0', 0, 0, 0, 0, 97.93556976318359375, -2277.023193359375, -2.46034550666809082, 0.868991851806640625, 7200, 2, 0, 37, 0, 1, 0, 0, 0, 45114), -- Barrow Spiderling (Area: -Unknown- - Difficulty: 0) (Auras: 316915 - -Unknown-) (possible waypoints or random movement)
|
||||
(@CGUID+10, 160394, 2175, 10424, 10527, '0', 0, 0, 0, 0, 56.20186233520507812, -2224.949462890625, -18.92352294921875, 0.664193809032440185, 7200, 4, 0, 124, 0, 1, 0, 0, 0, 45114), -- Barrow Spider (Area: -Unknown- - Difficulty: 0) (Auras: 316915 - -Unknown-) (possible waypoints or random movement)
|
||||
(@CGUID+11, 160433, 2175, 10424, 10527, '0', 0, 0, 0, 0, 107.1527786254882812, -2234.09033203125, -9.71255207061767578, 0.525046288967132568, 7200, 2, 0, 37, 0, 1, 0, 0, 0, 45114), -- Barrow Spiderling (Area: -Unknown- - Difficulty: 0) (Auras: 316915 - -Unknown-)
|
||||
(@CGUID+12, 160433, 2175, 10424, 10527, '0', 0, 0, 0, 0, 20.85238838195800781, -2228.399169921875, 11.68490886688232421, 5.239824771881103515, 7200, 2, 0, 37, 0, 1, 0, 0, 0, 45114), -- Barrow Spiderling (Area: -Unknown- - Difficulty: 0) (Auras: 316915 - -Unknown-) (possible waypoints or random movement)
|
||||
(@CGUID+13, 160433, 2175, 10424, 10527, '0', 0, 0, 0, 0, 118.593963623046875, -2254.896728515625, -4.04590606689453125, 2.35221409797668457, 7200, 4, 0, 37, 0, 1, 0, 0, 0, 45114), -- Barrow Spiderling (Area: -Unknown- - Difficulty: 0) (Auras: 316915 - -Unknown-) (possible waypoints or random movement)
|
||||
(@CGUID+14, 160394, 2175, 10424, 10527, '0', 0, 0, 0, 0, 34.791473388671875, -2262.621826171875, 1.035332322120666503, 3.411931753158569335, 7200, 4, 0, 124, 0, 1, 0, 0, 0, 45114), -- Barrow Spider (Area: -Unknown- - Difficulty: 0) (Auras: 316915 - -Unknown-)
|
||||
(@CGUID+15, 160394, 2175, 10424, 10527, '0', 0, 0, 0, 0, 38.88898468017578125, -2189.22705078125, 20.4829559326171875, 1.494288206100463867, 7200, 4, 0, 124, 0, 1, 0, 0, 0, 45114), -- Barrow Spider (Area: -Unknown- - Difficulty: 0) (Auras: 316915 - -Unknown-) (possible waypoints or random movement)
|
||||
(@CGUID+16, 160394, 2175, 10424, 10527, '0', 0, 0, 0, 0, 83.48264312744140625, -2248.259521484375, -16.4877910614013671, 4.009123802185058593, 7200, 4, 0, 124, 0, 1, 0, 0, 0, 45114), -- Barrow Spider (Area: -Unknown- - Difficulty: 0) (Auras: 316915 - -Unknown-) (possible waypoints or random movement)
|
||||
(@CGUID+17, 160394, 2175, 10424, 10527, '0', 0, 0, 0, 0, 69.45362091064453125, -2272.9072265625, -1.13438236713409423, 5.281130790710449218, 7200, 4, 0, 124, 0, 1, 0, 0, 0, 45114), -- Barrow Spider (Area: -Unknown- - Difficulty: 0) (Auras: 316915 - -Unknown-)
|
||||
(@CGUID+18, 160433, 2175, 10424, 10527, '0', 0, 0, 0, 0, 111.3011703491210937, -2233.8525390625, -8.82757472991943359, 0.504135966300964355, 7200, 2, 0, 37, 0, 1, 0, 0, 0, 45114), -- Barrow Spiderling (Area: -Unknown- - Difficulty: 0) (Auras: 316915 - -Unknown-) (possible waypoints or random movement)
|
||||
(@CGUID+19, 160433, 2175, 10424, 10527, '0', 0, 0, 0, 0, 97.45998382568359375, -2275.99462890625, -2.31414794921875, 0.219286605715751647, 7200, 2, 0, 37, 0, 1, 0, 0, 0, 45114), -- Barrow Spiderling (Area: -Unknown- - Difficulty: 0) (Auras: 316915 - -Unknown-) (possible waypoints or random movement)
|
||||
(@CGUID+20, 160433, 2175, 10424, 10527, '0', 0, 0, 0, 0, 119.559417724609375, -2264.964599609375, -4.58145523071289062, 1.759042859077453613, 7200, 2, 0, 37, 0, 1, 0, 0, 0, 45114), -- Barrow Spiderling (Area: -Unknown- - Difficulty: 0) (Auras: 316915 - -Unknown-) (possible waypoints or random movement)
|
||||
(@CGUID+21, 156900, 2175, 10424, 10527, '0', 0, 0, 0, 0, 69.98264312744140625, -2122.057373046875, -30.1194019317626953, 5.326576709747314453, 7200, 0, 0, 310, 191, 0, 0, 0, 0, 45114); -- Hrun the Exiled (Area: -Unknown- - Difficulty: 0)
|
||||
|
||||
UPDATE `creature` SET `wander_distance`=0 AND `MovementType`=0 WHERE `guid` IN (1051196, 1051194);
|
||||
|
||||
-- Creature Addon
|
||||
DELETE FROM `creature_addon` WHERE `guid` IN (1051196, 1051194);
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(1051196, 0, 0, 1, 1, 0, 0, 0, 0, 3, ''), -- Hungry Vulture
|
||||
(1051194, 0, 0, 1, 1, 0, 0, 0, 0, 3, ''); -- Hungry Vulture
|
||||
|
||||
-- Creature Template Addon
|
||||
DELETE FROM `creature_template_addon` WHERE `entry` IN (160433 /*160433 (Barrow Spiderling) - -Unknown-*/, 160394 /*160394 (Barrow Spider) - -Unknown-*/, 156900);
|
||||
INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(160433, 0, 0, 0, 1, 0, 0, 0, 0, 0, '316915'), -- 160433 (Barrow Spiderling) - -Unknown-
|
||||
(160394, 0, 0, 0, 1, 0, 0, 0, 0, 0, '316915'), -- 160394 (Barrow Spider) - -Unknown-
|
||||
(156900, 0, 0, 0, 1, 468, 0, 0, 0, 0, ''); -- 156900 (Hrun the Exiled)
|
||||
|
||||
-- Creature Template
|
||||
UPDATE `creature_template` SET `minlevel`=10, `maxlevel`=10, `dynamicflags`=0 WHERE `entry`=160433; -- Barrow Spiderling
|
||||
UPDATE `creature_template` SET `minlevel`=10, `maxlevel`=10 WHERE `entry`=160394; -- Barrow Spider
|
||||
|
||||
-- Scaling
|
||||
UPDATE `creature_template_scaling` SET `VerifiedBuild`=45114 WHERE (`DifficultyID`=0 AND `Entry` IN (161224,156900,167216,168382,167212,167215,167217,167213,167222,167221,160433,160394));
|
||||
|
||||
UPDATE `creature_model_info` SET `VerifiedBuild`=45114 WHERE `DisplayID` IN (75371, 92803, 91670, 64062, 99444, 96320, 96314, 96364, 1072, 96384, 96363, 97258, 96541, 10824, 1157);
|
||||
UPDATE `creature_model_info` SET `BoundingRadius`=0.928183615207672119, `CombatReach`=0.655102074146270751, `VerifiedBuild`=45114 WHERE `DisplayID`=1088;
|
||||
UPDATE `creature_model_info` SET `BoundingRadius`=2.125280141830444335, `CombatReach`=1.5, `VerifiedBuild`=45114 WHERE `DisplayID`=283;
|
||||
@@ -1,43 +0,0 @@
|
||||
SET @CGUID := 1051407;
|
||||
SET @OGUID := 600230;
|
||||
|
||||
-- Creature
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+5;
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `PhaseGroup`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES
|
||||
(@CGUID+0, 157114, 2175, 10424, 10588, '0', 13878, 0, 0, 0, 301.390625, -2486.314208984375, 115.1827926635742187, 1.608367085456848144, 7200, 0, 0, 124, 0, 0, 0, 0, 0, 45114), -- Lightspawn (Area: -Unknown- - Difficulty: 0) (Auras: 319104 - -Unknown-)
|
||||
(@CGUID+1, 164026, 2175, 10424, 10588, '0', 13878, 0, 0, 0, 279.567718505859375, -2473.83154296875, 117.5749664306640625, 0, 7200, 0, 0, 124, 0, 0, 0, 0, 0, 45114), -- InvisBunny (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+2, 157104, 2175, 10424, 10588, '0', 13878, 0, 0, 0, 301.22222900390625, -2486.2587890625, 115.1819534301757812, 0, 7200, 0, 0, 124, 0, 0, 0, 0, 0, 45114), -- Invisible Stalker (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+3, 155572, 2175, 10424, 10588, '0', 13878, 0, 0, 0, 313.5850830078125, -2460.123291015625, 118.3092422485351562, 6.224598884582519531, 7200, 0, 0, 124, 0, 0, 0, 0, 0, 45114), -- InvisBunny (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+4, 164022, 2175, 10424, 10588, '0', 13878, 0, 0, 0, 325.213531494140625, -2496.65283203125, 117.8692550659179687, 0, 7200, 0, 0, 124, 0, 0, 0, 0, 0, 45114), -- InvisBunny (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+5, 164025, 2175, 10424, 10588, '0', 13878, 0, 0, 0, 290.63714599609375, -2513.760498046875, 117.9789657592773437, 0, 7200, 0, 0, 124, 0, 0, 0, 0, 0, 45114); -- InvisBunny (Area: -Unknown- - Difficulty: 0)
|
||||
|
||||
-- Creature Template Addon
|
||||
DELETE FROM `creature_template_addon` WHERE `entry` = 157114 /*157114 (Lightspawn) - -Unknown-*/;
|
||||
INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(157114, 0, 0, 0, 1, 0, 0, 0, 0, 3, '319104'); -- 157114 (Lightspawn) - -Unknown-
|
||||
|
||||
UPDATE `creature_template` SET `minlevel`=10, `unit_flags3`=16777216 WHERE `entry`=157104; -- Invisible Stalker
|
||||
UPDATE `creature_template` SET `minlevel`=10 WHERE `entry`=157114; -- Lightspawn
|
||||
UPDATE `creature_template` SET `minlevel`=10, `maxlevel`=10, `faction`=14, `BaseAttackTime`=2000, `unit_flags`=33554944, `unit_flags2`=2048, `unit_flags3`=16777216, `dynamicflags`=128 WHERE `entry`=164025; -- InvisBunny
|
||||
|
||||
-- GameObject
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+3;
|
||||
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, 326716, 2175, 10424, 10588, '0', 0, 0, 313.48785400390625, -2460.15283203125, 116.8345108032226562, 1.7185899019241333, 0, 0, 0.757382392883300781, 0.652971625328063964, 7200, 255, 1, 45114), -- Ritual Pedestal (Area: -Unknown- - Difficulty: 0)
|
||||
(@OGUID+1, 326719, 2175, 10424, 10588, '0', 0, 0, 279.508697509765625, -2473.833251953125, 116.2229385375976562, 1.7185899019241333, 0, 0, 0.757382392883300781, 0.652971625328063964, 7200, 255, 1, 45114), -- Ritual Pedestal (Area: -Unknown- - Difficulty: 0)
|
||||
(@OGUID+2, 326717, 2175, 10424, 10588, '0', 0, 0, 325.182281494140625, -2496.579833984375, 116.5211029052734375, 1.7185899019241333, 0, 0, 0.757382392883300781, 0.652971625328063964, 7200, 255, 1, 45114), -- Ritual Pedestal (Area: -Unknown- - Difficulty: 0)
|
||||
(@OGUID+3, 326718, 2175, 10424, 10588, '0', 0, 0, 290.677093505859375, -2513.736083984375, 116.6146011352539062, 1.7185899019241333, 0, 0, 0.757382392883300781, 0.652971625328063964, 7200, 255, 1, 45114); -- Ritual Pedestal (Area: -Unknown- - Difficulty: 0)
|
||||
|
||||
-- Phasing
|
||||
DELETE FROM `phase_area` WHERE (`AreaId` = 10424 AND `PhaseId` = 13878);
|
||||
INSERT INTO `phase_area` (`AreaId`, `PhaseId`, `Comment`) VALUES
|
||||
(10424, 13878, 'Cosmetic - See bound Lightspawn');
|
||||
|
||||
DELETE FROM `phase_name` WHERE `ID` = 13878;
|
||||
INSERT INTO `phase_name` (`ID`, `Name`) VALUES
|
||||
(13878, 'Cosmetic - See bound Lightspawn');
|
||||
|
||||
-- Condition
|
||||
DELETE FROM `conditions` WHERE (`SourceTypeOrReferenceId` = 26 AND `SourceGroup` = 13878 AND `SourceEntry` = 10424);
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `Comment`) VALUES
|
||||
(26, 13878, 10424, 0, 0, 47, 0, 54933, 64, 0, 1, 'Apply Phase 13878 If Quest 54933 IS NOT rewarded');
|
||||
@@ -1,270 +0,0 @@
|
||||
|
||||
UPDATE `creature` SET `ScriptName`='npc_tushui_leading_trainee' WHERE `guid`=450123;
|
||||
UPDATE `creature_template` SET `AIName` = '', `ScriptName` = 'npc_instructor_zhi' WHERE `entry` = 61411;
|
||||
UPDATE `creature_template` SET `AIName` = '', `ScriptName` = 'npc_huojin_trainee' WHERE `entry` IN (54586, 65470); -- Huojin
|
||||
UPDATE `creature_template` SET `AIName` = '', `ScriptName` = 'npc_tushui_huojin_trainee' WHERE `entry` IN (54587, 65471); -- Tushui
|
||||
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` IN (53565, 65469);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 9 AND `entryOrGuid` IN (45012300);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 0 AND `entryOrGuid` IN (-450137, -450130, -450123, 54586);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 0 AND `entryOrGuid` IN(54586, 65470, 54587, 65471);
|
||||
UPDATE `creature` SET `id` = 53565 WHERE `guid` = 450230;
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` =54611;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(54611, 0, 0, 'A challenger approaches.', 12, 0, 100, 113, 0, 0, 0, 0, 'Jaomin Ro to Player'),
|
||||
(54611, 1, 0, 'It seems I have more training to do. Thank you for the lesson.', 12, 0, 100, 2, 0, 0, 0, 0, 'Jaomin Ro'),
|
||||
(54611, 2, 0, 'Well fought. Master Shang will be pleased.', 12, 0, 100, 2, 0, 0, 0, 0, 'Jaomin Ro'),
|
||||
(54611, 3, 0, 'You\'ve been trained well.', 12, 0, 100, 2, 0, 0, 0, 0, 'Jaomin Ro');
|
||||
|
||||
UPDATE `creature_template` SET `speed_walk` = 0.345, `VerifiedBuild` = 42010 WHERE `entry` = 64440;
|
||||
|
||||
UPDATE `creature_equip_template` SET `VerifiedBuild`=41793 WHERE (`ID`=1 AND `CreatureID` IN (57620,57622));
|
||||
UPDATE `gameobject_template_addon` SET `flags`=65573 WHERE `entry`=210986; -- Edict of Temperance
|
||||
|
||||
DELETE FROM `quest_offer_reward` WHERE `ID` IN (29666 /*The Sting of Learning*/, 29677 /*The Sun Pearl*/, 29676 /*Finding an Old Friend*/, 29662 /*Stronger Than Reeds*/, 29663 /*The Lesson of the Balanced Rock*/, 29661 /*The Lesson of Dry Fur*/, 29521 /*The Singing Pools*/, 29423 /*The Passion of Shen-zin Su*/, 29422 /*Huo, the Spirit of Fire*/, 29421 /*Only the Worthy Shall Pass*/, 29664 /*The Challenger's Fires*/, 29420 /*The Spirit's Guardian*/, 29523 /*Fanning the Flames*/, 29418 /*Kindling the Fire*/, 29417 /*The Way of the Huojin*/, 29522 /*Ji of the Huojin*/);
|
||||
INSERT INTO `quest_offer_reward` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `RewardText`, `VerifiedBuild`) VALUES
|
||||
(29666, 1, 0, 0, 0, 0, 0, 0, 0, 'The water pincers are strange creatures. They seem to be drawn to still water.', 41793), -- The Sting of Learning
|
||||
(29677, 1, 0, 0, 0, 0, 0, 0, 0, 'Shu\'s desires are not so different from our own. He does not want to be alone. Unwanted, unloved. He longs to be needed, and to share his life with others.$B$BKnowing that, earning his trust is not terribly difficult. He just wants company.', 41793), -- The Sun Pearl
|
||||
(29676, 1, 0, 0, 0, 0, 0, 0, 0, 'Visitors are rare up here, but you are welcome. It is nice to meet you, young $c.', 41793), -- Finding an Old Friend
|
||||
(29662, 0, 0, 0, 0, 0, 0, 0, 0, 'Good.$B$BNo number of reeds have ever withstood my might.$B$BStep back, and let me dispel your doubts.', 41793), -- Stronger Than Reeds
|
||||
(29663, 1, 0, 0, 0, 0, 0, 0, 0, 'Even now, your skills increase. Your footing becomes more sure. Your blows strike with more force.$B$BDiscipline and practice are the keys to reaching our full potential.', 41793), -- The Lesson of the Balanced Rock
|
||||
(29661, 1, 0, 0, 0, 0, 0, 0, 0, 'Good. You\'re a quick study.', 41793), -- The Lesson of Dry Fur
|
||||
(29521, 1, 0, 0, 0, 0, 0, 0, 0, 'It\'s good to see you again, $n.$B$BThis is the pool of the skunk, as I\'m sure you noticed.$B$BOver the many ages of Shen-zin Su, animals have died in some of these magical pools. Through their deaths, their spirits were infused into the waters, and anyone touching those waters will take their form.$B$BThere are several cursed pools here, some more dangerous than others.', 41793), -- The Singing Pools
|
||||
(29423, 1, 0, 0, 0, 0, 0, 0, 0, '$n, you\'ve done very well. Huo, the spirit of fire, is here. The temple flames are reignited. You accomplished the challenge I put before you, and with seeming ease.$B$BThere is a greater purpose in bringing Huo to the temple. It is time that I tell you more of things to come.', 41793), -- The Passion of Shen-zin Su
|
||||
(29422, 1, 0, 0, 0, 0, 0, 0, 0, '<Through the glare, it looks like Huo is smiling. He seems to have warmed up to you.>', 41793), -- Huo, the Spirit of Fire
|
||||
(29421, 1, 0, 0, 0, 0, 0, 0, 0, 'Remember always, the superior warrior is modest in his speech, but exceeds in his actions.', 41793), -- Only the Worthy Shall Pass
|
||||
(29664, 1, 0, 0, 0, 0, 0, 0, 0, 'These fires will give you the strength that you\'ve not yet obtained. They will illuminate your potential.', 41793), -- The Challenger's Fires
|
||||
(29420, 1, 0, 0, 0, 0, 0, 0, 0, 'Life isn\'t about finding yourself. Life is about creating yourself. There is a path before you, but you choose the trials you will face, and the trials you will overcome.', 41793), -- The Spirit's Guardian
|
||||
(29523, 1, 0, 0, 0, 0, 0, 0, 0, 'You know what it is to seize opportunity. I think you and I are kindred spirits, $n.', 41793), -- Fanning the Flames
|
||||
(29418, 1, 0, 0, 0, 0, 0, 0, 0, '$n! You\'ve returned, roots in hand! You\'re a down-to-business kind of $G guy:gal;, aren\'t you? I like that!', 41793), -- Kindling the Fire
|
||||
(29417, 1, 0, 0, 0, 0, 0, 0, 0, 'You\'ve got some fight in you! I think I like you!', 41793), -- The Way of the Huojin
|
||||
(29522, 1, 0, 0, 0, 0, 0, 0, 0, 'Hello! You look poised and confident... I like that!$B$BI\'ve heard some rather impressive whispers about you from the training grounds. If you\'re half as capable as they say, I think you and I are going to be good friends!', 41793); -- Ji of the Huojin
|
||||
|
||||
DELETE FROM `quest_request_items` WHERE `ID` IN (29418 /*Kindling the Fire*/, 29662 /*Stronger Than Reeds*/, 29523 /*Fanning the Flames*/, 29677 /*The Sun Pearl*/);
|
||||
INSERT INTO `quest_request_items` (`ID`, `EmoteOnComplete`, `EmoteOnIncomplete`, `EmoteOnCompleteDelay`, `EmoteOnIncompleteDelay`, `CompletionText`, `VerifiedBuild`) VALUES
|
||||
(29418, 1, 0, 0, 0, 'I hope you\'re not shy about getting your hands dirty.', 42010), -- Kindling the Fire
|
||||
(29662, 0, 0, 0, 0, 'Telling you of my strength means nothing. I must show you.', 42010), -- Stronger Than Reeds
|
||||
(29523, 1, 0, 0, 0, 'When opportunity rises, it is our responsibility to reach out and grab it. Second guessing is as good as giving up.', 42010), -- Fanning the Flames
|
||||
(29677, 1, 0, 0, 0, 'The decision to not return to the pools was a hard one. I don\'t think Shu ever truly understood. He does not know what it is to get older and weaker.', 42010); -- The Sun Pearl
|
||||
|
||||
UPDATE `creature_queststarter` SET `VerifiedBuild`=41793 WHERE (`id`=55020 AND `quest` IN (29678,29666,29677)) OR (`id`=54975 AND `quest` IN (29676,29663,29661)) OR (`id`=55021 AND `quest`=29662) OR (`id`=54786 AND `quest`=29521) OR (`id`=54787 AND `quest`=29423) OR (`id`=54135 AND `quest` IN (29422,29421,29664)) OR (`id`=54609 AND `quest`=29420) OR (`id`=54568 AND `quest` IN (29523,29418,29417)) OR (`id`=54608 AND `quest`=29522);
|
||||
UPDATE `creature_queststarter` SET `VerifiedBuild`=42010 WHERE (`id`=54608 AND `quest`=29522) OR (`id`=53566 AND `quest` IN (30034,30033,30036,30038,30035));
|
||||
UPDATE `creature_questender` SET `VerifiedBuild`=41793 WHERE (`id`=55020 AND `quest` IN (29666,29677,29676)) OR (`id`=55021 AND `quest`=29662) OR (`id`=54975 AND `quest` IN (29663,29661,29521)) OR (`id`=54786 AND `quest`=29423) OR (`id`=54787 AND `quest`=29422) OR (`id`=54135 AND `quest` IN (29421,29664,29420)) OR (`id`=54568 AND `quest` IN (29523,29418,29417,29522)) OR (`id`=54608 AND `quest`=29414);
|
||||
UPDATE `creature_questender` SET `VerifiedBuild`=42010 WHERE (`id`=54608 AND `quest`=29414) OR (`id`=53566 AND `quest` IN (30034,30033,30036,30038,30035));
|
||||
|
||||
-- Trainee Nim smart ai
|
||||
SET @ENTRY := 60183;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 0 AND `entryOrGuid` = @ENTRY;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 9 AND `entryOrGuid` IN (6018300);
|
||||
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` = @ENTRY;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(@ENTRY, 0, 0, 1, 10, 0, 100, 1, 1, 10, 1, 2, 5, 113, 0, 0, 0, 0, 0, 17, 1, 20, 0, 0, 0, 0, 0, 'On only non hostile unit in line of sight (OOC) - Players in 1 - 20 yards: Play emote 113'),
|
||||
(@ENTRY, 0, 1, 0, 61, 0, 100, 0, 0, 0, 0, 0, 80, 6018300, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On only non hostile unit in line of sight (OOC) - Self: Start timed action list id #6018300 (update out of combat) // -inline'),
|
||||
(@ENTRY * 100, 9, 0, 0, 0, 0, 100, 0, 100, 1000, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 0.1 - 1 seconds - Self: Talk 0 to invoker');
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 22 AND `SourceEntry` = 60183 AND `SourceId` = 0;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `Comment`) VALUES
|
||||
(22, 1, 60183, 0, 0, 9, 0, 29409, 0, 0, 0, 'Action invoker has quest The Disciple\'s Challenge (29409) active');
|
||||
|
||||
UPDATE `creature` SET `id` = 60244, `map` = 860, `zoneId` = 5736, `areaId` = 5834, `position_x` = 1334.94, `position_y` = 3380.83, `position_z` = 128.679, `orientation` = 5.98421, `VerifiedBuild` = 41793 WHERE `guid` = 450099;
|
||||
|
||||
UPDATE `creature_text` SET `Sound` = 33646 WHERE `GroupID` = 0 AND `ID` = 0 AND `CreatureID` = 53565;
|
||||
UPDATE `creature_text` SET `Sound` = 33646 WHERE `GroupID` = 0 AND `ID` = 3 AND `CreatureID` = 53565;
|
||||
UPDATE `creature_text` SET `Sound` = 33644 WHERE `GroupID` = 0 AND `ID` = 4 AND `CreatureID` = 53565;
|
||||
UPDATE `creature_text` SET `Sound` = 33645 WHERE `GroupID` = 0 AND `ID` = 5 AND `CreatureID` = 53565;
|
||||
UPDATE `creature_text` SET `Sound` = 33646 WHERE `GroupID` = 0 AND `ID` = 6 AND `CreatureID` = 53565;
|
||||
UPDATE `creature_text` SET `Sound` = 33646 WHERE `GroupID` = 0 AND `ID` = 7 AND `CreatureID` = 53565;
|
||||
UPDATE `creature_text` SET `Sound` = 33645 WHERE `GroupID` = 0 AND `ID` = 0 AND `CreatureID` = 60183;
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` = 60244;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(60244, 0, 0, 'You\'re departing so soon? I am envious of your prowess, $c. Good luck to you.', 12, 0, 100, 2, 0, 33645, 59711, 0, 'Trainee Guang to Player');
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` IN (54130, 54567, 54856, 54943, 56503, 59642, 59652, 65469);
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(54130, 0, 0, 'Look out! Its friendses are coming!', 14, 0, 100, 2, 0, 0, 56473, 0, 'Amberleaf Scamp to Player'),
|
||||
(54130, 1, 0, 'Run away!', 14, 0, 100, 2, 0, 0, 56474, 0, 'Amberleaf Scamp to Player'), -- BroadcastTextID: 26179 - 56474 - 61876 - 120283
|
||||
(54567, 0, 0, 'And so our path lays before us. Speak to Master Shang Xi, he will tell you what comes next.', 12, 0, 100, 0, 0, 27399, 60046, 0, 'Aysa Cloudsinger to Player'),
|
||||
(54856, 0, 0, 'Master Li Fei\'s voice echoes, \"It is good to see you again, Aysa. You\'ve come with respect, and so I shall give you the answers you seek.\"', 16, 0, 100, 1, 0, 0, 53845, 0, 'Master Li Fei to Player'),
|
||||
(54856, 1, 0, 'Master Li Fei\'s voice echoes, \"Huo, the spirit of fire, is known for his hunger. He wants for tinder to eat. He needs the caress of the wind to rouse him.\"', 16, 0, 100, 1, 0, 0, 53841, 0, 'Master Li Fei to Player'),
|
||||
(54856, 2, 0, 'Master Li Fei\'s voice echoes, \"If you find these things and bring them to his cave, on the far side of Wu-Song Village, you will face a challenge within.\"', 16, 0, 100, 1, 0, 0, 53842, 0, 'Master Li Fei to Player'),
|
||||
(54856, 3, 0, 'Master Li Fei\'s voice echoes, \"Overcome that challenge, and you shall be graced by Huo\'s presence. Rekindle his flame, and if your spirit is pure, he shall follow you.\"', 16, 0, 100, 1, 0, 0, 53843, 0, 'Master Li Fei to Player'),
|
||||
(54856, 4, 0, 'Master Li Fei\'s voice echoes, \"Go, children. We shall meet again very soon.\"', 16, 0, 100, 2, 0, 0, 53844, 0, 'Master Li Fei to Player'),
|
||||
(54856, 5, 0, 'Master Li Fei fades away.', 16, 0, 100, 0, 0, 0, 53130, 0, 'Master Li Fei to Player'),
|
||||
(54943, 0, 0, 'Shhhh! Come quietly. She\'s practicing.', 12, 0, 100, 396, 0, 0, 59712, 0, 'Merchant Lorvo to Player'),
|
||||
(56503, 0, 0, 'Master Shang has trained you well. Thank you, friend!', 12, 0, 100, 2, 0, 0, 53265, 0, 'Min Dimwind to Player'),
|
||||
(56503, 1, 0, 'I couldn\'t have fought them off alone. Now, if you\'ll excuse me, I should go find my cart.', 12, 0, 100, 1, 0, 0, 56452, 0, 'Min Dimwind to Player'),
|
||||
(56503, 2, 0, 'Cart!', 14, 0, 100, 22, 0, 0, 56453, 0, 'Min Dimwind to Player'),
|
||||
(56503, 3, 0, 'Hello, cart. Still upside-downed, I see.', 12, 0, 100, 1, 0, 0, 56454, 0, 'Min Dimwind to Player'),
|
||||
(59642, 0, 0, 'Keep those creatures at bay while I meditate. We\'ll soon have the answers we seek.', 12, 0, 100, 0, 0, 27398, 59161, 0, 'Aysa Cloudsinger to Player'),
|
||||
(59652, 0, 0, 'Meet me up in the cave if you would, friend.', 12, 0, 100, 396, 0, 27397, 59147, 0, 'Aysa Cloudsinger to Player');
|
||||
|
||||
-- Trainee Guang smart ai
|
||||
SET @ENTRY := 60244;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 0 AND `entryOrGuid` = @ENTRY;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 9 AND `entryOrGuid` IN (6024400);
|
||||
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` = @ENTRY;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(@ENTRY, 0, 0, 1, 10, 0, 100, 1, 1, 40, 1, 2, 5, 113, 0, 0, 0, 0, 0, 17, 1, 40, 0, 0, 0, 0, 0, 'On only non hostile unit in line of sight (OOC) - Players in 1 - 40 yards: Play emote 113'),
|
||||
(@ENTRY, 0, 1, 0, 61, 0, 100, 0, 0, 0, 0, 0, 80, 6024400, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On only non hostile unit in line of sight (OOC) - Self: Start timed action list id #6024400 (update out of combat) // -inline'),
|
||||
(@ENTRY * 100, 9, 0, 0, 0, 0, 100, 0, 100, 1000, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 0.1 - 1 seconds - Self: Talk 0 to invoker');
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 22 AND `SourceEntry` = 60244 AND `SourceId` = 0;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `Comment`) VALUES
|
||||
(22, 1, 60244, 0, 0, 28, 0, 29410, 0, 0, 0, 'Action invoker has completed quest quest Aysa of the Tushui (29410) (but not yet rewarded)');
|
||||
|
||||
DELETE FROM `npc_vendor` WHERE (`entry`=54943 AND `item`=90660 AND `ExtendedCost`=0 AND `type`=1) OR (`entry`=54943 AND `item`=90659 AND `ExtendedCost`=0 AND `type`=1) OR (`entry`=54943 AND `item`=159 AND `ExtendedCost`=0 AND `type`=1) OR (`entry`=54943 AND `item`=3770 AND `ExtendedCost`=0 AND `type`=1) OR (`entry`=54943 AND `item`=2287 AND `ExtendedCost`=0 AND `type`=1) OR (`entry`=54943 AND `item`=117 AND `ExtendedCost`=0 AND `type`=1) OR (`entry`=54943 AND `item`=4606 AND `ExtendedCost`=0 AND `type`=1) OR (`entry`=54943 AND `item`=4605 AND `ExtendedCost`=0 AND `type`=1) OR (`entry`=54943 AND `item`=4604 AND `ExtendedCost`=0 AND `type`=1) OR (`entry`=54943 AND `item`=4593 AND `ExtendedCost`=0 AND `type`=1) OR (`entry`=54943 AND `item`=4592 AND `ExtendedCost`=0 AND `type`=1) OR (`entry`=54943 AND `item`=787 AND `ExtendedCost`=0 AND `type`=1) OR (`entry`=54943 AND `item`=4542 AND `ExtendedCost`=0 AND `type`=1) OR (`entry`=54943 AND `item`=4541 AND `ExtendedCost`=0 AND `type`=1) OR (`entry`=54943 AND `item`=4540 AND `ExtendedCost`=0 AND `type`=1) OR (`entry`=54943 AND `item`=4538 AND `ExtendedCost`=0 AND `type`=1) OR (`entry`=54943 AND `item`=4536 AND `ExtendedCost`=0 AND `type`=1);
|
||||
INSERT INTO `npc_vendor` (`entry`, `slot`, `item`, `maxcount`, `ExtendedCost`, `type`, `PlayerConditionID`, `IgnoreFiltering`, `VerifiedBuild`) VALUES
|
||||
(54943, 17, 90660, 0, 0, 1, 0, 0, 42010), -- Black Tea
|
||||
(54943, 16, 90659, 0, 0, 1, 0, 0, 42010), -- Jasmine Tea
|
||||
(54943, 15, 159, 0, 0, 1, 0, 0, 42010), -- Refreshing Spring Water
|
||||
(54943, 14, 3770, 0, 0, 1, 0, 0, 42010), -- Mutton Chop
|
||||
(54943, 13, 2287, 0, 0, 1, 0, 0, 42010), -- Haunch of Meat
|
||||
(54943, 12, 117, 0, 0, 1, 0, 0, 42010), -- Tough Jerky
|
||||
(54943, 11, 4606, 0, 0, 1, 0, 0, 42010), -- Spongy Morel
|
||||
(54943, 10, 4605, 0, 0, 1, 0, 0, 42010), -- Red-Speckled Mushroom
|
||||
(54943, 9, 4604, 0, 0, 1, 0, 0, 42010), -- Forest Mushroom Cap
|
||||
(54943, 8, 4593, 0, 0, 1, 0, 0, 42010), -- Bristle Whisker Catfish
|
||||
(54943, 7, 4592, 0, 0, 1, 0, 0, 42010), -- Longjaw Mud Snapper
|
||||
(54943, 6, 787, 0, 0, 1, 0, 0, 42010), -- Slitherskin Mackerel
|
||||
(54943, 5, 4542, 0, 0, 1, 0, 0, 42010), -- Moist Cornbread
|
||||
(54943, 4, 4541, 0, 0, 1, 0, 0, 42010), -- Freshly Baked Bread
|
||||
(54943, 3, 4540, 0, 0, 1, 0, 0, 42010), -- Tough Hunk of Bread
|
||||
(54943, 2, 4538, 0, 0, 1, 0, 0, 42010), -- Snapvine Watermelon
|
||||
(54943, 1, 4536, 0, 0, 1, 0, 0, 42010); -- Shiny Red Apple
|
||||
|
||||
-- Aspiring Trainee with guid 450215 smart ai
|
||||
SET @ENTRY := -450215;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 0 AND `entryOrGuid` = @ENTRY;
|
||||
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` = 53565;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(@ENTRY, 0, 0, 1, 1, 0, 100, 0, 1000, 5000, 6000, 7000, 10, 509, 543, 511, 507, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Every 6 - 7 seconds (1 - 5s initially) (OOC) - Self: Play random emote: 509, 543, 511, 507,'),
|
||||
(@ENTRY, 0, 1, 2, 61, 0, 100, 0, 0, 0, 0, 0, 115, 33646, 33643, 33645, 33646, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Every 6 - 7 seconds (1 - 5s initially) (OOC) - Self: Play random direct sound one of: 33646, 33643, 33645, 33646 of all'),
|
||||
(@ENTRY, 0, 2, 0, 61, 0, 100, 0, 0, 0, 0, 0, 11, 108967, 0, 0, 0, 0, 0, 9, 57873, 0, 5, 0, 0, 0, 0, 'Every 6 - 7 seconds (1 - 5s initially) (OOC) - Self: Cast spell 108967 on Creature Training Target (57873) in 0 - 5 yards');
|
||||
|
||||
-- Aspiring Trainee with guid 450228 smart ai
|
||||
SET @ENTRY := -450228;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 0 AND `entryOrGuid` = @ENTRY;
|
||||
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` = 53565;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(@ENTRY, 0, 0, 1, 1, 0, 100, 0, 1000, 5000, 6000, 7000, 10, 509, 543, 511, 507, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Every 6 - 7 seconds (1 - 5s initially) (OOC) - Self: Play random emote: 509, 543, 511, 507,'),
|
||||
(@ENTRY, 0, 1, 2, 61, 0, 100, 0, 0, 0, 0, 0, 115, 33646, 33643, 33645, 33646, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Every 6 - 7 seconds (1 - 5s initially) (OOC) - Self: Play random direct sound one of: 33646, 33643, 33645, 33646 of all'),
|
||||
(@ENTRY, 0, 2, 0, 61, 0, 100, 0, 0, 0, 0, 0, 11, 108967, 0, 0, 0, 0, 0, 9, 57873, 0, 5, 0, 0, 0, 0, 'Every 6 - 7 seconds (1 - 5s initially) (OOC) - Self: Cast spell 108967 on Creature Training Target (57873) in 0 - 5 yards');
|
||||
|
||||
-- Aspiring Trainee with guid 450197 smart ai
|
||||
SET @ENTRY := -450197;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 0 AND `entryOrGuid` = @ENTRY;
|
||||
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` = 53565;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(@ENTRY, 0, 0, 1, 1, 0, 100, 0, 1000, 5000, 6000, 7000, 10, 509, 543, 511, 507, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Every 6 - 7 seconds (1 - 5s initially) (OOC) - Self: Play random emote: 509, 543, 511, 507,'),
|
||||
(@ENTRY, 0, 1, 2, 61, 0, 100, 0, 0, 0, 0, 0, 115, 33646, 33643, 33645, 33646, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Every 6 - 7 seconds (1 - 5s initially) (OOC) - Self: Play random direct sound one of: 33646, 33643, 33645, 33646 of all'),
|
||||
(@ENTRY, 0, 2, 0, 61, 0, 100, 0, 0, 0, 0, 0, 11, 108967, 0, 0, 0, 0, 0, 9, 57873, 0, 5, 0, 0, 0, 0, 'Every 6 - 7 seconds (1 - 5s initially) (OOC) - Self: Cast spell 108967 on Creature Training Target (57873) in 0 - 5 yards');
|
||||
|
||||
-- Aspiring Trainee with guid 450207 smart ai
|
||||
SET @ENTRY := -450207;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 0 AND `entryOrGuid` = @ENTRY;
|
||||
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` = 53565;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(@ENTRY, 0, 0, 1, 1, 0, 100, 0, 1000, 5000, 6000, 7000, 10, 509, 543, 511, 507, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Every 6 - 7 seconds (1 - 5s initially) (OOC) - Self: Play random emote: 509, 543, 511, 507,'),
|
||||
(@ENTRY, 0, 1, 2, 61, 0, 100, 0, 0, 0, 0, 0, 115, 33646, 33643, 33645, 33646, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Every 6 - 7 seconds (1 - 5s initially) (OOC) - Self: Play random direct sound one of: 33646, 33643, 33645, 33646 of all'),
|
||||
(@ENTRY, 0, 2, 0, 61, 0, 100, 0, 0, 0, 0, 0, 11, 108967, 0, 0, 0, 0, 0, 9, 57873, 0, 5, 0, 0, 0, 0, 'Every 6 - 7 seconds (1 - 5s initially) (OOC) - Self: Cast spell 108967 on Creature Training Target (57873) in 0 - 5 yards');
|
||||
|
||||
-- Aspiring Trainee with guid 450213 smart ai
|
||||
SET @ENTRY := -450213;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 0 AND `entryOrGuid` = @ENTRY;
|
||||
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` = 53565;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(@ENTRY, 0, 0, 1, 1, 0, 100, 0, 1000, 5000, 6000, 7000, 10, 509, 543, 511, 507, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Every 6 - 7 seconds (1 - 5s initially) (OOC) - Self: Play random emote: 509, 543, 511, 507,'),
|
||||
(@ENTRY, 0, 1, 2, 61, 0, 100, 0, 0, 0, 0, 0, 115, 33646, 33643, 33645, 33646, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Every 6 - 7 seconds (1 - 5s initially) (OOC) - Self: Play random direct sound one of: 33646, 33643, 33645, 33646 of all'),
|
||||
(@ENTRY, 0, 2, 0, 61, 0, 100, 0, 0, 0, 0, 0, 11, 108967, 0, 0, 0, 0, 0, 9, 57873, 0, 5, 0, 0, 0, 0, 'Every 6 - 7 seconds (1 - 5s initially) (OOC) - Self: Cast spell 108967 on Creature Training Target (57873) in 0 - 5 yards');
|
||||
|
||||
-- Instructor Qun smart ai
|
||||
SET @ENTRY := 57748;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 0 AND `entryOrGuid` = @ENTRY;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 9 AND `entryOrGuid` IN (5774800);
|
||||
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` = @ENTRY;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(@ENTRY, 0, 0, 0, 1, 0, 100, 0, 19000, 19000, 19000, 20000, 80, 5774800, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Every 19 - 20 seconds (19 - 19s initially) (OOC) - Self: Start timed action list id #5774800 (update out of combat) // -inline'),
|
||||
(@ENTRY * 100, 9, 0, 0, 0, 0, 100, 0, 1000, 3000, 0, 0, 5, 509, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 1 - 3 seconds - Self: Play emote 509'),
|
||||
(@ENTRY * 100, 9, 1, 0, 0, 0, 100, 0, 1000, 2000, 0, 0, 5, 509, 0, 0, 0, 0, 0, 11, 53565, 15, 0, 0, 0, 0, 0, 'After 1 - 2 seconds - Creature Aspiring Trainee (53565) in 15 yd: Play emote 509'),
|
||||
(@ENTRY * 100, 9, 2, 0, 0, 0, 100, 0, 0, 0, 0, 0, 5, 509, 0, 0, 0, 0, 0, 11, 65469, 15, 0, 0, 0, 0, 0, 'After 0 seconds - Creature Aspiring Trainee (65469) in 15 yd: Play emote 509'),
|
||||
(@ENTRY * 100, 9, 3, 0, 0, 0, 100, 0, 100, 100, 0, 0, 115, 33646, 33645, 33646, 33646, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 0.1 seconds - Self: Play random direct sound one of: 33646, 33645, 33646, 33646 of all'),
|
||||
(@ENTRY * 100, 9, 4, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 5, 543, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 6 seconds - Self: Play emote 543'),
|
||||
(@ENTRY * 100, 9, 5, 0, 0, 0, 100, 0, 1000, 2000, 0, 0, 5, 543, 0, 0, 0, 0, 0, 11, 53565, 15, 0, 0, 0, 0, 0, 'After 1 - 2 seconds - Creature Aspiring Trainee (53565) in 15 yd: Play emote 543'),
|
||||
(@ENTRY * 100, 9, 6, 0, 0, 0, 100, 0, 0, 0, 0, 0, 5, 543, 0, 0, 0, 0, 0, 11, 65469, 15, 0, 0, 0, 0, 0, 'After 0 seconds - Creature Aspiring Trainee (65469) in 15 yd: Play emote 543'),
|
||||
(@ENTRY * 100, 9, 7, 0, 0, 0, 100, 0, 100, 100, 0, 0, 115, 33646, 33643, 33646, 33646, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 0.1 seconds - Self: Play random direct sound one of: 33646, 33643, 33646, 33646 of all'),
|
||||
(@ENTRY * 100, 9, 8, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 5, 511, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 6 seconds - Self: Play emote 511'),
|
||||
(@ENTRY * 100, 9, 9, 0, 0, 0, 100, 0, 1000, 2000, 0, 0, 5, 511, 0, 0, 0, 0, 0, 11, 53565, 15, 0, 0, 0, 0, 0, 'After 1 - 2 seconds - Creature Aspiring Trainee (53565) in 15 yd: Play emote 511'),
|
||||
(@ENTRY * 100, 9, 10, 0, 0, 0, 100, 0, 0, 0, 0, 0, 5, 511, 0, 0, 0, 0, 0, 11, 65469, 15, 0, 0, 0, 0, 0, 'After 0 seconds - Creature Aspiring Trainee (65469) in 15 yd: Play emote 511'),
|
||||
(@ENTRY * 100, 9, 11, 0, 0, 0, 100, 0, 100, 100, 0, 0, 115, 33646, 33645, 33646, 33646, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 0.1 seconds - Self: Play random direct sound one of: 33646, 33645, 33646, 33646 of all'),
|
||||
(@ENTRY * 100, 9, 12, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 5, 507, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 6 seconds - Self: Play emote 507'),
|
||||
(@ENTRY * 100, 9, 13, 0, 0, 0, 100, 0, 1000, 2000, 0, 0, 5, 507, 0, 0, 0, 0, 0, 11, 53565, 15, 0, 0, 0, 0, 0, 'After 1 - 2 seconds - Creature Aspiring Trainee (53565) in 15 yd: Play emote 507'),
|
||||
(@ENTRY * 100, 9, 14, 0, 0, 0, 100, 0, 0, 0, 0, 0, 5, 507, 0, 0, 0, 0, 0, 11, 65469, 15, 0, 0, 0, 0, 0, 'After 0 seconds - Creature Aspiring Trainee (65469) in 15 yd: Play emote 507'),
|
||||
(@ENTRY * 100, 9, 15, 0, 0, 0, 100, 0, 100, 100, 0, 0, 115, 33646, 33646, 33643, 33646, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 0.1 seconds - Self: Play random direct sound one of: 33646, 33646, 33643, 33646 of all');
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 22 AND `SourceEntry` = 57748 AND `SourceId` = 0;
|
||||
|
||||
-- Quiet Lam
|
||||
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` = 57752;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = 57752 AND `source_type` = 0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(57752, 0, 0, 1, 1, 0, 100, 0, 0, 0, 5000, 5000, 10, 507, 509, 511, 543, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Quiet Lam - OOC - Play Random Emote (507, 509, 511, 543)'),
|
||||
(57752, 0, 1, 0, 61, 0, 100, 0, 0, 0, 0, 0, 115, 33643, 33645, 33646, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 'Quiet Lam - Play Random Sound (33643, 33645, 33646)');
|
||||
|
||||
-- Ironfist Zhou
|
||||
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` = 57753;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = 57753 AND `source_type` = 0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(57753, 0, 0, 1, 1, 0, 100, 0, 0, 0, 5000, 5000, 10, 507, 509, 511, 543, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Ironfist Zhou - OOC - Play Random Emote (507, 509, 511, 543)'),
|
||||
(57753, 0, 1, 0, 61, 0, 100, 0, 0, 0, 0, 0, 115, 33643, 33645, 33646, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 'Ironfist Zhou - Play Random Sound (33643, 33645, 33646)');
|
||||
|
||||
-- Aspiring Trainee with guid 450192 smart ai - the conversation doesn't go according to retail times - I put the times there according to myself "guessed"
|
||||
SET @ENTRY := -450192;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 0 AND `entryOrGuid` = @ENTRY;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 9 AND `entryOrGuid` IN (45019200);
|
||||
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` = 53565;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(@ENTRY, 0, 0, 0, 1, 0, 100, 0, 85000, 95000, 85000, 95000, 80, 45019200, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Every 85 - 95 seconds (OOC) - Self: Start timed action list id #45019200 (update out of combat) // -inline'),
|
||||
(45019200, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 19, 53565, 3, 0, 0, 0, 0, 0, 'After 0 seconds - Closest alive creature Aspiring Trainee (53565) in 3 yards: Talk My money\'s on Lam. Did you see him take down Chu during trai... (1) to invoker'),
|
||||
(45019200, 9, 1, 0, 0, 0, 100, 0, 2000, 3000, 0, 0, 1, 2, 0, 0, 0, 0, 0, 19, 53565, 3, 0, 0, 0, 0, 0, 'After 2 - 3 seconds - Closest alive creature Aspiring Trainee (53565) in 3 yards: Talk His stamina is nothing against Lam\'s strength. (2) to invoker'),
|
||||
(45019200, 9, 2, 0, 0, 0, 100, 0, 4000, 5000, 0, 0, 1, 3, 0, 0, 0, 0, 0, 19, 53565, 3, 0, 0, 0, 0, 0, 'After 4 - 5 seconds - Closest alive creature Aspiring Trainee (53565) in 3 yards: Talk He has the legs of an ox! Have you ever been kicked by him i... (3) to invoker'),
|
||||
(45019200, 9, 3, 0, 0, 0, 100, 0, 1000, 2000, 0, 0, 1, 4, 0, 1, 0, 0, 0, 19, 53565, 3, 0, 0, 0, 0, 0, 'After 1 - 2 seconds - Self: Talk 4 to Closest alive creature Aspiring Trainee (53565) in 3 yards'),
|
||||
(45019200, 9, 4, 0, 0, 0, 100, 0, 5000, 6000, 0, 0, 1, 5, 0, 0, 0, 0, 0, 19, 53565, 3, 0, 0, 0, 0, 0, 'After 5 - 6 seconds - Closest alive creature Aspiring Trainee (53565) in 3 yards: Talk That\'s where you\'re mistaken, friend. Zhou is as sturdy as an oak. (5) to invoker'),
|
||||
(45019200, 9, 5, 0, 0, 0, 100, 0, 7000, 8000, 0, 0, 1, 6, 0, 1, 0, 0, 0, 19, 53565, 3, 0, 0, 0, 0, 0, 'After 7 - 8 seconds - Self: Talk 6 to Closest alive creature Aspiring Trainee (53565) in 3 yards'),
|
||||
(45019200, 9, 6, 0, 0, 0, 100, 0, 8000, 9000, 0, 0, 1, 7, 0, 1, 0, 0, 0, 19, 53565, 3, 0, 0, 0, 0, 0, 'After 8 - 9 seconds - Self: Talk 7 to Closest alive creature Aspiring Trainee (53565) in 3 yards');
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` IN(54586, 65470, 54587, 65471) AND `GroupID`=0;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(54586, 0, 0, 'I have never seen a trainee with skills such as yours. I must tell the others.', 12, 0, 100, 1, 0, 33643, 56445, 0, 'Trainee'),
|
||||
(54586, 0, 1, 'My skills are no match for yours. I admit defeat.', 12, 0, 100, 1, 0, 33645, 56441, 0, 'Trainee'),
|
||||
(54586, 0, 2, 'Thank you for reminding me that I must train more diligently.', 12, 0, 100, 1, 0, 0, 56439, 0, 'Trainee'),
|
||||
(54586, 0, 3, 'That was a good match. Thank you.', 12, 0, 100, 1, 0, 0, 56444, 0, 'Trainee'),
|
||||
(54586, 0, 4, 'You are an honorable opponent.', 12, 0, 100, 1, 0, 33643, 56438, 0, 'Trainee'),
|
||||
(54586, 0, 5, 'You fight honorably, friend.', 12, 0, 100, 1, 0, 33645, 56440, 0, 'Trainee'),
|
||||
(54586, 0, 6, 'You fought well. I must learn more from you in the future.', 12, 0, 100, 1, 0, 0, 56443, 0, 'Trainee'),
|
||||
(54586, 0, 7, 'Your skills are too great. I yield.', 12, 0, 100, 1, 0, 33643, 56442, 0, 'Trainee'),
|
||||
(54587, 0, 0, 'I have never seen a trainee with skills such as yours. I must tell the others.', 12, 0, 100, 1, 0, 33643, 56445, 0, 'Trainee'),
|
||||
(54587, 0, 1, 'My skills are no match for yours. I admit defeat.', 12, 0, 100, 1, 0, 33645, 56441, 0, 'Trainee'),
|
||||
(54587, 0, 2, 'Thank you for reminding me that I must train more diligently.', 12, 0, 100, 1, 0, 0, 56439, 0, 'Trainee'),
|
||||
(54587, 0, 3, 'That was a good match. Thank you.', 12, 0, 100, 1, 0, 0, 56444, 0, 'Trainee'),
|
||||
(54587, 0, 4, 'You are an honorable opponent.', 12, 0, 100, 1, 0, 33643, 56438, 0, 'Trainee'),
|
||||
(54587, 0, 5, 'You fight honorably, friend.', 12, 0, 100, 1, 0, 33645, 56440, 0, 'Trainee'),
|
||||
(54587, 0, 6, 'You fought well. I must learn more from you in the future.', 12, 0, 100, 1, 0, 0, 56443, 0, 'Trainee'),
|
||||
(54587, 0, 7, 'Your skills are too great. I yield.', 12, 0, 100, 1, 0, 33643, 56442, 0, 'Trainee'),
|
||||
(65470, 0, 0, 'I have never seen a trainee with skills such as yours. I must tell the others.', 12, 0, 100, 1, 0, 33643, 56445, 0, 'Trainee'),
|
||||
(65470, 0, 1, 'My skills are no match for yours. I admit defeat.', 12, 0, 100, 1, 0, 33645, 56441, 0, 'Trainee'),
|
||||
(65470, 0, 2, 'Thank you for reminding me that I must train more diligently.', 12, 0, 100, 1, 0, 0, 56439, 0, 'Trainee'),
|
||||
(65470, 0, 3, 'That was a good match. Thank you.', 12, 0, 100, 1, 0, 0, 56444, 0, 'Trainee'),
|
||||
(65470, 0, 4, 'You are an honorable opponent.', 12, 0, 100, 1, 0, 33643, 56438, 0, 'Trainee'),
|
||||
(65470, 0, 5, 'You fight honorably, friend.', 12, 0, 100, 1, 0, 33645, 56440, 0, 'Trainee'),
|
||||
(65470, 0, 6, 'You fought well. I must learn more from you in the future.', 12, 0, 100, 1, 0, 0, 56443, 0, 'Trainee'),
|
||||
(65470, 0, 7, 'Your skills are too great. I yield.', 12, 0, 100, 1, 0, 33643, 56442, 0, 'Trainee'),
|
||||
(65471, 0, 0, 'I have never seen a trainee with skills such as yours. I must tell the others.', 12, 0, 100, 1, 0, 33643, 56445, 0, 'Trainee'),
|
||||
(65471, 0, 1, 'My skills are no match for yours. I admit defeat.', 12, 0, 100, 1, 0, 33645, 56441, 0, 'Trainee'),
|
||||
(65471, 0, 2, 'Thank you for reminding me that I must train more diligently.', 12, 0, 100, 1, 0, 0, 56439, 0, 'Trainee'),
|
||||
(65471, 0, 3, 'That was a good match. Thank you.', 12, 0, 100, 1, 0, 0, 56444, 0, 'Trainee'),
|
||||
(65471, 0, 4, 'You are an honorable opponent.', 12, 0, 100, 1, 0, 33643, 56438, 0, 'Trainee'),
|
||||
(65471, 0, 5, 'You fight honorably, friend.', 12, 0, 100, 1, 0, 33645, 56440, 0, 'Trainee'),
|
||||
(65471, 0, 6, 'You fought well. I must learn more from you in the future.', 12, 0, 100, 1, 0, 0, 56443, 0, 'Trainee'),
|
||||
(65471, 0, 7, 'Your skills are too great. I yield.', 12, 0, 100, 1, 0, 33643, 56442, 0, 'Trainee');
|
||||
|
||||
UPDATE `creature` SET `spawntimesecs`=20 WHERE `id` IN(54586, 65470, 54587, 65471);
|
||||
@@ -1,3 +0,0 @@
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName` = 'spell_gen_ancestral_call';
|
||||
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
|
||||
(274738, 'spell_gen_ancestral_call');
|
||||
@@ -1,9 +0,0 @@
|
||||
--
|
||||
UPDATE `creature_template` SET `AIName`='', `ScriptName`='npc_zm_field_scout' WHERE `entry` IN (18581,18564);
|
||||
UPDATE `gossip_menu_option` SET `OptionNpcFlag`=1 WHERE `MenuID`=7724 AND `OptionID`=0;
|
||||
|
||||
DELETE FROM `gossip_menu_option` WHERE (`MenuID`=7722 AND `OptionID`=0);
|
||||
INSERT INTO `gossip_menu_option` (`MenuID`, `OptionID`, `OptionIcon`, `OptionText`, `OptionBroadcastTextId`, `OptionType`, `OptionNpcFlag`, `Language`, `ActionMenuID`, `ActionPoiID`, `BoxCoded`, `BoxMoney`, `BoxText`, `BoxBroadcastTextID`, `VerifiedBuild`) VALUES
|
||||
(7722, 0, 0, 'Give me a battle standard. I will take control of Twin Spire Ruins.', 15537, 1, 1, 0, 0, 0, 0, 0, NULL, 0, 45114); -- OptionBroadcastTextID: 15537 - 15539
|
||||
|
||||
UPDATE `gossip_menu_option` SET `VerifiedBuild`=45114 WHERE (`MenuID`=7722 AND `OptionID`=1);
|
||||
@@ -1,12 +0,0 @@
|
||||
--
|
||||
SET @OBJECTIVE_STRING_ID := 884;
|
||||
SET @QUEST_NOT_FOUND_STRING_ID := 1517;
|
||||
|
||||
DELETE FROM `command` WHERE `name`='quest objective complete';
|
||||
INSERT INTO `command` (`name`,`help`) VALUES
|
||||
('quest objective complete','Syntax: .quest objective complete #questObjectiveId\nMark specific quest objective as completed for target character.');
|
||||
|
||||
DELETE FROM `trinity_string` WHERE `entry` IN (@OBJECTIVE_STRING_ID,@QUEST_NOT_FOUND_STRING_ID);
|
||||
INSERT INTO `trinity_string` (`entry`, `content_default`) VALUES
|
||||
(@OBJECTIVE_STRING_ID, 'Objective %u not found.'),
|
||||
(@QUEST_NOT_FOUND_STRING_ID, 'Quest ID %u does not exist.');
|
||||
@@ -1,22 +0,0 @@
|
||||
--
|
||||
UPDATE `creature_template` SET `speed_walk` = 1, `minlevel` = 65, `maxlevel` = 65, `unit_flags` = 33554944 WHERE `entry` = 18225;
|
||||
|
||||
DELETE FROM `creature_template_movement` WHERE `CreatureId` = 18225;
|
||||
INSERT INTO `creature_template_movement` (`CreatureId`,`Ground`,`Swim`,`Flight`,`Rooted`,`Chase`,`Random`) VALUES
|
||||
(18225,1,0,1,0,0,0);
|
||||
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = 18225 AND `source_type` = 0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_param4`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(18225,0,0,0,11,0,100,0,0,0,0,0,0,11,31959,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Fire Bomb Target - On Spawn - Cast 'Fire Bomb Target Summon Trigger'");
|
||||
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName` IN ('spell_nagrand_fire_bomb_target_summon_trigger','spell_nagrand_fire_bomb_target_summon_effect','spell_nagrand_fire_bomb_damage_missile');
|
||||
DELETE FROM `spell_script_names` WHERE `spell_id` = 34658 AND `ScriptName` = 'spell_gen_despawn_aura';
|
||||
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
|
||||
(31959,'spell_nagrand_fire_bomb_target_summon_trigger'),
|
||||
(31960,'spell_nagrand_fire_bomb_target_summon_effect'),
|
||||
(31961,'spell_nagrand_fire_bomb_damage_missile'),
|
||||
(34658,'spell_gen_despawn_aura');
|
||||
|
||||
DELETE FROM `spell_custom_attr` WHERE `entry` = 31960;
|
||||
INSERT INTO `spell_custom_attr` (`entry`, `attributes`) VALUES
|
||||
(31960,262144);
|
||||
@@ -1,22 +0,0 @@
|
||||
--
|
||||
-- UPDATE `creature_template` SET `minlevel` = 64, `maxlevel` = 64 WHERE `entry` IN (18176,18177,18179);
|
||||
-- UPDATE `creature_template` SET `minlevel` = 72, `maxlevel` = 72 WHERE `entry` IN (19897,19899,19900);
|
||||
-- UPDATE `creature_template` SET `minlevel` = 1, `maxlevel` = 1 WHERE `entry` IN (20208,22322);
|
||||
|
||||
DELETE FROM `creature_template_addon` WHERE `entry` IN (18176,18179);
|
||||
|
||||
DELETE FROM `creature_template_spell` WHERE `CreatureID` IN (19897,19900,19899,22322);
|
||||
INSERT INTO `creature_template_spell` (`CreatureID`, `Index`, `Spell`, `VerifiedBuild`) VALUES
|
||||
(19897,0,31982,12340),
|
||||
(19900,0,31986,12340),
|
||||
(19899,0,33134,12340),
|
||||
(22322,0,38799,12340);
|
||||
|
||||
-- Casts nova when its aura kills him or when someone kills him, basically one event, one spell for both modes(scales with level)
|
||||
-- No anim for some reason
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = 18179 AND `source_type` = 0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_param4`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(18179,0,0,0,6,0,100,0,0,0,0,0,0,11,33132,2,0,0,0,0,1,0,0,0,0,0,0,0,0,"Corrupted Nova Totem - On Death - Cast 'Fire Nova'");
|
||||
|
||||
UPDATE `creature_template` SET `AIName` = '' WHERE `entry` = 18177;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = 18177 AND `source_type` = 0;
|
||||
@@ -1,29 +0,0 @@
|
||||
--
|
||||
UPDATE `creature` SET `spawntimesecs` = 90 WHERE `id` = 30746;
|
||||
UPDATE `creature_loot_template` SET `Chance` = 100 WHERE `Entry` = 30746 AND `Item` = 43159 AND `Reference` = 0;
|
||||
|
||||
DELETE FROM `spell_scripts` WHERE `id` = 57852;
|
||||
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (30742,30744,30745,30950) AND `source_type` = 0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (3074200,3074400,3074500,3095000) AND `source_type` = 9;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_param4`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(30742,0,0,0,8,0,100,0,57852,0,0,0,0,80,3074200,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"First Summoning Altar - On Spellhit 'Destroy Altar' - Run Script"),
|
||||
(30744,0,0,0,8,0,100,0,57852,0,0,0,0,80,3074400,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Second Summoning Altar - On Spellhit 'Destroy Altar' - Run Script"),
|
||||
(30745,0,0,0,8,0,100,0,57852,0,0,0,0,80,3074500,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Third Summoning Altar - On Spellhit 'Destroy Altar' - Run Script"),
|
||||
(30950,0,0,0,8,0,100,0,57852,0,0,0,0,80,3095000,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Fourth Summoning Altar - On Spellhit 'Destroy Altar' - Run Script"),
|
||||
|
||||
(3074200,9,0,0,0,0,100,0,0,0,0,0,0,11,57931,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"First Summoning Altar - On Script - Cast 'Cosmetic - Low Poly Fire'"),
|
||||
(3074200,9,1,0,0,0,100,0,0,0,0,0,0,11,46419,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"First Summoning Altar - On Script - Cast 'Cosmetic - Explosion'"),
|
||||
(3074200,9,2,0,0,0,100,0,0,0,0,0,0,33,30742,0,0,0,0,0,7,0,0,0,0,0,0,0,0,"First Summoning Altar - On Script - Quest Credit 'Destroying the Altars'"),
|
||||
|
||||
(3074400,9,0,0,0,0,100,0,0,0,0,0,0,11,57931,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Second Summoning Altar - On Script - Cast 'Cosmetic - Low Poly Fire'"),
|
||||
(3074400,9,1,0,0,0,100,0,0,0,0,0,0,11,46419,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Second Summoning Altar - On Script - Cast 'Cosmetic - Explosion'"),
|
||||
(3074400,9,2,0,0,0,100,0,0,0,0,0,0,33,30744,0,0,0,0,0,7,0,0,0,0,0,0,0,0,"Second Summoning Altar - On Script - Quest Credit 'Destroying the Altars'"),
|
||||
|
||||
(3074500,9,0,0,0,0,100,0,0,0,0,0,0,11,57931,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Third Summoning Altar - On Script - Cast 'Cosmetic - Low Poly Fire'"),
|
||||
(3074500,9,1,0,0,0,100,0,0,0,0,0,0,11,46419,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Third Summoning Altar - On Script - Cast 'Cosmetic - Explosion'"),
|
||||
(3074500,9,2,0,0,0,100,0,0,0,0,0,0,33,30745,0,0,0,0,0,7,0,0,0,0,0,0,0,0,"Third Summoning Altar - On Script - Quest Credit 'Destroying the Altars'"),
|
||||
|
||||
(3095000,9,0,0,0,0,100,0,0,0,0,0,0,11,57931,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Fourth Summoning Altar - On Script - Cast 'Cosmetic - Low Poly Fire'"),
|
||||
(3095000,9,1,0,0,0,100,0,0,0,0,0,0,11,46419,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Fourth Summoning Altar - On Script - Cast 'Cosmetic - Explosion'"),
|
||||
(3095000,9,2,0,0,0,100,0,0,0,0,0,0,33,30950,0,0,0,0,0,7,0,0,0,0,0,0,0,0,"Fourth Summoning Altar - On Script - Quest Credit 'Destroying the Altars'");
|
||||
@@ -1,37 +0,0 @@
|
||||
--
|
||||
DELETE FROM `spell_scripts` WHERE `id` = 58854;
|
||||
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = 3123500 AND `source_type` = 9;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_param4`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(3123500,9,0,0,0,0,100,0,2000,2000,0,0,0,11,37692,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Crusader Olakin Sainrith - On Script - Cast 'Fake Blood Spurt'"),
|
||||
(3123500,9,1,0,0,0,100,0,2000,2000,0,0,0,11,37692,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Crusader Olakin Sainrith - On Script - Cast 'Fake Blood Spurt'"),
|
||||
(3123500,9,2,0,0,0,100,0,2000,2000,0,0,0,11,58854,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Crusader Olakin Sainrith - On Script - Cast 'Resurrection'"),
|
||||
(3123500,9,3,0,0,0,100,0,0,0,0,0,0,28,35356,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Crusader Olakin Sainrith - On Script - Remove Aura 'Spawn Feign Death'"),
|
||||
(3123500,9,4,0,0,0,100,0,4000,4000,0,0,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,"Crusader Olakin Sainrith - On Script - Say Line 0"),
|
||||
(3123500,9,5,0,0,0,100,0,3000,3000,0,0,0,5,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Crusader Olakin Sainrith - On Script - Play Emote 2"),
|
||||
(3123500,9,6,0,0,0,100,0,3000,3000,0,0,0,1,1,0,0,0,0,0,23,0,0,0,0,0,0,0,0,"Crusader Olakin Sainrith - On Script - Say Line 1"),
|
||||
(3123500,9,7,0,0,0,100,0,6000,6000,0,0,0,1,2,0,0,0,0,0,23,0,0,0,0,0,0,0,0,"Crusader Olakin Sainrith - On Script - Say Line 2"),
|
||||
(3123500,9,8,0,0,0,100,0,0,0,0,0,0,33,31235,0,0,0,0,0,23,0,0,0,0,0,0,0,0,"Crusader Olakin Sainrith - On Script - Quest Credit 'Putting Olakin Back Together Again'"),
|
||||
(3123500,9,9,0,0,0,100,0,6000,6000,0,0,0,53,1,31235,0,0,0,0,1,0,0,0,0,0,0,0,0,"Crusader Olakin Sainrith - On Script - Start Waypoint");
|
||||
|
||||
--
|
||||
DELETE FROM `spell_scripts` WHERE `id` IN (26264,34874,45451);
|
||||
DELETE FROM `spell_script_names` WHERE `spell_id` IN (26264,34874,45451) AND `ScriptName` = 'spell_gen_despawn_target';
|
||||
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
|
||||
(26264,'spell_gen_despawn_target'),
|
||||
(34874,'spell_gen_despawn_target'),
|
||||
(45451,'spell_gen_despawn_target');
|
||||
|
||||
--
|
||||
DELETE FROM `spell_scripts` WHERE `id` IN (45505,45507,45509,45511);
|
||||
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = 25401 AND `source_type` = 0 AND `id` BETWEEN 1 AND 5;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_param4`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(25401,0,1,5,8,0,100,0,45505,0,0,0,0,11,45506,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Seaforium Depth Charge - On Spellhit 'Nerub'ar Sinkhole Credit (SW)' - Cast 'Nerub'ar Sinkhole Credit (SW)'"),
|
||||
(25401,0,2,5,8,0,100,0,45507,0,0,0,0,11,45508,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Seaforium Depth Charge - On Spellhit 'Nerub'ar Sinkhole Credit (SE)' - Cast 'Nerub'ar Sinkhole Credit (SE)'"),
|
||||
(25401,0,3,5,8,0,100,0,45509,0,0,0,0,11,45510,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Seaforium Depth Charge - On Spellhit 'Nerub'ar Sinkhole Credit (NW)' - Cast 'Nerub'ar Sinkhole Credit (NW)'"),
|
||||
(25401,0,4,5,8,0,100,0,45511,0,0,0,0,11,45512,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Seaforium Depth Charge - On Spellhit 'Nerub'ar Sinkhole Credit (NE)' - Cast 'Nerub'ar Sinkhole Credit (NE)'"),
|
||||
(25401,0,5,0,61,0,100,0,0,0,0,0,0,41,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Seaforium Depth Charge - On Link - Despawn");
|
||||
|
||||
--
|
||||
DELETE FROM `spell_scripts` WHERE `id` = 55288;
|
||||
@@ -1,35 +0,0 @@
|
||||
--
|
||||
DELETE FROM `spell_scripts` WHERE `id` = 56099;
|
||||
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = 30169 AND `source_type` = 0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = 3016900 AND `source_type` = 9;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_param4`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(30169,0,0,0,11,0,100,0,0,0,0,0,0,11,56073,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Smoldering Scrap Bunny - On Spawn - Cast 'Summon Smoldering Scrap'"),
|
||||
(30169,0,1,0,8,0,100,1,56099,0,0,0,0,80,3016900,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Smoldering Scrap Bunny - On Spellhit 'Throw Ice' - Run Script (No Repeat)"),
|
||||
|
||||
(3016900,9,0,0,0,0,100,0,0,0,0,0,0,28,56118,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Smoldering Scrap Bunny - On Script - Remove Aura 'Smolder Smoke'"),
|
||||
(3016900,9,1,0,0,0,100,0,0,0,0,0,0,11,56101,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Smoldering Scrap Bunny - On Script - Cast 'Summon Frozen Iron Scrap'"),
|
||||
(3016900,9,2,0,0,0,100,0,0,0,0,0,0,11,56135,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Smoldering Scrap Bunny - On Script - Cast 'Frost Nova Effect'"),
|
||||
-- Was Set Loot State, doesn't make it more bugged (see below) and correct action here
|
||||
(3016900,9,3,0,0,0,100,0,0,0,0,0,0,41,0,0,0,0,0,0,20,192124,5,0,0,0,0,0,0,"Smoldering Scrap Bunny - On Script - Despawn Closest GameObject 'Smoldering Scrap'"),
|
||||
-- 100000 in sniffs, but 100000 increases chance spell will be launched on wrong target (less available targets - better),
|
||||
-- ideally despawn it instantly but we want to keep anim which lasts for 15 sec. According to comments Blizz too has problems with target
|
||||
-- selector in this quest, maybe less serious. Removing condition for spell makes it only worse
|
||||
(3016900,9,4,0,0,0,100,0,15000,15000,0,0,0,41,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Smoldering Scrap Bunny - On Script - Despawn");
|
||||
|
||||
--
|
||||
DELETE FROM `spell_scripts` WHERE `id` = 68052;
|
||||
|
||||
UPDATE `creature_text` SET `Emote` = 0 WHERE `CreatureID` = 35642 AND `GroupID` = 0;
|
||||
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = 35642 AND `source_type` = 0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (3564200,3564201) AND `source_type` = 9;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_param4`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(35642,0,0,0,11,0,100,0,0,0,0,0,0,80,3564200,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Jeeves - On Spawn - Run Script"),
|
||||
(35642,0,1,0,8,0,100,0,68052,0,0,0,0,80,3564201,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Jeeves - On Spellhit 'Jeeves Goodbye' - Run Script"),
|
||||
|
||||
(3564200,9,0,0,0,0,100,0,0,0,0,0,0,11,68054,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Jeeves - On Script - Cast 'Pressing Engagement'"),
|
||||
(3564200,9,1,0,0,0,100,0,1500,1500,0,0,0,66,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,"Jeeves - On Script - Set Orientation Owner"),
|
||||
|
||||
(3564201,9,0,0,0,0,100,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Jeeves - On Script - Say Line 0"),
|
||||
(3564201,9,1,0,0,0,100,0,1500,1500,0,0,0,41,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Jeeves - On Script - Despawn");
|
||||
@@ -1,33 +0,0 @@
|
||||
--
|
||||
DELETE FROM `spell_scripts` WHERE `id` = 44688;
|
||||
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = 24852 AND `source_type` = 0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (2485200,2485201) AND `source_type` = 9;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_param4`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(24852,0,0,0,11,0,100,512,0,0,0,0,0,80,2485200,2,0,0,0,0,1,0,0,0,0,0,0,0,0,"Iron Rune Construct - On Spawn - Run Script"),
|
||||
(24852,0,1,0,58,0,100,512,0,0,0,0,0,80,2485201,2,0,0,0,0,1,0,0,0,0,0,0,0,0,"Iron Rune Construct - On Waypoint Finished - Run Script"),
|
||||
|
||||
(2485200,9,0,0,0,0,100,512,4000,4000,0,0,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,"Iron Rune Construct - On Script - Say Line 0"),
|
||||
(2485200,9,1,0,0,0,100,512,0,0,0,0,0,11,44687,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Iron Rune Construct - On Script - Cast 'Rocket Jump'"),
|
||||
(2485200,9,2,0,0,0,100,512,2000,2000,0,0,0,53,1,24852,0,0,0,0,1,0,0,0,0,0,0,0,0,"Iron Rune Construct - On Script - Start Waypoint"),
|
||||
|
||||
(2485201,9,0,0,0,0,100,512,0,0,0,0,0,1,1,0,0,0,0,0,23,0,0,0,0,0,0,0,0,"Iron Rune Construct - On Script - Say Line 1"),
|
||||
(2485201,9,1,0,0,0,100,512,0,0,0,0,0,28,44687,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Iron Rune Construct - On Script - Remove Aura 'Rocket Jump'"),
|
||||
(2485201,9,2,0,0,0,100,512,2000,2000,0,0,0,11,44688,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Iron Rune Construct - On Script - Cast 'System Failure'"),
|
||||
(2485201,9,3,0,0,0,100,512,1500,1500,0,0,0,11,44741,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Iron Rune Construct - On Script - Cast 'System Failure'");
|
||||
|
||||
DELETE FROM `spell_target_position` WHERE `ID` IN (49976);
|
||||
INSERT INTO `spell_target_position` (`ID`, `EffectIndex`, `MapID`, `PositionX`, `PositionY`, `PositionZ`, `VerifiedBuild`) VALUES
|
||||
(49976,0,571,478.996,-5941.52,308.746,14545);
|
||||
|
||||
--
|
||||
DELETE FROM `spell_scripts` WHERE `id` = 25952;
|
||||
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = 15664 AND `source_type` = 0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = 1566400 AND `source_type` = 9;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_param4`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(15664,0,0,0,62,0,100,1,6763,0,0,0,0,80,1566400,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Metzen the Reindeer - On Gossip Option 0 Selected - Run Script (No Repeat)"),
|
||||
|
||||
(1566400,9,0,0,0,0,100,0,0,0,0,0,0,11,25952,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Metzen the Reindeer - On Script - Cast 'Reindeer Dust Effect'"),
|
||||
(1566400,9,1,0,0,0,100,0,0,0,0,0,0,33,15664,0,0,0,0,0,7,0,0,0,0,0,0,0,0,"Metzen the Reindeer - On Script - Quest Credit 'Metzen the Reindeer'"),
|
||||
(1566400,9,2,0,0,0,100,0,8000+3000,8000+3000,0,0,0,41,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Metzen the Reindeer - On Script - Despawn");
|
||||
@@ -1,20 +0,0 @@
|
||||
--
|
||||
DELETE FROM `spell_scripts` WHERE `id` = 55818;
|
||||
DELETE FROM `spell_linked_spell` WHERE `spell_trigger` = 55818;
|
||||
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName` = 'spell_storm_peaks_call_of_earth';
|
||||
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
|
||||
(55512,'spell_storm_peaks_call_of_earth');
|
||||
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (29375,29503) AND `source_type` = 0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_param4`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(29375,0,0,0,0,0,100,0,0,10000,20000,25000,0,11,57741,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Stormforged Iron Giant - In Combat - Cast 'Shockwave'"),
|
||||
(29375,0,1,0,8,0,100,0,55818,0,0,0,0,11,55512,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Stormforged Iron Giant - On Spellhit 'Hurl Boulder' - Cast 'Call of Earth'"),
|
||||
|
||||
(29503,0,0,0,0,0,100,0,0,10000,20000,25000,0,11,57801,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Fjorn - In Combat - Cast 'Flame Breath'"),
|
||||
(29503,0,1,0,8,0,100,0,55818,0,0,0,0,11,55512,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Fjorn - On Spellhit 'Hurl Boulder' - Cast 'Call of Earth'");
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 17 AND `SourceEntry` = 55818;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition`,`ErrorType`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES
|
||||
(17,0,55818,0,0,31,1,3,29375,0,0,0,0,"","Group 0: Spell 'Hurl Boulder' targets creature 'Stormforged Iron Giant'"),
|
||||
(17,0,55818,0,1,31,1,3,29503,0,0,0,0,"","Group 1: Spell 'Hurl Boulder' targets creature 'Fjorn'");
|
||||
@@ -1,4 +0,0 @@
|
||||
--
|
||||
DELETE FROM `creature_loot_template` WHERE `Entry` IN (4625,11374,12352,27213,27414,31205);
|
||||
DELETE FROM `pickpocketing_loot_template` WHERE `Entry` IN (12352);
|
||||
UPDATE `creature_template` SET `lootid` = 0, `pickpocketloot` = 0 WHERE `entry` IN (4625,11374,12352,27213,27414,31205);
|
||||
@@ -1,17 +0,0 @@
|
||||
--
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName` IN (
|
||||
'spell_the_black_stalker_levitate',
|
||||
'spell_the_black_stalker_levitation_pulse',
|
||||
'spell_the_black_stalker_someone_grab_me',
|
||||
'spell_the_black_stalker_magnetic_pull',
|
||||
'spell_the_black_stalker_summon_spore_strider');
|
||||
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
|
||||
(31704,'spell_the_black_stalker_levitate'),
|
||||
(31701,'spell_the_black_stalker_levitation_pulse'),
|
||||
(31702,'spell_the_black_stalker_someone_grab_me'),
|
||||
(31703,'spell_the_black_stalker_magnetic_pull'),
|
||||
(38756,'spell_the_black_stalker_summon_spore_strider');
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 13 AND `SourceEntry` = 31702;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition`,`ErrorType`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES
|
||||
(13,1,31702,0,0,31,0,3,17992,0,0,0,0,"","Group 0: Spell 'Someone Grab Me' (Effect 0) targets creature 'Coilfang Invisible Vacuum Dummy'");
|
||||
@@ -1,15 +0,0 @@
|
||||
--
|
||||
DELETE FROM `spell_scripts` WHERE `id` = 57884;
|
||||
DELETE FROM `spell_linked_spell` WHERE `spell_trigger` = 57889;
|
||||
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName` IN ('spell_icecrown_through_the_eye_the_eye_of_the_lk','spell_icecrown_through_the_eye_kill_credit_to_master');
|
||||
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
|
||||
(25732,'spell_icecrown_through_the_eye_the_eye_of_the_lk'),
|
||||
(57884,'spell_icecrown_through_the_eye_kill_credit_to_master');
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` = 23837 AND `GroupID` = 0;
|
||||
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = -121192 AND `source_type` = 0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = 192861 AND `source_type` = 1 AND `id` IN (1,2);
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_param4`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(192861,1,1,0,61,0,100,0,0,0,0,0,0,72,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,"Eye of the Lich King - On Gossip Option 0 Selected - Close Gossip");
|
||||
@@ -1,16 +0,0 @@
|
||||
--
|
||||
DELETE FROM `spell_linked_spell` WHERE `spell_trigger` = 38224;
|
||||
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName` IN ('spell_shadowmoon_illidari_agent_illusion','spell_shadowmoon_quest_credit_crazed_colossus');
|
||||
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
|
||||
(38224,'spell_shadowmoon_illidari_agent_illusion'),
|
||||
(38223,'spell_shadowmoon_quest_credit_crazed_colossus');
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 22 AND `SourceEntry` = 19823 AND `SourceId` = 0;
|
||||
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = 19823 AND `source_type` = 0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_param4`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(19823,0,0,0,2,0,100,1,0,75,0,0,0,11,37947,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Crazed Colossus - Between 0-75% Health - Cast 'Summon Crazed Shardling' (No Repeat)"),
|
||||
(19823,0,1,0,2,0,100,1,0,50,0,0,0,11,37948,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Crazed Colossus - Between 0-50% Health - Cast 'Summon Crazed Shardling' (No Repeat)"),
|
||||
(19823,0,2,0,2,0,100,1,0,25,0,0,0,11,37949,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Crazed Colossus - Between 0-25% Health - Cast 'Summon Crazed Shardling' (No Repeat)"),
|
||||
(19823,0,3,0,6,0,100,0,0,0,0,0,0,11,38223,2,0,0,0,0,7,0,0,0,0,0,0,0,0,"Crazed Colossus - On Death - Cast 'Quest Credit: Crazed Colossus'");
|
||||
@@ -1,37 +0,0 @@
|
||||
--
|
||||
DELETE FROM `spell_scripts` WHERE `id` IN (23645,23725,24194,24195,38358,45185,47097,47958,57082,47703,47724,50252);
|
||||
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName` IN (
|
||||
'spell_item_hourglass_sand',
|
||||
'spell_item_lifegiving_gem',
|
||||
'spell_quest_uther_grom_tribute',
|
||||
'spell_fathomlord_karathress_tidal_surge',
|
||||
'spell_brutallus_stomp',
|
||||
'spell_dragonblight_surge_needle_teleporter',
|
||||
'spell_ormorok_summon_crystal_spikes',
|
||||
'spell_dragonblight_fill_blood_unholy_frost_gem');
|
||||
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
|
||||
(23645,'spell_item_hourglass_sand'),
|
||||
(23725,'spell_item_lifegiving_gem'),
|
||||
(24194,'spell_quest_uther_grom_tribute'),
|
||||
(24195,'spell_quest_uther_grom_tribute'),
|
||||
(38358,'spell_fathomlord_karathress_tidal_surge'),
|
||||
(45185,'spell_brutallus_stomp'),
|
||||
(47097,'spell_dragonblight_surge_needle_teleporter'),
|
||||
(47958,'spell_ormorok_summon_crystal_spikes'),
|
||||
(57082,'spell_ormorok_summon_crystal_spikes'),
|
||||
(47703,'spell_dragonblight_fill_blood_unholy_frost_gem'),
|
||||
(47724,'spell_dragonblight_fill_blood_unholy_frost_gem'),
|
||||
(50252,'spell_dragonblight_fill_blood_unholy_frost_gem');
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 17 AND `SourceEntry` IN
|
||||
(24101,24102,24103,24104,69530,24105,24106,24107,24108,69533,47324,47325);
|
||||
|
||||
-- DELETE FROM `spelldifficulty_dbc` WHERE `id` IN (47954,47955,47956,47957);
|
||||
-- INSERT INTO `spelldifficulty_dbc` (`id`, `spellid0`, `spellid1`, `spellid2`, `spellid3`) VALUES
|
||||
-- (47954,47954,57077,0,0),
|
||||
-- (47955,47955,57078,0,0),
|
||||
-- (47956,47956,57080,0,0),
|
||||
-- (47957,47957,57081,0,0);
|
||||
|
||||
UPDATE `spell_script_names` SET `ScriptName` = 'spell_ormorok_crystal_spike' WHERE `ScriptName` = 'spell_crystal_spike';
|
||||
@@ -1,49 +0,0 @@
|
||||
-- Copied from 35153 by them
|
||||
UPDATE `serverside_spell` SET `ProcChance` = 101 WHERE `Id` = 50754;
|
||||
DELETE FROM `serverside_spell_effect` WHERE `SpellID`=50754;
|
||||
INSERT INTO `serverside_spell_effect` (`SpellID`, `Effect`, `EffectBonusCoefficient`, `EffectMiscValue1`, `EffectMiscValue2`, `EffectRadiusIndex1`, `ImplicitTarget1`) VALUES
|
||||
(50754, 28, 1, 28166, 64, 37, 73);
|
||||
|
||||
-- Same, from 35148
|
||||
UPDATE `serverside_spell` SET `ProcChance` = 101 WHERE `Id` = 50755;
|
||||
DELETE FROM `serverside_spell_effect` WHERE `SpellID`=50755;
|
||||
INSERT INTO `serverside_spell_effect` (`SpellID`, `Effect`, `EffectAura`, `EffectAuraPeriod`, `EffectBonusCoefficient`, `EffectTriggerSpell`, `ImplicitTarget1`) VALUES
|
||||
(50755, 6, 23, 2000, 1, 50757, 1);
|
||||
|
||||
-- While at it, update both of them
|
||||
UPDATE `creature_template` SET `flags_extra` = `flags_extra` &~ 0x00002000 WHERE `entry` IN (20405,21534);
|
||||
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` = 28166;
|
||||
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (20405,28166) AND `source_type` = 0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (2040500,2816600) AND `source_type` = 9;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_param4`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(20405,0,0,0,37,0,100,0,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Nether Charge - On AI Initialize - Set Reactstate Passive"),
|
||||
(20405,0,1,0,11,0,100,0,0,0,0,0,0,80,2040500,2,0,0,0,0,1,0,0,0,0,0,0,0,0,"Nether Charge - On Spawn - Run Script"),
|
||||
|
||||
(2040500,9,0,0,0,0,100,0,0,0,0,0,0,11,35150,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Nether Charge - On Script - Cast 'Nether Charge Passive'"),
|
||||
(2040500,9,1,0,0,0,100,0,0,0,0,0,0,11,37670,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Nether Charge - On Script - Cast 'Nether Charge Timer'"),
|
||||
(2040500,9,2,0,0,0,100,0,0,0,0,0,0,89,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Nether Charge - On Script - Start Random Movement"),
|
||||
(2040500,9,3,0,0,0,100,0,8500,8500,0,0,0,89,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Nether Charge - On Script - Stop Random Movement"),
|
||||
(2040500,9,4,0,0,0,100,0,0,0,0,0,0,11,35148,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Nether Charge - On Script - Cast 'Nether Charge Countdown'"),
|
||||
(2040500,9,5,0,0,0,100,0,9500,9500,0,0,0,41,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Nether Charge - On Script - Despawn"),
|
||||
|
||||
(28166,0,0,0,37,0,100,0,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Unstable Sphere - On AI Initialize - Set Reactstate Passive"),
|
||||
(28166,0,1,0,11,0,100,0,0,0,0,0,0,80,2816600,2,0,0,0,0,1,0,0,0,0,0,0,0,0,"Unstable Sphere - On Spawn - Run Script"),
|
||||
|
||||
(2816600,9,0,0,0,0,100,0,1000,1000,0,0,0,11,51347,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Unstable Sphere - On Script - Cast 'Teleport Visual Only'"),
|
||||
(2816600,9,1,0,0,0,100,0,0,0,0,0,0,11,50756,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Unstable Sphere - On Script - Cast 'Unstable Sphere Passive'"),
|
||||
(2816600,9,2,0,0,0,100,0,0,0,0,0,0,11,50758,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Unstable Sphere - On Script - Cast 'Unstable Sphere Timer'"),
|
||||
(2816600,9,3,0,0,0,100,0,0,0,0,0,0,89,40,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Unstable Sphere - On Script - Start Random Movement"),
|
||||
(2816600,9,4,0,0,0,100,0,8000,8000,0,0,0,89,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Unstable Sphere - On Script - Stop Random Movement"),
|
||||
(2816600,9,5,0,0,0,100,0,0,0,0,0,0,11,50755,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Unstable Sphere - On Script - Cast 'Unstable Sphere Countdown'"),
|
||||
(2816600,9,6,0,0,0,100,0,10000,10000,0,0,0,41,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Unstable Sphere - On Script - Despawn");
|
||||
|
||||
DELETE FROM `spell_scripts` WHERE `id` = 51336;
|
||||
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName` = 'spell_drakos_magic_pull';
|
||||
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
|
||||
(51336,'spell_drakos_magic_pull');
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` = 27654 AND `GroupID` = 5;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(27654,5,0,"%s begins to cast Magic Pull!",41,0,100,0,0,0,27550,0,"drakos EMOTE_PULL");
|
||||
@@ -1,7 +0,0 @@
|
||||
--
|
||||
DELETE FROM `spell_linked_spell` WHERE `spell_trigger` IN (-33711,-38794,33686,51010);
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName` IN ('spell_murmur_murmurs_touch','spell_item_dire_brew');
|
||||
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
|
||||
(33711,'spell_murmur_murmurs_touch'),
|
||||
(38794,'spell_murmur_murmurs_touch'),
|
||||
(51010,'spell_item_dire_brew');
|
||||
@@ -1,55 +0,0 @@
|
||||
--
|
||||
UPDATE `spell_script_names` SET `ScriptName` = 'spell_pet_gen_lich_pet_onsummon' WHERE `ScriptName` = 'spell_gen_lich_pet_onsummon';
|
||||
UPDATE `spell_script_names` SET `ScriptName` = 'spell_pet_gen_lich_pet_aura_remove' WHERE `ScriptName` = 'spell_gen_lich_pet_aura_remove';
|
||||
UPDATE `spell_script_names` SET `ScriptName` = 'spell_pet_gen_lich_pet_aura' WHERE `ScriptName` = 'spell_gen_lich_pet_aura';
|
||||
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName` IN (
|
||||
'spell_pet_gen_lich_pet_periodic_emote',
|
||||
'spell_pet_gen_lich_pet_emote',
|
||||
'spell_pet_gen_lich_pet_focus');
|
||||
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
|
||||
(70050,'spell_pet_gen_lich_pet_periodic_emote'),
|
||||
(70049,'spell_pet_gen_lich_pet_emote'),
|
||||
(69682,'spell_pet_gen_lich_pet_focus');
|
||||
|
||||
DELETE FROM `spell_linked_spell` WHERE `spell_trigger` = 70049;
|
||||
DELETE FROM `spell_scripts` WHERE `id` IN (69731,69682);
|
||||
|
||||
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` = 36979;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = 36979 AND `source_type` = 0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (3697900,3697901) AND `source_type` = 9;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_param4`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(36979,0,0,0,11,0,100,0,0,0,0,0,0,11,69735,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Lil' K.T. - On Spawn - Cast 'Lich Pet OnSummon'"),
|
||||
(36979,0,1,0,86,0,100,0,0,0,0,0,0,11,69736,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Lil' K.T. - On Despawn - Cast 'Lich Pet Aura Remove'"),
|
||||
(36979,0,2,0,8,0,100,0,69731,0,0,0,0,80,3697900,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Lil' K.T. - On Spellhit 'Lich Pet Aura OnKill' - Run Script"),
|
||||
(36979,0,3,0,83,0,100,0,69681,0,0,0,0,80,3697901,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Lil' K.T. - On Spell Cast 'Lil' Frost Blast' - Run Script"),
|
||||
|
||||
-- Movement is definitely paused in both cases.
|
||||
-- If we root creature, and if both emote event and critter event will be executed at once, root will be cleared on aura remove, in other
|
||||
-- words before we clean it manually in script. That will screw up entire critter event. And doesn't really look like it should be rooted,
|
||||
-- more like movement is stopped. But packets are different.
|
||||
|
||||
-- The only way they can temporarily stop movement here is replace one action list by another.
|
||||
-- But that would mean they somehow overwrited default pet follow by scripted follow, would be weird.
|
||||
-- Actually we have a bunch of guardians and their default follow movement is somehow completely ignored by creature: Khadgar's Servant,
|
||||
-- Ancestral Spirit Wolf. Both actually are scripted on retail using only one action list which handles everything from spawn to despawn.
|
||||
-- At the same time Fel Guard Hound follows owner after spawn by default but has again one action list which interrupts default follow
|
||||
-- movement and resumes it after action list is finished. Kindal Moonweaver is a bit different because follow movement is launched from
|
||||
-- very first action list and is paused by another she executes(https://youtu.be/GV64q-i420o?t=115).
|
||||
-- So it looks like execution of any action list pauses follow movement no matter is it scripted or is default. Will such global mechanic
|
||||
-- work always without any problems? No idea. Something to think of.
|
||||
|
||||
(3697900,9,0,0,0,0,100,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lil' K.T. - On Script - Stop Follow"),
|
||||
(3697900,9,1,0,0,0,100,0,0,0,0,0,0,4,16493,0,1,0,0,0,1,0,0,0,0,0,0,0,0,"Lil' K.T. - On Script - Play Sound 16493"),
|
||||
(3697900,9,2,0,0,0,100,0,0,0,0,0,0,17,451,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Lil' K.T. - On Script - Set Emote State 451"),
|
||||
(3697900,9,3,0,0,0,100,0,1000,1000,0,0,0,17,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Lil' K.T. - On Script - Set Emote State 0"),
|
||||
(3697900,9,4,0,0,0,100,0,3000,3000,0,0,0,29,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,"Lil' K.T. - On Script - Start Follow Owner"),
|
||||
|
||||
(3697901,9,0,0,0,0,100,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lil' K.T. - On Script - Stop Follow"),
|
||||
(3697901,9,1,0,0,0,100,0,2000,2000,0,0,0,4,16493,0,1,0,0,0,1,0,0,0,0,0,0,0,0,"Lil' K.T. - On Script - Play Sound 16493"),
|
||||
(3697901,9,2,0,0,0,100,0,0,0,0,0,0,17,451,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Lil' K.T. - On Script - Set Emote State 451"),
|
||||
(3697901,9,3,0,0,0,100,0,1000,1000,0,0,0,17,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Lil' K.T. - On Script - Set Emote State 0"),
|
||||
(3697901,9,4,0,0,0,100,0,3000,3000,0,0,0,29,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,"Lil' K.T. - On Script - Start Follow Owner");
|
||||
|
||||
-- Never was needed, never will work the way author expected
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 17 AND `SourceEntry` IN (71849,69683);
|
||||
@@ -1,37 +0,0 @@
|
||||
--
|
||||
UPDATE `creature_template` SET `unit_flags` = 33554688 WHERE `entry` = 28780;
|
||||
UPDATE `creature_template` SET `AIName` = 'SmartAI' WHERE `entry` = 28778;
|
||||
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (28780,28778) AND `source_type` = 0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (2878000,2877800) AND `source_type` = 9;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_param4`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(28780,0,0,0,11,0,100,0,0,0,0,0,0,80,2878000,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Explosive Charges Bunny - On Spawn - Run Script"),
|
||||
|
||||
(2878000,9,0,0,0,0,100,0,0,0,0,0,0,11,52346,0,0,0,0,0,23,0,0,0,0,0,0,0,0,"Explosive Charges Bunny - On Script - Cast 'Kill Credit'"),
|
||||
(2878000,9,1,0,0,0,100,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Explosive Charges Bunny - On Script - Say Line 0"),
|
||||
(2878000,9,2,0,0,0,100,0,1000,1000,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Explosive Charges Bunny - On Script - Say Line 1"),
|
||||
(2878000,9,3,0,0,0,100,0,1000,1000,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Explosive Charges Bunny - On Script - Say Line 2"),
|
||||
(2878000,9,4,0,0,0,100,0,1000,1000,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Explosive Charges Bunny - On Script - Say Line 3"),
|
||||
(2878000,9,5,0,0,0,100,0,1000,1000,0,0,0,1,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Explosive Charges Bunny - On Script - Say Line 4"),
|
||||
(2878000,9,6,0,0,0,100,0,1000,1000,0,0,0,11,52322,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Explosive Charges Bunny - On Script - Cast 'Detonate Charges'"),
|
||||
(2878000,9,7,0,0,0,100,0,0,0,0,0,0,41,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Explosive Charges Bunny - On Script - Despawn"),
|
||||
|
||||
(28778,0,0,0,8,0,100,0,52322,0,0,0,0,80,2877800,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Scourgewagon Bunny - On Spellhit 'Detonate Charges' - Run Script"),
|
||||
|
||||
(2877800,9,0,0,0,0,100,0,0,0,0,0,0,11,52324,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Scourgewagon Bunny - On Script - Cast 'Scourgewagon Explosion'"),
|
||||
(2877800,9,1,0,0,0,100,0,0,0,0,0,0,11,52335,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Scourgewagon Bunny - On Script - Cast 'Drop Scourge Disguise'"),
|
||||
(2877800,9,2,0,0,0,100,0,0,0,0,0,0,41,0,0,0,0,0,0,20,190732,15,0,0,0,0,0,0,"Scourgewagon Bunny - On Script - Despawn Closest Gameobject 'Explosive Charges'"),
|
||||
(2877800,9,3,0,0,0,100,0,0,0,0,0,0,41,0,0,0,0,0,0,20,190731,15,0,0,0,0,0,0,"Scourgewagon Bunny - On Script - Despawn Closest Gameobject 'Scourgewagon'"),
|
||||
(2877800,9,4,0,0,0,100,0,5000,5000,0,0,0,41,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Scourgewagon Bunny - On Script - Despawn");
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 13 AND `SourceEntry` IN (52322);
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition`,`ErrorType`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES
|
||||
(13,1,52322,0,0,31,0,3,28778,0,0,0,0,"","Group 0: Spell 'Detonate Charges' (Effect 0) targets creature 'Scourgewagon Bunny'");
|
||||
|
||||
DELETE FROM `spell_linked_spell` WHERE `spell_trigger` = 52322;
|
||||
|
||||
DELETE FROM `spell_script_names` WHERE `spell_id` = 52335 AND `ScriptName` = 'spell_zuldrak_drop_disguise';
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName` = 'spell_zuldrak_scourgewagon_explosion';
|
||||
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
|
||||
(52335,'spell_zuldrak_drop_disguise'),
|
||||
(52324,'spell_zuldrak_scourgewagon_explosion');
|
||||
@@ -1,6 +0,0 @@
|
||||
--
|
||||
DELETE FROM `spell_linked_spell` WHERE `spell_trigger` IN (-12480,12479,12480);
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName` IN ('spell_sunken_temple_hex_of_jammalan','spell_sunken_temple_hex_of_jammalan_transform');
|
||||
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
|
||||
(12479,'spell_sunken_temple_hex_of_jammalan'),
|
||||
(12480,'spell_sunken_temple_hex_of_jammalan_transform');
|
||||
@@ -1,23 +0,0 @@
|
||||
--
|
||||
DELETE FROM `spell_linked_spell` WHERE `spell_trigger` IN (70192,-71450,71522,71539);
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName` IN (
|
||||
'spell_love_is_in_the_air_fragrant_air_analysis',
|
||||
'spell_love_is_in_the_air_heavily_perfumed',
|
||||
'spell_love_is_in_the_air_recently_analyzed',
|
||||
'spell_love_is_in_the_air_sample_satisfaction',
|
||||
'spell_love_is_in_the_air_cancel_service_uniform',
|
||||
'spell_love_is_in_the_air_perfume_cologne_immune');
|
||||
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
|
||||
(70192,'spell_love_is_in_the_air_fragrant_air_analysis'),
|
||||
(71507,'spell_love_is_in_the_air_heavily_perfumed'),
|
||||
(71508,'spell_love_is_in_the_air_recently_analyzed'),
|
||||
(69438,'spell_love_is_in_the_air_sample_satisfaction'),
|
||||
(71522,'spell_love_is_in_the_air_cancel_service_uniform'),
|
||||
(71539,'spell_love_is_in_the_air_cancel_service_uniform'),
|
||||
(68529,'spell_love_is_in_the_air_perfume_cologne_immune'),
|
||||
(68530,'spell_love_is_in_the_air_perfume_cologne_immune');
|
||||
|
||||
UPDATE `spell_script_names` SET `ScriptName` = 'spell_love_is_in_the_air_service_uniform' WHERE `ScriptName` = 'spell_gen_aura_service_uniform';
|
||||
|
||||
DELETE FROM `spell_group` WHERE `id`=68529;
|
||||
DELETE FROM `spell_group_stack_rules` WHERE `group_id`=68529;
|
||||
@@ -1,83 +0,0 @@
|
||||
--
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName` IN (
|
||||
'spell_magus_telestra_summon_clones',
|
||||
'spell_magus_telestra_clone_dies');
|
||||
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
|
||||
(47710,'spell_magus_telestra_summon_clones'),
|
||||
(47711,'spell_magus_telestra_clone_dies'),
|
||||
(47712,'spell_magus_telestra_clone_dies'),
|
||||
(47713,'spell_magus_telestra_clone_dies');
|
||||
|
||||
DELETE FROM `spell_target_position` WHERE `ID` = 47754;
|
||||
INSERT INTO `spell_target_position` (`ID`,`EffectIndex`,`MapID`,`PositionX`,`PositionY`,`PositionZ`,`VerifiedBuild`) VALUES
|
||||
(47754,0,576,504.742,88.9122,-16.1245,11159);
|
||||
|
||||
-- UPDATE `creature_template` SET `minlevel` = 72, `maxlevel` = 72 WHERE `entry` = 26731;
|
||||
|
||||
|
||||
-- Should be 15214 but it has 2 models.
|
||||
UPDATE `serverside_spell` SET `ProcChance` = 101 WHERE `Id` = 41577;
|
||||
DELETE FROM `serverside_spell_effect` WHERE `SpellID`=41577;
|
||||
INSERT INTO `serverside_spell_effect` (`SpellID`, `Effect`, `EffectAura`, `EffectMiscValue1`, `ImplicitTarget1`) VALUES
|
||||
(41577, 6, 56, 2334, 1);
|
||||
|
||||
UPDATE `creature_template` SET `BaseAttackTime` = 2000 WHERE `entry` IN (26928,26929,26930);
|
||||
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (26928,26929,26930) AND `source_type` = 0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (2692800,2692900,2693000) AND `source_type` = 9;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_param4`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(26928,0,0,0,37,0,100,0,0,0,0,0,0,42,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Grand Magus Telestra - On AI Initialize - Set Invincibility HP 1"),
|
||||
(26928,0,1,0,11,0,100,0,0,0,0,0,0,11,47705,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Grand Magus Telestra - On Spawn - Cast 'Grand Magus Telestra (Fire) Visual'"),
|
||||
(26928,0,2,0,2,0,100,1,0,1,0,0,0,80,2692800,2,0,0,0,0,1,0,0,0,0,0,0,0,0,"Grand Magus Telestra - Between 0-1% Health - Run Script (No Repeat)"),
|
||||
(26928,0,3,0,0,0,100,2,0,0,1600,2400,0,11,47723,64,0,0,0,0,2,0,0,0,0,0,0,0,0,"Grand Magus Telestra - In Combat CMC - Cast 'Scorch'"),
|
||||
(26928,0,4,0,0,0,100,4,0,0,1600,2400,0,11,56938,64,0,0,0,0,2,0,0,0,0,0,0,0,0,"Grand Magus Telestra - In Combat CMC - Cast 'Scorch'"),
|
||||
(26928,0,5,0,0,0,100,2,6000,12000,6000,12000,0,11,47721,0,0,0,0,0,2,0,0,0,0,0,0,0,0,"Grand Magus Telestra - In Combat - Cast 'Fire Blast'"),
|
||||
(26928,0,6,0,0,0,100,4,6000,12000,6000,12000,0,11,56939,0,0,0,0,0,2,0,0,0,0,0,0,0,0,"Grand Magus Telestra - In Combat - Cast 'Fire Blast'"),
|
||||
|
||||
(2692800,9,0,0,0,0,100,0,0,0,0,0,0,45,0,1,0,0,0,0,23,0,0,0,0,0,0,0,0,"Grand Magus Telestra - On Script - Set Data 0 1 (Summoner)"),
|
||||
(2692800,9,1,0,0,0,100,0,0,0,0,0,0,28,47705,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Grand Magus Telestra - On Script - Remove Aura 'Grand Magus Telestra (Fire) Visual'"),
|
||||
(2692800,9,2,0,0,0,100,0,0,0,0,0,0,11,41577,2,0,0,0,0,1,0,0,0,0,0,0,0,0,"Grand Magus Telestra - On Script - Cast 'Transform: Invisible Stalker'"),
|
||||
(2692800,9,3,0,0,0,100,0,0,0,0,0,0,11,47711,2,0,0,0,0,1,0,0,0,0,0,0,0,0,"Grand Magus Telestra - On Script - Cast 'Telestra Clone Dies (Fire)'"),
|
||||
(2692800,9,4,0,0,0,100,0,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Grand Magus Telestra - On Script - Set Reactstate Passive"),
|
||||
(2692800,9,5,0,0,0,100,0,0,0,0,0,0,146,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Grand Magus Telestra - On Script - Set Uninteractible"),
|
||||
-- Actually despawn after 3 sec, but aura can't be applied if caster is already destroyed
|
||||
-- (if clone is just 20 yards away from boss, aura will not be applied, breaking whole encounter)
|
||||
|
||||
-- Great, now, as creature can continue cast COMBAT spells while being passive AND THAT IS ACTUALLY PROBABLY CORRECT,
|
||||
-- but we increased despawn time to 30 sec, hackily silence it, what else we can do
|
||||
(2692800,9,6,0,0,0,100,0,0,0,0,0,0,11,42201,2,0,0,0,0,1,0,0,0,0,0,0,0,0,"Grand Magus Telestra - On Script - Cast 'Eternal Silence'"),
|
||||
(2692800,9,7,0,0,0,100,0,30000,30000,0,0,0,41,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Grand Magus Telestra - On Script - Despawn"),
|
||||
|
||||
|
||||
(26929,0,0,0,37,0,100,0,0,0,0,0,0,42,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Grand Magus Telestra - On AI Initialize - Set Invincibility HP 1"),
|
||||
(26929,0,1,0,11,0,100,0,0,0,0,0,0,11,47704,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Grand Magus Telestra - On Spawn - Cast 'Grand Magus Telestra (Arcane) Visual'"),
|
||||
(26929,0,2,0,2,0,100,1,0,1,0,0,0,80,2692900,2,0,0,0,0,1,0,0,0,0,0,0,0,0,"Grand Magus Telestra - Between 0-1% Health - Run Script (No Repeat)"),
|
||||
(26929,0,3,0,0,0,100,0,6000,8000,12000,12000,0,11,47731,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Grand Magus Telestra - In Combat - Cast 'Critter'"),
|
||||
(26929,0,4,0,0,0,100,0,10000,15000,15000,15000,0,11,47736,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Grand Magus Telestra - In Combat - Cast 'Time Stop'"),
|
||||
|
||||
(2692900,9,0,0,0,0,100,0,0,0,0,0,0,45,0,1,0,0,0,0,23,0,0,0,0,0,0,0,0,"Grand Magus Telestra - On Script - Set Data 0 1 (Summoner)"),
|
||||
(2692900,9,1,0,0,0,100,0,0,0,0,0,0,28,47704,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Grand Magus Telestra - On Script - Remove Aura 'Grand Magus Telestra (Arcane) Visual'"),
|
||||
(2692900,9,2,0,0,0,100,0,0,0,0,0,0,11,41577,2,0,0,0,0,1,0,0,0,0,0,0,0,0,"Grand Magus Telestra - On Script - Cast 'Transform: Invisible Stalker'"),
|
||||
(2692900,9,3,0,0,0,100,0,0,0,0,0,0,11,47713,2,0,0,0,0,1,0,0,0,0,0,0,0,0,"Grand Magus Telestra - On Script - Cast 'Telestra Clone Dies (Arcane)'"),
|
||||
(2692900,9,4,0,0,0,100,0,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Grand Magus Telestra - On Script - Set Reactstate Passive"),
|
||||
(2692900,9,5,0,0,0,100,0,0,0,0,0,0,146,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Grand Magus Telestra - On Script - Set Uninteractible"),
|
||||
(2692900,9,6,0,0,0,100,0,0,0,0,0,0,11,42201,2,0,0,0,0,1,0,0,0,0,0,0,0,0,"Grand Magus Telestra - On Script - Cast 'Eternal Silence'"),
|
||||
(2692900,9,7,0,0,0,100,0,30000,30000,0,0,0,41,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Grand Magus Telestra - On Script - Despawn"),
|
||||
|
||||
|
||||
(26930,0,0,0,37,0,100,0,0,0,0,0,0,42,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Grand Magus Telestra - On AI Initialize - Set Invincibility HP 1"),
|
||||
(26930,0,1,0,11,0,100,0,0,0,0,0,0,11,47706,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Grand Magus Telestra - On Spawn - Cast 'Grand Magus Telestra (Frost) Visual'"),
|
||||
(26930,0,2,0,2,0,100,1,0,1,0,0,0,80,2693000,2,0,0,0,0,1,0,0,0,0,0,0,0,0,"Grand Magus Telestra - Between 0-1% Health - Run Script (No Repeat)"),
|
||||
(26930,0,3,0,0,0,100,2,0,0,1200,1200,0,11,47729,64,0,0,0,0,2,0,0,0,0,0,0,0,0,"Grand Magus Telestra - In Combat CMC - Cast 'Ice Barb'"),
|
||||
(26930,0,4,0,0,0,100,4,0,0,1200,1200,0,11,56937,64,0,0,0,0,2,0,0,0,0,0,0,0,0,"Grand Magus Telestra - In Combat CMC - Cast 'Ice Barb'"),
|
||||
(26930,0,5,0,0,0,100,2,8000,12000,10000,15000,0,11,47727,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Grand Magus Telestra - In Combat - Cast 'Blizzard'"),
|
||||
(26930,0,6,0,0,0,100,4,8000,12000,10000,15000,0,11,56936,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Grand Magus Telestra - In Combat - Cast 'Blizzard'"),
|
||||
|
||||
(2693000,9,0,0,0,0,100,0,0,0,0,0,0,45,0,1,0,0,0,0,23,0,0,0,0,0,0,0,0,"Grand Magus Telestra - On Script - Set Data 0 1 (Summoner)"),
|
||||
(2693000,9,1,0,0,0,100,0,0,0,0,0,0,28,47706,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Grand Magus Telestra - On Script - Remove Aura 'Grand Magus Telestra (Frost) Visual'"),
|
||||
(2693000,9,2,0,0,0,100,0,0,0,0,0,0,11,41577,2,0,0,0,0,1,0,0,0,0,0,0,0,0,"Grand Magus Telestra - On Script - Cast 'Transform: Invisible Stalker'"),
|
||||
(2693000,9,3,0,0,0,100,0,0,0,0,0,0,11,47712,2,0,0,0,0,1,0,0,0,0,0,0,0,0,"Grand Magus Telestra - On Script - Cast 'Telestra Clone Dies (Frost)'"),
|
||||
(2693000,9,4,0,0,0,100,0,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Grand Magus Telestra - On Script - Set Reactstate Passive"),
|
||||
(2693000,9,5,0,0,0,100,0,0,0,0,0,0,146,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Grand Magus Telestra - On Script - Set Uninteractible"),
|
||||
(2693000,9,6,0,0,0,100,0,0,0,0,0,0,11,42201,2,0,0,0,0,1,0,0,0,0,0,0,0,0,"Grand Magus Telestra - On Script - Cast 'Eternal Silence'"),
|
||||
(2693000,9,7,0,0,0,100,0,30000,30000,0,0,0,41,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Grand Magus Telestra - On Script - Despawn");
|
||||
@@ -1,54 +0,0 @@
|
||||
--
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = 5108 AND `source_type` = 2;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_param4`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(5108,2,0,1,46,0,100,0,5108,0,0,0,0,64,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,"Areatrigger (The Stormwright's Shelf) - On Trigger - Store Targetlist"),
|
||||
(5108,2,1,2,61,0,100,0,0,0,0,0,0,100,1,0,0,0,0,0,19,29079,0,0,0,0,0,0,0,"Areatrigger (The Stormwright's Shelf) - On Link - Send Target 1 (Shrine of the Tempest)"),
|
||||
(5108,2,2,0,61,0,100,0,0,0,0,0,0,45,0,1,0,0,0,0,19,29079,0,0,0,0,0,0,0,"Areatrigger (The Stormwright's Shelf) - On Link - Set Data 0 1 (Shrine of the Tempest)");
|
||||
|
||||
DELETE FROM `areatrigger_scripts` WHERE `entry` = 5108;
|
||||
INSERT INTO `areatrigger_scripts` (`entry`,`ScriptName`) VALUES
|
||||
(5108,"SmartTrigger");
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 22 AND `SourceEntry` = 5108 AND `SourceId` = 2;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition`,`ErrorType`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES
|
||||
(22,1,5108,2,0,9,0,12741,0,0,0,0,0,"","Group 0: Execute SAI (Action 0) if player has taken quest 'Strength of the Tempest'");
|
||||
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = 29079 AND `source_type` = 0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_param4`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(29079,0,0,0,38,0,100,0,0,1,0,0,0,11,53062,0,0,0,0,0,12,1,0,0,0,0,0,0,0,"Shrine of the Tempest - On Data Set 0 1 - Cast 'Lightning Strike'");
|
||||
|
||||
DELETE FROM `spell_scripts` WHERE `id` = 53062;
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName` = 'spell_sholazar_lightning_strike';
|
||||
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
|
||||
(53062,'spell_sholazar_lightning_strike');
|
||||
|
||||
--
|
||||
DELETE FROM `spell_scripts` WHERE `id` = 51071;
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName` = 'spell_sholazar_flight_to_sholazar';
|
||||
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
|
||||
(51071,'spell_sholazar_flight_to_sholazar');
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` = 28192;
|
||||
|
||||
-- Yes, it is unrealistic that other 8 will be used
|
||||
DELETE FROM `spell_scripts` WHERE `id` IN (53341,53343);
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName` = 'spell_chapter1_runeforging_credit';
|
||||
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
|
||||
-- (53323,'spell_chapter1_runeforging_credit'),
|
||||
-- (53331,'spell_chapter1_runeforging_credit'),
|
||||
-- (53341,'spell_chapter1_runeforging_credit'),
|
||||
-- (53342,'spell_chapter1_runeforging_credit'),
|
||||
(53343,'spell_chapter1_runeforging_credit'),
|
||||
(53344,'spell_chapter1_runeforging_credit'),
|
||||
-- (54446,'spell_chapter1_runeforging_credit'),
|
||||
-- (54447,'spell_chapter1_runeforging_credit'),
|
||||
(62158,'spell_chapter1_runeforging_credit'),
|
||||
-- (70164,'spell_chapter1_runeforging_credit');
|
||||
(326805,'spell_chapter1_runeforging_credit'),
|
||||
(326855,'spell_chapter1_runeforging_credit'),
|
||||
(326911,'spell_chapter1_runeforging_credit'),
|
||||
(326977,'spell_chapter1_runeforging_credit'),
|
||||
(327082,'spell_chapter1_runeforging_credit');
|
||||
|
||||
-- Already scripted.
|
||||
DELETE FROM `spell_scripts` WHERE `id` IN (40904,44997);
|
||||
@@ -1,2 +0,0 @@
|
||||
--
|
||||
UPDATE `creature_template_addon` SET `bytes2` = 257 WHERE `entry` = 17551;
|
||||
@@ -1,20 +0,0 @@
|
||||
--
|
||||
DELETE FROM `spell_scripts` WHERE `id` IN (57337,57397,58466,58475,66477);
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName` IN (
|
||||
'spell_item_great_feast',
|
||||
'spell_item_fish_feast',
|
||||
'spell_item_gigantic_feast',
|
||||
'spell_item_small_feast',
|
||||
'spell_item_bountiful_feast',
|
||||
'spell_gen_feast');
|
||||
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
|
||||
(57301,'spell_item_great_feast'),
|
||||
(57426,'spell_item_fish_feast'),
|
||||
(58465,'spell_item_gigantic_feast'),
|
||||
(58474,'spell_item_small_feast'),
|
||||
(66476,'spell_item_bountiful_feast'),
|
||||
(57337,'spell_gen_feast'),
|
||||
(57397,'spell_gen_feast'),
|
||||
(58466,'spell_gen_feast'),
|
||||
(58475,'spell_gen_feast'),
|
||||
(66477,'spell_gen_feast');
|
||||
@@ -1,15 +0,0 @@
|
||||
--
|
||||
UPDATE `spell_script_names` SET `ScriptName` = 'spell_gen_hate_to_zero_caster_target' WHERE `ScriptName` = 'spell_yogg_saron_hate_to_zero';
|
||||
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName` IN (
|
||||
'spell_gen_hate_to_zero',
|
||||
'spell_gen_hate_to_50',
|
||||
'spell_gen_hate_to_75');
|
||||
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
|
||||
(9204,'spell_gen_hate_to_zero'),
|
||||
(20538,'spell_gen_hate_to_zero'),
|
||||
(26569,'spell_gen_hate_to_zero'),
|
||||
(26637,'spell_gen_hate_to_zero'),
|
||||
(37326,'spell_gen_hate_to_zero'),
|
||||
(19707,'spell_gen_hate_to_50'),
|
||||
(26886,'spell_gen_hate_to_75');
|
||||
@@ -1,36 +0,0 @@
|
||||
--
|
||||
-- UPDATE `creature_template` SET `minlevel` = 1, `maxlevel` = 1, `exp` = 0 WHERE `entry` = 22444;
|
||||
UPDATE `creature_template` SET `unit_flags` = 33024 WHERE `entry` = 22454;
|
||||
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (22444,16878,22454) AND `source_type` = 0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (2245400) AND `source_type` = 9;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_param4`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(22444,0,0,0,60,0,100,0,5000,5000,5000,5000,0,11,39184,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Anchorite Relic Bunny - On Update - Cast 'Anchorite Contrition'"),
|
||||
|
||||
(16878,0,0,0,4,0,100,0,0,0,0,0,0,11,35570,0,0,0,0,0,7,0,0,0,0,0,0,0,0,"Shattered Hand Berserker - On Aggro - Cast 'Charge'"),
|
||||
(16878,0,1,2,2,0,100,1,0,30,0,0,0,11,8599,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Shattered Hand Berserker - Between 0-30% Health - Cast 'Enrage' (No Repeat)"),
|
||||
(16878,0,2,0,61,0,100,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Shattered Hand Berserker - Between 0-30% Health - Say Line 0 (No Repeat)"),
|
||||
(16878,0,3,0,6,0,100,0,0,0,0,0,0,11,39190,2,0,0,0,0,1,0,0,0,0,0,0,0,0,"Shattered Hand Berserker - On Death - Cast 'Send Vengeance'"),
|
||||
|
||||
(22454,0,0,0,11,0,100,0,0,0,0,0,0,80,2245400,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Fel Spirit - On Spawn - Run Script"),
|
||||
|
||||
(2245400,9,0,0,0,0,100,0,0,0,0,0,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,"Fel Spirit - On Script - Say Line 0"),
|
||||
(2245400,9,1,0,0,0,100,0,0,0,0,0,0,66,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,"Fel Spirit - On Script - Set Orientation (Summoner)"),
|
||||
(2245400,9,2,0,0,0,100,0,3000,3000,0,0,0,144,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Fel Spirit - On Script - Set ImmunePC Off"),
|
||||
(2245400,9,3,0,0,0,100,0,0,0,0,0,0,49,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,"Fel Spirit - On Script - Start Attack Summoner");
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 22 AND `SourceEntry` = 16878 AND `SourceId` = 0;
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 13 AND `SourceEntry` = 39190;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition`,`ErrorType`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES
|
||||
-- Channeled aura is removed on death > condition always is false, this should be a bit better than previous SpellHit > Phase
|
||||
(22,4,16878,0,0,29,1,22444,30,0,0,0,0,"","Group 0: Execute Event (Action 3) if creature 'Anchorite Relic Bunny' is within 30 yards"),
|
||||
(13,1,39190,0,0,31,0,3,22444,0,0,0,0,"","Group 0: Spell 'Send Vengeance' (Effect 0) targets creature 'Anchorite Relic Bunny'");
|
||||
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName` IN (
|
||||
'spell_hellfire_peninsula_send_vengeance',
|
||||
'spell_hellfire_peninsula_send_vengeance_to_player');
|
||||
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
|
||||
(39190,'spell_hellfire_peninsula_send_vengeance'),
|
||||
(39202,'spell_hellfire_peninsula_send_vengeance_to_player');
|
||||
|
||||
UPDATE `gameobject_template_addon` SET `flags` = 0 WHERE `entry` = 185298;
|
||||
@@ -1,127 +0,0 @@
|
||||
--
|
||||
SET @CGUID := 132276; -- 17
|
||||
|
||||
DELETE FROM `spell_scripts` WHERE `id` = 67751;
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName` IN (
|
||||
'spell_black_knight_ghoul_explode',
|
||||
'spell_black_knight_ghoul_explode_risen_ghoul');
|
||||
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
|
||||
(67751,'spell_black_knight_ghoul_explode'),
|
||||
(67754,'spell_black_knight_ghoul_explode_risen_ghoul'),
|
||||
(67889,'spell_black_knight_ghoul_explode_risen_ghoul');
|
||||
|
||||
|
||||
--
|
||||
UPDATE `creature_template` SET `flags_extra` = `flags_extra` &~ 2 WHERE `entry` = 30273;
|
||||
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (30273,30274) AND `source_type` = 0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (3027400) AND `source_type` = 9;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_param4`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(30273,0,0,0,37,0,100,0,0,0,0,0,0,116,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Webbed Crusader - On AI Initialize - Set Corpse Delay"),
|
||||
(30273,0,1,0,37,0,100,0,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Webbed Crusader - On AI Initialize - Set Reactstate Passive"),
|
||||
(30273,0,2,0,6,0,100,0,0,0,0,0,0,11,56515,0,0,0,0,0,7,0,0,0,0,0,0,0,0,"Webbed Crusader - On Death - Cast 'Summon Freed Crusader'"),
|
||||
|
||||
(30274,0,0,0,11,0,100,0,0,0,0,0,0,80,3027400,2,0,0,0,0,1,0,0,0,0,0,0,0,0,"Freed Crusader - On Spawn - Run Script"),
|
||||
|
||||
(3027400,9,0,0,0,0,100,0,0,0,0,0,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,"Freed Crusader - On Script - Say Line 0"),
|
||||
(3027400,9,1,0,0,0,100,0,0,0,0,0,0,66,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,"Freed Crusader - On Script - Set Orientation Summoner"),
|
||||
(3027400,9,2,0,0,0,100,0,0,0,0,0,0,11,56525,0,0,0,0,0,23,0,0,0,0,0,0,0,0,"Freed Crusader - On Script - Cast 'Blessing of Kings'"),
|
||||
(3027400,9,3,0,0,0,100,0,0,0,0,0,0,33,30274,0,0,0,0,0,23,0,0,0,0,0,0,0,0,"Freed Crusader - On Script - Quest Credit 'Scourge Tactics'"),
|
||||
(3027400,9,4,0,0,0,100,0,4000,4000,0,0,0,1,1,0,0,0,0,0,23,0,0,0,0,0,0,0,0,"Freed Crusader - On Script - Say Line 1"),
|
||||
(3027400,9,5,0,0,0,100,0,0,0,0,0,0,11,56539,0,0,0,0,0,23,0,0,0,0,0,0,0,0,"Freed Crusader - On Script - Cast 'Holy Light'"),
|
||||
-- One of ~3 random paths\points, then despawn
|
||||
(3027400,9,6,0,0,0,100,0,3000,3000,0,0,0,53,1,30274,0,0,0,0,1,0,0,0,0,0,0,0,0,"Freed Crusader - On Script - Start Waypoint"),
|
||||
(3027400,9,7,0,0,0,100,0,0,0,0,0,0,41,4000,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Freed Crusader - On Script - Despawn");
|
||||
|
||||
UPDATE `creature_text` SET `GroupID` = 1, `ID` = 0 WHERE `CreatureID` = 30274 AND `GroupID` = 0 AND `ID` = 3;
|
||||
|
||||
DELETE FROM `spell_scripts` WHERE `id` = 56515;
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName` = 'spell_icecrown_summon_freed_crusader';
|
||||
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
|
||||
(56515,'spell_icecrown_summon_freed_crusader');
|
||||
|
||||
|
||||
--
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+00 AND @CGUID+16 AND `id` = 29686;
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `phaseId`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `ScriptName`, `VerifiedBuild`) VALUES
|
||||
(@CGUID+00,29686,571,0,0,'0',0,0,0,4810.87,-2350.84,238.935,0.20944,30,0,0,0,0,0,0,0,0,'',12340),
|
||||
(@CGUID+01,29686,571,0,0,'0',0,0,0,4832.77,-2376.45,235.068,0.314159,30,0,0,0,0,0,0,0,0,'',12340),
|
||||
(@CGUID+02,29686,571,0,0,'0',0,0,0,4857.28,-2385.37,234.187,1.27409,30,0,0,0,0,0,0,0,0,'',12340),
|
||||
(@CGUID+03,29686,571,0,0,'0',0,0,0,4861.24,-2295.76,244.068,2.40855,30,0,0,0,0,0,0,0,0,'',12340),
|
||||
(@CGUID+04,29686,571,0,0,'0',0,0,0,4861.6,-2359.89,234.864,4.93928,30,0,0,0,0,0,0,0,0,'',12340),
|
||||
(@CGUID+05,29686,571,0,0,'0',0,0,0,4871.34,-2369.81,234.509,2.75762,30,0,0,0,0,0,0,0,0,'',12340),
|
||||
(@CGUID+06,29686,571,0,0,'0',0,0,0,4872.12,-2324.38,239.137,4.72984,30,0,0,0,0,0,0,0,0,'',12340),
|
||||
(@CGUID+07,29686,571,0,0,'0',0,0,0,4878.67,-2384.11,234.211,2.32129,30,0,0,0,0,0,0,0,0,'',12340),
|
||||
(@CGUID+08,29686,571,0,0,'0',0,0,0,4907.5,-2281.84,244.421,3.78736,30,0,0,0,0,0,0,0,0,'',12340),
|
||||
(@CGUID+09,29686,571,0,0,'0',0,0,0,4920.46,-2283.21,243.879,5.58505,30,0,0,0,0,0,0,0,0,'',12340),
|
||||
(@CGUID+10,29686,571,0,0,'0',0,0,0,4923.23,-2367.81,241.606,0.226893,30,0,0,0,0,0,0,0,0,'',12340),
|
||||
(@CGUID+11,29686,571,0,0,'0',0,0,0,4929.72,-2299.41,244.346,1.46608,30,0,0,0,0,0,0,0,0,'',12340),
|
||||
(@CGUID+12,29686,571,0,0,'0',0,0,0,4941.36,-2299.2,244.354,1.58825,30,0,0,0,0,0,0,0,0,'',12340),
|
||||
(@CGUID+13,29686,571,0,0,'0',0,0,0,4965.36,-2314.32,245.154,4.86947,30,0,0,0,0,0,0,0,0,'',12340),
|
||||
(@CGUID+14,29686,571,0,0,'0',0,0,0,4972,-2341.04,245.81,1.78024,30,0,0,0,0,0,0,0,0,'',12340),
|
||||
(@CGUID+15,29686,571,0,0,'0',0,0,0,4972.22,-2354.94,245.45,4.46804,30,0,0,0,0,0,0,0,0,'',12340),
|
||||
(@CGUID+16,29686,571,0,0,'0',0,0,0,4990.17,-2360.19,246.498,2.28638,30,0,0,0,0,0,0,0,0,'',12340);
|
||||
|
||||
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` IN (29686,29700);
|
||||
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (29686,29700) AND `source_type` = 0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (2968600) AND `source_type` = 9;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_param4`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(29686,0,0,0,11,0,100,0,0,0,0,0,0,11,54990,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Captured Rageclaw - On Spawn - Cast 'Chains of the Scourge'"),
|
||||
(29686,0,1,0,8,0,100,1,55083,0,0,0,0,80,2968600,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Captured Rageclaw - On Spellhit 'Unlock Shackle' - Run Script (No Repeat)"),
|
||||
|
||||
(2968600,9,0,0,0,0,100,0,0,0,0,0,0,92,0,54990,1,0,0,0,1,0,0,0,0,0,0,0,0,"Captured Rageclaw - On Script - Interrupt Spell 'Chains of the Scourge'"),
|
||||
(2968600,9,1,0,0,0,100,0,0,0,0,0,0,11,55085,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Captured Rageclaw - On Script - Cast 'Unshackled!'"),
|
||||
(2968600,9,2,0,0,0,100,0,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,"Captured Rageclaw - On Script - Say Line 0"),
|
||||
(2968600,9,3,0,0,0,100,0,0,0,0,0,0,89,10,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Captured Rageclaw - On Script - Start Random Movement"),
|
||||
(2968600,9,4,0,0,0,100,0,0,0,0,0,0,145,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Captured Rageclaw - On Script - Set ImmuneNPC Off"),
|
||||
(2968600,9,5,0,0,0,100,0,0,0,0,0,0,91,8,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Captured Rageclaw - On Script - Remove Flag Standstate Kneel"),
|
||||
(2968600,9,6,0,0,0,100,0,0,0,0,0,0,33,29686,0,0,0,0,0,7,0,0,0,0,0,0,0,0,"Captured Rageclaw - On Script - Quest Credit 'Trolls Is Gone Crazy!'"),
|
||||
(2968600,9,7,0,0,0,100,0,10000,10000,0,0,0,41,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Captured Rageclaw - On Script - Despawn"),
|
||||
|
||||
(29700,0,0,0,8,0,100,0,55083,0,0,0,0,92,0,55009,1,0,0,0,1,0,0,0,0,0,0,0,0,"Drakuru Shackles - On Spellhit 'Unlock Shackle' - Interrupt Spell 'Chains of the Scourge'");
|
||||
|
||||
-- 55223 is not used
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 13 AND `SourceEntry` IN (55223,55083);
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition`,`ErrorType`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES
|
||||
(13,1,55083,0,0,31,0,3,29700,0,0,0,0,"","Group 0: Spell 'Unlock Shackle' (Effect 0) targets creature 'Drakuru Shackles'"),
|
||||
(13,2,55083,0,0,31,0,3,29686,0,0,0,0,"","Group 0: Spell 'Unlock Shackle' (Effect 1) targets creature 'Captured Rageclaw'");
|
||||
|
||||
DELETE FROM `spell_scripts` WHERE `id` = 54990;
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName` = 'spell_zuldrak_chains_of_the_scourge';
|
||||
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
|
||||
(54990,'spell_zuldrak_chains_of_the_scourge');
|
||||
|
||||
|
||||
--
|
||||
DELETE FROM `spell_scripts` WHERE `id` = 52741;
|
||||
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = 29329 AND `source_type` = 0 AND `id` IN (2,3,4);
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = 29330 AND `source_type` = 0 AND `id` IN (2,3,4);
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = 29333 AND `source_type` = 0 AND `id` IN (0,1,2);
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = 29338 AND `source_type` = 0 AND `id` IN (2,3,4);
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_param4`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(29329,0,2,3,8,0,100,1,52741,0,0,0,0,11,54415,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Onslaught Paladin - On Spellhit 'Darkmender's Tincture' - Cast 'Summon Corrupted Scarlet Onslaught' (No Repeat)"),
|
||||
(29329,0,3,4,61,0,100,0,0,0,0,0,0,33,29398,0,0,0,0,0,7,0,0,0,0,0,0,0,0,"Onslaught Paladin - On Spellhit 'Darkmender's Tincture' - Quest Credit 'From Their Corpses, Rise!'"),
|
||||
(29329,0,4,0,61,0,100,0,0,0,0,0,0,41,1000,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Onslaught Paladin - On Spellhit 'Darkmender's Tincture' - Despawn"),
|
||||
|
||||
(29330,0,2,3,8,0,100,1,52741,0,0,0,0,11,54415,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Onslaught Harbor Guard - On Spellhit 'Darkmender's Tincture' - Cast 'Summon Corrupted Scarlet Onslaught' (No Repeat)"),
|
||||
(29330,0,3,4,61,0,100,0,0,0,0,0,0,33,29398,0,0,0,0,0,7,0,0,0,0,0,0,0,0,"Onslaught Harbor Guard - On Spellhit 'Darkmender's Tincture' - Quest Credit 'From Their Corpses, Rise!'"),
|
||||
(29330,0,4,0,61,0,100,0,0,0,0,0,0,41,1000,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Onslaught Harbor Guard - On Spellhit 'Darkmender's Tincture' - Despawn"),
|
||||
|
||||
(29333,0,0,1,8,0,100,1,52741,0,0,0,0,11,54415,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Onslaught Gryphon Rider - On Spellhit 'Darkmender's Tincture' - Cast 'Summon Corrupted Scarlet Onslaught' (No Repeat)"),
|
||||
(29333,0,1,2,61,0,100,0,0,0,0,0,0,33,29398,0,0,0,0,0,7,0,0,0,0,0,0,0,0,"Onslaught Gryphon Rider - On Spellhit 'Darkmender's Tincture' - Quest Credit 'From Their Corpses, Rise!'"),
|
||||
(29333,0,2,0,61,0,100,0,0,0,0,0,0,41,1000,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Onslaught Gryphon Rider - On Spellhit 'Darkmender's Tincture' - Despawn"),
|
||||
|
||||
(29338,0,2,3,8,0,100,1,52741,0,0,0,0,11,54415,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Onslaught Raven Bishop - On Spellhit 'Darkmender's Tincture' - Cast 'Summon Corrupted Scarlet Onslaught' (No Repeat)"),
|
||||
(29338,0,3,4,61,0,100,0,0,0,0,0,0,33,29398,0,0,0,0,0,7,0,0,0,0,0,0,0,0,"Onslaught Raven Bishop - On Spellhit 'Darkmender's Tincture' - Quest Credit 'From Their Corpses, Rise!'"),
|
||||
(29338,0,4,0,61,0,100,0,0,0,0,0,0,41,1000,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Onslaught Raven Bishop - On Spellhit 'Darkmender's Tincture' - Despawn");
|
||||
|
||||
UPDATE `creature_template` SET `unit_flags` = 33280 WHERE `entry` = 29400;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = 29400 AND `source_type` = 0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = 2940000 AND `source_type` = 9;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_param4`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(29400,0,0,0,11,0,100,0,0,0,0,0,0,80,2940000,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Corrupted Scarlet Onslaught - On Spawn - Run Script"),
|
||||
(29400,0,1,0,0,0,100,0,2000,15000,30000,45000,0,11,38056,0,0,0,0,0,2,0,0,0,0,0,0,0,0,"Corrupted Scarlet Onslaught - In Combat - Cast 'Flesh Rip'"),
|
||||
|
||||
(2940000,9,0,0,0,0,100,0,2000,2000,0,0,0,145,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Corrupted Scarlet Onslaught - On Script - Set ImmuneNPC Off");
|
||||
@@ -1,2 +0,0 @@
|
||||
--
|
||||
UPDATE `creature_template` SET `DamageModifier` = 1.5 WHERE `entry` = 29851;
|
||||
@@ -1,2 +0,0 @@
|
||||
--
|
||||
UPDATE `reference_loot_template` SET `entry`=34211 WHERE `entry`=34215 AND `Item`=40811;
|
||||
@@ -1,37 +0,0 @@
|
||||
|
||||
DROP PROCEDURE IF EXISTS apply_if_not_exists_2022_09_08_00_world;
|
||||
|
||||
DELIMITER ';;'
|
||||
CREATE PROCEDURE apply_if_not_exists_2022_09_08_00_world() BEGIN
|
||||
IF NOT EXISTS (SELECT * FROM `information_schema`.`columns` WHERE `table_schema`=SCHEMA() AND `table_name`='gossip_menu_option' AND `column_name`='OptionNpc') THEN
|
||||
-- Update table `gossip_menu_option`
|
||||
ALTER TABLE `gossip_menu_option`
|
||||
DROP `OptionType`,
|
||||
CHANGE `OptionIcon` `OptionNpc` tinyint UNSIGNED NOT NULL DEFAULT 0;
|
||||
|
||||
-- Update default option
|
||||
DELETE FROM `gossip_menu_option` WHERE `MenuID`=0;
|
||||
INSERT INTO `gossip_menu_option` (`MenuID`, `OptionID`, `OptionNpc`, `OptionText`, `OptionBroadcastTextId`, `OptionNpcFlag`, `Language`, `ActionMenuID`, `ActionPoiID`, `BoxCoded`, `BoxMoney`, `BoxText`, `BoxBroadcastTextID`, `VerifiedBuild`) VALUES
|
||||
(0, 1 , 1 , 'I want to browse your goods.', 3370, 128, 0, 0, 0, 0, 0, NULL, 0, 0),
|
||||
(0, 2 , 2 , 'I''d like to travel by air.', 53141, 8192, 0, 0, 0, 0, 0, NULL, 0, 0),
|
||||
(0, 3 , 3 , 'Train me.', 3266, 16, 0, 0, 0, 0, 0, NULL, 0, 0),
|
||||
(0, 4 , 4 , 'Return me to life.', 2547, 16384, 0, 0, 0, 0, 0, NULL, 0, 0),
|
||||
(0, 5 , 5 , 'Make this inn your home.', 2822, 65536, 0, 0, 0, 0, 0, NULL, 0, 0),
|
||||
(0, 6 , 6 , 'I would like to check my deposit box.', 3398, 131072, 0, 0, 0, 0, 0, NULL, 0, 0),
|
||||
(0, 7 , 7 , 'How do I form a guild?', 3413, 262144, 0, 0, 0, 0, 0, NULL, 0, 0),
|
||||
(0, 8 , 8 , 'I want to create a guild crest.', 3415, 524288, 0, 0, 0, 0, 0, NULL, 0, 0),
|
||||
(0, 9, 9 , 'I would like to go to the battleground.', 10355, 1048576, 0, 0, 0, 0, 0, NULL, 0, 0),
|
||||
(0, 10, 10, 'I''d like to browse the items up for auction.', 52635, 2097152, 0, 0, 0, 0, 0, NULL, 0, 0),
|
||||
(0, 12, 12, 'I''d like to stable my pet here.', 30181, 4194304, 0, 0, 0, 0, 0, NULL, 0, 0),
|
||||
(0, 18, 18, 'I''d like to check my mail.', 146045, 67108864, 0, 0, 0, 0, 0, NULL, 0, 0),
|
||||
(0, 34, 34, 'I want to transmogrify my gear.', 130510, 268435456, 0, 0, 0, 0, 0, NULL, 0, 0);
|
||||
|
||||
-- Drop "npc_experience" script use
|
||||
UPDATE `creature_template` SET `ScriptName`='' WHERE `entry` IN (35364, 35365);
|
||||
END IF;
|
||||
END;;
|
||||
|
||||
DELIMITER ';'
|
||||
CALL apply_if_not_exists_2022_09_08_00_world();
|
||||
|
||||
DROP PROCEDURE IF EXISTS apply_if_not_exists_2022_09_08_00_world;
|
||||
@@ -1,324 +0,0 @@
|
||||
|
||||
DELETE FROM `creature_questitem` WHERE (`Idx`=0 AND `CreatureEntry` IN (52409,52148));
|
||||
INSERT INTO `creature_questitem` (`CreatureEntry`, `Idx`, `ItemId`, `VerifiedBuild`) VALUES
|
||||
(52409, 0, 138951, 45114), -- Ragnaros
|
||||
(52148, 0, 69774, 45114); -- Jin'do the Godbreaker
|
||||
|
||||
UPDATE `creature_questitem` SET `ItemId`=138968, `VerifiedBuild`=45161 WHERE (`CreatureEntry`=99611 AND `Idx`=0); -- Dantalionax
|
||||
|
||||
DELETE FROM `gameobject_template` WHERE `entry` IN (338682 /*Gossamer Thread*/, 237540 /*Gold Pile (Small)*/, 260313 /*Naughty Gears*/, 370469 /*Spectral Feed*/, 269871 /*Challenger's Cache*/, 311347 /*311347*/, 381195 /*Iron Chain*/, 357255 /*Thistledrop Frond*/, 357253 /*Abomination Head*/, 337091 /*Gormling Lure*/, 355847 /*Giant Lungcap*/, 376136 /*Fated Console*/, 311353 /*311353*/, 269852 /*Challenger's Cache*/, 311350 /*311350*/, 311351 /*311351*/, 311349 /*311349*/, 260312 /*Naughty Furnace*/, 352839 /*Theotar's Toasting Cup*/, 260300 /*Beautiful Beast Rock*/, 330214 /*Nutrient-Enriched Goo*/, 370168 /*Portal to Oribos*/, 311345 /*311345*/, 377001 /*Portal to Gorgrond*/, 260303 /*Beautiful Beast Flower*/, 377007 /*Portal to Mechagon*/, 311363 /*Tree*/, 260299 /*Beautiful Beast Rock*/, 375188 /*Camber Alcove Arrangement*/, 311358 /*Tree*/, 338614 /*Suspiciously Untouched Harp*/, 357582 /*Night Lilly*/, 311368 /*Tree*/, 377005 /*Portal to Karazhan*/, 376895 /*Challenger's Cache*/, 311346 /*311346*/, 357256 /*Thistledrop Growth*/, 376763 /*Challenger's Cache*/, 329691 /*Rustbolt Food Pellets*/, 352837 /*Theotar's Tea Tray*/, 381156 /*Iron Chain*/, 311352 /*311352*/, 330626 /*Nutrient-Enriched Brew*/, 330625 /*Traveler's Bag*/, 338613 /*Suspiciously Untouched Soulweb*/, 311348 /*311348*/, 334956 /*Sidetable*/, 260301 /*Beautiful Beast Tree*/, 311364 /*Table*/, 260311 /*Naughty Background*/, 260298 /*Beautiful Beast Background*/, 329690 /*Surprise Flowers*/, 338680 /*Shimmerdust Pile*/, 338681 /*Freshleaf*/, 376967 /*Fated Console*/, 380962 /*Chair*/, 338493 /*Suspiciously Untouched Basket*/, 352838 /*Tea Set*/);
|
||||
INSERT INTO `gameobject_template` (`entry`, `type`, `displayId`, `name`, `IconName`, `castBarCaption`, `unk1`, `size`, `Data0`, `Data1`, `Data2`, `Data3`, `Data4`, `Data5`, `Data6`, `Data7`, `Data8`, `Data9`, `Data10`, `Data11`, `Data12`, `Data13`, `Data14`, `Data15`, `Data16`, `Data17`, `Data18`, `Data19`, `Data20`, `Data21`, `Data22`, `Data23`, `Data24`, `Data25`, `Data26`, `Data27`, `Data28`, `Data29`, `Data30`, `Data31`, `Data32`, `Data33`, `Data34`, `ContentTuningId`, `VerifiedBuild`) VALUES
|
||||
(338682, 10, 15608, 'Gossamer Thread', 'questinteract', 'Inspecting', '', 1, 43, 0, 0, 3000, 0, 1, 0, 0, 0, 0, 311107, 0, 0, 0, 45353, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1235, 44908), -- Gossamer Thread
|
||||
(237540, 5, 2614, 'Gold Pile (Small)', '', '', '', 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44908), -- Gold Pile (Small)
|
||||
(260313, 5, 38497, 'Naughty Gears', '', '', '', 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1169, 44908), -- Naughty Gears
|
||||
(370469, 3, 38988, 'Spectral Feed', 'questinteract', 'Gathering', '', 1, 2160, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24982, 0, 0, 93411, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 108904, 0, 0, 0, 0, 807, 44908), -- Spectral Feed
|
||||
(269871, 3, 33268, 'Challenger\'s Cache', '', '', '', 2.5, 1634, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 110, 0, 0, 0, 0, 2017, 0, 1, 0, 0, 111379, 0, 5, 107535, 0, 1180, 44908), -- Challenger's Cache
|
||||
(381195, 10, 14657, 'Iron Chain', '', '', '', 0.5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 387369, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44908), -- Iron Chain
|
||||
(357255, 3, 66563, 'Thistledrop Frond', 'questinteract', 'Collecting', '', 0.5, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19676, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 104521, 1, 0, 0, 0, 837, 44908), -- Thistledrop Frond
|
||||
(357253, 5, 66549, 'Abomination Head', '', '', '', 1.5, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44908), -- Abomination Head
|
||||
(337091, 10, 61460, 'Gormling Lure', 'questinteract', '', '', 1, 0, 0, 0, 3000, 0, 0, 0, 0, 0, 0, 310053, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 78372, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1236, 44908), -- Gormling Lure
|
||||
(355847, 3, 64827, 'Giant Lungcap', 'questinteract', 'Collecting', '', 0.200000002980232238, 43, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19676, 0, 0, 87727, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 104167, 1, 0, 0, 0, 837, 44908), -- Giant Lungcap
|
||||
(376136, 10, 69194, 'Fated Console', '', '', '', 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27735, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44908), -- Fated Console
|
||||
(269852, 3, 33268, 'Challenger\'s Cache', '', '', '', 2.5, 1634, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 110, 0, 0, 0, 0, 1961, 0, 1, 0, 0, 111380, 0, 5, 107535, 0, 1180, 44908), -- Challenger's Cache
|
||||
(260312, 5, 38496, 'Naughty Furnace', '', '', '', 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1169, 44908), -- Naughty Furnace
|
||||
(352839, 5, 62426, 'Theotar\'s Toasting Cup', '', '', '', 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 746, 44908), -- Theotar's Toasting Cup
|
||||
(260300, 5, 38487, 'Beautiful Beast Rock', '', '', '', 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1169, 44908), -- Beautiful Beast Rock
|
||||
(330214, 5, 56100, 'Nutrient-Enriched Goo', '', '', '', 0.5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44908), -- Nutrient-Enriched Goo
|
||||
(370168, 22, 68190, 'Portal to Oribos', '', '', '', 1, 344603, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 482, 44908), -- Portal to Oribos
|
||||
(260303, 5, 38489, 'Beautiful Beast Flower', '', '', '', 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1169, 44908), -- Beautiful Beast Flower
|
||||
(311363, 1, 10553, 'Tree', '', '', '', 0.421406000852584838, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44908), -- Tree
|
||||
(260299, 5, 38486, 'Beautiful Beast Rock', '', '', '', 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1169, 44908), -- Beautiful Beast Rock
|
||||
(375188, 10, 71395, 'Camber Alcove Arrangement', 'questinteract', 'Studying', '', 3, 93, 0, 0, 1, 0, 0, 0, 0, 0, 0, 364793, 0, 0, 0, 109101, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44908), -- Camber Alcove Arrangement
|
||||
(311358, 1, 9763, 'Tree', '', '', '', 0.976688981056213378, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44908), -- Tree
|
||||
(338614, 10, 59255, 'Suspiciously Untouched Harp', 'questinteract', 'Playing', '', 1, 93, 0, 0, 3000, 0, 1, 0, 0, 0, 0, 311139, 0, 0, 0, 182871, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1235, 44908), -- Suspiciously Untouched Harp
|
||||
(357582, 3, 65339, 'Night Lilly', 'questinteract', 'Collecting', '', 0.5, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19676, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 104625, 1, 0, 0, 0, 837, 44908), -- Night Lilly
|
||||
(311368, 1, 9765, 'Tree', '', '', '', 0.620000004768371582, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44908), -- Tree
|
||||
(376895, 3, 33268, 'Challenger\'s Cache', '', '', '', 2.5, 1634, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 120, 0, 0, 0, 0, 1754, 0, 1, 0, 0, 111375, 0, 5, 107535, 0, 1279, 44908), -- Challenger's Cache
|
||||
(357256, 3, 62407, 'Thistledrop Growth', 'questinteract', 'Collecting', '', 0.5, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19676, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 104522, 1, 0, 0, 0, 837, 44908), -- Thistledrop Growth
|
||||
(376763, 3, 33268, 'Challenger\'s Cache', '', '', '', 2.5, 1634, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 120, 0, 0, 0, 0, 1754, 0, 1, 0, 0, 111376, 0, 5, 107535, 0, 1279, 44908), -- Challenger's Cache
|
||||
(329691, 5, 57134, 'Rustbolt Food Pellets', '', '', '', 0.5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44908), -- Rustbolt Food Pellets
|
||||
(352837, 10, 61809, 'Theotar\'s Tea Tray', 'questinteract', '', '', 0.60000002384185791, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 329474, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 81991, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 746, 44908), -- Theotar's Tea Tray
|
||||
(381156, 10, 14657, 'Iron Chain', '', '', '', 0.5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 387287, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44908), -- Iron Chain
|
||||
(330626, 5, 56101, 'Nutrient-Enriched Brew', '', '', '', 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44908), -- Nutrient-Enriched Brew
|
||||
(330625, 5, 35102, 'Traveler\'s Bag', '', '', '', 0.5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44908), -- Traveler's Bag
|
||||
(338613, 10, 59254, 'Suspiciously Untouched Soulweb', 'questinteract', 'Inspecting', '', 1, 43, 0, 0, 3000, 0, 1, 0, 0, 0, 0, 311136, 0, 0, 0, 45353, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1235, 44908), -- Suspiciously Untouched Soulweb
|
||||
(334956, 5, 58622, 'Sidetable', '', '', '', 0.400000005960464477, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44908), -- Sidetable
|
||||
(260301, 5, 38488, 'Beautiful Beast Tree', '', '', '', 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1169, 44908), -- Beautiful Beast Tree
|
||||
(260311, 5, 38495, 'Naughty Background', '', '', '', 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1169, 44908), -- Naughty Background
|
||||
(260298, 5, 38485, 'Beautiful Beast Background', '', '', '', 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1169, 44908), -- Beautiful Beast Background
|
||||
(329690, 5, 57133, 'Surprise Flowers', '', '', '', 0.5, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44908), -- Surprise Flowers
|
||||
(338680, 10, 15003, 'Shimmerdust Pile', 'questinteract', 'Inspecting', '', 1, 43, 0, 0, 3000, 0, 1, 0, 0, 0, 0, 311058, 0, 0, 0, 45353, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1235, 44908), -- Shimmerdust Pile
|
||||
(338681, 10, 59297, 'Freshleaf', 'questinteract', 'Inspecting', '', 1, 43, 0, 0, 3000, 0, 1, 0, 0, 0, 0, 311103, 0, 0, 0, 45353, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1235, 44908), -- Freshleaf
|
||||
(376967, 10, 69194, 'Fated Console', '', '', '', 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27735, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44908), -- Fated Console
|
||||
(380962, 7, 58621, 'Chair', '', '', '', 0.75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44908), -- Chair
|
||||
(338493, 10, 59242, 'Suspiciously Untouched Basket', 'questinteract', 'Inspecting', '', 1, 43, 0, 0, 3000, 0, 1, 0, 0, 0, 0, 311062, 0, 0, 0, 45353, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1235, 44908), -- Suspiciously Untouched Basket
|
||||
(352838, 5, 62428, 'Tea Set', '', '', '', 0.699999988079071044, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44908); -- Tea Set
|
||||
|
||||
DELETE FROM `gameobject_template` WHERE `entry` IN (377001 /*Portal to Gorgrond*/, 311352 /*311352*/, 311350 /*311350*/, 377005 /*Portal to Karazhan*/, 311346 /*311346*/, 377007 /*Portal to Mechagon*/, 311345 /*311345*/, 311351 /*311351*/, 311348 /*311348*/, 311347 /*311347*/, 311364 /*Table*/, 311353 /*311353*/, 311349 /*311349*/);
|
||||
INSERT INTO `gameobject_template` (`entry`, `type`, `displayId`, `name`, `IconName`, `castBarCaption`, `unk1`, `size`, `Data0`, `Data1`, `Data2`, `Data3`, `Data4`, `Data5`, `Data6`, `Data7`, `Data8`, `Data9`, `Data10`, `Data11`, `Data12`, `Data13`, `Data14`, `Data15`, `Data16`, `Data17`, `Data18`, `Data19`, `Data20`, `Data21`, `Data22`, `Data23`, `Data24`, `Data25`, `Data26`, `Data27`, `Data28`, `Data29`, `Data30`, `Data31`, `Data32`, `Data33`, `Data34`, `ContentTuningId`, `VerifiedBuild`) VALUES
|
||||
(377001, 22, 20810, 'Portal to Gorgrond', '', '', '', 1, 373516, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 783, 45161), -- Portal to Gorgrond
|
||||
(311352, 1, 8519, '', '', '', '', 1.240000009536743164, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45161), -- 311352
|
||||
(311350, 1, 6315, '', '', '', '', 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45161), -- 311350
|
||||
(377005, 22, 6831, 'Portal to Karazhan', '', '', '', 1, 373515, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 783, 45161), -- Portal to Karazhan
|
||||
(311346, 1, 6315, '', '', '', '', 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45161), -- 311346
|
||||
(377007, 22, 51955, 'Portal to Mechagon', '', '', '', 1, 373517, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 783, 45161), -- Portal to Mechagon
|
||||
(311345, 1, 8395, '', '', '', '', 0.769999980926513671, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45161), -- 311345
|
||||
(311351, 1, 10561, '', '', '', '', 0.889999985694885253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45161), -- 311351
|
||||
(311348, 1, 8395, '', '', '', '', 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45161), -- 311348
|
||||
(311347, 1, 8395, '', '', '', '', 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45161), -- 311347
|
||||
(311364, 1, 6608, 'Table', '', '', '', 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45161), -- Table
|
||||
(311353, 1, 8395, '', '', '', '', 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45161), -- 311353
|
||||
(311349, 1, 10250, '', '', '', '', 0.430000007152557373, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45161); -- 311349
|
||||
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=642, `VerifiedBuild`=44908 WHERE `entry` IN (246709, 245855); -- Portcullis
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=52, `VerifiedBuild`=44908 WHERE `entry`=203147; -- Aviana's Burial Circle
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=65, `VerifiedBuild`=44908 WHERE `entry`=234633; -- Large Ammo Crate
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=39705, `ContentTuningId`=165, `VerifiedBuild`=44908 WHERE `entry`=208588; -- Flame Druid Staff
|
||||
UPDATE `gameobject_template` SET `Data32`=108, `VerifiedBuild`=44908 WHERE `entry`=334346; -- Treasure of Purity
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=70342, `ContentTuningId`=1169, `VerifiedBuild`=44908 WHERE `entry`=265598; -- Sealed Tome
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=272, `VerifiedBuild`=44908 WHERE `entry`=239319; -- Meeting Stone
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=165, `VerifiedBuild`=44908 WHERE `entry` IN (208543, 208541); -- Magmolia
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=52, `VerifiedBuild`=44908 WHERE `entry`=202660; -- Lycanthoth's Altar
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=1169, `VerifiedBuild`=44908 WHERE `entry`=259730; -- Grand Ballroom
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=713, `VerifiedBuild`=44908 WHERE `entry`=322671; -- Cogs and Springs
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=39709, `ContentTuningId`=165, `VerifiedBuild`=44908 WHERE `entry`=208593; -- Flame Druid Idol
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=2142, `VerifiedBuild`=44908 WHERE `entry`=334795; -- Eternal Cauldron
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=65, `VerifiedBuild`=44908 WHERE `entry`=234635; -- Small Ammo Pile
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=70342, `ContentTuningId`=1169, `VerifiedBuild`=44908 WHERE `entry`=265602; -- Sealed Tome
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=52, `VerifiedBuild`=44908 WHERE `entry`=203066; -- Twilight Arms Crate
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=56754, `ContentTuningId`=302, `VerifiedBuild`=44908 WHERE `entry`=237462; -- Horribly Acidic Solution
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=70342, `ContentTuningId`=1169, `VerifiedBuild`=44908 WHERE `entry`=265605; -- Sealed Tome
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=65, `VerifiedBuild`=44908 WHERE `entry`=239969; -- Shadethistle
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=165, `VerifiedBuild`=44908 WHERE `entry`=208381; -- Pile of Ash
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=1169, `VerifiedBuild`=44908 WHERE `entry`=266858; -- Portal to Karazhan Entrance
|
||||
UPDATE `gameobject_template` SET `name`='Pip\'s Mole Machine', `Data6`=1, `ContentTuningId`=52, `VerifiedBuild`=44908 WHERE `entry`=207327; -- Finkle's Mole Machine
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=165, `VerifiedBuild`=44908 WHERE `entry`=208440; -- Warden Trap
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=65, `VerifiedBuild`=44908 WHERE `entry`=234671; -- Blackrock Ore
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=39706, `ContentTuningId`=165, `VerifiedBuild`=44908 WHERE `entry`=208589; -- Flame Druid Spellbook
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=28442, `ContentTuningId`=52, `VerifiedBuild`=44908 WHERE `entry`=202702; -- Stonebloom
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=39507, `ContentTuningId`=165, `VerifiedBuild`=44908 WHERE `entry`=208544; -- Magmolia
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=1253, `VerifiedBuild`=44908 WHERE `entry`=327528; -- Meeting Stone
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=356, `VerifiedBuild`=44908 WHERE `entry`=250668; -- Alliance Banner
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=1169, `VerifiedBuild`=44908 WHERE `entry`=266878; -- Terrifying Stories to Tell at Night
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=165, `VerifiedBuild`=44908 WHERE `entry`=208474; -- Solar Core
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=95665, `ContentTuningId`=713, `VerifiedBuild`=44908 WHERE `entry`=325482; -- Energy Cell
|
||||
UPDATE `gameobject_template` SET `Data30`=111377, `Data33`=107535, `ContentTuningId`=464, `VerifiedBuild`=44908 WHERE `entry`=338193; -- Challenger's Cache
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=52, `VerifiedBuild`=44908 WHERE `entry`=202731; -- Lightning Channel
|
||||
UPDATE `gameobject_template` SET `name`='Sinvyr Tea Set', `VerifiedBuild`=44908 WHERE `entry`=358569; -- Synvir Tea Set
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=165, `VerifiedBuild`=44908 WHERE `entry`=208537; -- Un'Goro Soil
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=642, `VerifiedBuild`=44908 WHERE `entry`=246402; -- Worgen Tracks
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=1169, `VerifiedBuild`=44908 WHERE `entry`=265486; -- Command Ship
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=165, `VerifiedBuild`=44908 WHERE `entry`=208570; -- Rappelling Rope
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=28603, `ContentTuningId`=52, `VerifiedBuild`=44908 WHERE `entry`=202846; -- Charred Staff Fragment
|
||||
UPDATE `gameobject_template` SET `Data32`=108, `VerifiedBuild`=44908 WHERE `entry`=349565; -- Chest of Envious Dreams
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=713, `VerifiedBuild`=44908 WHERE `entry`=322669; -- Batteries
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=52, `VerifiedBuild`=44908 WHERE `entry`=204580; -- Gar'gol's Personal Treasure Chest
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=1169, `VerifiedBuild`=44908 WHERE `entry`=266846; -- Door
|
||||
UPDATE `gameobject_template` SET `Data32`=108, `VerifiedBuild`=44908 WHERE `entry`=355872; -- Stolen Jar
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=39708, `ContentTuningId`=165, `VerifiedBuild`=44908 WHERE `entry`=208592; -- Flame Druid Reagent Pouch
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=165, `VerifiedBuild`=44908 WHERE `entry`=209096; -- The Vow
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=713, `VerifiedBuild`=44908 WHERE `entry`=332295; -- Stolen Parts
|
||||
UPDATE `gameobject_template` SET `Data32`=108, `VerifiedBuild`=44908 WHERE `entry`=354646; -- Ancient Cloudfeather Egg
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=292, `VerifiedBuild`=44908 WHERE `entry`=278402; -- Tiragarde Perch School
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=165, `VerifiedBuild`=44908 WHERE `entry`=208545; -- Ash Pile
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=52, `VerifiedBuild`=44908 WHERE `entry`=202712; -- The Twilight Apocrypha
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=1169, `VerifiedBuild`=44908 WHERE `entry`=259928; -- Ghost Trap
|
||||
UPDATE `gameobject_template` SET `Data32`=108, `VerifiedBuild`=44908 WHERE `entry`=358298; -- Forbidden Chamber Lockbox
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=356, `VerifiedBuild`=44908 WHERE `entry` IN (255348, 255347); -- Gold
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=816, `VerifiedBuild`=44908 WHERE `entry`=236277; -- Training Manual
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=165, `VerifiedBuild`=44908 WHERE `entry` IN (208900, 311366); -- Portal to the Firelands
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=70342, `ContentTuningId`=1169, `VerifiedBuild`=44908 WHERE `entry`=265604; -- Sealed Tome
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=816, `VerifiedBuild`=44908 WHERE `entry` IN (236444, 236421); -- Iron Prisoner Cage
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=1169, `VerifiedBuild`=44908 WHERE `entry`=266848; -- POI Marker
|
||||
UPDATE `gameobject_template` SET `Data32`=108, `VerifiedBuild`=44908 WHERE `entry`=353231; -- Bonebound Chest
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=165, `VerifiedBuild`=44908 WHERE `entry`=208426; -- Cinderweb Egg Sac - Spiderling Trap
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=65, `VerifiedBuild`=44908 WHERE `entry`=234636; -- Small Ammo Barrel
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=56776, `ContentTuningId`=302, `VerifiedBuild`=44908 WHERE `entry`=237484; -- Iron Autocannon
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=683, `VerifiedBuild`=44908 WHERE `entry`=202748; -- Stormvine
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=52, `VerifiedBuild`=44908 WHERE `entry`=202706; -- Twilight Cauldron
|
||||
UPDATE `gameobject_template` SET `Data32`=108, `VerifiedBuild`=44908 WHERE `entry`=357584; -- Vyrtha's Dredglaive
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=165, `VerifiedBuild`=44908 WHERE `entry`=208552; -- Portal to Mount Hyjal
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=642, `VerifiedBuild`=44908 WHERE `entry`=246660; -- Grave Marker
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data18`=679, `Data30`=39345, `ContentTuningId`=165, `VerifiedBuild`=44908 WHERE `entry`=207507; -- Dark Iron Treasure Chest
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=165, `VerifiedBuild`=44908 WHERE `entry`=208535; -- Dried Acorn
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=52, `VerifiedBuild`=44908 WHERE `entry`=203067; -- Twilight Anvil
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=39701, `ContentTuningId`=165, `VerifiedBuild`=44908 WHERE `entry`=208587; -- Obsidium Meteorite
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=39726, `ContentTuningId`=165, `VerifiedBuild`=44908 WHERE `entry`=208802; -- Living Obsidium Chip
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=39694, `ContentTuningId`=165, `VerifiedBuild`=44908 WHERE `entry`=208551; -- Lucifern
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=165, `VerifiedBuild`=44908 WHERE `entry`=208791; -- Small Gravestone
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=39488, `ContentTuningId`=165, `VerifiedBuild`=44908 WHERE `entry`=208423; -- Cinderweb Egg Sac
|
||||
UPDATE `gameobject_template` SET `Data32`=108, `VerifiedBuild`=44908 WHERE `entry`=354853; -- Sprouting Growth
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=271, `VerifiedBuild`=44908 WHERE `entry`=239324; -- Meeting Stone
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=713, `VerifiedBuild`=44908 WHERE `entry`=322675; -- Volatile Liquid
|
||||
UPDATE `gameobject_template` SET `Data30`=111378, `Data33`=107535, `ContentTuningId`=464, `VerifiedBuild`=44908 WHERE `entry`=338194; -- Challenger's Cache
|
||||
UPDATE `gameobject_template` SET `Data32`=108, `VerifiedBuild`=44908 WHERE `entry`=356757; -- Greed's Desire
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data2`=1, `Data30`=56755, `ContentTuningId`=302, `VerifiedBuild`=44908 WHERE `entry`=237463; -- Strange Brass Compass
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=271, `VerifiedBuild`=44908 WHERE `entry`=231980; -- Assault Flaps
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=39495, `ContentTuningId`=165, `VerifiedBuild`=44908 WHERE `entry`=208442; -- Blueroot Vine
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=52, `VerifiedBuild`=44908 WHERE `entry`=203169; -- Blaithe's Roost
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=713, `VerifiedBuild`=44908 WHERE `entry`=322666; -- Explosives
|
||||
UPDATE `gameobject_template` SET `Data32`=108, `VerifiedBuild`=44908 WHERE `entry`=353331; -- Faerie Stash
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=39701, `ContentTuningId`=165, `VerifiedBuild`=44908 WHERE `entry`=208672; -- Obsidium Meteorite
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=39706, `ContentTuningId`=165, `VerifiedBuild`=44908 WHERE `entry`=208590; -- Flame Druid Spellbook
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=70342, `ContentTuningId`=1169, `VerifiedBuild`=44908 WHERE `entry`=265600; -- Sealed Tome
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=39507, `ContentTuningId`=165, `VerifiedBuild`=44908 WHERE `entry`=208540; -- Magmolia
|
||||
UPDATE `gameobject_template` SET `Data15`=0, `ContentTuningId`=1169, `VerifiedBuild`=44908 WHERE `entry`=266592; -- Medivh's Footlocker
|
||||
UPDATE `gameobject_template` SET `Data18`=106, `VerifiedBuild`=44908 WHERE `entry`=220063; -- Forlorn Spire
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=165, `VerifiedBuild`=44908 WHERE `entry`=208596; -- Flame Druid Idol Trap
|
||||
UPDATE `gameobject_template` SET `Data32`=108, `VerifiedBuild`=44908 WHERE `entry`=353232; -- Bleakwood Chest
|
||||
UPDATE `gameobject_template` SET `Data32`=108, `VerifiedBuild`=44908 WHERE `entry`=349797; -- Abandoned Curios
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=39717, `ContentTuningId`=165, `VerifiedBuild`=44908 WHERE `entry`=208630; -- Fire Hawk Egg
|
||||
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=44908 WHERE `entry`=208778; -- Furnace Door
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=70342, `ContentTuningId`=1169, `VerifiedBuild`=44908 WHERE `entry`=265597; -- Sealed Tome
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=70342, `ContentTuningId`=1169, `VerifiedBuild`=44908 WHERE `entry`=265599; -- Sealed Tome
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=39488, `ContentTuningId`=165, `VerifiedBuild`=44908 WHERE `entry`=208431; -- Cinderweb Egg Sac
|
||||
UPDATE `gameobject_template` SET `Data32`=108, `VerifiedBuild`=44908 WHERE `entry`=349793; -- Wayfarer's Abandoned Spoils
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=1039, `VerifiedBuild`=44908 WHERE `entry`=239325; -- Meeting Stone
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=70342, `ContentTuningId`=1169, `VerifiedBuild`=44908 WHERE `entry`=265603; -- Sealed Tome
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=302, `VerifiedBuild`=44908 WHERE `entry`=236765; -- Deactivated Ogre Waygate
|
||||
UPDATE `gameobject_template` SET `Data32`=108, `VerifiedBuild`=44908 WHERE `entry`=349795; -- Fleeing Soul's Bundle
|
||||
UPDATE `gameobject_template` SET `Data32`=108, `VerifiedBuild`=44908 WHERE `entry`=349794; -- Remlate's Hidden Cache
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=187, `VerifiedBuild`=44908 WHERE `entry`=277380; -- Tainted Pig Feed
|
||||
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=332, `VerifiedBuild`=45161 WHERE `entry` IN (244994, 241741, 244995); -- Weapon Rack
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=39507, `ContentTuningId`=165, `VerifiedBuild`=45161 WHERE `entry`=208540; -- Magmolia
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=347, `VerifiedBuild`=45161 WHERE `entry`=252558; -- Hungering Orb
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=332, `VerifiedBuild`=45161 WHERE `entry` IN (243215, 245650); -- Black Rook Cage
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=347, `VerifiedBuild`=45161 WHERE `entry`=246686; -- Barricade
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=165, `VerifiedBuild`=45161 WHERE `entry`=208596; -- Flame Druid Idol Trap
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=165, `VerifiedBuild`=45161 WHERE `entry` IN (208541, 208543); -- Magmolia
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=39702, `ContentTuningId`=165, `VerifiedBuild`=45161 WHERE `entry`=208576; -- Obsidium Meteorite
|
||||
UPDATE `gameobject_template` SET `Data33`=107535, `ContentTuningId`=1172, `VerifiedBuild`=45161 WHERE `entry`=252677; -- Challenger's Cache
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=347, `VerifiedBuild`=45161 WHERE `entry` IN (246696, 246694, 246695); -- Supplies
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=39706, `ContentTuningId`=165, `VerifiedBuild`=45161 WHERE `entry`=208589; -- Flame Druid Spellbook
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=165, `VerifiedBuild`=45161 WHERE `entry` IN (311366, 208900); -- Portal to the Firelands
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=682, `VerifiedBuild`=45161 WHERE `entry`=257289; -- Elven Treasure Chest
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=339, `VerifiedBuild`=45161 WHERE `entry`=251959; -- Ancient Elven Chest
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=39717, `ContentTuningId`=165, `VerifiedBuild`=45161 WHERE `entry`=208630; -- Fire Hawk Egg
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=165, `VerifiedBuild`=45161 WHERE `entry`=208570; -- Rappelling Rope
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=332, `VerifiedBuild`=45161 WHERE `entry`=243089; -- Kur'talos Ravencrest's Sigil
|
||||
UPDATE `gameobject_template` SET `Data8`=0, `VerifiedBuild`=45161 WHERE `entry`=208778; -- Furnace Door
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=39507, `ContentTuningId`=165, `VerifiedBuild`=45161 WHERE `entry`=208544; -- Magmolia
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=165, `VerifiedBuild`=45161 WHERE `entry`=208552; -- Portal to Mount Hyjal
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=39705, `ContentTuningId`=165, `VerifiedBuild`=45161 WHERE `entry`=208588; -- Flame Druid Staff
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=332, `VerifiedBuild`=45161 WHERE `entry`=241586; -- Engraved Headstone
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=332, `VerifiedBuild`=45161 WHERE `entry`=243807; -- Stone
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=348, `VerifiedBuild`=45161 WHERE `entry`=244000; -- Saris' Hammer
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=187, `VerifiedBuild`=45161 WHERE `entry`=287002; -- Mark of Alder
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=165, `VerifiedBuild`=45161 WHERE `entry`=208426; -- Cinderweb Egg Sac - Spiderling Trap
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=335, `VerifiedBuild`=45161 WHERE `entry`=266663; -- Duskwatch Scrying Orb
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=347, `VerifiedBuild`=45161 WHERE `entry`=247421; -- Powder Keg
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=682, `VerifiedBuild`=45161 WHERE `entry` IN (244776, 244775); -- Dreamleaf
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=39488, `ContentTuningId`=165, `VerifiedBuild`=45161 WHERE `entry`=208431; -- Cinderweb Egg Sac
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=39495, `ContentTuningId`=165, `VerifiedBuild`=45161 WHERE `entry`=208442; -- Blueroot Vine
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=332, `VerifiedBuild`=45161 WHERE `entry`=243636; -- Ledger of the Sea Wolf
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=39708, `ContentTuningId`=165, `VerifiedBuild`=45161 WHERE `entry`=208592; -- Flame Druid Reagent Pouch
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=165, `VerifiedBuild`=45161 WHERE `entry`=208381; -- Pile of Ash
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=348, `VerifiedBuild`=45161 WHERE `entry`=244001; -- Saris' Research
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=39701, `ContentTuningId`=165, `VerifiedBuild`=45161 WHERE `entry`=208587; -- Obsidium Meteorite
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=39701, `ContentTuningId`=165, `VerifiedBuild`=45161 WHERE `entry`=208672; -- Obsidium Meteorite
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=39709, `ContentTuningId`=165, `VerifiedBuild`=45161 WHERE `entry`=208593; -- Flame Druid Idol
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=187, `VerifiedBuild`=45161 WHERE `entry`=287001; -- Mark of Yew
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=165, `VerifiedBuild`=45161 WHERE `entry`=208545; -- Ash Pile
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=39694, `ContentTuningId`=165, `VerifiedBuild`=45161 WHERE `entry`=208551; -- Lucifern
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=347, `VerifiedBuild`=45161 WHERE `entry`=246680; -- Banner
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=683, `VerifiedBuild`=45161 WHERE `entry`=202748; -- Stormvine
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=705, `VerifiedBuild`=45161 WHERE `entry`=291227; -- Small Treasure Chest
|
||||
UPDATE `gameobject_template` SET `Data1`=0, `Data30`=39488, `ContentTuningId`=165, `VerifiedBuild`=45161 WHERE `entry`=208423; -- Cinderweb Egg Sac
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=339, `VerifiedBuild`=45161 WHERE `entry`=252871; -- Beyond the Throne of Air
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=335, `VerifiedBuild`=45161 WHERE `entry`=251190; -- Containment Field
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=347, `VerifiedBuild`=45161 WHERE `entry`=246692; -- Torch
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=1152, `VerifiedBuild`=45161 WHERE `entry`=253110; -- Meeting Stone
|
||||
|
||||
DELETE FROM `gameobject_questitem` WHERE (`Idx`=0 AND `GameObjectEntry` IN (357255,357582,357256));
|
||||
INSERT INTO `gameobject_questitem` (`GameObjectEntry`, `Idx`, `ItemId`, `VerifiedBuild`) VALUES
|
||||
(357255, 0, 182333, 44908), -- Thistledrop Frond
|
||||
(357582, 0, 182659, 44908), -- Night Lilly
|
||||
(357256, 0, 182333, 44908); -- Thistledrop Growth
|
||||
|
||||
DELETE FROM `quest_template` WHERE `ID` IN (66650 /*-Unknown-*/, 66616 /*-Unknown-*/, 65131 /*-Unknown-*/, 66693 /*-Unknown-*/);
|
||||
INSERT INTO `quest_template` (`ID`, `QuestType`, `QuestPackageID`, `ContentTuningID`, `QuestSortID`, `QuestInfoID`, `SuggestedGroupNum`, `RewardNextQuest`, `RewardXPDifficulty`, `RewardXPMultiplier`, `RewardMoneyDifficulty`, `RewardMoneyMultiplier`, `RewardBonusMoney`, `RewardSpell`, `RewardHonor`, `RewardKillHonor`, `StartItem`, `RewardArtifactXPDifficulty`, `RewardArtifactXPMultiplier`, `RewardArtifactCategoryID`, `Flags`, `FlagsEx`, `FlagsEx2`, `RewardSkillLineID`, `RewardNumSkillUps`, `PortraitGiver`, `PortraitGiverMount`, `PortraitGiverModelSceneID`, `PortraitTurnIn`, `RewardItem1`, `RewardItem2`, `RewardItem3`, `RewardItem4`, `RewardAmount1`, `RewardAmount2`, `RewardAmount3`, `RewardAmount4`, `ItemDrop1`, `ItemDrop2`, `ItemDrop3`, `ItemDrop4`, `ItemDropQuantity1`, `ItemDropQuantity2`, `ItemDropQuantity3`, `ItemDropQuantity4`, `RewardChoiceItemID1`, `RewardChoiceItemID2`, `RewardChoiceItemID3`, `RewardChoiceItemID4`, `RewardChoiceItemID5`, `RewardChoiceItemID6`, `RewardChoiceItemQuantity1`, `RewardChoiceItemQuantity2`, `RewardChoiceItemQuantity3`, `RewardChoiceItemQuantity4`, `RewardChoiceItemQuantity5`, `RewardChoiceItemQuantity6`, `RewardChoiceItemDisplayID1`, `RewardChoiceItemDisplayID2`, `RewardChoiceItemDisplayID3`, `RewardChoiceItemDisplayID4`, `RewardChoiceItemDisplayID5`, `RewardChoiceItemDisplayID6`, `POIContinent`, `POIx`, `POIy`, `POIPriority`, `RewardTitle`, `RewardArenaPoints`, `RewardFactionID1`, `RewardFactionID2`, `RewardFactionID3`, `RewardFactionID4`, `RewardFactionID5`, `RewardFactionValue1`, `RewardFactionValue2`, `RewardFactionValue3`, `RewardFactionValue4`, `RewardFactionValue5`, `RewardFactionCapIn1`, `RewardFactionCapIn2`, `RewardFactionCapIn3`, `RewardFactionCapIn4`, `RewardFactionCapIn5`, `RewardFactionOverride1`, `RewardFactionOverride2`, `RewardFactionOverride3`, `RewardFactionOverride4`, `RewardFactionOverride5`, `RewardFactionFlags`, `AreaGroupID`, `TimeAllowed`, `AllowableRaces`, `TreasurePickerID`, `Expansion`, `ManagedWorldStateID`, `QuestSessionBonus`, `LogTitle`, `LogDescription`, `QuestDescription`, `AreaDescription`, `QuestCompletionLog`, `RewardCurrencyID1`, `RewardCurrencyID2`, `RewardCurrencyID3`, `RewardCurrencyID4`, `RewardCurrencyQty1`, `RewardCurrencyQty2`, `RewardCurrencyQty3`, `RewardCurrencyQty4`, `PortraitGiverText`, `PortraitGiverName`, `PortraitTurnInText`, `PortraitTurnInName`, `AcceptedSoundKitID`, `CompleteSoundKitID`, `VerifiedBuild`) VALUES
|
||||
(66650, 2, 0, 2426, -442, 62, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 38338624, 8192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 7577, 0, 18446744073709551615, 2055, 8, 0, 0, 'Fate\'s Finale', 'Defeat $1oa different Fated raid bosses.', '<You are calm. The nature of this experience remains unknown, but it is no longer unfamiliar. Your now possess mastery over these ordeals with clarity as your ultimate reward.>\n\n<With clear mind and steady hand you stride forth one last time. Create your own destiny, and watch it unfold under your very feet.>', '', '', 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 890, 878, 45114), -- -Unknown-
|
||||
(66616, 3, 0, 2426, 11510, 111, 0, 0, 5, 1, 0, 0, 0, 342092, 0, 0, 0, 0, 0, 0, 37290304, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2465, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 12500, 0, 0, 0, 0, 0, 0, 0, 18446744073709551615, 1623, 8, 0, 0, 'Oranomonos the Everbranching', '', '', '', '', 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 890, 878, 45114), -- -Unknown-
|
||||
(65131, 0, 0, 2060, 10413, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 18446744073709551615, 0, 8, 0, 0, 'Friend of a Friend: Rendle and Cudgelface', '', '', '', '', 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 890, 878, 45114), -- -Unknown-
|
||||
(66693, 3, 0, 837, -442, 111, 0, 0, 5, 1, 0, 0, 0, 344554, 0, 0, 0, 0, 0, 0, 36241728, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2413, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 50000, 0, 0, 0, 0, 0, 7119, 0, 18446744073709551615, 1623, 8, 0, 0, 'Tempting Fate: Castle Nathria', '', '', '', '', 0, 0, 0, 0, 0, 0, 0, 0, '', '', '', '', 890, 878, 45114); -- -Unknown-
|
||||
|
||||
DELETE FROM `quest_objectives` WHERE `ID` IN (427707 /*427707*/, 427327 /*427327*/, 427557 /*427557*/);
|
||||
INSERT INTO `quest_objectives` (`ID`, `QuestID`, `Type`, `Order`, `StorageIndex`, `ObjectID`, `Amount`, `Flags`, `Flags2`, `ProgressBarWeight`, `Description`, `VerifiedBuild`) VALUES
|
||||
(427707, 66650, 0, 0, 0, 190258, 5, 0, 0, 0, 'Fated raid bosses defeated', 45114), -- 427707
|
||||
(427327, 66616, 0, 0, 0, 167527, 1, 1, 0, 0, '', 45114), -- 427327
|
||||
(427557, 66693, 14, 0, 0, 134384, 1, 0, 0, 0, 'Fated Bosses Defeated in Castle Nathria', 45114); -- 427557
|
||||
|
||||
DELETE FROM `quest_reward_display_spell` WHERE (`QuestID`=65131 AND `Idx`=0);
|
||||
INSERT INTO `quest_reward_display_spell` (`QuestID`, `Idx`, `SpellID`, `PlayerConditionID`, `VerifiedBuild`) VALUES
|
||||
(65131, 0, 361711, 0, 45114);
|
||||
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=500, `VerifiedBuild`=44908 WHERE `ID`=53253; -- Arathi Donations: Enchant Ring - Seal of Versatility
|
||||
UPDATE `quest_template` SET `ContentTuningID`=464, `VerifiedBuild`=44908 WHERE `ID`=50581; -- Scrolls and Scales
|
||||
UPDATE `quest_template` SET `ContentTuningID`=691, `VerifiedBuild`=44908 WHERE `ID`=54578; -- Branchlord Aldrus
|
||||
UPDATE `quest_template` SET `ContentTuningID`=347, `VerifiedBuild`=44908 WHERE `ID`=41441; -- Superior Leystone Deposits
|
||||
UPDATE `quest_template` SET `ContentTuningID`=347, `VerifiedBuild`=44908 WHERE `ID`=41438; -- Charged Leystone Deposits
|
||||
UPDATE `quest_template` SET `ContentTuningID`=290, `VerifiedBuild`=45114 WHERE `ID`=53241; -- Arathi Donations: Coastal Mana Potion
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=100 WHERE `ID`=52428; -- Infusing the Heart
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=500 WHERE `ID`=54391; -- Darkshore Donations: Quick Golden Beryl
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=2000 WHERE `ID`=54282; -- Battle of Dazar'alor
|
||||
UPDATE `quest_template` SET `ContentTuningID`=464, `VerifiedBuild`=45114 WHERE `ID`=52414; -- Work Order: Drums of the Maelstrom
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=700 WHERE `ID`=53172; -- Venture Co. Business Plan
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=250 WHERE `ID`=54058; -- Unintended Consequences
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1602, `RewardCurrencyQty1`=25000 WHERE `ID`=56339; -- Tremblade Must Die
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=500 WHERE `ID`=54380; -- Darkshore Donations: Gold
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1820, `RewardCurrencyQty1`=35 WHERE `ID`=62189; -- Parasol Components
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=350 WHERE `ID`=53476; -- The Great Sea Scrolls
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1819, `RewardCurrencyQty1`=2 WHERE `ID`=60945; -- Deep Echo Trident
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1819, `RewardCurrencyQty1`=5 WHERE `ID`=61473; -- Sourcing Your Own Materials
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=2000 WHERE `ID`=54485; -- Battle of Dazar'alor
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=400 WHERE `ID`=54172; -- The Azsharan Medallion
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=750 WHERE `ID`=56186; -- Spies to the Left and Right
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=700 WHERE `ID`=53169; -- Elemental Core
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=500, `VerifiedBuild`=45114 WHERE `ID`=53253; -- Arathi Donations: Enchant Ring - Seal of Versatility
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=500 WHERE `ID`=55350; -- Assault: Amathet Advance
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=700 WHERE `ID`=53182; -- Strangling Root
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=700 WHERE `ID`=53184; -- Weathered Pamphlet
|
||||
UPDATE `quest_template` SET `RewardCurrencyID2`=1602, `RewardCurrencyQty2`=17500 WHERE `ID`=62285; -- Observing War
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1602, `RewardCurrencyID2`=1792, `RewardCurrencyQty1`=17500, `RewardCurrencyQty2`=500 WHERE `ID`=62287; -- Observing Arenas
|
||||
UPDATE `quest_template` SET `ContentTuningID`=290, `VerifiedBuild`=45114 WHERE `ID`=53242; -- Arathi Donations: Coastal Healing Potion
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1819, `RewardCurrencyQty1`=5 WHERE `ID`=60498; -- Overcoming the Trial
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=500 WHERE `ID`=54369; -- Darkshore Donations: Electroshock Mount Motivator
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=3000 WHERE `ID`=56356; -- The Eternal Palace: Queen's Gambit
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=500 WHERE `ID`=56308; -- Assault: Aqir Unearthed
|
||||
UPDATE `quest_template` SET `ContentTuningID`=347, `VerifiedBuild`=45114 WHERE `ID`=41198; -- Leystone Basilisks
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=600 WHERE `ID`=53437; -- The MOTHERLODE!!: Raw Deal
|
||||
UPDATE `quest_template` SET `RewardBonusMoney`=0, `Expansion`=-2, `VerifiedBuild`=45114 WHERE `ID`=39; -- Deliver Thomas' Report
|
||||
UPDATE `quest_template` SET `ContentTuningID`=691, `VerifiedBuild`=45114 WHERE `ID`=54678; -- Anything We Can Salvage
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=1500 WHERE `ID`=54438; -- Crucible of Storms: Relics of Shadow
|
||||
UPDATE `quest_template` SET `ContentTuningID`=691, `VerifiedBuild`=45114 WHERE `ID`=54833; -- Scalefiend
|
||||
UPDATE `quest_template` SET `ContentTuningID`=464, `VerifiedBuild`=45114 WHERE `ID`=51578; -- The Sea Runs Red
|
||||
UPDATE `quest_template` SET `ContentTuningID`=464, `VerifiedBuild`=45114 WHERE `ID`=51223; -- Walking on Broken Glass
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=750 WHERE `ID`=56064; -- Assault: The Black Empire
|
||||
UPDATE `quest_template` SET `ContentTuningID`=347, `AllowableRaces`=18446744073709551615, `VerifiedBuild`=45114 WHERE `ID`=41301; -- Starlight Rose Cluster
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=3000 WHERE `ID`=58632; -- Ny'alotha, the Waking City: The Corruptor's End
|
||||
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=2500, `VerifiedBuild`=45161 WHERE `ID`=55609; -- Operation: Mechagon - The Mechoriginator
|
||||
UPDATE `quest_template` SET `RewardCurrencyID2`=1602, `RewardCurrencyQty2`=17500, `VerifiedBuild`=45161 WHERE `ID`=65773; -- Solo Mission
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=2500, `VerifiedBuild`=45161 WHERE `ID`=54457; -- Supplies from Storm's Wake
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=2500, `VerifiedBuild`=45161 WHERE `ID`=54461; -- Supplies from the Voldunai
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=2500, `VerifiedBuild`=45161 WHERE `ID`=54451; -- Baubles from the Seekers
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=2500, `VerifiedBuild`=45161 WHERE `ID`=54454; -- Supplies from the 7th Legion
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=2500, `VerifiedBuild`=45161 WHERE `ID`=53982; -- Supplies From The Unshackled
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=750, `VerifiedBuild`=45161 WHERE `ID`=57157; -- Assault: The Black Empire
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=2500, `VerifiedBuild`=45161 WHERE `ID`=54456; -- Supplies from the Order of Embers
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=2500, `VerifiedBuild`=45161 WHERE `ID`=55348; -- Supplies from the Rustbolt Resistance
|
||||
UPDATE `quest_template` SET `RewardCurrencyID2`=1602, `RewardCurrencyQty2`=12500, `VerifiedBuild`=45161 WHERE `ID`=62286; -- Observing Skirmishes
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=2500, `VerifiedBuild`=45161 WHERE `ID`=54458; -- Supplies from the Proudmoore Admiralty
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=2500, `VerifiedBuild`=45161 WHERE `ID`=54460; -- Supplies from Talanji's Expedition
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=2500, `VerifiedBuild`=45161 WHERE `ID`=58096; -- Supplies from the Rajani
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1602, `RewardCurrencyID2`=1792, `RewardCurrencyQty1`=17500, `RewardCurrencyQty2`=750, `VerifiedBuild`=45161 WHERE `ID`=62288; -- Observing Teamwork
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=500, `VerifiedBuild`=45161 WHERE `ID`=57728; -- Assault: The Endless Swarm
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=2500, `VerifiedBuild`=45161 WHERE `ID`=54455; -- Supplies from the Honorbound
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=2500, `VerifiedBuild`=45161 WHERE `ID`=54462; -- Supplies from the Zandalari Empire
|
||||
UPDATE `quest_template` SET `RewardCurrencyID2`=1602, `RewardCurrencyQty2`=17500, `VerifiedBuild`=45161 WHERE `ID`=65775; -- Soloing Strategy
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=2500, `VerifiedBuild`=45161 WHERE `ID`=55976; -- Supplies From the Waveblade Ankoan
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=2500, `VerifiedBuild`=45161 WHERE `ID`=58097; -- Supplies from the Uldum Accord
|
||||
UPDATE `quest_template` SET `RewardCurrencyID1`=1553, `RewardCurrencyQty1`=2500, `VerifiedBuild`=45161 WHERE `ID`=54453; -- Supplies from Magni
|
||||
|
||||
UPDATE `quest_objectives` SET `Description`='Received orders from Paratrooper Jacobs', `VerifiedBuild`=45114 WHERE `ID`=336345; -- 336345
|
||||
@@ -1,188 +0,0 @@
|
||||
SET @CGUID := 222560;
|
||||
SET @OGUID := 165991;
|
||||
|
||||
-- Creature
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+12;
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `PhaseGroup`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES
|
||||
(@CGUID+0, 15113, 0, 1, 809, '0', '0', 0, 0, 0, -5090.5537109375, -804.6905517578125, 495.17425537109375, 4.360944747924804687, 120, 2, 0, 1604, 0, 1, 0, 0, 0, 45114), -- Honored Hero (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@CGUID+1, 15113, 0, 1, 809, '0', '0', 0, 0, 0, -5066.404296875, -800.34869384765625, 495.252105712890625, 6.03566741943359375, 120, 2, 0, 1604, 0, 1, 0, 0, 0, 45114), -- Honored Hero (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@CGUID+2, 15113, 0, 1, 809, '0', '0', 0, 0, 0, -5062.71923828125, -800.502685546875, 495.252105712890625, 0.409101009368896484, 120, 2, 0, 1604, 0, 1, 0, 0, 0, 45114), -- Honored Hero (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@CGUID+3, 15113, 0, 1, 809, '0', '0', 0, 0, 0, -5079.03173828125, -805.7064208984375, 495.17425537109375, 1.304785847663879394, 120, 2, 0, 1604, 0, 1, 0, 0, 0, 45114), -- Honored Hero (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@CGUID+4, 15113, 0, 1, 809, '0', '0', 0, 0, 0, -5084.7958984375, -793.11962890625, 495.66571044921875, 5.024592399597167968, 120, 2, 0, 1604, 0, 1, 0, 0, 0, 45114), -- Honored Hero (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@CGUID+5, 15113, 0, 1, 809, '0', '0', 0, 0, 0, -5099.1748046875, -805.93701171875, 495.17425537109375, 0.694738328456878662, 120, 2, 0, 1604, 0, 1, 0, 0, 0, 45114), -- Honored Hero (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@CGUID+6, 15113, 0, 1, 809, '0', '0', 0, 0, 0, -5080.89794921875, -788.79901123046875, 495.90374755859375, 3.226373910903930664, 120, 2, 0, 1604, 0, 1, 0, 0, 0, 45114), -- Honored Hero (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@CGUID+7, 15113, 0, 1, 809, '0', '0', 0, 0, 0, -5088.0390625, -806.99920654296875, 495.17425537109375, 2.05725264549255371, 120, 2, 0, 1604, 0, 1, 0, 0, 0, 45114), -- Honored Hero (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@CGUID+8, 15113, 0, 1, 809, '0', '0', 0, 0, 0, -5092.94677734375, -794.10791015625, 495.18743896484375, 2.082314491271972656, 120, 2, 0, 1604, 0, 1, 0, 0, 0, 45114), -- Honored Hero (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@CGUID+9, 15113, 0, 1, 809, '0', '0', 0, 0, 0, -5077.5927734375, -793.38507080078125, 495.38348388671875, 3.191384553909301757, 120, 2, 0, 1604, 0, 1, 0, 0, 0, 45114), -- Honored Hero (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@CGUID+10, 15113, 0, 1, 809, '0', '0', 0, 0, 0, -5069.76953125, -794.537109375, 495.15374755859375, 2.638870954513549804, 120, 2, 0, 1604, 0, 1, 0, 0, 0, 45114), -- Honored Hero (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@CGUID+11, 15113, 0, 1, 809, '0', '0', 0, 0, 0, -5095.46435546875, -798.76123046875, 495.15374755859375, 6.145327091217041015, 120, 2, 0, 1604, 0, 1, 0, 0, 0, 45114), -- Honored Hero (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@CGUID+12, 15011, 0, 1, 809, '0', '0', 0, 0, 0, -5060.04248046875, -788.6114501953125, 495.14801025390625, 1.064650893211364746, 120, 0, 0, 1604, 0, 0, 0, 0, 0, 45114); -- Wagner Hammerstrike (Area: Gates of Ironforge - Difficulty: 0)
|
||||
|
||||
-- GameObject
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+63;
|
||||
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, 180328, 0, 1, 809, '0', '0', 0, -5087.7880859375, -800.03277587890625, 496.0299072265625, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 45114), -- General Candelabra 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+1, 180353, 0, 1, 809, '0', '0', 0, -5090.37841796875, -798.074951171875, 495.127105712890625, 3.159062385559082031, 0, 0, -0.99996185302734375, 0.008734640665352344, 120, 255, 1, 45114), -- Freestanding Torch 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+2, 180325, 0, 1, 809, '0', '0', 0, -5085.62841796875, -798.15966796875, 495.127105712890625, 4.747295856475830078, 0, 0, -0.69465827941894531, 0.719339847564697265, 120, 255, 1, 45114), -- Chair (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+3, 180324, 0, 1, 809, '0', '0', 0, -5083.5478515625, -799.98211669921875, 495.127105712890625, 1.570795774459838867, 0, 0, 0.707106590270996093, 0.707106947898864746, 120, 255, 1, 45114), -- Dwarven Table Ornate 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+4, 180330, 0, 1, 809, '0', '0', 0, -5081.625, -799.857666015625, 496.016021728515625, 0.802850961685180664, 0, 0, 0.390730857849121093, 0.920504987239837646, 120, 255, 1, 45114), -- Jar 02 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+5, 180325, 0, 1, 809, '0', '0', 0, -5082.74169921875, -798.1578369140625, 495.167877197265625, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 45114), -- Chair (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+6, 180325, 0, 1, 809, '0', '0', 0, -5085.60107421875, -801.763916015625, 495.127105712890625, 1.570795774459838867, 0, 0, 0.707106590270996093, 0.707106947898864746, 120, 255, 1, 45114), -- Chair (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+7, 180324, 0, 1, 809, '0', '0', 0, -5079.31640625, -799.98760986328125, 495.127105712890625, 1.570795774459838867, 0, 0, 0.707106590270996093, 0.707106947898864746, 120, 255, 1, 45114), -- Dwarven Table Ornate 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+8, 180325, 0, 1, 809, '0', '0', 0, -5088.47998046875, -798.12969970703125, 495.150726318359375, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 45114), -- Chair (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+9, 180325, 0, 1, 809, '0', '0', 0, -5082.822265625, -801.7591552734375, 495.127105712890625, 1.570795774459838867, 0, 0, 0.707106590270996093, 0.707106947898864746, 120, 255, 1, 45114), -- Chair (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+10, 180328, 0, 1, 809, '0', '0', 0, -5083.51904296875, -799.94097900390625, 496.0299072265625, 4.694936752319335937, 0, 0, -0.71325016021728515, 0.700909554958343505, 120, 255, 1, 45114), -- General Candelabra 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+11, 180325, 0, 1, 809, '0', '0', 0, -5088.3125, -801.76141357421875, 495.127105712890625, 1.570795774459838867, 0, 0, 0.707106590270996093, 0.707106947898864746, 120, 255, 1, 45114), -- Chair (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+12, 180329, 0, 1, 809, '0', '0', 0, -5087.3271484375, -799.57098388671875, 496.022796630859375, 1.815141916275024414, 0, 0, 0.788010597229003906, 0.615661680698394775, 120, 255, 1, 45114), -- Jar 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+13, 180353, 0, 1, 809, '0', '0', 0, -5081.2548828125, -796.47442626953125, 495.1968994140625, 1.570795774459838867, 0, 0, 0.707106590270996093, 0.707106947898864746, 120, 255, 1, 45114), -- Freestanding Torch 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+14, 180330, 0, 1, 809, '0', '0', 0, -5083.9912109375, -799.66143798828125, 496.02294921875, 4.031712055206298828, 0, 0, -0.90258502960205078, 0.430511653423309326, 120, 255, 1, 45114), -- Jar 02 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+15, 180331, 0, 1, 809, '0', '0', 0, -5087.1181640625, -800.0399169921875, 496.016021728515625, 0.052358884364366531, 0, 0, 0.02617645263671875, 0.999657332897186279, 120, 255, 1, 45114), -- Jar 03 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+16, 180331, 0, 1, 809, '0', '0', 0, -5083, -800.12677001953125, 496.02294921875, 2.914689540863037109, 0, 0, 0.993571281433105468, 0.113208353519439697, 120, 255, 1, 45114), -- Jar 03 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+17, 180331, 0, 1, 809, '0', '0', 0, -5089.125, -800.44964599609375, 496.02294921875, 3.857182979583740234, 0, 0, -0.93667125701904296, 0.350209832191467285, 120, 255, 1, 45114), -- Jar 03 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+18, 180332, 0, 1, 809, '0', '0', 0, -5081.4619140625, -800.32464599609375, 496.016021728515625, 3.996806621551513671, 0, 0, -0.90996074676513671, 0.414694398641586303, 120, 255, 1, 45114), -- Jug 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+19, 180332, 0, 1, 809, '0', '0', 0, -5087.41162109375, -800.54168701171875, 496.02294921875, 1.431168079376220703, 0, 0, 0.656058311462402343, 0.754710197448730468, 120, 255, 1, 45114), -- Jug 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+20, 180333, 0, 1, 809, '0', '0', 0, -5084.66845703125, -800.05206298828125, 496.0299072265625, 4.852017402648925781, 0, 0, -0.65605831146240234, 0.754710197448730468, 120, 255, 1, 45114), -- Jug 02 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+21, 180324, 0, 1, 809, '0', '0', 0, -5087.77978515625, -799.98583984375, 495.127105712890625, 1.570795774459838867, 0, 0, 0.707106590270996093, 0.707106947898864746, 120, 255, 1, 45114), -- Dwarven Table Ornate 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+22, 180325, 0, 1, 809, '0', '0', 0, -5090.31689453125, -799.91436767578125, 495.127105712890625, 6.265733242034912109, 0, 0, -0.00872611999511718, 0.999961912631988525, 120, 255, 1, 45114), -- Chair (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+23, 180353, 0, 1, 809, '0', '0', 0, -5081.40087890625, -803.11968994140625, 495.127105712890625, 1.588248729705810546, 0, 0, 0.713250160217285156, 0.700909554958343505, 120, 255, 1, 45114), -- Freestanding Torch 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+24, 180371, 0, 1, 809, '0', '0', 0, -5082.24658203125, -800.44793701171875, 496.0299072265625, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 45114), -- Harvest Fish (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+25, 180370, 0, 1, 809, '0', '0', 0, -5085.63720703125, -799.9305419921875, 496.0299072265625, 6.056293010711669921, 0, 0, -0.11320304870605468, 0.993571877479553222, 120, 255, 1, 45114), -- Harvest Fruit (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+26, 180325, 0, 1, 809, '0', '0', 0, -5074.61962890625, -801.56280517578125, 495.127105712890625, 1.570795774459838867, 0, 0, 0.707106590270996093, 0.707106947898864746, 120, 255, 1, 45114), -- Chair (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+27, 180373, 0, 1, 809, '0', '0', 0, -5084.49462890625, -799.37847900390625, 496.05072021484375, 3.490667104721069335, 0, 0, -0.98480701446533203, 0.173652306199073791, 120, 255, 1, 45114), -- Harvest Nectar (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+28, 180328, 0, 1, 809, '0', '0', 0, -5079.29541015625, -799.9698486328125, 496.036834716796875, 1.588248729705810546, 0, 0, 0.713250160217285156, 0.700909554958343505, 120, 255, 1, 45114), -- General Candelabra 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+29, 180373, 0, 1, 809, '0', '0', 0, -5084.46533203125, -800.50347900390625, 496.043792724609375, 6.12610626220703125, 0, 0, -0.07845878601074218, 0.996917366981506347, 120, 255, 1, 45114), -- Harvest Nectar (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+30, 180325, 0, 1, 809, '0', '0', 0, -5079.94091796875, -798.19891357421875, 495.143280029296875, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 45114), -- Chair (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+31, 180324, 0, 1, 809, '0', '0', 0, -5075.08349609375, -799.99249267578125, 495.127105712890625, 1.570795774459838867, 0, 0, 0.707106590270996093, 0.707106947898864746, 120, 255, 1, 45114), -- Dwarven Table Ornate 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+32, 180331, 0, 1, 809, '0', '0', 0, -5078.6826171875, -799.6883544921875, 496.016021728515625, 4.310965538024902343, 0, 0, -0.83388519287109375, 0.55193793773651123, 120, 255, 1, 45114), -- Jar 03 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+33, 180373, 0, 1, 809, '0', '0', 0, -5079.73095703125, -800.638916015625, 496.036834716796875, 6.073746204376220703, 0, 0, -0.10452842712402343, 0.994521915912628173, 120, 255, 1, 45114), -- Harvest Nectar (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+34, 180328, 0, 1, 809, '0', '0', 0, -5075.05615234375, -799.9864501953125, 496.036834716796875, 1.570795774459838867, 0, 0, 0.707106590270996093, 0.707106947898864746, 120, 255, 1, 45114), -- General Candelabra 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+35, 180373, 0, 1, 809, '0', '0', 0, -5079.416015625, -799.40765380859375, 496.05609130859375, 3.351046562194824218, 0, 0, -0.99452114105224609, 0.104535527527332305, 120, 255, 1, 45114), -- Harvest Nectar (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+36, 180329, 0, 1, 809, '0', '0', 0, -5083.798828125, -800.58331298828125, 496.016021728515625, 1.169368624687194824, 0, 0, 0.551936149597167968, 0.833886384963989257, 120, 255, 1, 45114), -- Jar 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+37, 180334, 0, 1, 809, '0', '0', 0, -5083.51611328125, -799.99102783203125, 495.1549072265625, 3.141592741012573242, 0, 0, -1, 0, 120, 255, 1, 45114), -- Stormwind Rug 02 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+38, 180325, 0, 1, 809, '0', '0', 0, -5074.6240234375, -798.3370361328125, 495.130218505859375, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 45114), -- Chair (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+39, 180331, 0, 1, 809, '0', '0', 0, -5075.8974609375, -799.9444580078125, 496.016021728515625, 2.391098499298095703, 0, 0, 0.930417060852050781, 0.366502493619918823, 120, 255, 1, 45114), -- Jar 03 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+40, 180371, 0, 1, 809, '0', '0', 0, -5073.673828125, -799.9444580078125, 496.0299072265625, 6.12610626220703125, 0, 0, -0.07845878601074218, 0.996917366981506347, 120, 255, 1, 45114), -- Harvest Fish (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+41, 179984, 0, 1, 809, '0', '0', 0, -5083.84912109375, -780.97393798828125, 494.5928955078125, 3.141592741012573242, 0, 0, -1, 0, 120, 255, 1, 45114), -- Brazier (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+42, 180373, 0, 1, 809, '0', '0', 0, -5074.09716796875, -799.22052001953125, 496.05072021484375, 3.368495941162109375, 0, 0, -0.99357128143310546, 0.113208353519439697, 120, 255, 1, 45114), -- Harvest Nectar (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+43, 180325, 0, 1, 809, '0', '0', 0, -5077.10791015625, -801.625244140625, 495.127105712890625, 1.570795774459838867, 0, 0, 0.707106590270996093, 0.707106947898864746, 120, 255, 1, 45114), -- Chair (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+44, 180370, 0, 1, 809, '0', '0', 0, -5089.048828125, -799.46875, 496.0299072265625, 4.171337604522705078, 0, 0, -0.87035560607910156, 0.492423713207244873, 120, 255, 1, 45114), -- Harvest Fruit (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+45, 180372, 0, 1, 809, '0', '0', 0, -5075.19775390625, -799.25518798828125, 496.03814697265625, 4.991643905639648437, 0, 0, -0.60181427001953125, 0.798636078834533691, 120, 255, 1, 45114), -- Harvest Boar (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+46, 180329, 0, 1, 809, '0', '0', 0, -5074.64599609375, -800.2100830078125, 496.02294921875, 3.124123096466064453, 0, 0, 0.99996185302734375, 0.008734640665352344, 120, 255, 1, 45114), -- Jar 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+47, 180373, 0, 1, 809, '0', '0', 0, -5087.83154296875, -799.27081298828125, 496.04742431640625, 3.24634718894958496, 0, 0, -0.99862861633300781, 0.052353221923112869, 120, 255, 1, 45114), -- Harvest Nectar (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+48, 180373, 0, 1, 809, '0', '0', 0, -5088.2587890625, -800.3367919921875, 496.043792724609375, 5.84685373306274414, 0, 0, -0.21643924713134765, 0.976296067237854003, 120, 255, 1, 45114), -- Harvest Nectar (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+49, 180329, 0, 1, 809, '0', '0', 0, -5079.94970703125, -799.92364501953125, 496.02294921875, 2.932138919830322265, 0, 0, 0.994521141052246093, 0.104535527527332305, 120, 255, 1, 45114), -- Jar 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+50, 180330, 0, 1, 809, '0', '0', 0, -5074.52978515625, -799.73663330078125, 496.02294921875, 0.104719325900077819, 0, 0, 0.052335739135742187, 0.998629570007324218, 120, 255, 1, 45114), -- Jar 02 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+51, 180325, 0, 1, 809, '0', '0', 0, -5072.39794921875, -799.88348388671875, 495.127105712890625, 3.124123096466064453, 0, 0, 0.99996185302734375, 0.008734640665352344, 120, 255, 1, 45114), -- Chair (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+52, 180325, 0, 1, 809, '0', '0', 0, -5077.19482421875, -798.263916015625, 495.127105712890625, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 45114), -- Chair (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+53, 180332, 0, 1, 809, '0', '0', 0, -5076.32275390625, -799.57464599609375, 496.02294921875, 4.415683269500732421, 0, 0, -0.80385684967041015, 0.594822824001312255, 120, 255, 1, 45114), -- Jug 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+54, 180333, 0, 1, 809, '0', '0', 0, -5078.5537109375, -800.31427001953125, 496.009063720703125, 0.698131442070007324, 0, 0, 0.342020034790039062, 0.939692676067352294, 120, 255, 1, 45114), -- Jug 02 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+55, 180325, 0, 1, 809, '0', '0', 0, -5079.861328125, -801.66925048828125, 495.127105712890625, 1.570795774459838867, 0, 0, 0.707106590270996093, 0.707106947898864746, 120, 255, 1, 45114), -- Chair (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+56, 180334, 0, 1, 809, '0', '0', 0, -5079.41650390625, -800.06329345703125, 495.141021728515625, 0.017452461645007133, 0, 0, 0.008726119995117187, 0.999961912631988525, 120, 255, 1, 45114), -- Stormwind Rug 02 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+57, 180334, 0, 1, 809, '0', '0', 0, -5075.05615234375, -800.016845703125, 495.127105712890625, 3.159062385559082031, 0, 0, -0.99996185302734375, 0.008734640665352344, 120, 255, 1, 45114), -- Stormwind Rug 02 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+58, 180371, 0, 1, 809, '0', '0', 0, -5077.2900390625, -800.1788330078125, 496.0299072265625, 2.321286916732788085, 0, 0, 0.917059898376464843, 0.398749500513076782, 120, 255, 1, 45114), -- Harvest Fish (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+59, 174746, 0, 1, 809, '0', '0', 0, -5095.4462890625, -785.763916015625, 495.80133056640625, 6.056295394897460937, 0.009865760803222656, 0.086594581604003906, -0.11277103424072265, 0.989791274070739746, 120, 255, 1, 45114), -- Etched Note (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+60, 180373, 0, 1, 809, '0', '0', 0, -5075, -800.55902099609375, 496.043792724609375, 0.349065244197845458, 0, 0, 0.173647880554199218, 0.984807789325714111, 120, 255, 1, 45114), -- Harvest Nectar (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+61, 180334, 0, 1, 809, '0', '0', 0, -5087.767578125, -799.9622802734375, 495.1549072265625, 0, 0, 0, 0, 1, 120, 255, 1, 45114), -- Stormwind Rug 02 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+62, 180372, 0, 1, 809, '0', '0', 0, -5080.798828125, -799.560791015625, 496.0299072265625, 1.867502212524414062, 0, 0, 0.803856849670410156, 0.594822824001312255, 120, 255, 1, 45114), -- Harvest Boar (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+63, 180353, 0, 1, 809, '0', '0', 0, -5072.04931640625, -801.83087158203125, 495.127105712890625, 6.265733242034912109, 0, 0, -0.00872611999511718, 0.999961912631988525, 120, 255, 1, 45114); -- Freestanding Torch 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
|
||||
-- Creature Template
|
||||
UPDATE `creature_template` SET `minlevel`=30, `maxlevel`=30 WHERE `entry`=15011; -- Wagner Hammerstrike
|
||||
|
||||
UPDATE `creature_template_addon` SET `bytes2`=257 WHERE `entry`=15011; -- 15011 (Wagner Hammerstrike)
|
||||
|
||||
-- Vendor Data
|
||||
DELETE FROM `npc_vendor` WHERE (`entry`=15011 AND `item`=34850 AND `ExtendedCost`=0 AND `type`=1);
|
||||
INSERT INTO `npc_vendor` (`entry`, `slot`, `item`, `maxcount`, `ExtendedCost`, `type`, `PlayerConditionID`, `IgnoreFiltering`, `VerifiedBuild`) VALUES
|
||||
(15011, 1, 34850, 0, 0, 1, 0, 0, 45114); -- Midsummer Ground Flower
|
||||
|
||||
UPDATE `npc_vendor` SET `slot`=6, `VerifiedBuild`=45114 WHERE (`entry`=15011 AND `item`=9315 AND `ExtendedCost`=0 AND `type`=1); -- Yellow Rose Firework
|
||||
UPDATE `npc_vendor` SET `slot`=5, `VerifiedBuild`=45114 WHERE (`entry`=15011 AND `item`=9314 AND `ExtendedCost`=0 AND `type`=1); -- Red Streaks Firework
|
||||
UPDATE `npc_vendor` SET `slot`=4, `VerifiedBuild`=45114 WHERE (`entry`=15011 AND `item`=9318 AND `ExtendedCost`=0 AND `type`=1); -- Red Firework
|
||||
UPDATE `npc_vendor` SET `slot`=3, `VerifiedBuild`=45114 WHERE (`entry`=15011 AND `item`=9313 AND `ExtendedCost`=0 AND `type`=1); -- Green Firework
|
||||
UPDATE `npc_vendor` SET `slot`=2, `VerifiedBuild`=45114 WHERE (`entry`=15011 AND `item`=9312 AND `ExtendedCost`=0 AND `type`=1); -- Blue Firework
|
||||
|
||||
-- Game_Event_Creature Data for Alliance Harvest Festival
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=11 AND `guid` BETWEEN @CGUID+0 AND @CGUID+12;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(11, @CGUID+0),
|
||||
(11, @CGUID+1),
|
||||
(11, @CGUID+2),
|
||||
(11, @CGUID+3),
|
||||
(11, @CGUID+4),
|
||||
(11, @CGUID+5),
|
||||
(11, @CGUID+6),
|
||||
(11, @CGUID+7),
|
||||
(11, @CGUID+8),
|
||||
(11, @CGUID+9),
|
||||
(11, @CGUID+10),
|
||||
(11, @CGUID+11),
|
||||
(11, @CGUID+12);
|
||||
|
||||
-- Game_Event_GameObject Data for Alliance Harvest Festival
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=11 AND `guid` BETWEEN @OGUID+0 AND @OGUID+63;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(11, @OGUID+0),
|
||||
(11, @OGUID+1),
|
||||
(11, @OGUID+2),
|
||||
(11, @OGUID+3),
|
||||
(11, @OGUID+4),
|
||||
(11, @OGUID+5),
|
||||
(11, @OGUID+6),
|
||||
(11, @OGUID+7),
|
||||
(11, @OGUID+8),
|
||||
(11, @OGUID+9),
|
||||
(11, @OGUID+10),
|
||||
(11, @OGUID+11),
|
||||
(11, @OGUID+12),
|
||||
(11, @OGUID+13),
|
||||
(11, @OGUID+14),
|
||||
(11, @OGUID+15),
|
||||
(11, @OGUID+16),
|
||||
(11, @OGUID+17),
|
||||
(11, @OGUID+18),
|
||||
(11, @OGUID+19),
|
||||
(11, @OGUID+20),
|
||||
(11, @OGUID+21),
|
||||
(11, @OGUID+22),
|
||||
(11, @OGUID+23),
|
||||
(11, @OGUID+24),
|
||||
(11, @OGUID+25),
|
||||
(11, @OGUID+26),
|
||||
(11, @OGUID+27),
|
||||
(11, @OGUID+28),
|
||||
(11, @OGUID+29),
|
||||
(11, @OGUID+30),
|
||||
(11, @OGUID+31),
|
||||
(11, @OGUID+32),
|
||||
(11, @OGUID+33),
|
||||
(11, @OGUID+34),
|
||||
(11, @OGUID+35),
|
||||
(11, @OGUID+36),
|
||||
(11, @OGUID+37),
|
||||
(11, @OGUID+38),
|
||||
(11, @OGUID+39),
|
||||
(11, @OGUID+40),
|
||||
(11, @OGUID+41),
|
||||
(11, @OGUID+42),
|
||||
(11, @OGUID+43),
|
||||
(11, @OGUID+44),
|
||||
(11, @OGUID+45),
|
||||
(11, @OGUID+46),
|
||||
(11, @OGUID+47),
|
||||
(11, @OGUID+48),
|
||||
(11, @OGUID+49),
|
||||
(11, @OGUID+50),
|
||||
(11, @OGUID+51),
|
||||
(11, @OGUID+52),
|
||||
(11, @OGUID+53),
|
||||
(11, @OGUID+54),
|
||||
(11, @OGUID+55),
|
||||
(11, @OGUID+56),
|
||||
(11, @OGUID+57),
|
||||
(11, @OGUID+58),
|
||||
(11, @OGUID+59),
|
||||
(11, @OGUID+60),
|
||||
(11, @OGUID+61),
|
||||
(11, @OGUID+62),
|
||||
(11, @OGUID+63);
|
||||
@@ -1,163 +0,0 @@
|
||||
SET @CGUID := 1051413;
|
||||
SET @OGUID := 600234;
|
||||
|
||||
-- Creature
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+28;
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `PhaseGroup`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES
|
||||
(@CGUID+0, 153239, 2175, 10424, 10530, '0', 0, 0, 0, 1, 454.729156494140625, -2102.0869140625, 130.526397705078125, 3.068993806838989257, 7200, 0, 0, 217, 0, 0, 0, 0, 0, 45114), -- Ogre Brute (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+1, 153581, 2175, 10424, 10530, '0', 0, 0, 0, 1, 509.7882080078125, -1965.4879150390625, 144.52081298828125, 1.031827330589294433, 7200, 0, 0, 279, 0, 0, 0, 0, 0, 45114), -- Grunk (Area: -Unknown- - Difficulty: 0) (Auras: 246849 - -Unknown-)
|
||||
(@CGUID+2, 153242, 2175, 10424, 10530, '0', 0, 0, 0, 0, 467.7725830078125, -2003.888916015625, 143.8871002197265625, 1.62632906436920166, 7200, 0, 0, 149, 382, 0, 0, 0, 0, 45114), -- Ogre Shadowcaster (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+3, 153239, 2175, 10424, 10530, '0', 0, 0, 0, 1, 481.30902099609375, -1975.1649169921875, 143.1035308837890625, 4.41829681396484375, 7200, 0, 0, 217, 0, 0, 0, 0, 0, 45114), -- Ogre Brute (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+4, 153242, 2175, 10424, 10530, '0', 0, 0, 0, 0, 526.701416015625, -2001.1024169921875, 142.98779296875, 0.027794346213340759, 7200, 0, 0, 149, 382, 0, 0, 0, 0, 45114), -- Ogre Shadowcaster (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+5, 153242, 2175, 10424, 10530, '0', 0, 0, 0, 0, 431.08160400390625, -2025.2257080078125, 132.452880859375, 3.692021131515502929, 7200, 0, 0, 149, 382, 0, 0, 0, 0, 45114), -- Ogre Shadowcaster (Area: -Unknown- - Difficulty: 0) (Auras: 145953 - Cosmetic - Sleep Zzz)
|
||||
(@CGUID+6, 153242, 2175, 10424, 10530, '0', 0, 0, 0, 0, 498.973968505859375, -2046.9288330078125, 144.2474365234375, 0.442503392696380615, 7200, 0, 0, 149, 382, 0, 0, 0, 0, 45114), -- Ogre Shadowcaster (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+7, 153239, 2175, 10424, 10530, '0', 0, 0, 0, 1, 457.604156494140625, -2044.4461669921875, 143.176605224609375, 0.766060471534729003, 7200, 10, 0, 217, 0, 1, 0, 0, 0, 45114), -- Ogre Brute (Area: -Unknown- - Difficulty: 0) (possible waypoints or random movement)
|
||||
(@CGUID+8, 153238, 2175, 10424, 10530, '0', 0, 0, 0, 0, 543.55206298828125, -2003.375, 142.649017333984375, 0.492633670568466186, 7200, 0, 0, 50, 0, 0, 0, 0, 0, 45114), -- Tamed Boar (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+9, 153242, 2175, 10424, 10530, '0', 0, 0, 0, 0, 533.013916015625, -2079.671875, 158.34222412109375, 5.339074611663818359, 7200, 0, 0, 149, 382, 0, 0, 0, 0, 45114), -- Ogre Shadowcaster (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+10, 153238, 2175, 10424, 10530, '0', 0, 0, 0, 0, 542.66668701171875, -1997.77783203125, 142.4593658447265625, 5.80480813980102539, 7200, 0, 0, 50, 0, 0, 0, 0, 0, 45114), -- Tamed Boar (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+11, 153238, 2175, 10424, 10530, '0', 0, 0, 0, 0, 540.1107177734375, -2001.9852294921875, 142.73614501953125, 5.420380115509033203, 7200, 4, 0, 50, 0, 1, 0, 0, 0, 45114), -- Tamed Boar (Area: -Unknown- - Difficulty: 0) (possible waypoints or random movement)
|
||||
(@CGUID+12, 153242, 2175, 10424, 10530, '0', 0, 0, 0, 0, 474.05035400390625, -1932.060791015625, 155.3624725341796875, 5.49060821533203125, 7200, 0, 0, 149, 382, 0, 0, 0, 0, 45114), -- Ogre Shadowcaster (Area: -Unknown- - Difficulty: 0) (Auras: 145953 - Cosmetic - Sleep Zzz)
|
||||
(@CGUID+13, 153238, 2175, 10424, 10530, '0', 0, 0, 0, 0, 539.99957275390625, -1994.472412109375, 142.8594970703125, 2.248490333557128906, 7200, 4, 0, 50, 0, 1, 0, 0, 0, 45114), -- Tamed Boar (Area: -Unknown- - Difficulty: 0) (possible waypoints or random movement)
|
||||
(@CGUID+14, 153239, 2175, 10424, 10530, '0', 0, 0, 0, 1, 479.986114501953125, -2113.833251953125, 132.5481414794921875, 4.657485008239746093, 7200, 0, 0, 217, 0, 0, 0, 0, 0, 45114), -- Ogre Brute (Area: -Unknown- - Difficulty: 0) (Auras: 145953 - Cosmetic - Sleep Zzz)
|
||||
(@CGUID+15, 153242, 2175, 10424, 10530, '0', 0, 0, 0, 0, 578.02777099609375, -1979.513916015625, 171.6934051513671875, 1.193202733993530273, 7200, 0, 0, 149, 382, 0, 0, 0, 0, 45114), -- Ogre Shadowcaster (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+16, 153239, 2175, 10424, 10530, '0', 0, 0, 0, 1, 578.06768798828125, -2046.3541259765625, 159.592681884765625, 5.034889698028564453, 7200, 0, 0, 217, 0, 0, 0, 0, 0, 45114), -- Ogre Brute (Area: -Unknown- - Difficulty: 0) (Auras: 145953 - Cosmetic - Sleep Zzz)
|
||||
(@CGUID+17, 153582, 2175, 10424, 10530, '0', 0, 0, 0, 1, 591.78302001953125, -2010.626708984375, 175.675933837890625, 0.113099128007888793, 7200, 0, 0, 248, 382, 0, 0, 0, 0, 45114), -- Wug (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+18, 153242, 2175, 10424, 10530, '0', 0, 0, 0, 0, 582.30206298828125, -1974.63720703125, 170.8436126708984375, 5.720551013946533203, 7200, 0, 0, 149, 382, 0, 0, 0, 0, 45114), -- Ogre Shadowcaster (Area: -Unknown- - Difficulty: 0) (Auras: 145953 - Cosmetic - Sleep Zzz)
|
||||
(@CGUID+19, 153242, 2175, 10424, 10530, '0', 0, 0, 0, 0, 559.86456298828125, -2101.833251953125, 161.2359619140625, 1.117576360702514648, 7200, 0, 0, 149, 382, 0, 0, 0, 0, 45114), -- Ogre Shadowcaster (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+20, 153238, 2175, 10424, 10530, '0', 0, 0, 0, 0, 595.2257080078125, -2064.536376953125, 161.243377685546875, 0.601261317729949951, 7200, 0, 0, 50, 0, 0, 0, 0, 0, 45114), -- Tamed Boar (Area: -Unknown- - Difficulty: 0) (Auras: 145363 - Permanent Feign Death (Stun, Untrackable, Immune))
|
||||
(@CGUID+21, 153242, 2175, 10424, 10530, '0', 0, 0, 0, 0, 592.87152099609375, -2062.473876953125, 160.633148193359375, 5.45097970962524414, 7200, 0, 0, 149, 382, 0, 0, 0, 0, 45114), -- Ogre Shadowcaster (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+22, 154103, 2175, 10424, 10530, '0', 0, 0, 0, 0, 602.060302734375, -2062.95703125, 159.5788421630859375, 2.146738052368164062, 7200, 0, 0, 205, 0, 0, 0, 0, 0, 45114), -- Ogre Chef (Area: -Unknown- - Difficulty: 0) (Auras: 299441 - -Unknown-)
|
||||
(@CGUID+23, 153242, 2175, 10424, 10530, '0', 0, 0, 0, 0, 571.03643798828125, -2105.01220703125, 160.8884735107421875, 4.798206806182861328, 7200, 0, 0, 149, 382, 0, 0, 0, 0, 45114), -- Ogre Shadowcaster (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+24, 153239, 2175, 10424, 10530, '0', 0, 0, 0, 1, 603.23089599609375, -2121.41845703125, 158.9243316650390625, 3.034203290939331054, 7200, 0, 0, 217, 0, 0, 0, 0, 0, 45114), -- Ogre Brute (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+25, 153242, 2175, 10424, 10530, '0', 0, 0, 0, 0, 649.20660400390625, -2064.651123046875, 159.3798828125, 2.090809583663940429, 7200, 0, 0, 149, 382, 0, 0, 0, 0, 45114), -- Ogre Shadowcaster (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+26, 153239, 2175, 10424, 10530, '0', 0, 0, 0, 1, 675.47222900390625, -2036.986083984375, 171.5338134765625, 4.335721492767333984, 7200, 0, 0, 217, 0, 0, 0, 0, 0, 45114), -- Ogre Brute (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+27, 153583, 2175, 10424, 10530, '0', 0, 0, 0, 1, 663.19268798828125, -2127.892333984375, 161.383514404296875, 5.686066150665283203, 7200, 0, 0, 310, 0, 0, 0, 0, 0, 45114), -- Jugnug (Area: -Unknown- - Difficulty: 0) (Auras: 145953 - Cosmetic - Sleep Zzz)
|
||||
(@CGUID+28, 153239, 2175, 10424, 10530, '0', 0, 0, 0, 1, 732.875, -2071.0869140625, 120.14874267578125, 5.224806785583496093, 7200, 0, 0, 217, 0, 0, 0, 0, 0, 45114); -- Ogre Brute (Area: -Unknown- - Difficulty: 0)
|
||||
|
||||
-- Creature Addon
|
||||
DELETE FROM `creature_addon` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+28;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(@CGUID+14, 0, 0, 0, 1, 0, 0, 0, 0, 0, '145953'), -- Ogre Brute - 145953 - Cosmetic - Sleep Zzz
|
||||
(@CGUID+0, 0, 0, 1, 1, 0, 0, 0, 0, 0, ''), -- Ogre Brute
|
||||
(@CGUID+5, 0, 0, 0, 1, 0, 0, 0, 0, 0, '145953'), -- Ogre Shadowcaster - 145953 - Cosmetic - Sleep Zzz
|
||||
(@CGUID+6, 0, 0, 1, 1, 0, 0, 0, 0, 0, ''), -- Ogre Brute
|
||||
(@CGUID+3, 0, 0, 1, 1, 0, 0, 0, 0, 0, ''), -- Ogre Brute
|
||||
(@CGUID+2, 0, 0, 0, 0, 28, 0, 0, 0, 0, ''), -- Ogre Shadowcaster
|
||||
(@CGUID+12, 0, 0, 0, 1, 0, 0, 0, 0, 0, '145953'), -- Ogre Shadowcaster - 145953 - Cosmetic - Sleep Zzz
|
||||
(@CGUID+9, 0, 0, 0, 0, 28, 0, 0, 0, 0, ''), -- Ogre Shadowcaster
|
||||
(@CGUID+23, 0, 0, 8, 0, 0, 0, 0, 0, 0, ''), -- Ogre Shadowcaster
|
||||
(@CGUID+16, 0, 0, 0, 1, 0, 0, 0, 0, 0, '145953'), -- Ogre Brute - 145953 - Cosmetic - Sleep Zzz
|
||||
(@CGUID+21, 0, 0, 1, 1, 0, 0, 0, 0, 0, ''), -- Ogre Brute
|
||||
(@CGUID+20, 0, 0, 262144, 1, 0, 0, 0, 0, 0, '145363'), -- Tamed Boar - 145363 - Permanent Feign Death (Stun, Untrackable, Immune)
|
||||
(@CGUID+24, 0, 0, 1, 1, 0, 0, 0, 0, 0, ''), -- Ogre Brute
|
||||
(@CGUID+25, 0, 0, 8, 1, 0, 0, 0, 0, 0, ''), -- Ogre Shadowcaster
|
||||
(@CGUID+18, 0, 0, 0, 1, 0, 0, 0, 0, 0, '145953'), -- Ogre Shadowcaster - 145953 - Cosmetic - Sleep Zzz
|
||||
(@CGUID+15, 0, 0, 8, 1, 0, 0, 0, 0, 0, ''), -- Ogre Shadowcaster
|
||||
(@CGUID+19, 0, 0, 0, 1, 378, 0, 0, 0, 0, ''), -- Ogre Shadowcaster
|
||||
(@CGUID+26, 0, 0, 0, 1, 378, 0, 0, 0, 0, ''); -- Ogre Brute
|
||||
|
||||
-- Creature Addon Template
|
||||
DELETE FROM `creature_template_addon` WHERE `entry` IN (153583 /*153583 (Jugnug) - Cosmetic - Sleep Zzz*/, 153582 /*153582 (Wug)*/, 153242 /*153242 (Ogre Shadowcaster)*/, 154103 /*154103 (Ogre Chef) - -Unknown-*/, 153581 /*153581 (Grunk) - -Unknown-*/);
|
||||
INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(153583, 0, 0, 0, 1, 0, 0, 0, 0, 0, '145953'), -- 153583 (Jugnug) - Cosmetic - Sleep Zzz
|
||||
(153582, 0, 0, 1, 1, 0, 0, 0, 0, 0, ''), -- 153582 (Wug)
|
||||
(153242, 0, 0, 0, 0, 0, 0, 0, 0, 0, ''), -- 153242 (Ogre Shadowcaster)
|
||||
(154103, 0, 0, 0, 1, 0, 0, 0, 0, 0, '299441'), -- 154103 (Ogre Chef) - -Unknown-
|
||||
(153581, 0, 0, 0, 1, 0, 0, 0, 0, 0, '246849'); -- 153581 (Grunk) - -Unknown-
|
||||
|
||||
-- Creature Template
|
||||
UPDATE `creature_template` SET `minlevel`=10, `maxlevel`=10, `faction`=2057, `BaseAttackTime`=2000, `unit_flags`=32768, `unit_flags2`=2048 WHERE `entry`=153583; -- Jugnug
|
||||
UPDATE `creature_template` SET `minlevel`=10, `maxlevel`=10, `faction`=2057, `BaseAttackTime`=2000, `unit_flags`=32768, `unit_flags2`=2048 WHERE `entry`=154103; -- Ogre Chef
|
||||
UPDATE `creature_template` SET `minlevel`=10, `maxlevel`=10, `faction`=2057, `BaseAttackTime`=1500, `unit_flags`=32768, `unit_flags2`=2048 WHERE `entry`=153582; -- Wug
|
||||
UPDATE `creature_template` SET `minlevel`=10, `maxlevel`=10, `faction`=2057, `BaseAttackTime`=2000, `unit_flags`=32768, `unit_flags2`=2048 WHERE `entry`=153238; -- Tamed Boar
|
||||
UPDATE `creature_template` SET `minlevel`=10, `maxlevel`=10, `faction`=2057, `BaseAttackTime`=2000, `unit_flags`=32768, `unit_flags2`=2048 WHERE `entry`=153242; -- Ogre Shadowcaster
|
||||
UPDATE `creature_template` SET `minlevel`=10, `maxlevel`=10, `faction`=2057, `BaseAttackTime`=2000, `unit_flags`=32768, `unit_flags2`=2048 WHERE `entry`=153581; -- Grunk
|
||||
UPDATE `creature_template` SET `minlevel`=10, `maxlevel`=10, `faction`=2057, `BaseAttackTime`=2000, `unit_flags`=32768, `unit_flags2`=2048 WHERE `entry`=153239; -- Ogre Brute
|
||||
|
||||
-- GameObject Template
|
||||
DELETE FROM `gameobject_template` WHERE `entry`=351477;
|
||||
INSERT INTO `gameobject_template` (`entry`, `type`, `displayId`, `name`, `IconName`, `castBarCaption`, `unk1`, `size`, `Data0`, `Data1`, `Data2`, `Data3`, `Data4`, `Data5`, `Data6`, `Data7`, `Data8`, `Data9`, `Data10`, `Data11`, `Data12`, `Data13`, `Data14`, `Data15`, `Data16`, `Data17`, `Data18`, `Data19`, `Data20`, `Data21`, `Data22`, `Data23`, `Data24`, `Data25`, `Data26`, `Data27`, `Data28`, `Data29`, `Data30`, `Data31`, `Data32`, `Data33`, `Data34`, `ContentTuningId`, `VerifiedBuild`) VALUES
|
||||
(351477, 10, 14627, 'Catapult', 'questinteract', 'Placing', '', 1, 2173, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 35196, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 956, 45114); -- Catapult
|
||||
|
||||
-- GameObject
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+3;
|
||||
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, 351477, 2175, 10424, 10530, '0', 0, 0, 463.779510498046875, -1997.0816650390625, 143.712860107421875, 2.96053171157836914, 0, 0, 0.995904922485351562, 0.09040689468383789, 7200, 255, 1, 45114), -- Catapult (Area: -Unknown- - Difficulty: 0)
|
||||
(@OGUID+1, 351477, 2175, 10424, 10530, '0', 0, 0, 489.869781494140625, -2051.572998046875, 143.9427032470703125, 3.69792795181274414, 0, 0, -0.96156024932861328, 0.274594068527221679, 7200, 255, 1, 45114), -- Catapult (Area: -Unknown- - Difficulty: 0)
|
||||
(@OGUID+2, 351477, 2175, 10424, 10530, '0', 0, 0, 610.732666015625, -2118.416748046875, 158.92596435546875, 4.408715248107910156, 0, 0, -0.8059244155883789, 0.592018485069274902, 7200, 255, 1, 45114), -- Catapult (Area: -Unknown- - Difficulty: 0)
|
||||
(@OGUID+3, 351477, 2175, 10424, 10530, '0', 0, 0, 535.9757080078125, -2085.546875, 158.3209686279296875, 4.0296630859375, 0, 0, -0.90302562713623046, 0.429586708545684814, 7200, 255, 1, 45114); -- Catapult (Area: -Unknown- - Difficulty: 0)
|
||||
|
||||
-- Creature Text
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`= 154103;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(154103, 0, 0, 'This gonna be off hook!', 12, 0, 100, 0, 0, 0, 0, 0, 'Ogre Chef'),
|
||||
(154103, 1, 0, 'Me gonna take everyone on ride to flavor... flavor... uh. Flavor place!', 12, 0, 100, 0, 0, 0, 0, 0, 'Ogre Chef');
|
||||
|
||||
-- Waypoints for CGUID+7
|
||||
SET @PATH := @CGUID+7 * 10;
|
||||
DELETE FROM `waypoint_data` WHERE `id`= @PATH;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
|
||||
(@PATH, 0, 433.2153, -2065.714, 131.6825, NULL, 0),
|
||||
(@PATH, 1, 421.6146, -2073.545, 127.4143, NULL, 4047),
|
||||
(@PATH, 2, 433.2153, -2065.714, 131.6825, NULL, 0),
|
||||
(@PATH, 3, 449.408, -2052.332, 140.1065, NULL, 0),
|
||||
(@PATH, 4, 457.6042, -2044.446, 143.1766, NULL, 3797),
|
||||
(@PATH, 5, 449.408, -2052.332, 140.1065, NULL, 0);
|
||||
|
||||
UPDATE `creature` SET `position_x`= 433.2153, `position_y`= -2065.714, `position_z`= 131.6825, `orientation`= 0, `wander_distance`= 0, `MovementType`= 2 WHERE `guid`= @CGUID+7;
|
||||
DELETE FROM `creature_addon` WHERE `guid`= @CGUID+7;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `bytes2`) VALUES
|
||||
(@CGUID+7, @PATH, 1);
|
||||
|
||||
-- Waypoints for CGUID+22
|
||||
SET @PATH := @CGUID+22 * 10;
|
||||
DELETE FROM `waypoint_data` WHERE `id`= @PATH;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
|
||||
(@PATH, 0, 599.7882, -2059.458, 159.6127, NULL, 0),
|
||||
(@PATH, 1, 601.1042, -2056.816, 159.5922, NULL, 8568),
|
||||
(@PATH, 2, 592.4792, -2051.382, 159.6127, NULL, 4460),
|
||||
(@PATH, 3, 604.8143, -2067.198, 159.5378, NULL, 6575);
|
||||
|
||||
UPDATE `creature` SET `position_x`= 599.7882, `position_y`= -2059.458, `position_z`= 159.6127, `orientation`= 0, `wander_distance`= 0, `MovementType`= 2 WHERE `guid`= @CGUID+22;
|
||||
DELETE FROM `creature_addon` WHERE `guid`= @CGUID+22;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `bytes2`, `auras`) VALUES
|
||||
(@CGUID+22, @PATH, 1, '299441');
|
||||
|
||||
-- Ogre Chef smart ai
|
||||
SET @ENTRY := 154103;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 0 AND `entryOrGuid` = @ENTRY;
|
||||
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` = @ENTRY;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(@ENTRY, 0, 0, 0, 34, 0, 100, 0, 2, 1, 0, 0, 80, 15410300, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On movement of type WAYPOINT_MOTION_TYPE inform, point 1 - Self: Start timed action list id #15410300 (update out of combat)'),
|
||||
(@ENTRY, 0, 1, 0, 34, 0, 100, 0, 2, 2, 0, 0, 80, 15410301, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On movement of type WAYPOINT_MOTION_TYPE inform, point 2 - Self: Start timed action list id #15410301 (update out of combat)'),
|
||||
(@ENTRY, 0, 2, 0, 34, 0, 100, 0, 2, 3, 0, 0, 80, 15410302, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On movement of type WAYPOINT_MOTION_TYPE inform, point 3 - Self: Start timed action list id #15410302 (update out of combat)');
|
||||
|
||||
-- Timed list 15410300 smart ai
|
||||
SET @ENTRY := 15410300;
|
||||
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`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(@ENTRY, 9, 0, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 90, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 1 seconds - Self: Set stand state to KNEEL'),
|
||||
(@ENTRY, 9, 1, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 90, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 6 seconds - Self: Set stand state to STAND'),
|
||||
(@ENTRY, 9, 2, 0, 0, 0, 100, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 0 seconds - Self: Talk 1 to Self');
|
||||
|
||||
-- Timed list 15410301 smart ai
|
||||
SET @ENTRY := 15410301;
|
||||
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`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(@ENTRY, 9, 0, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 17, 69, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 1 seconds - Self: Set emote state to 69'),
|
||||
(@ENTRY, 9, 1, 0, 0, 0, 100, 0, 2000, 2000, 0, 0, 17, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 2 seconds - Self: Set emote state to 0');
|
||||
|
||||
-- Timed list 15410302 smart ai
|
||||
SET @ENTRY := 15410302;
|
||||
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`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(@ENTRY, 9, 0, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 17, 69, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 1 seconds - Self: Set emote state to 69'),
|
||||
(@ENTRY, 9, 1, 0, 0, 0, 100, 0, 2000, 2000, 0, 0, 17, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 2 seconds - Self: Set emote state to 0'),
|
||||
(@ENTRY, 9, 2, 0, 0, 0, 100, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 0 seconds - Self: Talk 0 to Self');
|
||||
|
||||
-- Ogre Shadowcaster smart ai
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 0 AND `entryOrGuid` = -(@CGUID+4);
|
||||
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` = 153242;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(-(@CGUID+4), 0, 0, 0, 1, 0, 100, 0, 0, 0, 7000, 7000, 5, 11, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Every 7 seconds (0s initially) (OOC) - Self: Play emote 11'),
|
||||
(-(@CGUID+4), 0, 1, 0, 1, 0, 100, 0, 3000, 3000, 7000, 7000, 5, 25, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Every 7 seconds (3s initially) (OOC) - Self: Play emote 25');
|
||||
@@ -1,163 +0,0 @@
|
||||
SET @CGUID := 1051442;
|
||||
|
||||
-- Creature
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+66;
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `PhaseGroup`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES
|
||||
(@CGUID+0, 164827, 2175, 10424, 10588, '0', 0, 0, 0, 0, 328.957977294921875, -2346.54736328125, 103.62933349609375, 4.163355350494384765, 7200, 0, 0, 155, 0, 0, 0, 0, 0, 45114), -- Sharpbeak Hawk (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+1, 165758, 2175, 10424, 10588, '0', 0, 0, 0, 0, 285.93402099609375, -2295.882080078125, 79.40378570556640625, 5.156900405883789062, 7200, 0, 0, 5, 0, 0, 0, 0, 0, 45114), -- Spotted Hopper (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+2, 165758, 2175, 10424, 10588, '0', 0, 0, 0, 0, 294.78125, -2307.060791015625, 79.40378570556640625, 4.905873298645019531, 7200, 0, 0, 5, 0, 0, 0, 0, 0, 45114), -- Spotted Hopper (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+3, 165758, 2175, 10424, 10588, '0', 0, 0, 0, 0, 286.743072509765625, -2317.173583984375, 79.40378570556640625, 2.575829029083251953, 7200, 0, 0, 5, 0, 0, 0, 0, 0, 45114), -- Spotted Hopper (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+4, 172028, 2175, 10424, 10588, '0', 0, 0, 0, 0, 426.84722900390625, -2317.6875, 127.4378433227539062, 2.185167312622070312, 7200, 0, 0, 124, 0, 0, 0, 0, 0, 45114), -- Mountain Roamer (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+5, 165757, 2175, 10424, 10588, '0', 0, 0, 0, 0, 266.618072509765625, -2287.744873046875, 81.45318603515625, 0.679411292076110839, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+6, 154268, 2175, 10424, 10588, '0', 0, 0, 0, 0, 228.875640869140625, -2290.54248046875, 108.5223770141601562, 3.674787044525146484, 7200, 10, 0, 113, 0, 1, 0, 0, 0, 45114), -- Hungry Vulture (Area: -Unknown- - Difficulty: 0) (possible waypoints or random movement)
|
||||
(@CGUID+7, 172029, 2175, 10424, 10588, '0', 0, 0, 0, 0, 414.461822509765625, -2300.1806640625, 111.46832275390625, 0.435241490602493286, 7200, 0, 0, 124, 0, 0, 0, 0, 0, 45114), -- Prickly Porcupine (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+8, 165757, 2175, 10424, 10588, '0', 0, 0, 0, 0, 271.87847900390625, -2290.345458984375, 81.46312713623046875, 1.127977609634399414, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+9, 165758, 2175, 10424, 10588, '0', 0, 0, 0, 0, 285.467010498046875, -2299.65283203125, 79.40378570556640625, 0, 7200, 0, 0, 5, 0, 0, 0, 0, 0, 45114), -- Spotted Hopper (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+10, 172028, 2175, 10424, 10588, '0', 0, 0, 0, 0, 410.833343505859375, -2332.079833984375, 121.7001876831054687, 3.1136932373046875, 7200, 0, 0, 124, 0, 0, 0, 0, 0, 45114), -- Mountain Roamer (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+11, 165758, 2175, 10424, 10588, '0', 0, 0, 0, 0, 295.109375, -2310.923583984375, 79.40378570556640625, 2.555430412292480468, 7200, 0, 0, 5, 0, 0, 0, 0, 0, 45114), -- Spotted Hopper (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+12, 165757, 2175, 10424, 10588, '0', 0, 0, 0, 0, 266.5625, -2286.822998046875, 81.42684173583984375, 0.679411292076110839, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+13, 172029, 2175, 10424, 10588, '0', 0, 0, 0, 0, 414.619781494140625, -2298.600830078125, 111.1724929809570312, 6.079207420349121093, 7200, 0, 0, 124, 0, 0, 0, 0, 0, 45114), -- Prickly Porcupine (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+14, 165757, 2175, 10424, 10588, '0', 0, 0, 0, 0, 270.8819580078125, -2290.30029296875, 81.3974456787109375, 1.127977609634399414, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+15, 165758, 2175, 10424, 10588, '0', 0, 0, 0, 0, 288.583343505859375, -2297.140625, 79.40378570556640625, 3.645235538482666015, 7200, 0, 0, 5, 0, 0, 0, 0, 0, 45114), -- Spotted Hopper (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+16, 164827, 2175, 10424, 10588, '0', 0, 0, 0, 0, 317.76031494140625, -2269.1728515625, 116.0819320678710937, 1.322083711624145507, 7200, 0, 0, 155, 0, 0, 0, 0, 0, 45114), -- Sharpbeak Hawk (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+17, 165757, 2175, 10424, 10588, '0', 0, 0, 0, 0, 266.111114501953125, -2282.267333984375, 81.43719482421875, 0.001870071748271584, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+18, 165757, 2175, 10424, 10588, '0', 0, 0, 0, 0, 270.30902099609375, -2289.760498046875, 81.4036102294921875, 1.127977609634399414, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+19, 165758, 2175, 10424, 10588, '0', 0, 0, 0, 0, 292.868072509765625, -2309.4775390625, 79.40378570556640625, 4.905873298645019531, 7200, 0, 0, 5, 0, 0, 0, 0, 0, 45114), -- Spotted Hopper (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+20, 165757, 2175, 10424, 10588, '0', 0, 0, 0, 0, 272.4600830078125, -2282.241455078125, 89.66510772705078125, 3.95679783821105957, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+21, 165758, 2175, 10424, 10588, '0', 0, 0, 0, 0, 287.076385498046875, -2296.28466796875, 79.40378570556640625, 0, 7200, 0, 0, 5, 0, 0, 0, 0, 0, 45114), -- Spotted Hopper (Area: -Unknown- - Difficulty: 0))
|
||||
(@CGUID+22, 165758, 2175, 10424, 10588, '0', 0, 0, 0, 0, 288.005218505859375, -2298.921875, 79.40378570556640625, 2.576819896697998046, 7200, 0, 0, 5, 0, 0, 0, 0, 0, 45114), -- Spotted Hopper (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+23, 154268, 2175, 10424, 10588, '0', 0, 0, 0, 0, 237.0532379150390625, -2323.0849609375, 110.3733367919921875, 5.413966178894042968, 7200, 0, 0, 113, 0, 0, 0, 0, 0, 45114), -- Hungry Vulture (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+24, 165757, 2175, 10424, 10588, '0', 0, 0, 0, 0, 266.15972900390625, -2281.3369140625, 81.4508056640625, 0.001870071748271584, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+25, 165758, 2175, 10424, 10588, '0', 0, 0, 0, 0, 296.12152099609375, -2309.3369140625, 79.40378570556640625, 2.42406630516052246, 7200, 0, 0, 5, 0, 0, 0, 0, 0, 45114), -- Spotted Hopper (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+26, 165757, 2175, 10424, 10588, '0', 0, 0, 0, 0, 266.039947509765625, -2286.458251953125, 81.49481964111328125, 0.679411292076110839, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+27, 154301, 2175, 10424, 10588, '0', 0, 0, 0, 0, 16.42708396911621093, -2511.819580078125, 78.82154083251953125, 5.663975715637207031, 7200, 0, 0, 124, 0, 0, 0, 0, 0, 45114), -- Lindie Springstock (Area: -Unknown- - Difficulty: 0) (Auras: 305513 - -Unknown-)
|
||||
(@CGUID+28, 154268, 2175, 10424, 10588, '0', 0, 0, 0, 0, 184.280364990234375, -2291.67236328125, 126.892486572265625, 2.585401296615600585, 7200, 10, 0, 136, 0, 1, 0, 0, 0, 45114), -- Hungry Vulture (Area: -Unknown- - Difficulty: 0) (possible waypoints or random movement)
|
||||
(@CGUID+29, 172029, 2175, 10424, 10588, '0', 0, 0, 0, 0, 386.789947509765625, -2285.90625, 105.310638427734375, 1.936057329177856445, 7200, 0, 0, 124, 0, 0, 0, 0, 0, 45114), -- Prickly Porcupine (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+30, 165758, 2175, 10424, 10588, '0', 0, 0, 0, 0, 285.3194580078125, -2297.116455078125, 79.40378570556640625, 0, 7200, 0, 0, 5, 0, 0, 0, 0, 0, 45114), -- Spotted Hopper (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+31, 165758, 2175, 10424, 10588, '0', 0, 0, 0, 0, 299.576385498046875, -2306.85595703125, 79.40378570556640625, 2.575829029083251953, 7200, 0, 0, 5, 0, 0, 0, 0, 0, 45114), -- Spotted Hopper (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+32, 172028, 2175, 10424, 10588, '0', 0, 0, 0, 0, 435.098968505859375, -2332.723876953125, 138.3422088623046875, 3.57601475715637207, 7200, 0, 0, 124, 0, 0, 0, 0, 0, 45114), -- Mountain Roamer (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+33, 172028, 2175, 10424, 10568, '0', 0, 0, 0, 0, 453.821197509765625, -2304.623291015625, 141.1075439453125, 2.185167312622070312, 7200, 0, 0, 124, 0, 0, 0, 0, 0, 45114), -- Mountain Roamer (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+34, 164827, 2175, 10424, 10568, '0', 0, 0, 0, 0, 329.2786865234375, -2153.822265625, 126.2316436767578125, 3.636197090148925781, 7200, 0, 0, 155, 0, 0, 0, 0, 0, 45114), -- Sharpbeak Hawk (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+35, 165727, 2175, 10424, 10568, '0', 0, 0, 0, 0, 283.144622802734375, -2154.93603515625, 103.1320877075195312, 3.978484630584716796, 7200, 0, 0, 99, 0, 0, 0, 0, 0, 45114), -- Plains Doe (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+36, 165730, 2175, 10424, 10568, '0', 0, 0, 0, 0, 264.626953125, -2139.5, 101.42669677734375, 1.662693619728088378, 7200, 0, 0, 149, 0, 0, 0, 0, 0, 45114), -- Plains Stag (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+37, 165757, 2175, 10424, 10568, '0', 0, 0, 0, 0, 251.7581634521484375, -2152.89990234375, 99.25089263916015625, 1.056822061538696289, 7200, 10, 0, 3, 0, 1, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0) (possible waypoints or random movement)
|
||||
(@CGUID+38, 165757, 2175, 10424, 10568, '0', 0, 0, 0, 0, 247.7708282470703125, -2150.63720703125, 100.6016464233398437, 5.83673715591430664, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+39, 164827, 2175, 10424, 10568, '0', 0, 0, 0, 0, 323.921630859375, -2086.713623046875, 131.389373779296875, 3.845774650573730468, 7200, 0, 0, 155, 0, 0, 0, 0, 0, 45114), -- Sharpbeak Hawk (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+40, 164827, 2175, 10424, 10568, '0', 0, 0, 0, 0, 252.2896728515625, -2107.99365234375, 123.64117431640625, 2.509568214416503906, 7200, 0, 0, 155, 0, 0, 0, 0, 0, 45114), -- Sharpbeak Hawk (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+41, 165711, 2175, 10424, 10568, '0', 0, 0, 0, 0, 313.7698974609375, -2075.169677734375, 113.00665283203125, 5.820971012115478515, 7200, 0, 0, 5, 0, 0, 0, 0, 0, 45114), -- Plains Fawn (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+42, 165711, 2175, 10424, 10568, '0', 0, 0, 0, 0, 320.180938720703125, -2072.487548828125, 113.1185531616210937, 0.39623001217842102, 7200, 0, 0, 5, 0, 0, 0, 0, 0, 45114), -- Plains Fawn (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+43, 171997, 2175, 10424, 10568, '0', 0, 0, 0, 0, 320.723968505859375, -2074.17529296875, 116.7222824096679687, 1.691510438919067382, 7200, 0, 0, 149, 0, 0, 0, 0, 0, 45114), -- Woodlands Watcher (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+44, 171997, 2175, 10424, 10530, '0', 0, 0, 0, 0, 333.52777099609375, -2065.17529296875, 116.3958663940429687, 3.100680112838745117, 7200, 0, 0, 149, 0, 0, 0, 0, 0, 45114), -- Woodlands Watcher (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+45, 165711, 2175, 10424, 10530, '0', 0, 0, 0, 0, 316.452789306640625, -2068.62744140625, 112.66851806640625, 0.442364901304244995, 7200, 0, 0, 5, 0, 0, 0, 0, 0, 45114), -- Plains Fawn (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+46, 165727, 2175, 10424, 10530, '0', 0, 0, 0, 0, 325.546875, -2060.920166015625, 112.937652587890625, 2.700356960296630859, 7200, 0, 0, 99, 0, 0, 0, 0, 0, 45114), -- Plains Doe (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+47, 165727, 2175, 10424, 10530, '0', 0, 0, 0, 0, 313.43402099609375, -2056.420166015625, 112.16375732421875, 0.380261570215225219, 7200, 0, 0, 99, 0, 0, 0, 0, 0, 45114), -- Plains Doe (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+48, 165757, 2175, 10424, 10530, '0', 0, 0, 0, 0, 322.432281494140625, -2053.3125, 112.2863845825195312, 0.93129730224609375, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+49, 165757, 2175, 10424, 10530, '0', 0, 0, 0, 0, 322.135406494140625, -2052.859375, 112.2583084106445312, 0.615994453430175781, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+50, 171997, 2175, 10424, 10530, '0', 0, 0, 0, 0, 325.3125, -2054.7744140625, 115.23748779296875, 3.452181100845336914, 7200, 0, 0, 149, 0, 0, 0, 0, 0, 45114), -- Woodlands Watcher (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+51, 165757, 2175, 10424, 10530, '0', 0, 0, 0, 0, 323.6007080078125, -2054.26220703125, 112.3975296020507812, 1.31756591796875, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+52, 165757, 2175, 10424, 10530, '0', 0, 0, 0, 0, 322.9444580078125, -2053.861083984375, 112.3350753784179687, 0.93129730224609375, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+53, 164827, 2175, 10424, 10530, '0', 0, 0, 0, 0, 300.349334716796875, -2056.240966796875, 125.5921783447265625, 0.054645191878080368, 7200, 0, 0, 155, 0, 0, 0, 0, 0, 45114), -- Sharpbeak Hawk (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+54, 165730, 2175, 10424, 10530, '0', 0, 0, 0, 0, 314.49652099609375, -2052.26904296875, 112.5903396606445312, 5.860091209411621093, 7200, 0, 0, 149, 0, 0, 0, 0, 0, 45114), -- Plains Stag (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+55, 165757, 2175, 10424, 10530, '0', 0, 0, 0, 0, 320.220489501953125, -1982.2847900390625, 125.9277267456054687, 0.894634604454040527, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+56, 165757, 2175, 10424, 10530, '0', 0, 0, 0, 0, 320.546875, -1981.423583984375, 126.0230865478515625, 3.934155225753784179, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+57, 165757, 2175, 10424, 10530, '0', 0, 0, 0, 0, 320.71527099609375, -1982.5, 125.9539947509765625, 1.323416352272033691, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+58, 165757, 2175, 10424, 10530, '0', 0, 0, 0, 0, 319.71527099609375, -1981.8958740234375, 125.9195175170898437, 0.894634604454040527, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+59, 165757, 2175, 10424, 10530, '0', 0, 0, 0, 0, 319.598968505859375, -1981.3697509765625, 125.8683853149414062, 0.13941967487335205, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+60, 165757, 2175, 10424, 10530, '0', 0, 0, 0, 0, 319.914947509765625, -1982.1597900390625, 125.891632080078125, 0.894634604454040527, 7200, 0, 0, 3, 0, 0, 0, 0, 0, 45114), -- Prairie Dog (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+61, 165727, 2175, 10424, 10530, '0', 0, 0, 0, 0, 314.9444580078125, -1988.845458984375, 123.0555038452148437, 3.64621281623840332, 7200, 0, 0, 99, 0, 0, 0, 0, 0, 45114), -- Plains Doe (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+62, 165727, 2175, 10424, 10530, '0', 0, 0, 0, 0, 312.21527099609375, -1984.6007080078125, 122.2383956909179687, 4.164447307586669921, 7200, 0, 0, 99, 0, 0, 0, 0, 0, 45114), -- Plains Doe (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+63, 165711, 2175, 10424, 10530, '0', 0, 0, 0, 0, 276.529510498046875, -2012.8785400390625, 115.7943191528320312, 3.312581300735473632, 7200, 0, 0, 5, 0, 0, 0, 0, 0, 45114), -- Plains Fawn (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+64, 165711, 2175, 10424, 10530, '0', 0, 0, 0, 0, 277.3507080078125, -2013.3646240234375, 115.8667678833007812, 3.312581300735473632, 7200, 0, 0, 5, 0, 0, 0, 0, 0, 45114), -- Plains Fawn (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+65, 165727, 2175, 10424, 10530, '0', 0, 0, 0, 0, 276.510406494140625, -2014.9427490234375, 116.0030975341796875, 3.489482641220092773, 7200, 0, 0, 99, 0, 0, 0, 0, 0, 45114), -- Plains Doe (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+66, 165730, 2175, 10424, 10530, '0', 0, 0, 0, 0, 275.890625, -2011.6822509765625, 115.6985549926757812, 3.403353452682495117, 7200, 0, 0, 149, 0, 0, 0, 0, 0, 45114); -- Plains Stag (Area: -Unknown- - Difficulty: 0)
|
||||
|
||||
-- Creature Addon
|
||||
DELETE FROM `creature_addon` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+66;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(@CGUID+50, 0, 0, 50331649, 1, 0, 0, 0, 0, 0, ''), -- Woodlands Watcher
|
||||
(@CGUID+44, 0, 0, 50331649, 1, 0, 0, 0, 0, 0, ''), -- Woodlands Watcher
|
||||
(@CGUID+43, 0, 0, 50331649, 1, 0, 0, 0, 0, 0, ''), -- Woodlands Watcher
|
||||
(@CGUID+54, 0, 0, 1, 1, 0, 0, 0, 0, 0, ''), -- Plains Stag
|
||||
(@CGUID+47, 0, 0, 1, 1, 0, 0, 0, 0, 0, ''), -- Plains Doe
|
||||
(@CGUID+46, 0, 0, 1, 1, 0, 0, 0, 0, 0, ''), -- Plains Doe
|
||||
(@CGUID+61, 0, 0, 1, 1, 0, 0, 0, 0, 0, ''), -- Plains Doe
|
||||
(@CGUID+62, 0, 0, 1, 1, 0, 0, 0, 0, 0, ''), -- Plains Doe
|
||||
(@CGUID+66, 0, 0, 1, 1, 0, 0, 0, 0, 0, ''); -- Plains Stag
|
||||
|
||||
-- Creature Template
|
||||
UPDATE `creature_template` SET `minlevel`=10, `maxlevel`=10, `faction`=7, `BaseAttackTime`=2000, `unit_flags`=32768, `unit_flags2`=2048 WHERE `entry`=172029; -- Prickly Porcupine
|
||||
|
||||
-- Creature Movement Template
|
||||
DELETE FROM `creature_template_movement` WHERE `CreatureId` = 171997;
|
||||
INSERT INTO `creature_template_movement` (`CreatureId`, `Ground`, `Swim`, `Flight`, `Rooted`, `Chase`, `Random`, `InteractionPauseTimer`) VALUES
|
||||
(171997, 0, 0, 1, 0, 0, 0, NULL);
|
||||
|
||||
-- Waypoint and Formation Data for CGUID+36
|
||||
DELETE FROM `creature_formations` WHERE `leaderGUID` = @CGUID+36;
|
||||
INSERT INTO `creature_formations`(`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`, `point_1`, `point_2`) VALUES
|
||||
(@CGUID+36, @CGUID+36, 0, 0, 515, 0, 0),
|
||||
(@CGUID+36, @CGUID+35, 3, 270, 515, 0, 0);
|
||||
|
||||
SET @PATH := @CGUID+36 * 10;
|
||||
DELETE FROM `waypoint_data` WHERE `id`= @PATH;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
|
||||
(@PATH, 0, 292.2483, -2095.484, 110.0487, NULL, 0),
|
||||
(@PATH, 1, 301.2083, -2103.156, 112.6425, NULL, 0),
|
||||
(@PATH, 2, 313.3229, -2110.276, 112.7873, NULL, 0),
|
||||
(@PATH, 3, 321.658, -2121.707, 113.3704, NULL, 0),
|
||||
(@PATH, 4, 307.9375, -2122.764, 111.9128, NULL, 0),
|
||||
(@PATH, 5, 294.3663, -2134.842, 107.8937, NULL, 0),
|
||||
(@PATH, 6, 288.1476, -2151.184, 105.2233, NULL, 0),
|
||||
(@PATH, 7, 265.0859, -2144.48, 101.9267, NULL, 0),
|
||||
(@PATH, 8, 263.1233, -2123.259, 101.9349, NULL, 0),
|
||||
(@PATH, 9, 272.7813, -2108.7, 105.8262, NULL, 0),
|
||||
(@PATH, 10, 282, -2095.637, 108.1517, NULL, 0);
|
||||
|
||||
UPDATE `creature` SET `position_x`= 292.2483, `position_y`= -2095.484, `position_z`= 110.0487, `orientation`= 0, `wander_distance`= 0, `MovementType`= 2 WHERE `guid`= @CGUID+36;
|
||||
DELETE FROM `creature_addon` WHERE `guid`= @CGUID+36;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `bytes2`) VALUES
|
||||
(@CGUID+36, @PATH, 1);
|
||||
|
||||
-- Waypoints for CGUID+37
|
||||
SET @PATH := @CGUID+37 * 10;
|
||||
DELETE FROM `waypoint_data` WHERE `id`= @PATH;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`) VALUES
|
||||
(@PATH, 0, 249.3958, -2145.238, 97.91681, NULL, 0, 1),
|
||||
(@PATH, 1, 240.7465, -2145.413, 96.87872, NULL, 0, 1),
|
||||
(@PATH, 2, 241.4132, -2152.655, 97.46503, NULL, 0, 1),
|
||||
(@PATH, 3, 243.6267, -2156.481, 98.11224, NULL, 0, 1),
|
||||
(@PATH, 4, 247.6997, -2157.972, 99.23236, NULL, 0, 1),
|
||||
(@PATH, 5, 251.7587, -2152.899, 99.36078, NULL, 0, 1);
|
||||
|
||||
UPDATE `creature` SET `position_x`= 249.3958, `position_y`= -2145.238, `position_z`= 97.91681, `orientation`= 0, `wander_distance`= 0, `MovementType`= 2 WHERE `guid`= @CGUID+37;
|
||||
DELETE FROM `creature_addon` WHERE `guid`= @CGUID+37;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `bytes2`) VALUES
|
||||
(@CGUID+37, @PATH, 1);
|
||||
|
||||
-- Waypoints and Formations for CGUID+42
|
||||
DELETE FROM `creature_formations` WHERE `leaderGUID` = @CGUID+42;
|
||||
INSERT INTO `creature_formations`(`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`, `point_1`, `point_2`) VALUES
|
||||
(@CGUID+42, @CGUID+42, 0, 0, 515, 0, 0),
|
||||
(@CGUID+42, @CGUID+45, 3, 270, 515, 0, 0),
|
||||
(@CGUID+42, @CGUID+41, 3, 0, 515, 0, 0);
|
||||
|
||||
SET @PATH := @CGUID+42 * 10;
|
||||
DELETE FROM `waypoint_data` WHERE `id`= @PATH;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
|
||||
(@PATH, 0, 309.0191, -2072.701, 112.5153, NULL, 0),
|
||||
(@PATH, 1, 314.5781, -2074.832, 113.0838, NULL, 0),
|
||||
(@PATH, 2, 322.7656, -2071.406, 113.1346, NULL, 0),
|
||||
(@PATH, 3, 322.0035, -2068.616, 112.9584, NULL, 0),
|
||||
(@PATH, 4, 317.6788, -2067.882, 112.6673, NULL, 0),
|
||||
(@PATH, 5, 313.4805, -2065.168, 112.1918, NULL, 0),
|
||||
(@PATH, 6, 310.8681, -2059.47, 111.9928, NULL, 0),
|
||||
(@PATH, 7, 311.7153, -2051.214, 112.9325, NULL, 0),
|
||||
(@PATH, 8, 306.0295, -2047.418, 113.2781, NULL, 0),
|
||||
(@PATH, 9, 299.0762, -2054.605, 112.8848, NULL, 0),
|
||||
(@PATH, 10, 300.1823, -2063.073, 111.5201, NULL, 0),
|
||||
(@PATH, 11, 305.2691, -2068.134, 111.6536, NULL, 0);
|
||||
|
||||
UPDATE `creature` SET `position_x`= 309.0191, `position_y`= -2072.701, `position_z`= 112.5153, `orientation`= 0, `wander_distance`= 0, `MovementType`= 2 WHERE `guid`= @CGUID+42;
|
||||
DELETE FROM `creature_addon` WHERE `guid`= @CGUID+42;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `bytes2`) VALUES
|
||||
(@CGUID+42, @PATH, 1);
|
||||
@@ -1,3 +0,0 @@
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_rog_pickpocket';
|
||||
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
|
||||
(921,'spell_rog_pickpocket');
|
||||
@@ -1,3 +0,0 @@
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_dru_glyph_of_stars';
|
||||
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
|
||||
(24858,'spell_dru_glyph_of_stars');
|
||||
@@ -1,25 +0,0 @@
|
||||
SET @OGUID := 500512;
|
||||
|
||||
-- Delete old Lightbeam and Sign
|
||||
DELETE FROM `gameobject` WHERE `guid` IN (202730, 202731);
|
||||
DELETE FROM `gameobject_addon` WHERE `guid` IN (202730, 202731);
|
||||
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+2;
|
||||
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, 292624, 0, 28, 196, '0', '0', 0, 1021.328125, -1817.296875, 77.22247314453125, 3.028127431869506835, 0, 0, 0.998391151428222656, 0.056702151894569396, 120, 255, 1, 45338), -- Bench (Area: Uther's Tomb - Difficulty: 0)
|
||||
(@OGUID+1, 292625, 0, 28, 196, '0', '0', 0, 1017.1353759765625, -1803.1649169921875, 77.27005767822265625, 3.77864241600036621, 0, 0, -0.94969844818115234, 0.313165903091430664, 120, 255, 1, 45338), -- Bench (Area: Uther's Tomb - Difficulty: 0)
|
||||
(@OGUID+2, 268164, 0, 28, 196, '0', '0', 0, 971.2603759765625, -1825.2972412109375, 83.30905914306640625, 0.38397151231765747, 0.007682323455810546, -0.03952312469482421, 0.190653800964355468, 0.980831325054168701, 120, 255, 1, 45338); -- Uther the Lightbringer (Area: Uther's Tomb - Difficulty: 0)
|
||||
|
||||
DELETE FROM `gameobject_addon` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+2;
|
||||
INSERT INTO `gameobject_addon` (`guid`, `parent_rotation0`, `parent_rotation1`, `parent_rotation2`, `parent_rotation3`, `WorldEffectID`, `AIAnimKitID`) VALUES
|
||||
(@OGUID+2, 0, 0, 0.147809371352195739, 0.989015877246856689, 0, 0); -- Uther the Lightbringer
|
||||
|
||||
-- Update Template
|
||||
UPDATE `creature_template` SET `minlevel`=30, `maxlevel`=30 WHERE `entry`=1854; -- High Priest Thel'danis
|
||||
UPDATE `creature_template` SET `minlevel`=30, `maxlevel`=30 WHERE `entry`=17253; -- Defile Uther's Tomb Trigger
|
||||
|
||||
-- Update GameObject
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=25, `VerifiedBuild`=45338 WHERE `entry`=181653; -- Temp Uther's Statue
|
||||
|
||||
-- Update Page text
|
||||
UPDATE `page_text` SET `Text`='Here lies Uther the Lightbringer\nFirst Paladin - Founder of the Order of the Silver Hand\n\nUther lived and died to defend the kingdom of Lordaeron. Though he was betrayed by his most beloved student, we believe that his spirit lives on. He continues to watch over us, even as the shadows close in around our ruined land. His light is the light of all humanity - and so long as we honor his example, it shall never fade.\n\n- Anonymous', `VerifiedBuild`=45338 WHERE `ID`=292; -- 292
|
||||
@@ -1,110 +0,0 @@
|
||||
SET @CGUID := 1051509;
|
||||
SET @OGUID := 600238;
|
||||
|
||||
-- Creature
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+20;
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `PhaseGroup`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES
|
||||
(@CGUID+0, 152998, 2175, 10424, 10528, '0', 0, 0, 0, 0, 532.47918701171875, -2473.067626953125, 152.8841094970703125, 0.816193342208862304, 7200, 0, 0, 37, 0, 0, 0, 0, 0, 45338), -- Hunting Worg (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+1, 156986, 2175, 10424, 10528, '0', 0, 0, 0, 1, 516.81097412109375, -2476.11474609375, 151.1571197509765625, 1.889551401138305664, 7200, 0, 0, 297, 382, 0, 0, 0, 0, 45338), -- Ogre Taskmaster (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+2, 152998, 2175, 10424, 10528, '0', 0, 0, 0, 0, 490.337982177734375, -2490.9091796875, 149.355987548828125, 6.181377410888671875, 7200, 4, 0, 37, 0, 1, 0, 0, 0, 45338), -- Hunting Worg (Area: -Unknown- - Difficulty: 0) (possible waypoints or random movement)
|
||||
(@CGUID+3, 152571, 2175, 10424, 10528, '0', 0, 0, 0, 0, 474.517364501953125, -2444.35595703125, 153.1246337890625, 0.943628787994384765, 7200, 0, 0, 124, 100, 0, 0, 0, 0, 45338), -- Harpy Snatcher (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+4, 152571, 2175, 10424, 10528, '0', 0, 0, 0, 0, 488, -2536.057373046875, 153.208770751953125, 4.258255481719970703, 7200, 0, 0, 124, 100, 0, 0, 0, 0, 45338), -- Harpy Snatcher (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+5, 152843, 2175, 10424, 10528, '0', 0, 0, 0, 0, 433.510406494140625, -2486.916748046875, 142.18408203125, 2.924199819564819335, 7200, 0, 0, 99, 382, 0, 0, 0, 0, 45338), -- Harpy Boltcaller (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+6, 152998, 2175, 10424, 10528, '0', 0, 0, 0, 0, 535.45489501953125, -2471.80029296875, 153.322509765625, 3.146941423416137695, 7200, 0, 0, 37, 0, 0, 0, 0, 0, 45338), -- Hunting Worg (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+7, 152998, 2175, 10424, 10528, '0', 0, 0, 0, 0, 466.13714599609375, -2408.578125, 146.82232666015625, 3.676610946655273437, 7200, 0, 0, 37, 0, 0, 0, 0, 0, 45338), -- Hunting Worg (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+8, 152571, 2175, 10424, 10528, '0', 0, 0, 0, 0, 463.493072509765625, -2507.791748046875, 147.019439697265625, 6.064158439636230468, 7200, 0, 0, 124, 100, 0, 0, 0, 0, 45338), -- Harpy Snatcher (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+9, 152998, 2175, 10424, 10528, '0', 0, 0, 0, 0, 480.728515625, -2485.416015625, 150.3651885986328125, 5.225788116455078125, 7200, 4, 0, 37, 0, 1, 0, 0, 0, 45338), -- Hunting Worg (Area: -Unknown- - Difficulty: 0) (possible waypoints or random movement)
|
||||
(@CGUID+10, 152998, 2175, 10424, 10528, '0', 0, 0, 0, 0, 463.532989501953125, -2409.484375, 145.7851409912109375, 0.148718908429145812, 7200, 0, 0, 37, 0, 0, 0, 0, 0, 45338), -- Hunting Worg (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+11, 152843, 2175, 10424, 10528, '0', 0, 0, 0, 0, 431.530029296875, -2407.891845703125, 146.169158935546875, 5.492168903350830078, 7200, 0, 0, 99, 382, 0, 0, 0, 0, 45338), -- Harpy Boltcaller (Area: -Unknown- - Difficulty: 0) (possible waypoints or random movement)
|
||||
(@CGUID+12, 152998, 2175, 10424, 10528, '0', 0, 0, 0, 0, 472.173614501953125, -2396.953125, 146.9133148193359375, 1.962240457534790039, 7200, 0, 0, 37, 0, 0, 0, 0, 0, 45338), -- Hunting Worg (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+13, 152571, 2175, 10424, 10528, '0', 0, 0, 0, 0, 547.53900146484375, -2516.50390625, 154.1284942626953125, 2.111484766006469726, 7200, 0, 0, 124, 100, 0, 0, 0, 0, 45338), -- Harpy Snatcher (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+14, 152998, 2175, 10424, 10528, '0', 0, 0, 0, 0, 527.47918701171875, -2561.755126953125, 157.620635986328125, 1.36496591567993164, 7200, 0, 0, 37, 0, 0, 0, 0, 0, 45338), -- Hunting Worg (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+15, 152998, 2175, 10424, 10528, '0', 0, 0, 0, 0, 552.56427001953125, -2515.26220703125, 154.17718505859375, 0.816193342208862304, 7200, 0, 0, 37, 0, 0, 0, 0, 0, 45338), -- Hunting Worg (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+16, 152998, 2175, 10424, 10528, '0', 0, 0, 0, 0, 531.14239501953125, -2561.829833984375, 157.5560302734375, 4.26859903335571289, 7200, 0, 0, 37, 0, 0, 0, 0, 0, 45338), -- Hunting Worg (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+17, 152998, 2175, 10424, 10528, '0', 0, 0, 0, 0, 555.5382080078125, -2513.9931640625, 154.1770782470703125, 3.146941423416137695, 7200, 0, 0, 37, 0, 0, 0, 0, 0, 45338), -- Hunting Worg (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+18, 152843, 2175, 10424, 10528, '0', 0, 0, 0, 0, 507.67742919921875, -2599.332763671875, 155.37420654296875, 2.839890718460083007, 7200, 0, 0, 99, 382, 0, 0, 0, 0, 45338), -- Harpy Boltcaller (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+19, 152843, 2175, 10424, 10528, '0', 0, 0, 0, 0, 505.0296630859375, -2598.486572265625, 155.30914306640625, 6.226494789123535156, 7200, 0, 0, 99, 382, 0, 0, 0, 0, 45338), -- Harpy Boltcaller (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+20, 152998, 2175, 10424, 10528, '0', 0, 0, 0, 0, 473.795135498046875, -2396.376708984375, 146.7750244140625, 2.285255908966064453, 7200, 0, 0, 37, 0, 0, 0, 0, 0, 45338); -- Hunting Worg (Area: -Unknown- - Difficulty: 0)
|
||||
|
||||
-- Creature Addon
|
||||
DELETE FROM `creature_addon` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+20;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(@CGUID+3, 0, 0, 0, 1, 468, 0, 0, 0, 0, ''), -- Harpy Snatcher
|
||||
(@CGUID+4, 0, 0, 0, 1, 468, 0, 0, 0, 0, ''), -- Harpy Snatcher
|
||||
(@CGUID+5, 0, 0, 0, 1, 173, 0, 0, 0, 0, ''), -- Harpy Boltcaller
|
||||
(@CGUID+7, 0, 0, 0, 1, 173, 0, 0, 0, 0, ''), -- Hunting Worg
|
||||
(@CGUID+8, 0, 0, 0, 1, 468, 0, 0, 0, 0, ''), -- Harpy Snatcher
|
||||
(@CGUID+10, 0, 0, 0, 1, 173, 0, 0, 0, 0, ''), -- Hunting Worg
|
||||
(@CGUID+11, 0, 0, 33554432, 1, 0, 0, 0, 0, 0, ''), -- Harpy Boltcaller
|
||||
(@CGUID+12, 0, 0, 0, 1, 173, 0, 0, 0, 0, ''), -- Hunting Worg
|
||||
(@CGUID+13, 0, 0, 33554432, 1, 0, 0, 0, 0, 0, ''), -- Harpy Snatcher
|
||||
(@CGUID+14, 0, 0, 0, 1, 173, 0, 0, 0, 0, ''), -- Hunting Worg
|
||||
(@CGUID+16, 0, 0, 0, 1, 173, 0, 0, 0, 0, ''), -- Hunting Worg
|
||||
(@CGUID+18, 0, 0, 33554432, 1, 0, 0, 0, 0, 0, ''), -- Harpy Boltcaller
|
||||
(@CGUID+19, 0, 0, 33554432, 1, 0, 0, 0, 0, 0, ''), -- Harpy Boltcaller
|
||||
(@CGUID+20, 0, 0, 0, 1, 173, 0, 0, 0, 0, ''); -- Hunting Worg
|
||||
|
||||
-- Creature Template
|
||||
UPDATE `creature_template` SET `minlevel`=10 WHERE `entry`=152843; -- Harpy Boltcaller
|
||||
UPDATE `creature_template` SET `minlevel`=10 WHERE `entry`=152571; -- Harpy Snatcher
|
||||
UPDATE `creature_template` SET `minlevel`=10, `maxlevel`=10, `faction`=16, `BaseAttackTime`=2000, `unit_flags`=32768, `unit_flags2`=2048 WHERE `entry`=156986; -- Ogre Taskmaster
|
||||
UPDATE `creature_template` SET `minlevel`=10 WHERE `entry`=152998; -- Hunting Worg
|
||||
|
||||
-- GameObject
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+4;
|
||||
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, 327146, 2175, 10424, 10528, '0', 0, 0, 430.526031494140625, -2487.46533203125, 142.301300048828125, 1.587361812591552734, 0, 0, 0.712939262390136718, 0.701225817203521728, 7200, 255, 1, 45338), -- Harpy Totem (Area: -Unknown- - Difficulty: 0)
|
||||
(@OGUID+1, 327146, 2175, 10424, 10528, '0', 0, 0, 481.75, -2452.32470703125, 152.03143310546875, 0.12650531530380249, 0, 0, 0.063210487365722656, 0.998000204563140869, 7200, 255, 1, 45338), -- Harpy Totem (Area: -Unknown- - Difficulty: 0)
|
||||
(@OGUID+2, 327146, 2175, 10424, 10528, '0', 0, 0, 465.720489501953125, -2508.295166015625, 147.4104156494140625, 3.157217979431152343, 0, 0, -0.999969482421875, 0.0078125, 7200, 255, 1, 45338), -- Harpy Totem (Area: -Unknown- - Difficulty: 0)
|
||||
(@OGUID+3, 327146, 2175, 10424, 10528, '0', 0, 0, 552.93402099609375, -2513.6650390625, 154.2525177001953125, 3.795985698699951171, 0, 0, -0.94694709777832031, 0.321389496326446533, 7200, 255, 1, 45338), -- Harpy Totem (Area: -Unknown- - Difficulty: 0)
|
||||
(@OGUID+4, 327146, 2175, 10424, 10528, '0', 0, 0, 502, -2589.651123046875, 155.433013916015625, 1.940680384635925292, 0, 0, 0.825078010559082031, 0.565018832683563232, 7200, 255, 1, 45338); -- Harpy Totem (Area: -Unknown- - Difficulty: 0)
|
||||
|
||||
-- Waypoints for CGUID+1
|
||||
SET @PATH := @CGUID+1 * 10;
|
||||
DELETE FROM `waypoint_data` WHERE `id`= @PATH;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
|
||||
(@PATH, 0, 521.3785, -2505.967, 152.1503, NULL, 0),
|
||||
(@PATH, 1, 519.243, -2489.641, 151.4003, NULL, 0),
|
||||
(@PATH, 2, 518.507, -2481.238, 150.9003, NULL, 0),
|
||||
(@PATH, 3, 514.1268, -2467.981, 151.305, NULL, 0),
|
||||
(@PATH, 4, 518.507, -2481.238, 150.9003, NULL, 0),
|
||||
(@PATH, 5, 519.243, -2489.641, 151.4003, NULL, 0),
|
||||
(@PATH, 6, 521.3785, -2505.967, 152.1503, NULL, 0),
|
||||
(@PATH, 7, 521.2118, -2519.878, 153.8483, NULL, 0);
|
||||
|
||||
UPDATE `creature` SET `position_x`= 521.3785, `position_y`= -2505.967, `position_z`= 152.1503, `orientation`= 0, `wander_distance`= 0, `MovementType`= 2 WHERE `guid`= @CGUID+1;
|
||||
DELETE FROM `creature_addon` WHERE `guid`= @CGUID+1;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `bytes2`) VALUES
|
||||
(@CGUID+1, @PATH, 1);
|
||||
|
||||
-- Waypoints for CGUID+18
|
||||
SET @PATH := @CGUID+18 * 10;
|
||||
DELETE FROM `waypoint_data` WHERE `id`= @PATH;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
|
||||
(@PATH, 0, 509.3316, -2599.847, 156.4041, NULL, 0),
|
||||
(@PATH, 1, 503.125, -2597.916, 156.3284, NULL, 0),
|
||||
(@PATH, 2, 499.7865, -2596.875, 156.8123, NULL, 0),
|
||||
(@PATH, 3, 501.1059, -2589.887, 156.417, NULL, 0),
|
||||
(@PATH, 4, 505.8733, -2587.913, 156.5159, NULL, 0),
|
||||
(@PATH, 5, 510.8993, -2592.21, 156.8892, NULL, 0);
|
||||
|
||||
UPDATE `creature` SET `position_x`= 509.3316, `position_y`= -2599.847, `position_z`= 156.4041, `orientation`= 0, `wander_distance`= 0, `MovementType`= 2 WHERE `guid`= @CGUID+18;
|
||||
DELETE FROM `creature_addon` WHERE `guid`= @CGUID+18;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `bytes1`, `bytes2`) VALUES
|
||||
(@CGUID+18, @PATH, 33554432, 1);
|
||||
|
||||
-- Waypoints for CGUID+19
|
||||
SET @PATH := @CGUID+19 * 10;
|
||||
DELETE FROM `waypoint_data` WHERE `id`= @PATH;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
|
||||
(@PATH, 0, 501.7917, -2588.821, 156.4871, NULL, 0),
|
||||
(@PATH, 1, 500.6024, -2594.535, 156.5476, NULL, 0),
|
||||
(@PATH, 2, 503.125, -2597.916, 156.3284, NULL, 0),
|
||||
(@PATH, 3, 509.4583, -2598.74, 156.5521, NULL, 0),
|
||||
(@PATH, 4, 511.4792, -2592.972, 157.1409, NULL, 0),
|
||||
(@PATH, 5, 506.5573, -2587.813, 156.5159, NULL, 0);
|
||||
|
||||
UPDATE `creature` SET `position_x`= 501.7917, `position_y`= -2588.821, `position_z`= 156.4871, `orientation`= 0, `wander_distance`= 0, `MovementType`= 2 WHERE `guid`= @CGUID+19;
|
||||
DELETE FROM `creature_addon` WHERE `guid`= @CGUID+19;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `bytes1`, `bytes2`) VALUES
|
||||
(@CGUID+19, @PATH, 33554432, 1);
|
||||
@@ -1,156 +0,0 @@
|
||||
--
|
||||
-- Quests
|
||||
--
|
||||
|
||||
-- The Warchief Cometh
|
||||
DELETE FROM `quest_template_addon` WHERE `ID`=26965;
|
||||
INSERT INTO `quest_template_addon` (`ID`, `MaxLevel`, `AllowableClasses`, `SourceSpellID`, `PrevQuestID`, `NextQuestID`, `ExclusiveGroup`, `BreadcrumbForQuestId`, `RewardMailTemplateID`, `RewardMailDelay`, `RequiredSkillID`, `RequiredSkillPoints`, `RequiredMinRepFaction`, `RequiredMaxRepFaction`, `RequiredMinRepValue`, `RequiredMaxRepValue`, `ProvidedItemCount`, `SpecialFlags`, `ScriptName`) VALUES
|
||||
(26965, 0, 0, 0, 0, 26989, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '');
|
||||
|
||||
-- The Gilneas Liberation Front
|
||||
DELETE FROM `quest_template_addon` WHERE `ID`=26989;
|
||||
INSERT INTO `quest_template_addon` (`ID`, `MaxLevel`, `AllowableClasses`, `SourceSpellID`, `PrevQuestID`, `NextQuestID`, `ExclusiveGroup`, `BreadcrumbForQuestId`, `RewardMailTemplateID`, `RewardMailDelay`, `RequiredSkillID`, `RequiredSkillPoints`, `RequiredMinRepFaction`, `RequiredMaxRepFaction`, `RequiredMinRepValue`, `RequiredMaxRepValue`, `ProvidedItemCount`, `SpecialFlags`, `ScriptName`) VALUES
|
||||
(26989, 0, 0, 0, 0, 27039, -26989, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '');
|
||||
|
||||
-- Agony Abounds
|
||||
DELETE FROM `quest_template_addon` WHERE `ID`=26992;
|
||||
INSERT INTO `quest_template_addon` (`ID`, `MaxLevel`, `AllowableClasses`, `SourceSpellID`, `PrevQuestID`, `NextQuestID`, `ExclusiveGroup`, `BreadcrumbForQuestId`, `RewardMailTemplateID`, `RewardMailDelay`, `RequiredSkillID`, `RequiredSkillPoints`, `RequiredMinRepFaction`, `RequiredMaxRepFaction`, `RequiredMinRepValue`, `RequiredMaxRepValue`, `ProvidedItemCount`, `SpecialFlags`, `ScriptName`) VALUES
|
||||
(26992, 0, 0, 0, 0, 27039, -26989, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '');
|
||||
|
||||
-- Guts and Gore
|
||||
DELETE FROM `quest_template_addon` WHERE `ID`=26995;
|
||||
INSERT INTO `quest_template_addon` (`ID`, `MaxLevel`, `AllowableClasses`, `SourceSpellID`, `PrevQuestID`, `NextQuestID`, `ExclusiveGroup`, `BreadcrumbForQuestId`, `RewardMailTemplateID`, `RewardMailDelay`, `RequiredSkillID`, `RequiredSkillPoints`, `RequiredMinRepFaction`, `RequiredMaxRepFaction`, `RequiredMinRepValue`, `RequiredMaxRepValue`, `ProvidedItemCount`, `SpecialFlags`, `ScriptName`) VALUES
|
||||
(26995, 0, 0, 0, 0, 26998, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '');
|
||||
|
||||
-- Iterating Upon Success
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 26995, `NextQuestID` = 27039, `ExclusiveGroup` = -26989 WHERE `ID` = 26998;
|
||||
|
||||
-- Dangerous Intentions
|
||||
DELETE FROM `quest_template_addon` WHERE `ID`=27039;
|
||||
INSERT INTO `quest_template_addon` (`ID`, `MaxLevel`, `AllowableClasses`, `SourceSpellID`, `PrevQuestID`, `NextQuestID`, `ExclusiveGroup`, `BreadcrumbForQuestId`, `RewardMailTemplateID`, `RewardMailDelay`, `RequiredSkillID`, `RequiredSkillPoints`, `RequiredMinRepFaction`, `RequiredMaxRepFaction`, `RequiredMinRepValue`, `RequiredMaxRepValue`, `ProvidedItemCount`, `SpecialFlags`, `ScriptName`) VALUES
|
||||
(27039, 0, 0, 0, 0, 27045, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '');
|
||||
|
||||
-- Waiting to Exsanguinate
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 27039, `NextQuestID` = 27056 WHERE `ID` = 27045;
|
||||
|
||||
-- Belmont's Report
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 27045, `NextQuestID` = 27065 WHERE `ID` = 27056;
|
||||
|
||||
-- The Warchief's Fleet
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 27056, `NextQuestID` = 27069 WHERE `ID` = 27065;
|
||||
|
||||
-- Steel Thunder
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 27065, `NextQuestID` = 27093, `ExclusiveGroup` = -27069 WHERE `ID` = 27069;
|
||||
|
||||
-- Give 'em Hell!
|
||||
DELETE FROM `quest_template_addon` WHERE `ID`=27073;
|
||||
INSERT INTO `quest_template_addon` (`ID`, `MaxLevel`, `AllowableClasses`, `SourceSpellID`, `PrevQuestID`, `NextQuestID`, `ExclusiveGroup`, `BreadcrumbForQuestId`, `RewardMailTemplateID`, `RewardMailDelay`, `RequiredSkillID`, `RequiredSkillPoints`, `RequiredMinRepFaction`, `RequiredMaxRepFaction`, `RequiredMinRepValue`, `RequiredMaxRepValue`, `ProvidedItemCount`, `SpecialFlags`, `ScriptName`) VALUES
|
||||
(27073, 0, 0, 0, 27065, 27095, -27069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '');
|
||||
|
||||
-- Skitterweb Menace
|
||||
DELETE FROM `quest_template_addon` WHERE `ID`=27095;
|
||||
INSERT INTO `quest_template_addon` (`ID`, `MaxLevel`, `AllowableClasses`, `SourceSpellID`, `PrevQuestID`, `NextQuestID`, `ExclusiveGroup`, `BreadcrumbForQuestId`, `RewardMailTemplateID`, `RewardMailDelay`, `RequiredSkillID`, `RequiredSkillPoints`, `RequiredMinRepFaction`, `RequiredMaxRepFaction`, `RequiredMinRepValue`, `RequiredMaxRepValue`, `ProvidedItemCount`, `SpecialFlags`, `ScriptName`) VALUES
|
||||
(27095, 0, 0, 0, 0, 27094, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '');
|
||||
|
||||
-- Deeper into Darkness
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 27095, `NextQuestID` = 27096, `ExclusiveGroup` = -27094 WHERE `ID` = 27094;
|
||||
|
||||
-- Lost in the Darkness
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 0, `NextQuestID` = 27096, `ExclusiveGroup` = -27094 WHERE `ID` = 27093;
|
||||
|
||||
-- Playing Dirty
|
||||
DELETE FROM `quest_template_addon` WHERE `ID`=27082;
|
||||
INSERT INTO `quest_template_addon` (`ID`, `MaxLevel`, `AllowableClasses`, `SourceSpellID`, `PrevQuestID`, `NextQuestID`, `ExclusiveGroup`, `BreadcrumbForQuestId`, `RewardMailTemplateID`, `RewardMailDelay`, `RequiredSkillID`, `RequiredSkillPoints`, `RequiredMinRepFaction`, `RequiredMaxRepFaction`, `RequiredMinRepValue`, `RequiredMaxRepValue`, `ProvidedItemCount`, `SpecialFlags`, `ScriptName`) VALUES
|
||||
(27082, 0, 0, 0, 27065, 27088, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '');
|
||||
|
||||
-- It's Only Poisonous if You Ingest It
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 27082, `NextQuestID` = 27096, `ExclusiveGroup` = -27094 WHERE `ID` = 27088;
|
||||
|
||||
-- Orcs are in Order
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 0, `NextQuestID` = 27097 WHERE `ID` = 27096;
|
||||
|
||||
-- Rise, Forsaken
|
||||
DELETE FROM `quest_template_addon` WHERE `ID`=27097;
|
||||
INSERT INTO `quest_template_addon` (`ID`, `MaxLevel`, `AllowableClasses`, `SourceSpellID`, `PrevQuestID`, `NextQuestID`, `ExclusiveGroup`, `BreadcrumbForQuestId`, `RewardMailTemplateID`, `RewardMailDelay`, `RequiredSkillID`, `RequiredSkillPoints`, `RequiredMinRepFaction`, `RequiredMaxRepFaction`, `RequiredMinRepValue`, `RequiredMaxRepValue`, `ProvidedItemCount`, `SpecialFlags`, `ScriptName`) VALUES
|
||||
(27097, 0, 0, 0, 27096, 27099, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '');
|
||||
|
||||
-- No Escape
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 27097, `NextQuestID` = 27098 WHERE `ID` = 27099;
|
||||
|
||||
-- Lordaeron
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID` = 27099, `NextQuestID` = 27180 WHERE `ID` = 27098;
|
||||
|
||||
-- To Forsaken Forward Command
|
||||
-- Note: this one belongs in a later stage, but since Sylvanas' Entry is used in two different places,
|
||||
-- some quests are available to be taken when the player shouldn't yet, so I'm handling it now.
|
||||
DELETE FROM `quest_template_addon` WHERE `ID`=27290;
|
||||
INSERT INTO `quest_template_addon` (`ID`, `MaxLevel`, `AllowableClasses`, `SourceSpellID`, `PrevQuestID`, `NextQuestID`, `ExclusiveGroup`, `BreadcrumbForQuestId`, `RewardMailTemplateID`, `RewardMailDelay`, `RequiredSkillID`, `RequiredSkillPoints`, `RequiredMinRepFaction`, `RequiredMaxRepFaction`, `RequiredMinRepValue`, `RequiredMaxRepValue`, `ProvidedItemCount`, `SpecialFlags`, `ScriptName`) VALUES
|
||||
(27290, 0, 0, 0, 27342, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '');
|
||||
|
||||
DELETE FROM `quest_details` WHERE `ID` IN (27098 /*27098*/, 27099 /*27099*/, 27097 /*27097*/, 27096 /*27096*/, 27094 /*27094*/, 27088 /*27088*/, 27093 /*27093*/, 27095 /*27095*/, 27082 /*27082*/, 27073 /*27073*/, 27069 /*27069*/, 27065 /*27065*/, 27056 /*27056*/, 27045 /*27045*/, 27039 /*27039*/, 26998 /*26998*/, 26995 /*26995*/, 26992 /*26992*/, 26989 /*26989*/, 26965 /*26965*/);
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(27098, 0, 0, 0, 0, 0, 0, 0, 0, 45338), -- 27098
|
||||
(27099, 0, 0, 0, 0, 0, 0, 0, 0, 45338), -- 27099
|
||||
(27097, 1, 1, 1, 0, 0, 0, 0, 0, 45338), -- 27097
|
||||
(27096, 0, 0, 0, 0, 0, 0, 0, 0, 45338), -- 27096
|
||||
(27094, 0, 0, 0, 0, 0, 0, 0, 0, 45338), -- 27094
|
||||
(27088, 1, 1, 1, 0, 0, 0, 0, 0, 45338), -- 27088
|
||||
(27093, 0, 0, 0, 0, 0, 0, 0, 0, 45338), -- 27093
|
||||
(27095, 15, 1, 5, 0, 0, 0, 0, 0, 45338), -- 27095
|
||||
(27082, 1, 1, 1, 0, 0, 0, 0, 0, 45338), -- 27082
|
||||
(27073, 5, 1, 1, 0, 0, 0, 0, 0, 45338), -- 27073
|
||||
(27069, 0, 0, 0, 0, 0, 0, 0, 0, 45338), -- 27069
|
||||
(27065, 1, 1, 1, 0, 0, 0, 0, 0, 45338), -- 27065
|
||||
(27056, 1, 1, 0, 0, 0, 0, 0, 0, 45338), -- 27056
|
||||
(27045, 0, 0, 0, 0, 0, 0, 0, 0, 45338), -- 27045
|
||||
(27039, 6, 1, 0, 0, 0, 0, 0, 0, 45338), -- 27039
|
||||
(26998, 1, 1, 1, 0, 0, 0, 0, 0, 45338), -- 26998
|
||||
(26995, 5, 1, 1, 0, 0, 0, 0, 0, 45338), -- 26995
|
||||
(26992, 6, 1, 1, 0, 0, 0, 0, 0, 45338), -- 26992
|
||||
(26989, 1, 5, 1, 397, 0, 0, 0, 0, 45338), -- 26989
|
||||
(26965, 1, 1, 66, 0, 0, 0, 0, 0, 45338); -- 26965
|
||||
|
||||
DELETE FROM `quest_request_items` WHERE `ID` IN (27093 /*27093*/, 26998 /*26998*/, 26965 /*26965*/, 26995 /*26995*/, 27088 /*27088*/, 27056 /*27056*/, 26992 /*26992*/, 26989 /*26989*/, 27082 /*27082*/, 27045 /*27045*/, 27073 /*27073*/, 27069 /*27069*/, 27099 /*27099*/, 27097 /*27097*/, 27096 /*27096*/, 27095 /*27095*/, 27094 /*27094*/);
|
||||
INSERT INTO `quest_request_items` (`ID`, `EmoteOnComplete`, `EmoteOnIncomplete`, `CompletionText`, `VerifiedBuild`) VALUES
|
||||
(27093, 0, 0, 'Thankfully we\'re almost out of ale.', 45338), -- 27093
|
||||
(26998, 0, 6, 'Have you exterminated the Vile Fin murlocs of the Dawning Isles?', 45338), -- 26998
|
||||
(26965, 0, 5, 'Stand at attention, $nnub!', 45338), -- 26965
|
||||
(26995, 1, 1, 'Remember, I can only use clean beast guts for the new strain of blight we\'re developing.', 45338), -- 26995
|
||||
(27088, 0, 6, 'Have you dealt with the ettin?', 45338), -- 27088
|
||||
(27056, 25, 0, 'Kneel before your queen, $n.', 45338), -- 27056
|
||||
(26992, 6, 6, 'Have you collected the ferocious doomweed I requested?', 45338), -- 26992
|
||||
(26989, 0, 6, 'What have you to report, $nnub?', 45338), -- 26989
|
||||
(27082, 5, 5, 'We are Forsaken! This is how we do it, $c.', 45338), -- 27082
|
||||
(27045, 0, 6, 'News from Yorick?', 45338), -- 27045
|
||||
(27073, 0, 15, 'Give \'em hell, $r!', 45338), -- 27073
|
||||
(27069, 0, 0, 'The pups might be the only orcs not drunk at this base.', 45338), -- 27069
|
||||
(27099, 0, 6, 'What have you to report?', 45338), -- 27099
|
||||
(27097, 0, 0, 'Victory!', 45338), -- 27097
|
||||
(27096, 6, 0, 'And the orcs?', 45338), -- 27096
|
||||
(27095, 0, 0, 'The matriarch must be found!', 45338), -- 27095
|
||||
(27094, 0, 6, 'You killed the Skitterweb matriarch?', 45338); -- 27094
|
||||
|
||||
DELETE FROM `quest_offer_reward` WHERE `ID` IN (28568 /*28568*/, 27099 /*27099*/, 27097 /*27097*/, 27096 /*27096*/, 27088 /*27088*/, 27094 /*27094*/, 27093 /*27093*/, 27095 /*27095*/, 27082 /*27082*/, 27073 /*27073*/, 27069 /*27069*/, 28966 /*28966*/, 27065 /*27065*/, 27056 /*27056*/, 27045 /*27045*/, 27039 /*27039*/, 26998 /*26998*/, 26995 /*26995*/, 26992 /*26992*/, 26989 /*26989*/, 26965 /*26965*/, 27098 /*27098*/);
|
||||
INSERT INTO `quest_offer_reward` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `RewardText`, `VerifiedBuild`) VALUES
|
||||
(28568, 5, 21, 0, 0, 0, 0, 0, 0, 'Most excellent! A new recruit has arrived. There is much to do... much to do I say.', 45338), -- 28568
|
||||
(27099, 1, 1, 25, 6, 0, 0, 0, 0, 'It would seem that Crowley is more formidable than I anticipated. Still, he is a man - flesh and bone - full of secrets. Secrets that I know all about...$B$BYou have served me well, $n. I could use someone of your ability at the Sepulcher. I have a plan to deal with Crowley and his insurgents once and for all. Will you help?', 45338), -- 27099
|
||||
(27097, 1, 0, 0, 0, 0, 0, 0, 0, 'I see everything, $n. Through Agatha all is known to me.', 45338), -- 27097
|
||||
(27096, 0, 0, 0, 0, 0, 0, 0, 0, '<Sylvanas raises an eyebrow.>$B$BSo the orcs are in order?$B$B<Sylvanas reads the commendation letter.>$B$BRecovered their supplies? Killed a dozen worgen? Toppled an ettin? Freed their soldiers and destroyed the Skitterweb matriarch?$B$BI say this rarely, $n, but I am impressed. Perhaps your ability matches your aspirations. We shall see, for now you will be tested!', 45338), -- 27096
|
||||
(27088, 11, 25, 0, 0, 0, 0, 0, 0, '<Apothecary Wormcrud laughs maniacally.>$B$BWas there ever any doubt? An ettin is no match for science!', 45338), -- 27088
|
||||
(27094, 5, 1, 66, 0, 0, 0, 0, 0, 'You rescued our orcs and killed the Skitterweb matriarch? We owe you a great debt of gratitude. You\'ve saved us all from certain execution, $n. I\'m sure we can rouse these drunken idiots now.', 45338), -- 27094
|
||||
(27093, 0, 0, 0, 0, 0, 0, 0, 0, 'Lok\'tar, $n! Once the ale wears off my orcs will be ready!', 45338), -- 27093
|
||||
(27095, 0, 0, 0, 0, 0, 0, 0, 0, 'The root of this evil must be found and destroyed! The Skitterweb matriarch must be nearby. No doubt hiding in the nearby cave!', 45338), -- 27095
|
||||
(27082, 5, 1, 0, 0, 0, 0, 0, 0, 'Excellent! Now to prepare the \"meal.\"', 45338), -- 27082
|
||||
(27073, 25, 1, 11, 0, 0, 0, 0, 0, 'Looks as if you really gave those worgen a beating and, in the process, lifted the \"shame haze\" they cast over us. Perhaps the sea dogs will quit drinkin\' now.$B$BWho am I kidding?$B$BHah!', 45338), -- 27073
|
||||
(27069, 0, 0, 0, 0, 0, 0, 0, 0, 'Within these crates are held STEEL THUNDER! With our weaponry returned we might have a chance to redeem ourselves.', 45338), -- 27069
|
||||
(28966, 0, 0, 0, 0, 0, 0, 0, 0, 'Candy buckets like this are located in inns throughout the realms. Go ahead... take some!', 45338), -- 28966
|
||||
(27065, 0, 0, 0, 0, 0, 0, 0, 0, 'This fiasco may go down as one of the biggest embarrassments in the history of naval warfare. How did this happen? Drunk happened. That\'s how.', 45338), -- 27065
|
||||
(27056, 1, 1, 274, 5, 0, 0, 0, 0, 'Crowley... A gnat. An insect, waiting to be crushed beneath my boot heel.$B$BSo he thinks to rouse the feral worgen of Silverpine? We shall show him and his allies the might of the Forsaken!$B$BBut first we must clean up the mess made by the Warchief\'s fleet. Without their aid we may lose this war.', 45338), -- 27056
|
||||
(27045, 5, 1, 0, 0, 0, 0, 0, 0, 'Alas, poor Yorick! I knew her, $n. An assassin of infinite courage...$B$BNow, tell me what\'s going on? What did you and Yorick discover?', 45338), -- 27045
|
||||
(27039, 0, 0, 0, 0, 0, 0, 0, 0, 'Belmont gets a little nervous and sends some newbie to look for me? Listen, I\'ve been staking out the old Ivar cottage from inside this outhouse for three days. Your presence threatens the whole damn operation!$B$BThere\'s no time to explain. We have to act now or this mission will be compromised.', 45338), -- 27039
|
||||
(26998, 5, 1, 273, 0, 0, 0, 0, 0, 'Potent enough to exterminate a thousand murlocs! I think I\'ll put that on the label. You\'ve done well, $n, and great work around here gets rewarded.', 45338), -- 26998
|
||||
(26995, 4, 1, 0, 0, 0, 0, 0, 0, 'Excellent! With these guts and the ferocious doomweed we\'ll be able to test out our new strain of blight. Now to select a suitable target...', 45338), -- 26995
|
||||
(26992, 5, 1, 273, 0, 0, 0, 0, 0, 'Agony abounds, friend! The land itself threatens to devour us, and yet we persist. I wonder why that is? With this doomweed and the guts and gore that T\'Veen needs, we might have something suitable to send to the Forsaken front.', 45338), -- 26992
|
||||
(26989, 1, 5, 21, 21, 0, 0, 0, 0, '$nnub has returned! And in one piece!$B$BDefender of Silverpine! Redeemer of the Horde! $nnub, your bravery must be rewarded!', 45338), -- 26989
|
||||
(26965, 274, 1, 273, 0, 0, 0, 0, 0, 'Well that was unexpected. I am not one to doubt our Warchief, but...$B$BNevermind! We have work to do. I\'m sure the Dark Lady and the Warchief will get this all worked out.', 45338), -- 26965
|
||||
(27098, 25, 6, 5, 0, 0, 0, 0, 0, 'Do you now understand the importance of our mission here? Crowley and his Alliance dogs must be stopped!', 45338); -- 27098
|
||||
@@ -1,246 +0,0 @@
|
||||
SET @CGUID := 395602;
|
||||
SET @OGUID := 239576;
|
||||
|
||||
--
|
||||
-- Forsaken High Command (Introduction)
|
||||
|
||||
DELETE FROM `phase_area` WHERE `AreaId`=5369 AND `PhaseId`=264;
|
||||
INSERT INTO `phase_area` (`AreaId`, `PhaseId`, `Comment`) VALUES
|
||||
(5369, 264, 'Forsaken High Command Intro if 26965 IS NOT rewarded');
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=26 AND `SourceGroup`=264 AND `SourceEntry`=5369 AND `SourceId`=0 AND `ElseGroup`=0 AND `ConditionTypeOrReference`=47 AND `ConditionTarget`=0 AND `ConditionValue1`=26965 AND `ConditionValue2`=64 AND `ConditionValue3`=0;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(26, 264, 5369, 0, 0, 47, 0, 26965, 64, 0, 1, 0, 0, '', 'Forsaken High Command - Add phase 264 if 26965 IS NOT rewarded');
|
||||
|
||||
DELETE FROM `gossip_menu` WHERE (`MenuID`=11823 AND `TextID`=16575);
|
||||
INSERT INTO `gossip_menu` (`MenuID`, `TextID`, `VerifiedBuild`) VALUES
|
||||
(11823, 16575, 45338); -- 44365 (Lady Sylvanas Windrunner)
|
||||
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+30;
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `PhaseGroup`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES
|
||||
(@CGUID+0, 44592, 0, 130, 5369, '0', 264, 0, 0, 0, 1373.3499755859375, 1031.5799560546875, 50.61893081665039062, 0.959931075572967529, 1, 0, 0, 1604, 0, 0, 0, 0, 0, 45338), -- Fallen Human (Area: Forsaken High Command - Difficulty: 0) (Auras: 80636 - Feigned)
|
||||
(@CGUID+1, 44592, 0, 130, 5369, '0', 264, 0, 0, 0, 1374.1400146484375, 1036.3499755859375, 50.92173385620117187, 5.532693862915039062, 1, 0, 0, 1604, 0, 0, 0, 0, 0, 45338), -- Fallen Human (Area: Forsaken High Command - Difficulty: 0) (Auras: 80636 - Feigned)
|
||||
(@CGUID+2, 44632, 0, 130, 5369, '0', 264, 0, 0, 1, 1341.6600341796875, 1020.96002197265625, 54.34383392333984375, 0.48869219422340393, 120, 0, 0, 3208, 0, 0, 0, 0, 0, 45338), -- Dark Ranger (Area: Forsaken High Command - Difficulty: 0)
|
||||
(@CGUID+3, 44632, 0, 130, 5369, '0', 264, 0, 0, 1, 1341.199951171875, 1009.04998779296875, 54.68253326416015625, 3.193952560424804687, 120, 0, 0, 3208, 0, 0, 0, 0, 0, 45338), -- Dark Ranger (Area: Forsaken High Command - Difficulty: 0)
|
||||
(@CGUID+4, 44615, 0, 130, 5369, '0', 264, 0, 0, 0, 1383, 1038.6300048828125, 54.40053176879882812, 3.909537553787231445, 120, 0, 0, 8020, 12780, 0, 0, 0, 0, 45338), -- Grand Executor Mortuus (Area: Forsaken High Command - Difficulty: 0)
|
||||
(@CGUID+5, 44592, 0, 130, 5369, '0', 264, 0, 0, 0, 1372.97998046875, 1041.06005859375, 51.38103103637695312, 0.226892799139022827, 1, 0, 0, 1604, 0, 0, 0, 0, 0, 45338), -- Fallen Human (Area: Forsaken High Command - Difficulty: 0) (Auras: 80636 - Feigned)
|
||||
(@CGUID+6, 44593, 0, 130, 5369, '0', 264, 0, 0, 0, 1372.0799560546875, 1034.97998046875, 50.84893035888671875, 0.890117883682250976, 1, 0, 0, 1604, 0, 0, 0, 0, 0, 45338), -- Fallen Human (Area: Forsaken High Command - Difficulty: 0) (Auras: 80636 - Feigned)
|
||||
(@CGUID+7, 44632, 0, 130, 5369, '0', 264, 0, 0, 1, 1352.725, 1059.25, 53.049904, 3.361215591430664062, 120, 10, 0, 3208, 0, 2, 0, 0, 0, 45338), -- Dark Ranger (Area: Forsaken High Command - Difficulty: 0) (possible waypoints or random movement)
|
||||
(@CGUID+8, 44632, 0, 130, 5369, '0', 264, 0, 0, 1, 1400.9300537109375, 1003.3800048828125, 53.03673171997070312, 2.094395160675048828, 120, 0, 0, 3208, 0, 0, 0, 0, 0, 45338), -- Dark Ranger (Area: Forsaken High Command - Difficulty: 0)
|
||||
(@CGUID+9, 44593, 0, 130, 5369, '0', 264, 0, 0, 0, 1375.4200439453125, 1033.81005859375, 50.65223312377929687, 0.890117883682250976, 1, 0, 0, 1604, 0, 0, 0, 0, 0, 45338), -- Fallen Human (Area: Forsaken High Command - Difficulty: 0) (Auras: 80636 - Feigned)
|
||||
(@CGUID+10, 44632, 0, 130, 5369, '0', 264, 0, 0, 1, 1345.6600341796875, 1010.6400146484375, 54.39243316650390625, 0.349065840244293212, 120, 0, 0, 3208, 0, 0, 0, 0, 0, 45338), -- Dark Ranger (Area: Forsaken High Command - Difficulty: 0)
|
||||
(@CGUID+11, 44592, 0, 130, 5369, '0', 264, 0, 0, 0, 1369.6500244140625, 1033.6700439453125, 50.96683120727539062, 0.698131680488586425, 1, 0, 0, 1604, 0, 0, 0, 0, 0, 45338), -- Fallen Human (Area: Forsaken High Command - Difficulty: 0) (Auras: 80636 - Feigned)
|
||||
(@CGUID+12, 44365, 0, 130, 5369, '0', 264, 0, 0, 1, 1381.3499755859375, 1040.72998046875, 54.40043258666992187, 3.909537553787231445, 120, 0, 0, 641600, 17040, 0, 1, 0, 0, 45338), -- Lady Sylvanas Windrunner (Area: Forsaken High Command - Difficulty: 0)
|
||||
(@CGUID+13, 44632, 0, 130, 5369, '0', 264, 0, 0, 1, 1389.5400390625, 1047.81005859375, 53.04053115844726562, 3.577924966812133789, 120, 0, 0, 3208, 0, 0, 0, 0, 0, 45338), -- Dark Ranger (Area: Forsaken High Command - Difficulty: 0)
|
||||
(@CGUID+14, 44592, 0, 130, 5369, '0', 264, 0, 0, 0, 1378.1600341796875, 1031.7099609375, 51.37173080444335937, 0.767944872379302978, 1, 0, 0, 1604, 0, 0, 0, 0, 0, 45338), -- Fallen Human (Area: Forsaken High Command - Difficulty: 0) (Auras: 80636 - Feigned)
|
||||
(@CGUID+15, 44608, 0, 130, 5369, '0', 264, 0, 0, 0, 1364.02001953125, 1028.5400390625, 58.13195419311523437, 0.715584993362426757, 120, 0, 0, 48120, 17040, 0, 0, 0, 0, 45338), -- Agatha (Area: Forsaken High Command - Difficulty: 0)
|
||||
(@CGUID+16, 44592, 0, 130, 5369, '0', 264, 0, 0, 0, 1370.6600341796875, 1030.8199462890625, 51.134033203125, 0.890117883682250976, 1, 0, 0, 1604, 0, 0, 0, 0, 0, 45338), -- Fallen Human (Area: Forsaken High Command - Difficulty: 0) (Auras: 80636 - Feigned)
|
||||
(@CGUID+17, 44593, 0, 130, 5369, '0', 264, 0, 0, 0, 1369.5699462890625, 1036.9000244140625, 50.9980316162109375, 0.209439516067504882, 1, 0, 0, 1604, 0, 0, 0, 0, 0, 45338), -- Fallen Human (Area: Forsaken High Command - Difficulty: 0) (Auras: 80636 - Feigned)
|
||||
(@CGUID+18, 44825, 0, 130, 5369, '0', 264, 0, 0, 1, 1422.9305419921875, 1017.77081298828125, 52.64933395385742187, 2.862339973449707031, 120, 0, 0, 11791, 0, 0, 0, 0, 0, 45338), -- Bat Handler Maggotbreath (Area: Forsaken High Command - Difficulty: 0)
|
||||
(@CGUID+19, 44610, 0, 130, 5369, '0', 264, 0, 0, 0, 1360.81005859375, 1030.5699462890625, 56.87403106689453125, 0.645771801471710205, 120, 0, 0, 48120, 17040, 0, 0, 0, 0, 45338), -- Arthura (Area: Forsaken High Command - Difficulty: 0)
|
||||
(@CGUID+20, 44593, 0, 130, 5369, '0', 264, 0, 0, 0, 1376, 1029.6099853515625, 50.93743133544921875, 0.890117883682250976, 1, 0, 0, 1604, 0, 0, 0, 0, 0, 45338), -- Fallen Human (Area: Forsaken High Command - Difficulty: 0) (Auras: 80636 - Feigned)
|
||||
(@CGUID+21, 44592, 0, 130, 5369, '0', 264, 0, 0, 0, 1369.7099609375, 1040.18994140625, 51.02123260498046875, 5.585053443908691406, 1, 0, 0, 1604, 0, 0, 0, 0, 0, 45338), -- Fallen Human (Area: Forsaken High Command - Difficulty: 0) (Auras: 80636 - Feigned)
|
||||
(@CGUID+22, 44632, 0, 130, 5369, '0', 264, 0, 0, 1, 1367.1700439453125, 1082.1300048828125, 52.50803375244140625, 4.97418832778930664, 120, 0, 0, 3208, 0, 0, 0, 0, 0, 45338), -- Dark Ranger (Area: Forsaken High Command - Difficulty: 0)
|
||||
(@CGUID+23, 44592, 0, 130, 5369, '0', 264, 0, 0, 0, 1367.3299560546875, 1035.3800048828125, 51.3040313720703125, 0.890117883682250976, 1, 0, 0, 1604, 0, 0, 0, 0, 0, 45338), -- Fallen Human (Area: Forsaken High Command - Difficulty: 0) (Auras: 80636 - Feigned)
|
||||
(@CGUID+24, 44593, 0, 130, 5369, '0', 264, 0, 0, 0, 1372.5799560546875, 1038.0699462890625, 50.96663284301757812, 0.890117883682250976, 1, 0, 0, 1604, 0, 0, 0, 0, 0, 45338), -- Fallen Human (Area: Forsaken High Command - Difficulty: 0) (Auras: 80636 - Feigned)
|
||||
(@CGUID+25, 44632, 0, 130, 5369, '0', 264, 0, 0, 1, 1430.030029296875, 1022.59002685546875, 52.49113082885742187, 3.281219005584716796, 120, 0, 0, 3208, 0, 0, 0, 0, 0, 45338), -- Dark Ranger (Area: Forsaken High Command - Difficulty: 0)
|
||||
(@CGUID+26, 44609, 0, 130, 5369, '0', 264, 0, 0, 0, 1365.72998046875, 1024.97998046875, 57.02443313598632812, 1.134464025497436523, 120, 0, 0, 48120, 17040, 0, 0, 0, 0, 45338), -- Daschla (Area: Forsaken High Command - Difficulty: 0)
|
||||
(@CGUID+27, 44592, 0, 130, 5369, '0', 264, 0, 0, 0, 1377.300048828125, 1035.9300537109375, 51.09613037109375, 3.141592741012573242, 1, 0, 0, 1604, 0, 0, 0, 0, 0, 45338), -- Fallen Human (Area: Forsaken High Command - Difficulty: 0) (Auras: 80636 - Feigned)
|
||||
(@CGUID+28, 44632, 0, 130, 5369, '0', 264, 0, 0, 1, 1337.1400146484375, 1018.3900146484375, 54.7498321533203125, 3.59537816047668457, 120, 0, 0, 3208, 0, 0, 0, 0, 0, 45338), -- Dark Ranger (Area: Forsaken High Command - Difficulty: 0)
|
||||
(@CGUID+29, 44593, 0, 130, 5369, '0', 264, 0, 0, 0, 1375.199951171875, 1038.5799560546875, 51.2451324462890625, 4.555309295654296875, 1, 0, 0, 1604, 0, 0, 0, 0, 0, 45338), -- Fallen Human (Area: Forsaken High Command - Difficulty: 0) (Auras: 80636 - Feigned)
|
||||
(@CGUID+30, 44632, 0, 130, 5369, '0', 264, 0, 0, 1, 1438.05, 1068.76, 60.7803, 5.5573577880859375, 120, 10, 0, 3208, 0, 2, 0, 0, 0, 45338); -- Dark Ranger (Area: Forsaken High Command - Difficulty: 0) (possible waypoints or random movement)
|
||||
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@CGUID+12;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(@CGUID+12, 0, 29257, 0, 1, 0, 0, 0, 0, 3, ''); -- Lady Sylvanas Windrunner
|
||||
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+10;
|
||||
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, 20655, 0, 130, 5369, '0', 264, 0, 1544.2362060546875, 240.7725677490234375, -40.7835426330566406, 6.274459362030029296, 0, 0, -0.00436305999755859, 0.999990463256835937, 120, 255, 24, 45338), -- 0 (Area: Forsaken High Command - Difficulty: 0)
|
||||
(@OGUID+1, 176594, 0, 130, 5369, '0', 264, 0, 2389.09716796875, 337.902069091796875, 40.01292037963867187, 2.242745637893676757, 0, 0, 0.900697708129882812, 0.434446364641189575, 120, 255, 1, 45338), -- Doors (Area: Forsaken High Command - Difficulty: 0)
|
||||
(@OGUID+2, 20656, 0, 130, 5369, '0', 264, 0, 1553.2982177734375, 240.6560211181640625, 55.39519119262695312, 6.274459362030029296, 0, 0, -0.00436305999755859, 0.999990463256835937, 120, 255, 24, 45338), -- 0 (Area: Forsaken High Command - Difficulty: 0)
|
||||
(@OGUID+3, 20650, 0, 130, 5369, '0', 264, 0, 1596.037353515625, 282.7376708984375, 55.39520263671875, 4.703663349151611328, 0, 0, -0.71018505096435546, 0.704015016555786132, 120, 255, 24, 45338), -- 0 (Area: Forsaken High Command - Difficulty: 0)
|
||||
(@OGUID+4, 20654, 0, 130, 5369, '0', 264, 0, 1595.212158203125, 178.6932373046875, -40.5222587585449218, 4.703663349151611328, 0, 0, -0.71018505096435546, 0.704015016555786132, 120, 255, 24, 45338), -- 0 (Area: Forsaken High Command - Difficulty: 0)
|
||||
(@OGUID+5, 20652, 0, 130, 5369, '0', 264, 0, 1595.261474609375, 188.644378662109375, -40.7835426330566406, 1.562067151069641113, 0, 0, 0.704013824462890625, 0.710186243057250976, 120, 255, 24, 45338), -- 0 (Area: Forsaken High Command - Difficulty: 0)
|
||||
(@OGUID+6, 20651, 0, 130, 5369, '0', 264, 0, 1596.208984375, 302.400634765625, -40.6645088195800781, 1.562069892883300781, 0, 0, 0.704014778137207031, 0.71018528938293457, 120, 255, 24, 45338), -- 0 (Area: Forsaken High Command - Difficulty: 0)
|
||||
(@OGUID+7, 20657, 0, 130, 5369, '0', 264, 0, 1533.87841796875, 240.82550048828125, -32.3473320007324218, 3.132858037948608398, 0, 0, 0.999990463256835937, 0.004367320332676172, 120, 255, 24, 45338), -- 0 (Area: Forsaken High Command - Difficulty: 0)
|
||||
(@OGUID+8, 20649, 0, 130, 5369, '0', 264, 0, 1596.1539306640625, 291.79974365234375, 14.68224334716796875, 4.703663349151611328, 0, 0, -0.71018505096435546, 0.704015016555786132, 120, 255, 24, 45338), -- 0 (Area: Forsaken High Command - Difficulty: 0)
|
||||
(@OGUID+9, 20653, 0, 130, 5369, '0', 264, 0, 1595.3780517578125, 197.706451416015625, 55.39519119262695312, 1.562067151069641113, 0, 0, 0.704013824462890625, 0.710186243057250976, 120, 255, 24, 45338), -- 0 (Area: Forsaken High Command - Difficulty: 0)
|
||||
(@OGUID+10, 176594, 0, 130, 5369, '0', 264, 0, 2389.09716796875, 337.902069091796875, 40.01292037963867187, 2.242745637893676757, 0, 0, 0.900697708129882812, 0.434446364641189575, 120, 255, 1, 45338); -- Doors (Area: Forsaken High Command - Difficulty: 0)
|
||||
|
||||
DELETE FROM `gameobject_addon` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+10;
|
||||
INSERT INTO `gameobject_addon` (`guid`, `parent_rotation0`, `parent_rotation1`, `parent_rotation2`, `parent_rotation3`, `WorldEffectID`, `AIAnimKitID`) VALUES
|
||||
(@OGUID+0, 0, 0, -0.00436319690197706, 0.999990463256835937, 0, 0), -- 0
|
||||
(@OGUID+1, 0, 0, 0.900698184967041015, 0.434445321559906005, 0, 0), -- Doors
|
||||
(@OGUID+2, 0, 0, -0.00436319690197706, 0.999990463256835937, 0, 0), -- 0
|
||||
(@OGUID+3, 0, 0, -0.00436319690197706, 0.999990463256835937, 0, 0), -- 0
|
||||
(@OGUID+4, 0, 0, -0.00436319690197706, 0.999990463256835937, 0, 0), -- 0
|
||||
(@OGUID+5, 0, 0, -0.00436319690197706, 0.999990463256835937, 0, 0), -- 0
|
||||
(@OGUID+6, 0, 0, -0.00436319690197706, 0.999990463256835937, 0, 0), -- 0
|
||||
(@OGUID+7, 0, 0, -0.00436319690197706, 0.999990463256835937, 0, 0), -- 0
|
||||
(@OGUID+8, 0, 0, -0.00436319690197706, 0.999990463256835937, 0, 0), -- 0
|
||||
(@OGUID+9, 0, 0, -0.00436319690197706, 0.999990463256835937, 0, 0), -- 0
|
||||
(@OGUID+10, 0, 0, 0.900698184967041015, 0.434445321559906005, 0, 0); -- Doors
|
||||
|
||||
-- Dark Ranger
|
||||
UPDATE `creature_template` SET `minlevel`=30, `maxlevel`=30 WHERE `entry`=44632; -- Dark Ranger
|
||||
UPDATE `creature_template_addon` SET `bytes2`=258 WHERE `entry`=44632; -- 44632 (Dark Ranger)
|
||||
|
||||
SET @PATH := @CGUID+7 * 10;
|
||||
DELETE FROM `waypoint_data` WHERE `id`= @PATH;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`, `action`, `action_chance`, `wpguid`) VALUES
|
||||
(@PATH, 1, 1352.725, 1059.25, 53.049904, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 2, 1360.8423, 1063.4806, 53.141506, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 3, 1369.0923, 1071.7306, 53.391506, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 4, 1371.5746, 1074.4009, 53.789463, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 5, 1373.5746, 1076.4009, 53.289463, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 6, 1375.8246, 1078.6509, 53.039463, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 7, 1382.3246, 1085.6509, 53.289463, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 8, 1383.8246, 1086.9009, 53.539463, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 9, 1384.5746, 1087.6509, 53.789463, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 10, 1386.8806, 1090.0674, 54.586235, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 11, 1388.1306, 1091.5674, 54.836235, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 12, 1388.8806, 1092.3174, 55.086235, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 13, 1388.8806, 1092.3174, 55.336235, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 14, 1390.8806, 1092.5674, 55.836235, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 15, 1393.6306, 1093.0674, 57.086235, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 16, 1394.6306, 1093.3174, 57.336235, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 17, 1396.3806, 1093.8174, 58.336235, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 18, 1399.3806, 1094.3174, 59.586235, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 19, 1400.3806, 1094.5674, 59.836235, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 20, 1402.1306, 1095.0674, 60.336235, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 21, 1403.1306, 1095.3174, 60.586235, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 22, 1406.7034, 1095.9951, 60.7336, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 23, 1415.4838, 1085.996, 60.7336, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 24, 1419.93, 1084.92, 60.4786, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 25, 1415.3938, 1086.3098, 60.7336, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 26, 1406.312, 1096.0481, 60.624386, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 27, 1402.562, 1095.0481, 60.374386, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 28, 1400.562, 1094.5481, 59.874386, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 29, 1397.812, 1094.0481, 58.624386, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 30, 1396.812, 1093.7981, 58.374386, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 31, 1394.812, 1093.2981, 57.624386, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 32, 1394.062, 1093.0481, 57.124386, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 33, 1392.062, 1093.0481, 56.624386, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 34, 1371.224, 1074.0079, 53.60165, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 35, 1366.474, 1069.2579, 53.35165, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 36, 1360.3677, 1063.3889, 53.05648, NULL, 0, 0, 0, 0, 0);
|
||||
|
||||
DELETE FROM `creature_addon` WHERE `guid` = @CGUID+7;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `MountCreatureID`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(@CGUID+7, @PATH, 0, 0, 0, 258, 0, 0, 0, 0, 0, NULL);
|
||||
|
||||
SET @PATH := @CGUID+30 * 10;
|
||||
DELETE FROM `waypoint_data` WHERE `id`= @PATH;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`, `action`, `action_chance`, `wpguid`) VALUES
|
||||
(@PATH, 1, 1438.05, 1068.76, 60.7803, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 2, 1442.28, 1059.43, 60.7893, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 3, 1441.53, 1056.43, 60.5393, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 4, 1441.03, 1054.43, 60.2893, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 5, 1440.53, 1052.93, 59.7893, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 6, 1440.03, 1050.93, 59.2893, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 7, 1439.78, 1049.93, 59.0393, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 8, 1427.56, 1030.52, 52.9738, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 9, 1426.56, 1029.52, 52.9738, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 10, 1415.81, 1025.27, 53.2238, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 11, 1413.73, 1024.23, 53.1286, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 12, 1407.48, 1021.98, 53.3786, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 13, 1400.1, 1019.1, 53.3104, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 14, 1387.85, 1009.35, 53.0604, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 15, 1392.1951, 1012.625, 53.310387, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 16, 1400.496, 1019.28534, 53.38082, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 17, 1413.4482, 1024.3733, 53.147682, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 18, 1413.9482, 1024.6233, 53.147682, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 19, 1420.1982, 1026.8733, 52.897682, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 20, 1426.802, 1029.8049, 53.151054, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 21, 1428.552, 1032.0549, 53.401054, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 22, 1429.802, 1033.8049, 53.901054, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 23, 1430.802, 1035.3049, 54.151054, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 24, 1432.052, 1036.8049, 54.651054, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 25, 1432.552, 1037.5549, 54.901054, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 26, 1433.802, 1039.0549, 55.151054, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 27, 1434.302, 1040.0549, 55.401054, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 28, 1435.052, 1040.8049, 55.651054, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 29, 1436.052, 1042.3049, 56.151054, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 30, 1437.0781, 1043.4365, 56.76165, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 31, 1437.5781, 1044.1865, 57.26165, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 32, 1438.8281, 1045.9365, 57.76165, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 33, 1438.8281, 1046.1865, 58.01165, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 34, 1438.8281, 1046.1865, 58.26165, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 35, 1439.3281, 1047.9365, 58.26165, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 36, 1439.8281, 1049.9365, 59.01165, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 37, 1440.3281, 1051.6865, 59.51165, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 38, 1440.8281, 1053.6865, 60.01165, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 39, 1441.3281, 1055.4365, 60.26165, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 40, 1441.8103, 1057.7498, 60.610058, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 41, 1442.3103, 1059.4998, 60.610058, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 42, 1437.824, 1068.9791, 60.76616, NULL, 0, 0, 0, 0, 0),
|
||||
(@PATH, 43, 1429.38, 1076.24, 60.4836, NULL, 0, 0, 0, 0, 0);
|
||||
|
||||
DELETE FROM `creature_addon` WHERE `guid` = @CGUID+30;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `MountCreatureID`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(@CGUID+30, @PATH, 0, 0, 0, 258, 0, 0, 0, 0, 0, NULL);
|
||||
|
||||
-- Bat Handler Maggotbreath
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60 WHERE `entry`=44825; -- Bat Handler Maggotbreath
|
||||
|
||||
DELETE FROM `creature_template_addon` WHERE `entry` = 44825;
|
||||
INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(44825, 0, 0, 0, 257, 0, 0, 0, 0, 0, '');
|
||||
|
||||
-- Grand Executor Mortuus
|
||||
UPDATE `creature_template` SET `minlevel`=30, `maxlevel`=30 WHERE `entry`=44615; -- Grand Executor Mortuus
|
||||
|
||||
UPDATE `creature_template_addon` SET `visibilityDistanceType`=3, `bytes2`=257 WHERE `entry`=44615; -- 44615 (Grand Executor Mortuus)
|
||||
|
||||
-- Lady Sylvanas Windrunner
|
||||
UPDATE `creature_template` SET `minlevel`=30, `maxlevel`=30, `speed_walk`=1, `unit_flags2`=2099200 WHERE `entry`=44365; -- Lady Sylvanas Windrunner
|
||||
|
||||
DELETE FROM `creature_template_addon` WHERE `entry` = 44365;
|
||||
INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(44365, 0, 29257, 0, 1, 0, 0, 0, 0, 3, '');
|
||||
|
||||
-- Agatha
|
||||
UPDATE `creature_template` SET `minlevel`=30, `maxlevel`=30 WHERE `entry`=44608; -- Agatha
|
||||
|
||||
DELETE FROM `creature_template_addon` WHERE `entry` = 44608;
|
||||
INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(44608, 0, 0, 50331648, 1, 0, 0, 0, 0, 3, ''); -- 44608 (Agatha)
|
||||
|
||||
DELETE FROM `creature_template_movement` WHERE `CreatureId`=44608;
|
||||
INSERT INTO `creature_template_movement` (`CreatureId`, `Ground`, `Swim`, `Flight`, `Rooted`, `Chase`, `Random`, `InteractionPauseTimer`) VALUES
|
||||
(44608, NULL, NULL, 1, NULL, NULL, NULL, NULL);
|
||||
|
||||
-- Arthura
|
||||
UPDATE `creature_template` SET `minlevel`=30, `maxlevel`=30, `unit_flags2`=2099200, `HoverHeight`=2.799999952316284179 WHERE `entry`=44610; -- Arthura
|
||||
|
||||
DELETE FROM `creature_template_addon` WHERE `entry` = 44610;
|
||||
INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(44610, 0, 0, 50331648, 1, 0, 0, 0, 0, 3, ''); -- 44610 (Arthura)
|
||||
|
||||
DELETE FROM `creature_template_movement` WHERE `CreatureId`=44610;
|
||||
INSERT INTO `creature_template_movement` (`CreatureId`, `Ground`, `Swim`, `Flight`, `Rooted`, `Chase`, `Random`, `InteractionPauseTimer`) VALUES
|
||||
(44610, NULL, NULL, 1, NULL, NULL, NULL, NULL);
|
||||
|
||||
-- Daschla
|
||||
UPDATE `creature_template` SET `minlevel`=30, `maxlevel`=30, `unit_flags2`=2099200, `HoverHeight`=2.799999952316284179 WHERE `entry`=44609; -- Daschla
|
||||
|
||||
DELETE FROM `creature_template_addon` WHERE `entry` = 44609;
|
||||
INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(44609, 0, 0, 50331648, 1, 0, 0, 0, 0, 3, ''); -- 44609 (Daschla)
|
||||
|
||||
DELETE FROM `creature_template_movement` WHERE `CreatureId`=44609;
|
||||
INSERT INTO `creature_template_movement` (`CreatureId`, `Ground`, `Swim`, `Flight`, `Rooted`, `Chase`, `Random`, `InteractionPauseTimer`) VALUES
|
||||
(44609, NULL, NULL, 1, NULL, NULL, NULL, NULL);
|
||||
|
||||
-- Fallen Human
|
||||
UPDATE `creature_template` SET `minlevel`=30, `maxlevel`=30, `unit_flags2`=2048, `unit_flags3`=0 WHERE `entry` IN (44593, 44592); -- Fallen Human
|
||||
|
||||
DELETE FROM `creature_template_addon` WHERE `entry` IN (44593, 44592);
|
||||
INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(44593, 0, 0, 0, 1, 0, 0, 0, 0, 3, '80636'),
|
||||
(44592, 0, 0, 0, 1, 0, 0, 0, 0, 3, '80636');
|
||||
|
||||
DELETE FROM `spell_script_names` WHERE `spell_id`=80636 AND `ScriptName`='spell_gen_feign_death_no_prevent_emotes';
|
||||
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
|
||||
(80636, 'spell_gen_feign_death_no_prevent_emotes');
|
||||
@@ -1,78 +0,0 @@
|
||||
-- Grand Executor Mortuus
|
||||
UPDATE `creature_template` SET `ScriptName`='npc_silverpine_grand_executor_mortuus' WHERE `entry`=44615;
|
||||
|
||||
-- Lady Sylvanas Windrunner
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`= 44365;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `SoundPlayType`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(44365, 0, 0, 'Where is that ogre-headed buffoon?', 12, 0, 100, 6, 0, 20459, 0, 44695, 0, 'VO_QE_SP_Sylvanas_SPEvent01'),
|
||||
(44365, 1, 0, 'Ah, speak of the devil...', 12, 0, 100, 1, 0, 20460, 0, 44696, 0, 'VO_QE_SP_Sylvanas_SPEvent02'),
|
||||
(44365, 2, 0, 'Warchief, so glad you could make it.', 12, 0, 100, 1, 0, 20461, 0, 44701, 0, 'VO_QE_SP_Sylvanas_SPEvent03'),
|
||||
(44365, 3, 0, 'With the death of the Lich King, many of the more intelligent Scourge became... unemployed. Those \'fiends,\' as you so delicately put it, are called val\'kyr. They are under my command now...', 12, 0, 100, 0, 0, 20462, 0, 44702, 0, 'VO_QE_SP_Sylvanas_SPEvent04'),
|
||||
(44365, 4, 0, '...and they are part of the reason that I asked to see you.', 12, 0, 100, 1, 0, 20463, 0, 44703, 0, 'VO_QE_SP_Sylvanas_SPEvent05'),
|
||||
(44365, 5, 0, 'Very well, Warchief. I have solved the plight of the Forsaken!', 12, 0, 100, 5, 0, 20464, 0, 44705, 0, 'VO_QE_SP_Sylvanas_SPEvent06'),
|
||||
(44365, 6, 0, 'As a race, we Forsaken are unable to procreate.', 12, 0, 100, 274, 0, 20465, 0, 44706, 0, 'VO_QE_SP_Sylvanas_SPEvent07'),
|
||||
(44365, 7, 0, 'With the aid of the val\'kyr, we are now able to take the corpses of the fallen and create new Forsaken.', 12, 0, 100, 0, 0, 20466, 0, 44707, 0, 'VO_QE_SP_Sylvanas_SPEvent08'),
|
||||
(44365, 8, 0, 'Agatha, show the Warchief!', 12, 0, 100, 5, 0, 20467, 0, 44709, 0, 'VO_QE_SP_Sylvanas_SPEvent09'),
|
||||
(44365, 9, 0, 'Warchief, without these new Forsaken my people would die out... Our hold upon Gilneas and northern Lordaeron would crumble.', 12, 0, 100, 0, 0, 20468, 0, 44715, 0, 'VO_QE_SP_Sylvanas_SPEvent10'),
|
||||
(44365, 10, 0, 'Isn\'t it obvious, Warchief? I serve the Horde.', 12, 0, 100, 66, 0, 20469, 0, 44718, 0, 'VO_QE_SP_Sylvanas_SPEvent11');
|
||||
|
||||
-- Garrosh Hellscream
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` = 44629;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `SoundPlayType`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(44629, 0, 0, 'This better be important, Sylvanas. You know how I detest this place and its foul stench. Why have you called for me?', 12, 0, 100, 0, 0, 20496, 0, 44699, 0, 'VO_QE_Garrosh_SPEvent01'),
|
||||
(44629, 1, 0, 'And more importantly, what are those Scourge fiends doing here?', 12, 0, 100, 25, 0, 20497, 0, 44700, 0, 'VO_QE_Garrosh_SPEvent02'),
|
||||
(44629, 2, 0, 'Get on with it, Sylvanas.', 12, 0, 100, 1, 0, 20498, 0, 44704, 0, 'VO_QE_Garrosh_SPEvent03'),
|
||||
(44629, 3, 0, 'What you have done here, Sylvanas... it goes against the laws of nature. Disgusting is the only word I have to describe it.', 12, 0, 100, 0, 0, 20499, 0, 44714, 0, 'VO_QE_Garrosh_SPEvent04'),
|
||||
(44629, 4, 0, 'Have you given any thought to what this means, Sylvanas?', 12, 0, 100, 6, 0, 20500, 0, 44716, 0, 'VO_QE_Garrosh_SPEvent05'),
|
||||
(44629, 5, 0, 'What difference is there between you and the Lich King now?', 12, 0, 100, 6, 0, 20501, 0, 44717, 0, 'VO_QE_Garrosh_SPEvent06'),
|
||||
(44629, 6, 0, 'Watch your clever mouth.', 12, 0, 100, 397, 0, 20502, 0, 44719, 0, 'VO_QE_Garrosh_SPEvent07'),
|
||||
(44629, 7, 0, 'Cromush, you stay behind and make sure the Banshee Queen is well "guarded." I will be expecting a full report when next we meet.', 12, 0, 100, 0, 0, 20503, 0, 44720, 0, 'VO_QE_Garrosh_SPEvent08'),
|
||||
(44629, 8, 0, 'Remember, Sylvanas, eventually we all have to stand before our maker and face judgment. Your day may come sooner than others...', 12, 0, 100, 0, 0, 20504, 0, 44721, 0, 'VO_QE_Garrosh_SPEvent09');
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id` = 446290;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`, `action`, `action_chance`, `wpguid`) VALUES
|
||||
(446290, 0, 1377.69, 1048.67, 53.4456, NULL, 0, 0, 0, 0, 0),
|
||||
(446290, 1, 1373.69, 1052.17, 53.4456, NULL, 0, 0, 0, 0, 0),
|
||||
(446290, 2, 1365.23, 1058.61, 53.0524, NULL, 0, 0, 0, 0, 0);
|
||||
|
||||
-- High Warlord Cromush
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` = 44640;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `SoundPlayType`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(44640, 0, 0, 'ABBERATION!', 12, 0, 100, 5, 0, 0, 0, 44713, 0, 'VO_QE_SP_Crommush_SPEvent01'),
|
||||
(44640, 1, 0, 'As you command, Warchief.', 12, 0, 100, 66, 0, 0, 0, 44738, 0, 'VO_QE_SP_Crommush_SPEvent01');
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id` = 446402;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`, `action`, `action_chance`, `wpguid`) VALUES
|
||||
(446402, 0, 1412.05, 1089.42, 60.4771, NULL, 0, 1, 0, 0, 0),
|
||||
(446402, 1, 1405.38, 1095.16, 60.4774, NULL, 0, 1, 0, 0, 0),
|
||||
(446402, 2, 1392.62, 1093.5, 56.4067, NULL, 0, 1, 0, 0, 0),
|
||||
(446402, 3, 1380.65, 1083.27, 52.6221, NULL, 0, 1, 0, 0, 0),
|
||||
(446402, 4, 1372.86, 1062, 53.0398, NULL, 0, 1, 0, 0, 0),
|
||||
(446402, 5, 1376.69, 1048.61, 53.3362, NULL, 0, 1, 0, 0, 0),
|
||||
(446402, 6, 1375.32, 1046.38, 53.2336, NULL, 0, 1, 0, 0, 0);
|
||||
|
||||
-- Fallen Human
|
||||
UPDATE `creature_template` SET `ScriptName`='npc_silverpine_fallen_human' WHERE `entry` IN (44592, 44593);
|
||||
|
||||
DELETE FROM `creature_template_movement` WHERE `CreatureId` IN (44592, 44593);
|
||||
INSERT INTO `creature_template_movement` (`CreatureId`, `Ground`, `Swim`, `Flight`, `Rooted`, `Chase`, `Random`, `InteractionPauseTimer`) VALUES
|
||||
(44592, NULL, NULL, 1, NULL, NULL, NULL, NULL),
|
||||
(44593, NULL, NULL, 1, NULL, NULL, NULL, NULL);
|
||||
|
||||
-- Raise Forsaken (The Warchief Cometh)
|
||||
DELETE FROM `spell_script_names` WHERE `spell_id` = 83173 AND `ScriptName` = 'spell_silverpine_raise_forsaken_83173';
|
||||
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
|
||||
(83173, 'spell_silverpine_raise_forsaken_83173');
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceGroup`=1 AND `SourceEntry`=83173 AND `SourceId`=0 AND `ElseGroup`=0 AND `ConditionTypeOrReference`=31 AND `ConditionTarget`=0 AND `ConditionValue1`=3 AND `ConditionValue2`=44592 AND `ConditionValue3`=0;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `Comment`) VALUES
|
||||
(13, 1, 83173, 0, 0, 31, 0, 3, 44592, 0, 0, 'Raise Forsaken - Target Fallen Human (Male)');
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceGroup`=1 AND `SourceEntry`=83173 AND `SourceId`=0 AND `ElseGroup`=1 AND `ConditionTypeOrReference`=31 AND `ConditionTarget`=0 AND `ConditionValue1`=3 AND `ConditionValue2`=44593 AND `ConditionValue3`=0;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `Comment`) VALUES
|
||||
(13, 1, 83173, 0, 1, 31, 0, 3, 44593, 0, 0, 'Raise Forsaken - Target Fallen Human (Female)');
|
||||
|
||||
-- Forsaken Trooper Masterscript (The Warchief Cometh)
|
||||
DELETE FROM `spell_script_names` WHERE `spell_id` = 83149 AND `ScriptName` = 'spell_silverpine_forsaken_trooper_masterscript_high_command';
|
||||
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
|
||||
(83149, 'spell_silverpine_forsaken_trooper_masterscript_high_command');
|
||||
@@ -1,890 +0,0 @@
|
||||
SET @CGUID := 850253;
|
||||
SET @OGUID := 500515;
|
||||
|
||||
-- delete old stuff
|
||||
DELETE FROM `creature` WHERE `guid` IN(361957, 361958, 361959);
|
||||
DELETE FROM `gameobject` WHERE `guid` IN(226376, 226369, 226368, 226367, 226361, 226364, 226362, 226363, 226375, 226354);
|
||||
|
||||
-- Creature
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+23;
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `PhaseGroup`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES
|
||||
(@CGUID+0, 18927, 0, 1519, 5148, '0', 0, 0, 0, 4, -8855.1533203125, 651.25347900390625, 96.38057708740234375, 2.321287870407104492, 120, 0, 0, 11791, 0, 0, 0, 0, 0, 45338), -- Human Commoner (Area: Trade District - Difficulty: 0) (Auras: 65511 - Gossip NPC Appearance - Brewfest, 33209 - Gossip NPC Periodic - Despawn, 33207 - Gossip NPC Periodic - Fidget, 33208 - Gossip NPC Periodic - Talk)
|
||||
(@CGUID+1, 18927, 0, 1519, 5148, '0', 0, 0, 0, 0, -8856.7470703125, 652.8992919921875, 96.367340087890625, 5.462880611419677734, 120, 0, 0, 11791, 0, 0, 0, 0, 0, 45338), -- Human Commoner (Area: Trade District - Difficulty: 0) (Auras: 65511 - Gossip NPC Appearance - Brewfest, 33209 - Gossip NPC Periodic - Despawn, 33207 - Gossip NPC Periodic - Fidget, 33208 - Gossip NPC Periodic - Talk)
|
||||
(@CGUID+2, 18927, 0, 1519, 5148, '0', 0, 0, 0, 6, -8835.80078125, 559.625, 95.37226104736328125, 2.356194496154785156, 120, 0, 0, 11791, 0, 0, 0, 0, 0, 45338), -- Human Commoner (Area: Trade District - Difficulty: 0) (Auras: 65511 - Gossip NPC Appearance - Brewfest, 33209 - Gossip NPC Periodic - Despawn, 33207 - Gossip NPC Periodic - Fidget, 33208 - Gossip NPC Periodic - Talk)
|
||||
(@CGUID+3, 18927, 0, 1519, 5148, '0', 0, 0, 0, 0, -8836.97265625, 560.6805419921875, 95.29747772216796875, 5.602506637573242187, 120, 0, 0, 11791, 0, 0, 0, 0, 0, 45338), -- Human Commoner (Area: Trade District - Difficulty: 0) (Auras: 65511 - Gossip NPC Appearance - Brewfest, 33209 - Gossip NPC Periodic - Despawn, 33207 - Gossip NPC Periodic - Fidget, 33208 - Gossip NPC Periodic - Talk)
|
||||
(@CGUID+4, 18927, 0, 1519, 5149, '0', 0, 0, 0, 7, -8642.9794921875, 439.052093505859375, 101.6998977661132812, 1.256637096405029296, 120, 0, 0, 11791, 0, 0, 0, 0, 0, 45338), -- Human Commoner (Area: Old Town - Difficulty: 0) (Auras: 65511 - Gossip NPC Appearance - Brewfest, 33209 - Gossip NPC Periodic - Despawn, 33207 - Gossip NPC Periodic - Fidget, 33208 - Gossip NPC Periodic - Talk)
|
||||
(@CGUID+5, 18927, 0, 1519, 5149, '0', 0, 0, 0, 0, -8642.3974609375, 440.9757080078125, 101.9238739013671875, 4.433136463165283203, 120, 0, 0, 11791, 0, 0, 0, 0, 0, 45338), -- Human Commoner (Area: Old Town - Difficulty: 0) (Auras: 65511 - Gossip NPC Appearance - Brewfest, 33209 - Gossip NPC Periodic - Despawn, 33207 - Gossip NPC Periodic - Fidget, 33208 - Gossip NPC Periodic - Talk)
|
||||
(@CGUID+6, 18927, 0, 1519, 5150, '0', 0, 0, 0, 5, -8366.1611328125, 615.2257080078125, 95.3541717529296875, 2.635447263717651367, 120, 0, 0, 11791, 0, 0, 0, 0, 0, 45338), -- Human Commoner (Area: Dwarven District - Difficulty: 0) (Auras: 65511 - Gossip NPC Appearance - Brewfest, 33209 - Gossip NPC Periodic - Despawn, 33207 - Gossip NPC Periodic - Fidget, 33208 - Gossip NPC Periodic - Talk)
|
||||
(@CGUID+7, 18927, 0, 1519, 5150, '0', 0, 0, 0, 0, -8368.1962890625, 616.234375, 95.25559234619140625, 5.846852779388427734, 120, 0, 0, 11791, 0, 0, 0, 0, 0, 45338), -- Human Commoner (Area: Dwarven District - Difficulty: 0) (Auras: 65511 - Gossip NPC Appearance - Brewfest, 33209 - Gossip NPC Periodic - Despawn, 33207 - Gossip NPC Periodic - Fidget, 33208 - Gossip NPC Periodic - Talk)
|
||||
(@CGUID+8, 18927, 0, 1519, 5154, '0', 0, 0, 0, 0, -9038.0732421875, 860.951416015625, 107.1946487426757812, 4.520402908325195312, 120, 0, 0, 11791, 0, 0, 0, 0, 0, 45338), -- Human Commoner (Area: Mage Quarter - Difficulty: 0) (Auras: 65511 - Gossip NPC Appearance - Brewfest, 33209 - Gossip NPC Periodic - Despawn, 33207 - Gossip NPC Periodic - Fidget, 33208 - Gossip NPC Periodic - Talk)
|
||||
(@CGUID+9, 18927, 0, 1519, 5154, '0', 0, 0, 0, 7, -9038.5244140625, 858.94097900390625, 107.19451904296875, 1.308996915817260742, 120, 0, 0, 11791, 0, 0, 0, 0, 0, 45338), -- Human Commoner (Area: Mage Quarter - Difficulty: 0) (Auras: 65511 - Gossip NPC Appearance - Brewfest, 33209 - Gossip NPC Periodic - Despawn, 33207 - Gossip NPC Periodic - Fidget, 33208 - Gossip NPC Periodic - Talk)
|
||||
(@CGUID+10, 40441, 0, 1519, 5148, '0', 0, 0, 0, 0, -8835.66015625, 639.55206298828125, 96.187744140625, 4.066617012023925781, 120, 0, 0, 11791, 0, 0, 0, 0, 0, 45338), -- Battered Brewmaster (Area: Trade District - Difficulty: 0)
|
||||
(@CGUID+11, 153931, 0, 12, 7486, '0', '0', 0, 0, 3, -9133.109375, 352.23089599609375, 92.892364501953125, 3.181359052658081054, 120, 0, 0, 11791, 0, 0, 0, 0, 0, 45338), -- Brewfest Reveler (Area: -Unknown- - Difficulty: 0) (Auras: 300441 - -Unknown-)
|
||||
(@CGUID+12, 153931, 0, 12, 7486, '0', '0', 0, 0, 6, -9138.0849609375, 335.118072509765625, 92.0803985595703125, 1.621237158775329589, 120, 0, 0, 11791, 0, 0, 0, 0, 0, 45338), -- Brewfest Reveler (Area: -Unknown- - Difficulty: 0) (Auras: 300447 - -Unknown-)
|
||||
(@CGUID+13, 153931, 0, 12, 7486, '0', '0', 0, 0, 2, -9135.498046875, 353.383697509765625, 92.45139312744140625, 5.1783447265625, 120, 0, 0, 11791, 0, 0, 0, 0, 0, 45338), -- Brewfest Reveler (Area: -Unknown- - Difficulty: 0) (Auras: 300442 - -Unknown-)
|
||||
(@CGUID+14, 153931, 0, 12, 7486, '0', '0', 0, 0, 5, -9127.341796875, 342.84722900390625, 93.7291717529296875, 4.930837631225585937, 120, 0, 0, 11791, 0, 0, 0, 0, 0, 45338), -- Brewfest Reveler (Area: -Unknown- - Difficulty: 0) (Auras: 300450 - -Unknown-)
|
||||
(@CGUID+15, 153931, 0, 12, 7486, '0', '0', 0, 0, 6, -9135.623046875, 350.361114501953125, 92.4774322509765625, 0.866958022117614746, 120, 0, 0, 11791, 0, 0, 0, 0, 0, 45338), -- Brewfest Reveler (Area: -Unknown- - Difficulty: 0) (Auras: 300442 - -Unknown-)
|
||||
(@CGUID+16, 153931, 0, 12, 7486, '0', '0', 0, 0, 1, -9128.7236328125, 339.298614501953125, 93.88889312744140625, 0.202819958329200744, 120, 0, 0, 11791, 0, 0, 0, 0, 0, 45338), -- Brewfest Reveler (Area: -Unknown- - Difficulty: 0) (Auras: 300449 - -Unknown-)
|
||||
(@CGUID+17, 153931, 0, 12, 7486, '0', '0', 0, 0, 4, -9125.109375, 338.3819580078125, 94.046875, 1.994780659675598144, 120, 0, 0, 11791, 0, 0, 0, 0, 0, 45338), -- Brewfest Reveler (Area: -Unknown- - Difficulty: 0) (Auras: 300447 - -Unknown-)
|
||||
(@CGUID+18, 153931, 0, 12, 7486, '0', '0', 0, 0, 5, -9137.98828125, 338.805572509765625, 92.26348876953125, 4.651520729064941406, 120, 0, 0, 11791, 0, 0, 0, 0, 0, 45338), -- Brewfest Reveler (Area: -Unknown- - Difficulty: 0) (Auras: 300447 - -Unknown-)
|
||||
(@CGUID+19, 153931, 0, 12, 7486, '0', '0', 0, 0, 6, -9124.2236328125, 341.4757080078125, 94.2743072509765625, 3.549948930740356445, 120, 0, 0, 11791, 0, 0, 0, 0, 0, 45338), -- Brewfest Reveler (Area: -Unknown- - Difficulty: 0) (Auras: 300444 - -Unknown-)
|
||||
(@CGUID+20, 23482, 0, 12, 7486, '0', '0', 0, 0, 0, -9118.478515625, 348.45550537109375, 93.9492340087890625, 3.787364482879638671, 120, 0, 0, 11791, 0, 0, 0, 0, 0, 45338), -- Barleybrew Apprentice (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+21, 23510, 0, 12, 7486, '0', '0', 0, 0, 0, -9114.78515625, 338.7652587890625, 93.627655029296875, 2.914699792861938476, 120, 0, 0, 11791, 0, 0, 0, 0, 0, 45338), -- Thunderbrew Apprentice (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+22, 155345, 0, 12, 7486, '0', '0', 0, 0, 0, -9126.232421875, 342.791656494140625, 94.23699951171875, 0, 120, 0, 0, 11791, 0, 0, 0, 0, 0, 45338), -- [DNT] Brewfest Music (Area: -Unknown- - Difficulty: 0)
|
||||
(@CGUID+23, 23511, 0, 12, 7486, '0', '0', 0, 0, 0, -9121.544921875, 328.48785400390625, 93.27951812744140625, 2.103765249252319335, 120, 0, 0, 11791, 0, 0, 0, 0, 0, 45338); -- Gordok Brew Apprentice (Area: -Unknown- - Difficulty: 0)
|
||||
|
||||
-- GameObject
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+374;
|
||||
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, 195264, 0, 1519, 5148, '0', 0, 0, -8856.1484375, 671.78057861328125, 98.84055328369140625, 5.969027042388916015, 0, 0, -0.1564340591430664, 0.987688362598419189, 120, 255, 1, 45338), -- Standing, Interior, Medium - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+1, 195266, 0, 1519, 5148, '0', 0, 0, -8860.6826171875, 662.83843994140625, 101.1599884033203125, 5.35816192626953125, 0, 0, -0.446197509765625, 0.894934535026550292, 120, 255, 1, 45338), -- Hanging, Streamer - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+2, 195260, 0, 1519, 5148, '0', 0, 0, -8855.509765625, 650.281005859375, 97.19789886474609375, 1.85004889965057373, 0, 0, 0.798635482788085937, 0.60181504487991333, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+3, 367977, 0, 1519, 5148, '0', 0, 0, -8858.5, 646.4840087890625, 99.142303466796875, 3.752462387084960937, 0, 0, -0.95371627807617187, 0.300707906484603881, 120, 255, 1, 45338), -- Standing, Interior, Small 2 - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+4, 367977, 0, 1519, 5148, '0', 0, 0, -8858.4697265625, 650.91302490234375, 99.12270355224609375, 5.148722648620605468, 0, 0, -0.53729915618896484, 0.843391716480255126, 120, 255, 1, 45338), -- Standing, Interior, Small 2 - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+5, 367978, 0, 1519, 5148, '0', 0, 0, -8857.8701171875, 649.3189697265625, 100.7580032348632812, 5.445427894592285156, 0, 0, -0.40673637390136718, 0.913545548915863037, 120, 255, 1, 45338), -- Standing, Interior, Small 3 - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+6, 195265, 0, 1519, 5148, '0', 0, 0, -8884.16015625, 565.98101806640625, 93.18990325927734375, 0.715584874153137207, 0, 0, 0.350207328796386718, 0.936672210693359375, 120, 255, 1, 45338), -- Standing, Large - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+7, 195256, 0, 1519, 5148, '0', 0, 0, -8879.1787109375, 649.49188232421875, 96.0198211669921875, 0.488691210746765136, 0, 0, 0.241921424865722656, 0.970295846462249755, 120, 255, 1, 45338), -- Standing, Exterior, Medium - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+8, 195260, 0, 1519, 5148, '0', 0, 0, -8901.25, 623.21697998046875, 100.7139968872070312, 5.183629035949707031, 0, 0, -0.52249813079833984, 0.852640450000762939, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+9, 195263, 0, 1519, 5148, '0', 0, 0, -8840.8203125, 660.00201416015625, 99.18509674072265625, 3.543023586273193359, 0, 0, -0.97992420196533203, 0.199370384216308593, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+10, 195265, 0, 1519, 5148, '0', 0, 0, -8894.5595703125, 579.27398681640625, 92.986602783203125, 0.994837164878845214, 0, 0, 0.477158546447753906, 0.878817260265350341, 120, 255, 1, 45338), -- Standing, Large - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+11, 195260, 0, 1519, 5148, '0', 0, 0, -8857.830078125, 644.77398681640625, 97.18630218505859375, 3.281238555908203125, 0, 0, -0.99756336212158203, 0.069766148924827575, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+12, 195273, 0, 1519, 5148, '0', 0, 0, -8821.4501953125, 670.08001708984375, 101.305999755859375, 5.148722648620605468, 0, 0, -0.53729915618896484, 0.843391716480255126, 120, 255, 1, 45338), -- Hanging, Tall/Thin, Medium - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+13, 367977, 0, 1519, 5148, '0', 0, 0, -8857.2001953125, 647.72198486328125, 99.1681976318359375, 4.625123500823974609, 0, 0, -0.73727703094482421, 0.67559051513671875, 120, 255, 1, 45338), -- Standing, Interior, Small 2 - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+14, 367978, 0, 1519, 5148, '0', 0, 0, -8860.0703125, 647.14898681640625, 100.7379989624023437, 0.977383077144622802, 0, 0, 0.469470977783203125, 0.882947921752929687, 120, 255, 1, 45338), -- Standing, Interior, Small 3 - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+15, 195264, 0, 1519, 5148, '0', 0, 0, -8895.2900390625, 618.68597412109375, 101.2580032348632812, 3.385940074920654296, 0, 0, -0.99254608154296875, 0.121869951486587524, 120, 255, 1, 45338), -- Standing, Interior, Medium - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+16, 195260, 0, 1519, 5148, '0', 0, 0, -8898.76953125, 624.61602783203125, 100.7139968872070312, 5.201082706451416015, 0, 0, -0.51503753662109375, 0.857167601585388183, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+17, 195264, 0, 1519, 5148, '0', 0, 0, -8908.6103515625, 643.5560302734375, 101.2699966430664062, 0.488691210746765136, 0, 0, 0.241921424865722656, 0.970295846462249755, 120, 255, 1, 45338), -- Standing, Interior, Medium - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+18, 195266, 0, 1519, 5148, '0', 0, 0, -8871.8974609375, 682.27740478515625, 102.2920913696289062, 5.288348197937011718, 0, 0, -0.4771585464477539, 0.878817260265350341, 120, 255, 1, 45338), -- Hanging, Streamer - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+19, 195260, 0, 1519, 5148, '0', 0, 0, -8863.2099609375, 650.3389892578125, 97.074798583984375, 3.159062385559082031, 0, 0, -0.99996185302734375, 0.008734640665352344, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+20, 367977, 0, 1519, 5148, '0', 0, 0, -8861.6396484375, 649.60198974609375, 99.079803466796875, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 45338), -- Standing, Interior, Small 2 - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+21, 367978, 0, 1519, 5148, '0', 0, 0, -8857.8603515625, 648.05902099609375, 100.7679977416992187, 3.281238555908203125, 0, 0, -0.99756336212158203, 0.069766148924827575, 120, 255, 1, 45338), -- Standing, Interior, Small 3 - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+22, 195260, 0, 1519, 5148, '0', 0, 0, -8860.9599609375, 652.5469970703125, 97.09059906005859375, 3.473210096359252929, 0, 0, -0.98628520965576171, 0.165049895644187927, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+23, 367977, 0, 1519, 5148, '0', 0, 0, -8861.66015625, 647.77801513671875, 99.0941009521484375, 2.146752834320068359, 0, 0, 0.878816604614257812, 0.477159708738327026, 120, 255, 1, 45338), -- Standing, Interior, Small 2 - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+24, 367978, 0, 1519, 5148, '0', 0, 0, -8858.7900390625, 650.28997802734375, 100.7350006103515625, 1.448621988296508789, 0, 0, 0.662619590759277343, 0.748956084251403808, 120, 255, 1, 45338), -- Standing, Interior, Small 3 - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+25, 195260, 0, 1519, 5148, '0', 0, 0, -8857.759765625, 652.56402587890625, 97.1490020751953125, 5.829400539398193359, 0, 0, -0.22495079040527343, 0.974370121955871582, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+26, 195256, 0, 1519, 5148, '0', 0, 0, -8874.091796875, 640.25860595703125, 96.08939361572265625, 0.541050612926483154, 0, 0, 0.267237663269042968, 0.96363067626953125, 120, 255, 1, 45338), -- Standing, Exterior, Medium - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+27, 195266, 0, 1519, 5148, '0', 0, 0, -8904.8701171875, 629.76898193359375, 108.4390029907226562, 3.647741317749023437, 0, 0, -0.96814727783203125, 0.250381410121917724, 120, 255, 1, 45338), -- Hanging, Streamer - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+28, 367977, 0, 1519, 5148, '0', 0, 0, -8860.2900390625, 646.5050048828125, 99.125396728515625, 5.113816738128662109, 0, 0, -0.55193614959716796, 0.833886384963989257, 120, 255, 1, 45338), -- Standing, Interior, Small 2 - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+29, 367978, 0, 1519, 5148, '0', 0, 0, -8858.76953125, 647.10198974609375, 100.7610015869140625, 4.031712055206298828, 0, 0, -0.90258502960205078, 0.430511653423309326, 120, 255, 1, 45338), -- Standing, Interior, Small 3 - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+30, 195260, 0, 1519, 5148, '0', 0, 0, -8860.8896484375, 644.79302978515625, 97.1533966064453125, 3.630291461944580078, 0, 0, -0.97029495239257812, 0.241925001144409179, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+31, 195263, 0, 1519, 5148, '0', 0, 0, -8842.4296875, 716.519287109375, 109.501068115234375, 2.024578809738159179, 0, 0, 0.848047256469726562, 0.529920578002929687, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+32, 195260, 0, 1519, 5148, '0', 0, 0, -8908.2802734375, 636.25, 100.7139968872070312, 2.024578809738159179, 0, 0, 0.848047256469726562, 0.529920578002929687, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+33, 195263, 0, 1519, 5148, '0', 0, 0, -8832.990234375, 641.9110107421875, 99.12180328369140625, 3.43830275535583496, 0, 0, -0.98901557922363281, 0.147811368107795715, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+34, 367977, 0, 1519, 5148, '0', 0, 0, -8857.1396484375, 649.64202880859375, 99.15450286865234375, 5.35816192626953125, 0, 0, -0.446197509765625, 0.894934535026550292, 120, 255, 1, 45338), -- Standing, Interior, Small 2 - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+35, 367978, 0, 1519, 5148, '0', 0, 0, -8860.98046875, 648.09197998046875, 100.71600341796875, 0.226892471313476562, 0, 0, 0.113203048706054687, 0.993571877479553222, 120, 255, 1, 45338), -- Standing, Interior, Small 3 - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+36, 195260, 0, 1519, 5148, '0', 0, 0, -8905.759765625, 637.5780029296875, 100.7139968872070312, 5.166176319122314453, 0, 0, -0.52991867065429687, 0.84804844856262207, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+37, 195273, 0, 1519, 5148, '0', 0, 0, -8812.5302734375, 649.03497314453125, 101.2009963989257812, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 45338), -- Hanging, Tall/Thin, Medium - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+38, 195260, 0, 1519, 5148, '0', 0, 0, -8863.2197265625, 647.09002685546875, 97.08480072021484375, 2.827429771423339843, 0, 0, 0.987688064575195312, 0.156436234712600708, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+39, 195263, 0, 1519, 5148, '0', 0, 0, -8819.5205078125, 643.828125, 97.83412933349609375, 5.201082706451416015, 0, 0, -0.51503753662109375, 0.857167601585388183, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+40, 367977, 0, 1519, 5148, '0', 0, 0, -8860.3203125, 650.947998046875, 99.0919036865234375, 2.303830623626708984, 0, 0, 0.913544654846191406, 0.406738430261611938, 120, 255, 1, 45338), -- Standing, Interior, Small 2 - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+41, 367978, 0, 1519, 5148, '0', 0, 0, -8860.98046875, 649.3389892578125, 100.707000732421875, 0.017452461645007133, 0, 0, 0.008726119995117187, 0.999961912631988525, 120, 255, 1, 45338), -- Standing, Interior, Small 3 - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+42, 195260, 0, 1519, 5148, '0', 0, 0, -8855.4697265625, 647.093994140625, 97.2158966064453125, 2.426007747650146484, 0, 0, 0.936672210693359375, 0.350207358598709106, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+43, 367978, 0, 1519, 5148, '0', 0, 0, -8860.0595703125, 650.2760009765625, 100.714996337890625, 1.588248729705810546, 0, 0, 0.713250160217285156, 0.700909554958343505, 120, 255, 1, 45338), -- Standing, Interior, Small 3 - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+44, 195256, 0, 1519, 5148, '0', 0, 0, -8833.5234375, 541.75274658203125, 96.9852752685546875, 0.942476630210876464, 0, 0, 0.453989982604980468, 0.891006767749786376, 120, 255, 1, 45338), -- Standing, Exterior, Medium - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+45, 195256, 0, 1519, 5148, '0', 0, 0, -8839.07421875, 545.26629638671875, 96.83765411376953125, 1.012289404869079589, 0, 0, 0.484808921813964843, 0.87462007999420166, 120, 255, 1, 45338), -- Standing, Exterior, Medium - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+46, 195254, 0, 1519, 5148, '0', 0, 0, -8852.5283203125, 539.68133544921875, 117.809112548828125, 0.24434557557106018, 0, 0, 0.121869087219238281, 0.9925462007522583, 120, 255, 1, 45338), -- Hanging, Square, Large - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+47, 195253, 0, 1519, 5148, '0', 0, 0, -8862.3466796875, 489.577789306640625, 122.2630386352539062, 3.822272777557373046, 0, 0, -0.94264125823974609, 0.333807557821273803, 120, 255, 1, 45338), -- Hanging, Streamer x3 - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+48, 195254, 0, 1519, 5148, '0', 0, 0, -8951.5673828125, 538.97918701171875, 97.63472747802734375, 3.804818391799926757, 0, 0, -0.94551849365234375, 0.325568377971649169, 120, 255, 1, 45338), -- Hanging, Square, Large - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+49, 195254, 0, 1519, 5148, '0', 0, 0, -8936.01953125, 519.77606201171875, 97.50989532470703125, 3.769911527633666992, 0, 0, -0.95105648040771484, 0.309017121791839599, 120, 255, 1, 45338), -- Hanging, Square, Large - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+50, 195265, 0, 1519, 1617, '0', 0, 0, -8973.23046875, 491.10400390625, 97.04229736328125, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 45338), -- Standing, Large - Brewfest (Area: Valley of Heroes - Difficulty: 0)
|
||||
(@OGUID+51, 195265, 0, 1519, 1617, '0', 0, 0, -8987.8095703125, 509.178985595703125, 97.07109832763671875, 5.480334281921386718, 0, 0, -0.39073085784912109, 0.920504987239837646, 120, 255, 1, 45338), -- Standing, Large - Brewfest (Area: Valley of Heroes - Difficulty: 0)
|
||||
(@OGUID+52, 195265, 0, 1519, 1617, '0', 0, 0, -9018.01953125, 485.072998046875, 97.101898193359375, 5.427974700927734375, 0, 0, -0.41469287872314453, 0.909961462020874023, 120, 255, 1, 45338), -- Standing, Large - Brewfest (Area: Valley of Heroes - Difficulty: 0)
|
||||
(@OGUID+53, 195265, 0, 1519, 1617, '0', 0, 0, -9003.5498046875, 467.0360107421875, 97.11280059814453125, 2.129300594329833984, 0, 0, 0.874619483947753906, 0.484810054302215576, 120, 255, 1, 45338), -- Standing, Large - Brewfest (Area: Valley of Heroes - Difficulty: 0)
|
||||
(@OGUID+54, 186737, 0, 1519, 1617, '0', 0, 0, -9111.8388671875, 351.595489501953125, 93.2698974609375, 5.615478038787841796, 0.019821643829345703, 0.004260063171386718, -0.32779121398925781, 0.944532632827758789, 120, 255, 1, 45338), -- Brewfest Wagon Loaded (Area: Valley of Heroes - Difficulty: 0)
|
||||
(@OGUID+55, 186717, 0, 1519, 1617, '0', 0, 0, -9124.60546875, 357.99884033203125, 92.98186492919921875, 3.90954136848449707, 0, 0, -0.92718315124511718, 0.37460830807685852, 120, 255, 1, 45338), -- Brewfest Banner (Area: Valley of Heroes - Difficulty: 0)
|
||||
(@OGUID+56, 186717, 0, 1519, 1617, '0', 0, 0, -9137.3642578125, 389.87890625, 90.97507476806640625, 0.366517573595046997, 0, 0, 0.182234764099121093, 0.98325502872467041, 120, 255, 1, 45338), -- Brewfest Banner (Area: Valley of Heroes - Difficulty: 0)
|
||||
(@OGUID+57, 186717, 0, 1519, 1617, '0', 0, 0, -9114.4912109375, 342.775390625, 93.66717529296875, 3.001946926116943359, 0, 0, 0.997563362121582031, 0.069766148924827575, 120, 255, 1, 45338), -- Brewfest Banner (Area: Valley of Heroes - Difficulty: 0)
|
||||
(@OGUID+58, 186717, 0, 1519, 1617, '0', 0, 0, -9137.0625, 372.11529541015625, 90.57259368896484375, 1.466075778007507324, 0, 0, 0.669130325317382812, 0.74314504861831665, 120, 255, 1, 45338), -- Brewfest Banner (Area: Valley of Heroes - Difficulty: 0)
|
||||
(@OGUID+59, 195265, 0, 1519, 1617, '0', 0, 0, -9071.2099609375, 449.920013427734375, 93.285797119140625, 0.331610709428787231, 0, 0, 0.16504669189453125, 0.986285746097564697, 120, 255, 1, 45338), -- Standing, Large - Brewfest (Area: Valley of Heroes - Difficulty: 0)
|
||||
(@OGUID+60, 195265, 0, 1519, 1617, '0', 0, 0, -9063.1396484375, 456.014007568359375, 93.27629852294921875, 5.305802345275878906, 0, 0, -0.46947097778320312, 0.882947921752929687, 120, 255, 1, 45338), -- Standing, Large - Brewfest (Area: Valley of Heroes - Difficulty: 0)
|
||||
(@OGUID+61, 195265, 0, 1519, 1617, '0', 0, 0, -9043.3203125, 430.9110107421875, 93.28790283203125, 2.303830623626708984, 0, 0, 0.913544654846191406, 0.406738430261611938, 120, 255, 1, 45338), -- Standing, Large - Brewfest (Area: Valley of Heroes - Difficulty: 0)
|
||||
(@OGUID+62, 195265, 0, 1519, 1617, '0', 0, 0, -9050.5703125, 424.714996337890625, 93.285003662109375, 2.286378860473632812, 0, 0, 0.909960746765136718, 0.414694398641586303, 120, 255, 1, 45338), -- Standing, Large - Brewfest (Area: Valley of Heroes - Difficulty: 0)
|
||||
(@OGUID+63, 195255, 0, 1519, 1617, '0', 0, 0, -9062.1103515625, 436.52301025390625, 111.1930007934570312, 3.78736734390258789, 0, 0, -0.94832324981689453, 0.317305892705917358, 120, 255, 1, 45338), -- Hanging, Tall/Thin, Large - Brewfest (Area: Valley of Heroes - Difficulty: 0)
|
||||
(@OGUID+64, 195254, 0, 1519, 1617, '0', 0, 0, -9065.8798828125, 414.82598876953125, 98.7891998291015625, 2.251473426818847656, 0, 0, 0.902585029602050781, 0.430511653423309326, 120, 255, 1, 45338), -- Hanging, Square, Large - Brewfest (Area: Valley of Heroes - Difficulty: 0)
|
||||
(@OGUID+65, 195265, 0, 1519, 1617, '0', 0, 0, -9089.3798828125, 431.970001220703125, 92.8513031005859375, 5.445427894592285156, 0, 0, -0.40673637390136718, 0.913545548915863037, 120, 255, 1, 45338), -- Standing, Large - Brewfest (Area: Valley of Heroes - Difficulty: 0)
|
||||
(@OGUID+66, 195254, 0, 1519, 1617, '0', 0, 0, -9083.6298828125, 437.9429931640625, 98.2519989013671875, 5.462882041931152343, 0, 0, -0.39874839782714843, 0.917060375213623046, 120, 255, 1, 45338), -- Hanging, Square, Large - Brewfest (Area: Valley of Heroes - Difficulty: 0)
|
||||
(@OGUID+67, 195265, 0, 1519, 1617, '0', 0, 0, -9072.8095703125, 411.154998779296875, 92.744903564453125, 0.226892471313476562, 0, 0, 0.113203048706054687, 0.993571877479553222, 120, 255, 1, 45338), -- Standing, Large - Brewfest (Area: Valley of Heroes - Difficulty: 0)
|
||||
(@OGUID+68, 186183, 0, 12, 7486, '0', '0', 0, -9120.4345703125, 356.536468505859375, 93.25022125244140625, 0.75047844648361206, 0, 0, 0.366495132446289062, 0.930419981479644775, 120, 255, 1, 45338), -- Barleybrew Festive Keg (Area: -Unknown- - Difficulty: 0)
|
||||
(@OGUID+69, 326705, 0, 12, 7486, '0', '0', 0, -9116.0205078125, 347.00347900390625, 93.77057647705078125, 0, 0, 0, 0, 1, 120, 255, 1, 45338), -- Brewfest Torch (Area: -Unknown- - Difficulty: 0)
|
||||
(@OGUID+70, 186683, 0, 12, 7486, '0', '0', 0, -9107.7412109375, 340.62152099609375, 93.30258941650390625, 0.831298112869262695, 0, 0, 0.403783798217773437, 0.914854466915130615, 120, 255, 1, 45338), -- Empty Brew Wagon (Area: -Unknown- - Difficulty: 0)
|
||||
(@OGUID+71, 327165, 0, 12, 7486, '0', '0', 0, -9108.7919921875, 341.149322509765625, 94.8296051025390625, 0.831298112869262695, 0, 0, 0.403783798217773437, 0.914854466915130615, 120, 255, 1, 45338), -- Keg (Area: -Unknown- - Difficulty: 0)
|
||||
(@OGUID+72, 186717, 0, 12, 7486, '0', '0', 0, -9184.3330078125, 334.999664306640625, 82.31685638427734375, 5.026549339294433593, 0, 0, -0.5877847671508789, 0.809017360210418701, 120, 255, 1, 45338), -- Brewfest Banner (Area: -Unknown- - Difficulty: 0)
|
||||
(@OGUID+73, 186717, 0, 12, 7486, '0', '0', 0, -9129.2763671875, 326.677093505859375, 93.44791412353515625, 1.448324084281921386, 0, 0, 0.662508010864257812, 0.74905484914779663, 120, 255, 1, 45338), -- Brewfest Banner (Area: -Unknown- - Difficulty: 0)
|
||||
(@OGUID+74, 292549, 0, 12, 7486, '0', '0', 0, -9121.90625, 325.99652099609375, 93.22713470458984375, 6.15463113784790039, 0, 0, -0.06423282623291015, 0.997934937477111816, 120, 255, 1, 45338), -- Hay Bale (Area: -Unknown- - Difficulty: 0)
|
||||
(@OGUID+75, 186717, 0, 12, 7486, '0', '0', 0, -9150.7236328125, 357.49993896484375, 89.90228271484375, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 45338), -- Brewfest Banner (Area: -Unknown- - Difficulty: 0)
|
||||
(@OGUID+76, 205110, 0, 12, 7486, '0', '0', 0, -9119.169921875, 325.26910400390625, 93.23209381103515625, 1.765843868255615234, 0, 0, 0.772597312927246093, 0.634896337985992431, 120, 255, 1, 45338), -- Brewfest Crate (Area: -Unknown- - Difficulty: 0)
|
||||
(@OGUID+77, 292549, 0, 12, 7486, '0', '0', 0, -9117.66015625, 328.0850830078125, 93.13021087646484375, 3.94624495506286621, 0, 0, -0.92015266418457031, 0.391559779644012451, 120, 255, 1, 45338), -- Hay Bale (Area: -Unknown- - Difficulty: 0)
|
||||
(@OGUID+78, 326139, 0, 12, 7486, '0', '0', 0, -9133.7431640625, 350.560760498046875, 93.9886016845703125, 3.90954136848449707, 0, 0, -0.92718315124511718, 0.37460830807685852, 120, 255, 1, 45338), -- Alcohol-Free Brewfest Sampler (Area: -Unknown- - Difficulty: 0)
|
||||
(@OGUID+79, 326139, 0, 12, 7486, '0', '0', 0, -9126.00390625, 340.19964599609375, 95.2180023193359375, 3.90954136848449707, 0, 0, -0.92718315124511718, 0.37460830807685852, 120, 255, 1, 45338), -- Alcohol-Free Brewfest Sampler (Area: -Unknown- - Difficulty: 0)
|
||||
(@OGUID+80, 326705, 0, 12, 7486, '0', '0', 0, -9118.1357421875, 331.54339599609375, 93.24826812744140625, 6.214612483978271484, 0, 0, -0.03427982330322265, 0.999412298202514648, 120, 255, 1, 45338), -- Brewfest Torch (Area: -Unknown- - Difficulty: 0)
|
||||
(@OGUID+81, 327165, 0, 12, 7486, '0', '0', 0, -9118.3642578125, 329.696197509765625, 93.1788177490234375, 6.214612483978271484, 0, 0, -0.03427982330322265, 0.999412298202514648, 120, 255, 1, 45338), -- Keg (Area: -Unknown- - Difficulty: 0)
|
||||
(@OGUID+82, 326139, 0, 12, 7486, '0', '0', 0, -9126.8994140625, 340.4132080078125, 95.1802520751953125, 4.101525306701660156, 0, 0, -0.88701057434082031, 0.461749136447906494, 120, 255, 1, 45338), -- Alcohol-Free Brewfest Sampler (Area: -Unknown- - Difficulty: 0)
|
||||
(@OGUID+83, 326138, 0, 12, 7486, '0', '0', 0, -9126.3056640625, 340.2413330078125, 94.041290283203125, 2.303830623626708984, 0, 0, 0.913544654846191406, 0.406738430261611938, 120, 255, 1, 45338), -- Party Table (Area: -Unknown- - Difficulty: 0)
|
||||
(@OGUID+84, 326139, 0, 12, 7486, '0', '0', 0, -9126.6982421875, 339.873260498046875, 95.15944671630859375, 6.248279094696044921, 0, 0, -0.01745223999023437, 0.999847710132598876, 120, 255, 1, 45338), -- Alcohol-Free Brewfest Sampler (Area: -Unknown- - Difficulty: 0)
|
||||
(@OGUID+85, 326139, 0, 12, 7486, '0', '0', 0, -9134.638671875, 350.774322509765625, 93.81700897216796875, 4.101525306701660156, 0, 0, -0.88701057434082031, 0.461749136447906494, 120, 255, 1, 45338), -- Alcohol-Free Brewfest Sampler (Area: -Unknown- - Difficulty: 0)
|
||||
(@OGUID+86, 327165, 0, 12, 7486, '0', '0', 0, -9117.59375, 325.989593505859375, 93.17708587646484375, 6.214612483978271484, 0, 0, -0.03427982330322265, 0.999412298202514648, 120, 255, 1, 45338), -- Keg (Area: -Unknown- - Difficulty: 0)
|
||||
(@OGUID+87, 326138, 0, 12, 7486, '0', '0', 0, -9134.044921875, 350.602447509765625, 92.78646087646484375, 2.303830623626708984, 0, 0, 0.913544654846191406, 0.406738430261611938, 120, 255, 1, 45338), -- Party Table (Area: -Unknown- - Difficulty: 0)
|
||||
(@OGUID+88, 326139, 0, 12, 7486, '0', '0', 0, -9134.439453125, 350.234375, 93.89134979248046875, 6.248279094696044921, 0, 0, -0.01745223999023437, 0.999847710132598876, 120, 255, 1, 45338), -- Alcohol-Free Brewfest Sampler (Area: -Unknown- - Difficulty: 0)
|
||||
(@OGUID+89, 326139, 0, 12, 7486, '0', '0', 0, -9134.1142578125, 350.836822509765625, 93.90525054931640625, 0.541050612926483154, 0, 0, 0.267237663269042968, 0.96363067626953125, 120, 255, 1, 45338), -- Alcohol-Free Brewfest Sampler (Area: -Unknown- - Difficulty: 0)
|
||||
(@OGUID+90, 326139, 0, 12, 7486, '0', '0', 0, -9126.375, 340.4757080078125, 95.21901702880859375, 0.541050612926483154, 0, 0, 0.267237663269042968, 0.96363067626953125, 120, 255, 1, 45338), -- Alcohol-Free Brewfest Sampler (Area: -Unknown- - Difficulty: 0)
|
||||
(@OGUID+91, 186184, 0, 12, 7486, '0', '0', 0, -9113.3251953125, 332.2216796875, 93.15085601806640625, 5.567600727081298828, 0, 0, -0.35020732879638671, 0.936672210693359375, 120, 255, 1, 45338), -- Thunderbrew Festive Keg (Area: -Unknown- - Difficulty: 0)
|
||||
(@OGUID+92, 186185, 0, 12, 7486, '0', '0', 0, -9125.5283203125, 324.802093505859375, 93.46527862548828125, 4.835803031921386718, 0, 0, -0.6621551513671875, 0.74936676025390625, 120, 255, 1, 45338), -- Gordok Festive Keg (Area: -Unknown- - Difficulty: 0)
|
||||
(@OGUID+93, 195253, 0, 1519, 1617, '0', 0, 0, -8845.916015625, 468.921875, 122.3519134521484375, 3.804818391799926757, 0, 0, -0.94551849365234375, 0.325568377971649169, 120, 255, 1, 45338), -- Hanging, Streamer x3 - Brewfest (Area: Valley of Heroes - Difficulty: 0)
|
||||
(@OGUID+94, 195263, 0, 1519, 5148, '0', 0, 0, -8740.796875, 579.02410888671875, 109.8196792602539062, 5.497788906097412109, 0, 0, -0.38268280029296875, 0.923879802227020263, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+95, 195255, 0, 1519, 5148, '0', 0, 0, -8680.7099609375, 609.13201904296875, 103.9000015258789062, 2.984498262405395507, 0, 0, 0.996916770935058593, 0.078466430306434631, 120, 255, 1, 45338), -- Hanging, Tall/Thin, Large - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+96, 195263, 0, 1519, 5148, '0', 0, 0, -8743.3583984375, 695.37646484375, 110.7000732421875, 0.628316879272460937, 0, 0, 0.309016227722167968, 0.95105677843093872, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+97, 195263, 0, 1519, 5148, '0', 0, 0, -8719.5673828125, 507.91253662109375, 107.537322998046875, 2.181660413742065429, 0, 0, 0.887010574340820312, 0.461749136447906494, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+98, 195255, 0, 1519, 5148, '0', 0, 0, -8653.9697265625, 574.87701416015625, 103.9059982299804687, 4.555310726165771484, 0, 0, -0.76040554046630859, 0.649448513984680175, 120, 255, 1, 45338), -- Hanging, Tall/Thin, Large - Brewfest (Area: Trade District - Difficulty: 0)
|
||||
(@OGUID+99, 195255, 0, 1519, 5390, '0', 0, 0, -8647.150390625, 636.46002197265625, 103.86199951171875, 1.378809213638305664, 0, 0, 0.636077880859375, 0.771624863147735595, 120, 255, 1, 45338), -- Hanging, Tall/Thin, Large - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+100, 195256, 0, 1519, 5390, '0', 0, 0, -8657.150390625, 500.305999755859375, 101.6050033569335937, 3.769911527633666992, 0, 0, -0.95105648040771484, 0.309017121791839599, 120, 255, 1, 45338), -- Standing, Exterior, Medium - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+101, 195256, 0, 1519, 5390, '0', 0, 0, -8711.8798828125, 463.470001220703125, 97.4506988525390625, 5.201082706451416015, 0, 0, -0.51503753662109375, 0.857167601585388183, 120, 255, 1, 45338), -- Standing, Exterior, Medium - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+102, 195263, 0, 1519, 5390, '0', 0, 0, -8680.7998046875, 461.0889892578125, 105.227996826171875, 5.375615119934082031, 0, 0, -0.4383707046508789, 0.898794233798980712, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+103, 195260, 0, 1519, 5390, '0', 0, 0, -8713.76953125, 417.77801513671875, 99.17099761962890625, 0.663223206996917724, 0, 0, 0.325567245483398437, 0.945518851280212402, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+104, 195260, 0, 1519, 5390, '0', 0, 0, -8720.2998046875, 413.782989501953125, 101.279998779296875, 3.403396368026733398, 0, 0, -0.99144458770751953, 0.130528271198272705, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+105, 195260, 0, 1519, 5390, '0', 0, 0, -8714.8203125, 419.131988525390625, 99.176300048828125, 4.171337604522705078, 0, 0, -0.87035560607910156, 0.492423713207244873, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+106, 195260, 0, 1519, 5390, '0', 0, 0, -8714.349609375, 410.970001220703125, 98.94390106201171875, 5.445427894592285156, 0, 0, -0.40673637390136718, 0.913545548915863037, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+107, 195260, 0, 1519, 5390, '0', 0, 0, -8720.33984375, 418.412994384765625, 98.98349761962890625, 5.445427894592285156, 0, 0, -0.40673637390136718, 0.913545548915863037, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+108, 195260, 0, 1519, 5390, '0', 0, 0, -8722.080078125, 415.22900390625, 98.84459686279296875, 0, 0, 0, 0, 1, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+109, 195260, 0, 1519, 5390, '0', 0, 0, -8717.23046875, 416.49700927734375, 103.4260025024414062, 4.59021615982055664, 0, 0, -0.74895572662353515, 0.662620067596435546, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+110, 195260, 0, 1519, 5390, '0', 0, 0, -8718.8603515625, 412.00201416015625, 101.2710037231445312, 4.345870018005371093, 0, 0, -0.82412624359130859, 0.566406130790710449, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+111, 195260, 0, 1519, 5390, '0', 0, 0, -8716, 417.287994384765625, 101.503997802734375, 4.188792228698730468, 0, 0, -0.86602497100830078, 0.50000077486038208, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+112, 195260, 0, 1519, 5390, '0', 0, 0, -8715.91015625, 409.740997314453125, 98.85630035400390625, 5.131268978118896484, 0, 0, -0.54463863372802734, 0.838670849800109863, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+113, 195260, 0, 1519, 5390, '0', 0, 0, -8714.7802734375, 413.238006591796875, 101.4250030517578125, 2.548179388046264648, 0, 0, 0.956304550170898437, 0.292372345924377441, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+114, 195260, 0, 1519, 5390, '0', 0, 0, -8714.5400390625, 415.49700927734375, 101.496002197265625, 3.52557229995727539, 0, 0, -0.98162651062011718, 0.190812408924102783, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+115, 195260, 0, 1519, 5390, '0', 0, 0, -8717.8701171875, 409.938995361328125, 98.809600830078125, 4.694936752319335937, 0, 0, -0.71325016021728515, 0.700909554958343505, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+116, 195260, 0, 1519, 5390, '0', 0, 0, -8721.08984375, 411.803985595703125, 98.7816009521484375, 3.926995515823364257, 0, 0, -0.92387866973876953, 0.38268551230430603, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+117, 195260, 0, 1519, 5390, '0', 0, 0, -8716.919921875, 419.4010009765625, 99.12889862060546875, 4.502951622009277343, 0, 0, -0.7771453857421875, 0.629321098327636718, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+118, 195260, 0, 1519, 5390, '0', 0, 0, -8720.0595703125, 416.072998046875, 101.3519973754882812, 2.844882726669311523, 0, 0, 0.989015579223632812, 0.147811368107795715, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+119, 195260, 0, 1519, 5390, '0', 0, 0, -8712.6201171875, 414.12200927734375, 99.08950042724609375, 6.161012649536132812, 0, 0, -0.06104850769042968, 0.998134791851043701, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+120, 195260, 0, 1519, 5390, '0', 0, 0, -8716.599609375, 411.819000244140625, 101.3160018920898437, 4.939284324645996093, 0, 0, -0.6225137710571289, 0.78260880708694458, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+121, 195260, 0, 1519, 5390, '0', 0, 0, -8718.259765625, 417.555999755859375, 101.4459991455078125, 4.97418975830078125, 0, 0, -0.60876083374023437, 0.793353796005249023, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+122, 195260, 0, 1519, 5390, '0', 0, 0, -8722.259765625, 413.342010498046875, 98.79450225830078125, 3.24634718894958496, 0, 0, -0.99862861633300781, 0.052353221923112869, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+123, 195260, 0, 1519, 5390, '0', 0, 0, -8718.8203125, 419.563995361328125, 99.07160186767578125, 5.009094715118408203, 0, 0, -0.59482288360595703, 0.80385679006576538, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+124, 195260, 0, 1519, 5390, '0', 0, 0, -8721.8701171875, 417.154998779296875, 98.902496337890625, 5.829400539398193359, 0, 0, -0.22495079040527343, 0.974370121955871582, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+125, 195260, 0, 1519, 5390, '0', 0, 0, -8719.759765625, 410.18798828125, 98.7864990234375, 4.45059061050415039, 0, 0, -0.79335308074951171, 0.608761727809906005, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+126, 195260, 0, 1519, 5390, '0', 0, 0, -8715.5400390625, 414.343994140625, 103.4069976806640625, 3.054326534271240234, 0, 0, 0.999048233032226562, 0.043619260191917419, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+127, 195260, 0, 1519, 5390, '0', 0, 0, -8712.419921875, 416.092010498046875, 99.15689849853515625, 3.665196180343627929, 0, 0, -0.96592521667480468, 0.258821308612823486, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+128, 195256, 0, 1519, 5390, '0', 0, 0, -8746.150390625, 410.779998779296875, 98.2071990966796875, 6.056293010711669921, 0, 0, -0.11320304870605468, 0.993571877479553222, 120, 255, 1, 45338), -- Standing, Exterior, Medium - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+129, 195260, 0, 1519, 5390, '0', 0, 0, -8717.599609375, 412.6090087890625, 103.2979965209960937, 4.625123500823974609, 0, 0, -0.73727703094482421, 0.67559051513671875, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+130, 195260, 0, 1519, 5390, '0', 0, 0, -8719.4296875, 414.77801513671875, 103.305999755859375, 5.986480236053466796, 0, 0, -0.14780902862548828, 0.989015936851501464, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+131, 195260, 0, 1519, 5390, '0', 0, 0, -8712.83984375, 412.220001220703125, 99.03929901123046875, 5.84685373306274414, 0, 0, -0.21643924713134765, 0.976296067237854003, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+132, 195263, 0, 1519, 5390, '0', 0, 0, -8762.2900390625, 382.514007568359375, 103.6529998779296875, 0.767943859100341796, 0, 0, 0.374606132507324218, 0.927184045314788818, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+133, 195256, 0, 1519, 5390, '0', 0, 0, -8732.0595703125, 393.212005615234375, 98.2071990966796875, 1.343901276588439941, 0, 0, 0.622513771057128906, 0.78260880708694458, 120, 255, 1, 45338), -- Standing, Exterior, Medium - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+134, 195256, 0, 1519, 5390, '0', 0, 0, -8673.009765625, 442.39599609375, 100.0309982299804687, 1.658061861991882324, 0, 0, 0.737277030944824218, 0.67559051513671875, 120, 255, 1, 45338), -- Standing, Exterior, Medium - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+135, 195263, 0, 1519, 5390, '0', 0, 0, -8612.7119140625, 504.63714599609375, 115.3036270141601562, 0.575957298278808593, 0, 0, 0.284014701843261718, 0.958819925785064697, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+136, 195255, 0, 1519, 5390, '0', 0, 0, -8619.6298828125, 600.8800048828125, 103.897003173828125, 6.195919513702392578, 0, 0, -0.04361915588378906, 0.999048233032226562, 120, 255, 1, 45338), -- Hanging, Tall/Thin, Large - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+137, 195263, 0, 1519, 5149, '0', 0, 0, -8633.3203125, 421.480987548828125, 104.7610015869140625, 2.216565132141113281, 0, 0, 0.894933700561523437, 0.44619917869567871, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: Old Town - Difficulty: 0)
|
||||
(@OGUID+138, 195256, 0, 1519, 5149, '0', 0, 0, -8626.26953125, 441.27398681640625, 103.2350006103515625, 3.22885894775390625, 0, 0, -0.99904823303222656, 0.043619260191917419, 120, 255, 1, 45338), -- Standing, Exterior, Medium - Brewfest (Area: Old Town - Difficulty: 0)
|
||||
(@OGUID+139, 195263, 0, 1519, 5149, '0', 0, 0, -8640.8896484375, 415.50299072265625, 104.7910003662109375, 2.216565132141113281, 0, 0, 0.894933700561523437, 0.44619917869567871, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: Old Town - Difficulty: 0)
|
||||
(@OGUID+140, 195260, 0, 1519, 5149, '0', 0, 0, -8627.669921875, 413.610992431640625, 104.8389968872070312, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Old Town - Difficulty: 0)
|
||||
(@OGUID+141, 195260, 0, 1519, 5149, '0', 0, 0, -8629.3603515625, 412.2550048828125, 104.8639984130859375, 5.497788906097412109, 0, 0, -0.38268280029296875, 0.923879802227020263, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Old Town - Difficulty: 0)
|
||||
(@OGUID+142, 195260, 0, 1519, 5149, '0', 0, 0, -8631.2998046875, 410.615997314453125, 104.8430023193359375, 2.146752834320068359, 0, 0, 0.878816604614257812, 0.477159708738327026, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Old Town - Difficulty: 0)
|
||||
(@OGUID+143, 195260, 0, 1519, 5149, '0', 0, 0, -8620.0595703125, 419.2659912109375, 104.8639984130859375, 2.251473426818847656, 0, 0, 0.902585029602050781, 0.430511653423309326, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Old Town - Difficulty: 0)
|
||||
(@OGUID+144, 195260, 0, 1519, 5149, '0', 0, 0, -8618.26953125, 420.782989501953125, 104.8440017700195312, 5.35816192626953125, 0, 0, -0.446197509765625, 0.894934535026550292, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Old Town - Difficulty: 0)
|
||||
(@OGUID+145, 195263, 0, 1519, 5149, '0', 0, 0, -8738.650390625, 379.631988525390625, 103.7239990234375, 2.146752834320068359, 0, 0, 0.878816604614257812, 0.477159708738327026, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: Old Town - Difficulty: 0)
|
||||
(@OGUID+146, 195263, 0, 1519, 5149, '0', 0, 0, -8747.7099609375, 372.355987548828125, 103.7529983520507812, 2.338739633560180664, 0, 0, 0.920504570007324218, 0.3907318115234375, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: Old Town - Difficulty: 0)
|
||||
(@OGUID+147, 195260, 0, 1519, 5149, '0', 0, 0, -8622.080078125, 417.625, 104.84100341796875, 1.937312245368957519, 0, 0, 0.824125289916992187, 0.566407561302185058, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Old Town - Difficulty: 0)
|
||||
(@OGUID+148, 195253, 0, 1519, 5149, '0', 0, 0, -8623, 413.57501220703125, 114.802001953125, 2.234017848968505859, 0, 0, 0.898793220520019531, 0.438372820615768432, 120, 255, 1, 45338), -- Hanging, Streamer x3 - Brewfest (Area: Old Town - Difficulty: 0)
|
||||
(@OGUID+149, 195263, 0, 1519, 5149, '0', 0, 0, -8755.009765625, 373.194000244140625, 103.8420028686523437, 0.663223206996917724, 0, 0, 0.325567245483398437, 0.945518851280212402, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: Old Town - Difficulty: 0)
|
||||
(@OGUID+150, 195260, 0, 1519, 5149, '0', 0, 0, -8611.33984375, 397.406005859375, 111.2949981689453125, 2.129300594329833984, 0, 0, 0.874619483947753906, 0.484810054302215576, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Old Town - Difficulty: 0)
|
||||
(@OGUID+151, 195253, 0, 1519, 5149, '0', 0, 0, -8610.8603515625, 398.37799072265625, 114.7939987182617187, 2.234017848968505859, 0, 0, 0.898793220520019531, 0.438372820615768432, 120, 255, 1, 45338), -- Hanging, Streamer x3 - Brewfest (Area: Old Town - Difficulty: 0)
|
||||
(@OGUID+152, 195260, 0, 1519, 5149, '0', 0, 0, -8613.33984375, 395.938995361328125, 111.2829971313476562, 5.113816738128662109, 0, 0, -0.55193614959716796, 0.833886384963989257, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Old Town - Difficulty: 0)
|
||||
(@OGUID+153, 195253, 0, 1519, 5149, '0', 0, 0, -8616.7900390625, 405.72198486328125, 114.6839981079101562, 2.234017848968505859, 0, 0, 0.898793220520019531, 0.438372820615768432, 120, 255, 1, 45338), -- Hanging, Streamer x3 - Brewfest (Area: Old Town - Difficulty: 0)
|
||||
(@OGUID+154, 195260, 0, 1519, 5149, '0', 0, 0, -8615.400390625, 394.3699951171875, 111.2259979248046875, 2.146752834320068359, 0, 0, 0.878816604614257812, 0.477159708738327026, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Old Town - Difficulty: 0)
|
||||
(@OGUID+155, 195260, 0, 1519, 5149, '0', 0, 0, -8609.5595703125, 398.915008544921875, 111.3219985961914062, 5.131268978118896484, 0, 0, -0.54463863372802734, 0.838670849800109863, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Old Town - Difficulty: 0)
|
||||
(@OGUID+156, 195260, 0, 1519, 5149, '0', 0, 0, -8605.7001953125, 401.894012451171875, 111.3389968872070312, 5.375615119934082031, 0, 0, -0.4383707046508789, 0.898794233798980712, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Old Town - Difficulty: 0)
|
||||
(@OGUID+157, 195260, 0, 1519, 5149, '0', 0, 0, -8607.6298828125, 400.3330078125, 111.3130035400390625, 2.303830623626708984, 0, 0, 0.913544654846191406, 0.406738430261611938, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Old Town - Difficulty: 0)
|
||||
(@OGUID+158, 195253, 0, 1519, 5149, '0', 0, 0, -8605.400390625, 391.31298828125, 114.6859970092773437, 2.234017848968505859, 0, 0, 0.898793220520019531, 0.438372820615768432, 120, 255, 1, 45338), -- Hanging, Streamer x3 - Brewfest (Area: Old Town - Difficulty: 0)
|
||||
(@OGUID+159, 195256, 0, 1519, 5149, '0', 0, 0, -8538.669921875, 470.20001220703125, 104.5210037231445312, 2.757613182067871093, 0, 0, 0.981626510620117187, 0.190812408924102783, 120, 255, 1, 45338), -- Standing, Exterior, Medium - Brewfest (Area: Old Town - Difficulty: 0)
|
||||
(@OGUID+160, 195263, 0, 1519, 5390, '0', 0, 0, -8511.3798828125, 527.78997802734375, 109.8679962158203125, 0.663223206996917724, 0, 0, 0.325567245483398437, 0.945518851280212402, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+161, 195255, 0, 1519, 5390, '0', 0, 0, -8546.8095703125, 354.77301025390625, 133.5149993896484375, 0.680676698684692382, 0, 0, 0.333806037902832031, 0.942641794681549072, 120, 255, 1, 45338), -- Hanging, Tall/Thin, Large - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+162, 195255, 0, 1519, 5390, '0', 0, 0, -8482, 359.67498779296875, 119.134002685546875, 2.146752834320068359, 0, 0, 0.878816604614257812, 0.477159708738327026, 120, 255, 1, 45338), -- Hanging, Tall/Thin, Large - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+163, 195255, 0, 1519, 5390, '0', 0, 0, -8433.8798828125, 435.0159912109375, 133.477996826171875, 3.804818391799926757, 0, 0, -0.94551849365234375, 0.325568377971649169, 120, 255, 1, 45338), -- Hanging, Tall/Thin, Large - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+164, 195255, 0, 1519, 5390, '0', 0, 0, -8459.259765625, 377.5419921875, 118.4810028076171875, 2.251473426818847656, 0, 0, 0.902585029602050781, 0.430511653423309326, 120, 255, 1, 45338), -- Hanging, Tall/Thin, Large - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+165, 195254, 0, 1519, 0, '0', 0, 0, -8465.6396484375, 324.45001220703125, 177.1450042724609375, 2.146752834320068359, 0, 0, 0.878816604614257812, 0.477159708738327026, 120, 255, 1, 45338), -- Hanging, Square, Large - Brewfest (Area: 0 - Difficulty: 0)
|
||||
(@OGUID+166, 195256, 0, 1519, 0, '0', 0, 0, -8511.080078125, 320.92401123046875, 135.7100067138671875, 1.675513744354248046, 0, 0, 0.743144035339355468, 0.669131457805633544, 120, 255, 1, 45338), -- Standing, Exterior, Medium - Brewfest (Area: 0 - Difficulty: 0)
|
||||
(@OGUID+167, 195255, 0, 1519, 0, '0', 0, 0, -8416.1201171875, 410.0679931640625, 141.3849945068359375, 3.804818391799926757, 0, 0, -0.94551849365234375, 0.325568377971649169, 120, 255, 1, 45338), -- Hanging, Tall/Thin, Large - Brewfest (Area: 0 - Difficulty: 0)
|
||||
(@OGUID+168, 195256, 0, 1519, 0, '0', 0, 0, -8465.08984375, 322.696014404296875, 135.90899658203125, 2.129300594329833984, 0, 0, 0.874619483947753906, 0.484810054302215576, 120, 255, 1, 45338), -- Standing, Exterior, Medium - Brewfest (Area: 0 - Difficulty: 0)
|
||||
(@OGUID+169, 195255, 0, 1519, 0, '0', 0, 0, -8530.2099609375, 333.0050048828125, 140.720001220703125, 0.680676698684692382, 0, 0, 0.333806037902832031, 0.942641794681549072, 120, 255, 1, 45338), -- Hanging, Tall/Thin, Large - Brewfest (Area: 0 - Difficulty: 0)
|
||||
(@OGUID+170, 195256, 0, 1519, 0, '0', 0, 0, -8428.75, 351.0159912109375, 135.9669952392578125, 2.426007747650146484, 0, 0, 0.936672210693359375, 0.350207358598709106, 120, 255, 1, 45338), -- Standing, Exterior, Medium - Brewfest (Area: 0 - Difficulty: 0)
|
||||
(@OGUID+171, 195254, 0, 1519, 0, '0', 0, 0, -8428.66015625, 352.906005859375, 177.80499267578125, 2.146752834320068359, 0, 0, 0.878816604614257812, 0.477159708738327026, 120, 255, 1, 45338), -- Hanging, Square, Large - Brewfest (Area: 0 - Difficulty: 0)
|
||||
(@OGUID+172, 195256, 0, 1519, 0, '0', 0, 0, -8413.7900390625, 397.641998291015625, 135.7100067138671875, 2.967041015625, 0, 0, 0.996193885803222656, 0.087165042757987976, 120, 255, 1, 45338), -- Standing, Exterior, Medium - Brewfest (Area: 0 - Difficulty: 0)
|
||||
(@OGUID+173, 195256, 0, 1519, 5150, '0', 0, 0, -8430.9853515625, 596.3505859375, 94.6203155517578125, 3.45575571060180664, 0, 0, -0.98768806457519531, 0.156436234712600708, 120, 255, 1, 45338), -- Standing, Exterior, Medium - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+174, 195260, 0, 1519, 5150, '0', 0, 0, -8381.16015625, 590.3909912109375, 98.918701171875, 2.164205789566040039, 0, 0, 0.882946968078613281, 0.469472706317901611, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+175, 195263, 0, 1519, 5150, '0', 0, 0, -8408.650390625, 635.03302001953125, 101.40899658203125, 5.462882041931152343, 0, 0, -0.39874839782714843, 0.917060375213623046, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+176, 195260, 0, 1519, 5150, '0', 0, 0, -8379.3203125, 591.947998046875, 98.94409942626953125, 5.340708732604980468, 0, 0, -0.45398998260498046, 0.891006767749786376, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0
|
||||
(@OGUID+177, 195260, 0, 1519, 5150, '0', 0, 0, -8383.0595703125, 588.96502685546875, 98.90579986572265625, 5.35816192626953125, 0, 0, -0.446197509765625, 0.894934535026550292, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+178, 195266, 0, 1519, 5150, '0', 0, 0, -8385.4599609375, 598, 104.569000244140625, 2.286378860473632812, 0, 0, 0.909960746765136718, 0.414694398641586303, 120, 255, 1, 45338), -- Hanging, Streamer - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+179, 195266, 0, 1519, 5150, '0', 0, 0, -8379.23046875, 603.39801025390625, 104.4680023193359375, 2.286378860473632812, 0, 0, 0.909960746765136718, 0.414694398641586303, 120, 255, 1, 45338), -- Hanging, Streamer - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+180, 195266, 0, 1519, 5150, '0', 0, 0, -8376.7802734375, 589.87298583984375, 107.9199981689453125, 2.251473426818847656, 0, 0, 0.902585029602050781, 0.430511653423309326, 120, 255, 1, 45338), -- Hanging, Streamer - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+181, 195260, 0, 1519, 5150, '0', 0, 0, -8386.349609375, 623.93902587890625, 96.31549835205078125, 1.082102894783020019, 0, 0, 0.51503753662109375, 0.857167601585388183, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+182, 195260, 0, 1519, 5150, '0', 0, 0, -8389.16015625, 630.61102294921875, 96.137298583984375, 5.829400539398193359, 0, 0, -0.22495079040527343, 0.974370121955871582, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+183, 195260, 0, 1519, 5150, '0', 0, 0, -8387.7099609375, 625.27801513671875, 96.30049896240234375, 0.663223206996917724, 0, 0, 0.325567245483398437, 0.945518851280212402, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+184, 195260, 0, 1519, 5150, '0', 0, 0, -8387.150390625, 627.6300048828125, 98.62200164794921875, 0.366517573595046997, 0, 0, 0.182234764099121093, 0.98325502872467041, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+185, 195260, 0, 1519, 5150, '0', 0, 0, -8385.5595703125, 625.97198486328125, 98.6584014892578125, 1.204277276992797851, 0, 0, 0.56640625, 0.824126183986663818, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+186, 195260, 0, 1519, 5150, '0', 0, 0, -8387.1201171875, 629.906005859375, 98.54340362548828125, 5.916667938232421875, 0, 0, -0.18223476409912109, 0.98325502872467041, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+187, 195260, 0, 1519, 5150, '0', 0, 0, -8389.1201171875, 626.697998046875, 96.2743988037109375, 0.296705186367034912, 0, 0, 0.147809028625488281, 0.989015936851501464, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+188, 195260, 0, 1519, 5150, '0', 0, 0, -8384.3701171875, 623.92498779296875, 96.26580047607421875, 1.710421562194824218, 0, 0, 0.754709243774414062, 0.656059443950653076, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+189, 195260, 0, 1519, 5150, '0', 0, 0, -8389.169921875, 628.47100830078125, 96.2133026123046875, 0.069811686873435974, 0, 0, 0.034898757934570312, 0.999390840530395507, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+190, 195260, 0, 1519, 5150, '0', 0, 0, -8377.3896484375, 593.47900390625, 98.91660308837890625, 2.216565132141113281, 0, 0, 0.894933700561523437, 0.44619917869567871, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+191, 195260, 0, 1519, 5150, '0', 0, 0, -8383.25, 626.010009765625, 98.580596923828125, 5.061456203460693359, 0, 0, -0.57357597351074218, 0.819152355194091796, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+192, 195260, 0, 1519, 5150, '0', 0, 0, -8380.9501953125, 631.93902587890625, 95.94789886474609375, 0.296705186367034912, 0, 0, 0.147809028625488281, 0.989015936851501464, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+193, 195266, 0, 1519, 5150, '0', 0, 0, -8370.5400390625, 582.072998046875, 107.9589996337890625, 2.251473426818847656, 0, 0, 0.902585029602050781, 0.430511653423309326, 120, 255, 1, 45338), -- Hanging, Streamer - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+194, 195260, 0, 1519, 5150, '0', 0, 0, -8365.16015625, 574.33502197265625, 105.302001953125, 2.251473426818847656, 0, 0, 0.902585029602050781, 0.430511653423309326, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+195, 195266, 0, 1519, 5150, '0', 0, 0, -8368.1103515625, 596.7760009765625, 107.9199981689453125, 2.234017848968505859, 0, 0, 0.898793220520019531, 0.438372820615768432, 120, 255, 1, 45338), -- Hanging, Streamer - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+196, 195260, 0, 1519, 5150, '0', 0, 0, -8379.6298828125, 630.61798095703125, 95.96309661865234375, 0.296705186367034912, 0, 0, 0.147809028625488281, 0.989015936851501464, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+197, 195260, 0, 1519, 5150, '0', 0, 0, -8384.3798828125, 626.86297607421875, 100.5749969482421875, 4.694936752319335937, 0, 0, -0.71325016021728515, 0.700909554958343505, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+198, 195260, 0, 1519, 5150, '0', 0, 0, -8363.0595703125, 575.92498779296875, 105.3600006103515625, 5.340708732604980468, 0, 0, -0.45398998260498046, 0.891006767749786376, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+199, 195260, 0, 1519, 5150, '0', 0, 0, -8382.3896484375, 628.8179931640625, 100.464996337890625, 6.248279094696044921, 0, 0, -0.01745223999023437, 0.999847710132598876, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+200, 195260, 0, 1519, 5150, '0', 0, 0, -8382.4404296875, 623.92498779296875, 96.22039794921875, 1.867502212524414062, 0, 0, 0.803856849670410156, 0.594822824001312255, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+201, 195260, 0, 1519, 5150, '0', 0, 0, -8381.150390625, 625.22198486328125, 96.16049957275390625, 5.427974700927734375, 0, 0, -0.41469287872314453, 0.909961462020874023, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+202, 195266, 0, 1519, 5150, '0', 0, 0, -8372.83984375, 608.9010009765625, 104.3860015869140625, 2.286378860473632812, 0, 0, 0.909960746765136718, 0.414694398641586303, 120, 255, 1, 45338), -- Hanging, Streamer - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+203, 195260, 0, 1519, 5150, '0', 0, 0, -8382.4599609375, 633.3389892578125, 95.92220306396484375, 1.274088263511657714, 0, 0, 0.594821929931640625, 0.80385744571685791, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+204, 195260, 0, 1519, 5150, '0', 0, 0, -8384.4501953125, 633.45098876953125, 95.9521026611328125, 1.623155713081359863, 0, 0, 0.725374221801757812, 0.688354730606079101, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+205, 195260, 0, 1519, 5150, '0', 0, 0, -8387.73046875, 632.10101318359375, 96.0623016357421875, 5.672322273254394531, 0, 0, -0.3007049560546875, 0.953717231750488281, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+206, 195260, 0, 1519, 5150, '0', 0, 0, -8368.099609375, 600.5989990234375, 98.92060089111328125, 2.234017848968505859, 0, 0, 0.898793220520019531, 0.438372820615768432, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+207, 195260, 0, 1519, 5150, '0', 0, 0, -8385.5400390625, 631.54498291015625, 98.4506988525390625, 2.007128477096557617, 0, 0, 0.84339141845703125, 0.537299633026123046, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+208, 195260, 0, 1519, 5150, '0', 0, 0, -8379.6396484375, 628.64202880859375, 96.03600311279296875, 0.069811686873435974, 0, 0, 0.034898757934570312, 0.999390840530395507, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+209, 195260, 0, 1519, 5150, '0', 0, 0, -8383.23046875, 631.56402587890625, 98.41120147705078125, 1.117009282112121582, 0, 0, 0.529918670654296875, 0.84804844856262207, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+210, 195260, 0, 1519, 5150, '0', 0, 0, -8371.8701171875, 597.489990234375, 98.9149017333984375, 2.094393253326416015, 0, 0, 0.866024971008300781, 0.50000077486038208, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+211, 195260, 0, 1519, 5150, '0', 0, 0, -8369.990234375, 599.0780029296875, 98.946197509765625, 5.497788906097412109, 0, 0, -0.38268280029296875, 0.923879802227020263, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+212, 195260, 0, 1519, 5150, '0', 0, 0, -8386.3798828125, 633.322998046875, 95.99030303955078125, 5.288348197937011718, 0, 0, -0.4771585464477539, 0.878817260265350341, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+213, 195260, 0, 1519, 5150, '0', 0, 0, -8384.3896484375, 630.76702880859375, 100.4369964599609375, 1.588248729705810546, 0, 0, 0.713250160217285156, 0.700909554958343505, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+214, 195260, 0, 1519, 5150, '0', 0, 0, -8379.669921875, 626.72900390625, 96.09929656982421875, 5.95157480239868164, 0, 0, -0.16504669189453125, 0.986285746097564697, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+215, 195260, 0, 1519, 5150, '0', 0, 0, -8381.6201171875, 629.9169921875, 98.4380035400390625, 0.436331570148468017, 0, 0, 0.216439247131347656, 0.976296067237854003, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+216, 195260, 0, 1519, 5150, '0', 0, 0, -8386.2900390625, 629.08697509765625, 100.5250015258789062, 6.248279094696044921, 0, 0, -0.01745223999023437, 0.999847710132598876, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+217, 195260, 0, 1519, 5150, '0', 0, 0, -8381.580078125, 627.6090087890625, 98.5211029052734375, 5.89921426773071289, 0, 0, -0.19080829620361328, 0.981627285480499267, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+218, 195260, 0, 1519, 5150, '0', 0, 0, -8366.25, 602.09698486328125, 98.90540313720703125, 5.427974700927734375, 0, 0, -0.41469287872314453, 0.909961462020874023, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+219, 195260, 0, 1519, 5150, '0', 0, 0, -8357.3896484375, 580.20697021484375, 105.3870010375976562, 2.234017848968505859, 0, 0, 0.898793220520019531, 0.438372820615768432, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+220, 195260, 0, 1519, 5150, '0', 0, 0, -8361.16015625, 577.29302978515625, 105.365997314453125, 2.234017848968505859, 0, 0, 0.898793220520019531, 0.438372820615768432, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+221, 195253, 0, 1519, 5150, '0', 0, 0, -8360.6396484375, 578.25897216796875, 108.80999755859375, 2.234017848968505859, 0, 0, 0.898793220520019531, 0.438372820615768432, 120, 255, 1, 45338), -- Hanging, Streamer x3 - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+222, 195266, 0, 1519, 5150, '0', 0, 0, -8361.8798828125, 588.97698974609375, 107.9459991455078125, 2.234017848968505859, 0, 0, 0.898793220520019531, 0.438372820615768432, 120, 255, 1, 45338), -- Hanging, Streamer - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+223, 195260, 0, 1519, 5150, '0', 0, 0, -8355.4296875, 581.78497314453125, 105.41400146484375, 5.375615119934082031, 0, 0, -0.4383707046508789, 0.898794233798980712, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+224, 195260, 0, 1519, 5150, '0', 0, 0, -8359.3095703125, 578.79901123046875, 105.3980026245117187, 5.375615119934082031, 0, 0, -0.4383707046508789, 0.898794233798980712, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+225, 195253, 0, 1519, 5150, '0', 0, 0, -8355.1201171875, 571.25, 108.8700027465820312, 2.234017848968505859, 0, 0, 0.898793220520019531, 0.438372820615768432, 120, 255, 1, 45338), -- Hanging, Streamer x3 - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+226, 195263, 0, 1519, 5150, '0', 0, 0, -8378.3896484375, 659.16302490234375, 98.5727996826171875, 3.368495941162109375, 0, 0, -0.99357128143310546, 0.113208353519439697, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+227, 195273, 0, 1519, 5150, '0', 0, 0, -8375.5498046875, 658.73101806640625, 100.4929962158203125, 0.209439441561698913, 0, 0, 0.104528427124023437, 0.994521915912628173, 120, 255, 1, 45338), -- Hanging, Tall/Thin, Medium - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+228, 195273, 0, 1519, 5150, '0', 0, 0, -8378.9404296875, 672.36297607421875, 100.5120010375976562, 0.191985160112380981, 0, 0, 0.095845222473144531, 0.995396256446838378, 120, 255, 1, 45338), -- Hanging, Tall/Thin, Medium - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+229, 195263, 0, 1519, 5150, '0', 0, 0, -8468.7421875, 686.888916015625, 110.7254867553710937, 2.216565132141113281, 0, 0, 0.894933700561523437, 0.44619917869567871, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+230, 195273, 0, 1519, 5150, '0', 0, 0, -8361.349609375, 647.88201904296875, 100.78900146484375, 5.009094715118408203, 0, 0, -0.59482288360595703, 0.80385679006576538, 120, 255, 1, 45338), -- Hanging, Tall/Thin, Medium - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+231, 195253, 0, 1519, 5150, '0', 0, 0, -8341.169921875, 615.3489990234375, 104.2730026245117187, 2.234017848968505859, 0, 0, 0.898793220520019531, 0.438372820615768432, 120, 255, 1, 45338), -- Hanging, Streamer x3 - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+232, 195266, 0, 1519, 5150, '0', 0, 0, -8329.48046875, 589.61798095703125, 104.134002685546875, 3.804818391799926757, 0, 0, -0.94551849365234375, 0.325568377971649169, 120, 255, 1, 45338), -- Hanging, Streamer - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+233, 195273, 0, 1519, 5150, '0', 0, 0, -8353.580078125, 664.33502197265625, 100.5579986572265625, 3.403396368026733398, 0, 0, -0.99144458770751953, 0.130528271198272705, 120, 255, 1, 45338), -- Hanging, Tall/Thin, Medium - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+234, 195266, 0, 1519, 5150, '0', 0, 0, -8333.1201171875, 594.05401611328125, 104.214996337890625, 3.822272777557373046, 0, 0, -0.94264125823974609, 0.333807557821273803, 120, 255, 1, 45338), -- Hanging, Streamer - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+235, 195263, 0, 1519, 5150, '0', 0, 0, -8329.7998046875, 637.0050048828125, 100.5110015869140625, 3.804818391799926757, 0, 0, -0.94551849365234375, 0.325568377971649169, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+236, 195266, 0, 1519, 5150, '0', 0, 0, -8321.6201171875, 603.00201416015625, 104.1529998779296875, 3.822272777557373046, 0, 0, -0.94264125823974609, 0.333807557821273803, 120, 255, 1, 45338), -- Hanging, Streamer - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+237, 195266, 0, 1519, 5150, '0', 0, 0, -8317.8603515625, 598.41302490234375, 104.2300033569335937, 3.804818391799926757, 0, 0, -0.94551849365234375, 0.325568377971649169, 120, 255, 1, 45338), -- Hanging, Streamer - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+238, 195263, 0, 1519, 5150, '0', 0, 0, -8343.8896484375, 654.08197021484375, 100.3600006103515625, 3.892086982727050781, 0, 0, -0.93041706085205078, 0.366502493619918823, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+239, 195273, 0, 1519, 5150, '0', 0, 0, -8356.7197265625, 677.468994140625, 100.5189971923828125, 3.420850038528442382, 0, 0, -0.99026775360107421, 0.139175355434417724, 120, 255, 1, 45338), -- Hanging, Tall/Thin, Medium - Brewfest (Area: Dwarven District - Difficulty: 0)
|
||||
(@OGUID+240, 195263, 0, 1519, 5390, '0', 0, 0, -8551.73046875, 761.64801025390625, 101.7779998779296875, 3.874631166458129882, 0, 0, -0.93358039855957031, 0.358368009328842163, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+241, 195263, 0, 1519, 5390, '0', 0, 0, -8588.4072265625, 706.8125, 108.9886932373046875, 2.181660413742065429, 0, 0, 0.887010574340820312, 0.461749136447906494, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+242, 195263, 0, 1519, 5390, '0', 0, 0, -8558.7998046875, 770.135009765625, 101.7600021362304687, 3.804818391799926757, 0, 0, -0.94551849365234375, 0.325568377971649169, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+243, 195256, 0, 1519, 5151, '0', 0, 0, -8611.9580078125, 774.59185791015625, 97.13689422607421875, 3.9793548583984375, 0, 0, -0.9135446548461914, 0.406738430261611938, 120, 255, 1, 45338), -- Standing, Exterior, Medium - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+244, 195260, 0, 1519, 5151, '0', 0, 0, -8632.080078125, 760.66998291015625, 98.3329010009765625, 2.583080768585205078, 0, 0, 0.961260795593261718, 0.275640487670898437, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+245, 195260, 0, 1519, 5151, '0', 0, 0, -8631.6396484375, 764.7030029296875, 98.36640167236328125, 3.420850038528442382, 0, 0, -0.99026775360107421, 0.139175355434417724, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+246, 195256, 0, 1519, 5151, '0', 0, 0, -8621.1865234375, 786.200439453125, 97.1391143798828125, 3.682650327682495117, 0, 0, -0.96362972259521484, 0.26724100112915039, 120, 255, 1, 45338), -- Standing, Exterior, Medium - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+247, 195260, 0, 1519, 5151, '0', 0, 0, -8494.73046875, 837.82598876953125, 106.6569976806640625, 0.890116631984710693, 0, 0, 0.430510520935058593, 0.902585566043853759, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+248, 195260, 0, 1519, 5151, '0', 0, 0, -8635.2998046875, 758.21502685546875, 98.369903564453125, 1.919861555099487304, 0, 0, 0.819151878356933593, 0.573576688766479492, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+249, 195260, 0, 1519, 5151, '0', 0, 0, -8634.16015625, 767.9219970703125, 98.3634033203125, 0.907570242881774902, 0, 0, 0.438370704650878906, 0.898794233798980712, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+250, 195260, 0, 1519, 5151, '0', 0, 0, -8493.2802734375, 836.66998291015625, 106.6630020141601562, 1.256635904312133789, 0, 0, 0.587784767150878906, 0.809017360210418701, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+251, 195260, 0, 1519, 5151, '0', 0, 0, -8638.1796875, 768.38702392578125, 98.362396240234375, 1.780233979225158691, 0, 0, 0.7771453857421875, 0.629321098327636718, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+252, 195260, 0, 1519, 5151, '0', 0, 0, -8641.830078125, 761.8590087890625, 98.36710357666015625, 0.191985160112380981, 0, 0, 0.095845222473144531, 0.995396256446838378, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+253, 195260, 0, 1519, 5151, '0', 0, 0, -8639.330078125, 758.64801025390625, 98.365997314453125, 1.029743075370788574, 0, 0, 0.492423057556152343, 0.870355963706970214, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+254, 195260, 0, 1519, 5151, '0', 0, 0, -8641.33984375, 765.8590087890625, 98.36750030517578125, 5.742135047912597656, 0, 0, -0.26723766326904296, 0.96363067626953125, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+255, 195263, 0, 1519, 5151, '0', 0, 0, -8665.8203125, 741.17498779296875, 108.7089996337890625, 0.733038187026977539, 0, 0, 0.358367919921875, 0.933580458164215087, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+256, 195263, 0, 1519, 5151, '0', 0, 0, -8656.2236328125, 844.97674560546875, 108.9539794921875, 5.427974700927734375, 0, 0, -0.41469287872314453, 0.909961462020874023, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+257, 195263, 0, 1519, 5151, '0', 0, 0, -8752.1298828125, 799.635009765625, 109.9039993286132812, 5.410521507263183593, 0, 0, -0.42261791229248046, 0.906307935714721679, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+258, 195260, 0, 1519, 5151, '0', 0, 0, -8572.2099609375, 900.8330078125, 100.5100021362304687, 1.169368624687194824, 0, 0, 0.551936149597167968, 0.833886384963989257, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+259, 195260, 0, 1519, 5151, '0', 0, 0, -8568.2802734375, 905.49298095703125, 104.8330001831054687, 3.089183330535888671, 0, 0, 0.99965667724609375, 0.026201646775007247, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+260, 195260, 0, 1519, 5151, '0', 0, 0, -8572.1298828125, 910.29998779296875, 100.378997802734375, 5.131268978118896484, 0, 0, -0.54463863372802734, 0.838670849800109863, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+261, 195266, 0, 1519, 5151, '0', 0, 0, -8624.951171875, 933.5069580078125, 125.2897720336914062, 3.839725255966186523, 0, 0, -0.93969249725341796, 0.34202045202255249, 120, 255, 1, 45338), -- Hanging, Streamer - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+262, 195260, 0, 1519, 5151, '0', 0, 0, -8573.0498046875, 906.73101806640625, 102.8479995727539062, 5.881760597229003906, 0, 0, -0.19936752319335937, 0.979924798011779785, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+263, 195260, 0, 1519, 5151, '0', 0, 0, -8565.51953125, 903.57501220703125, 100.4840011596679687, 5.829400539398193359, 0, 0, -0.22495079040527343, 0.974370121955871582, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+264, 195263, 0, 1519, 5151, '0', 0, 0, -8535.490234375, 903.0689697265625, 103.569000244140625, 2.792518377304077148, 0, 0, 0.984807014465332031, 0.173652306199073791, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+265, 195260, 0, 1519, 5151, '0', 0, 0, -8570.2197265625, 903.64202880859375, 104.8649978637695312, 1.588248729705810546, 0, 0, 0.713250160217285156, 0.700909554958343505, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+266, 195260, 0, 1519, 5151, '0', 0, 0, -8567.419921875, 906.697998046875, 102.8509979248046875, 0.453785061836242675, 0, 0, 0.224950790405273437, 0.974370121955871582, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+267, 195260, 0, 1519, 5151, '0', 0, 0, -8566.8798828125, 908.86798095703125, 100.4039993286132812, 0.767943859100341796, 0, 0, 0.374606132507324218, 0.927184045314788818, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+268, 195260, 0, 1519, 5151, '0', 0, 0, -8569.0595703125, 908.37701416015625, 102.8259963989257812, 1.186823248863220214, 0, 0, 0.559192657470703125, 0.829037725925445556, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+269, 195263, 0, 1519, 5151, '0', 0, 0, -8539.650390625, 892.7030029296875, 103.6699981689453125, 2.740161895751953125, 0, 0, 0.979924201965332031, 0.199370384216308593, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+270, 195260, 0, 1519, 5151, '0', 0, 0, -8568.41015625, 910.24298095703125, 100.3779983520507812, 4.223697185516357421, 0, 0, -0.85716724395751953, 0.515038192272186279, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+271, 195260, 0, 1519, 5151, '0', 0, 0, -8573.01953125, 904.406005859375, 102.8690032958984375, 0.349065244197845458, 0, 0, 0.173647880554199218, 0.984807789325714111, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+272, 195260, 0, 1519, 5151, '0', 0, 0, -8571.3896484375, 908.385009765625, 102.81500244140625, 1.954769015312194824, 0, 0, 0.829037666320800781, 0.559192776679992675, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+273, 195260, 0, 1519, 5151, '0', 0, 0, -8566.8701171875, 902.15997314453125, 100.48699951171875, 5.462882041931152343, 0, 0, -0.39874839782714843, 0.917060375213623046, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+274, 195260, 0, 1519, 5151, '0', 0, 0, -8574.98046875, 903.5159912109375, 100.4680023193359375, 0.366517573595046997, 0, 0, 0.182234764099121093, 0.98325502872467041, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+275, 195260, 0, 1519, 5151, '0', 0, 0, -8567.4296875, 904.40997314453125, 102.88800048828125, 2.775068521499633789, 0, 0, 0.983254432678222656, 0.182238012552261352, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+276, 195260, 0, 1519, 5151, '0', 0, 0, -8565.5703125, 907.47698974609375, 100.4250030517578125, 0.418878614902496337, 0, 0, 0.207911491394042968, 0.978147625923156738, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+277, 195260, 0, 1519, 5151, '0', 0, 0, -8573.6201171875, 902.2139892578125, 100.4860000610351562, 0.802850961685180664, 0, 0, 0.390730857849121093, 0.920504987239837646, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+278, 195260, 0, 1519, 5151, '0', 0, 0, -8565.5, 905.54498291015625, 100.4520034790039062, 6.195919513702392578, 0, 0, -0.04361915588378906, 0.999048233032226562, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+279, 195260, 0, 1519, 5151, '0', 0, 0, -8571.3896484375, 902.75701904296875, 102.9000015258789062, 1.151916384696960449, 0, 0, 0.544638633728027343, 0.838670849800109863, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+280, 195260, 0, 1519, 5151, '0', 0, 0, -8573.51953125, 908.98602294921875, 100.391998291015625, 5.445427894592285156, 0, 0, -0.40673637390136718, 0.913545548915863037, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+281, 195260, 0, 1519, 5151, '0', 0, 0, -8569.0595703125, 902.78997802734375, 102.8669967651367187, 1.902408957481384277, 0, 0, 0.814115524291992187, 0.580702960491180419, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+282, 195260, 0, 1519, 5151, '0', 0, 0, -8570.169921875, 910.260009765625, 100.3769989013671875, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+283, 195260, 0, 1519, 5151, '0', 0, 0, -8572.2001953125, 905.61602783203125, 104.8349990844726562, 3.194002151489257812, 0, 0, -0.99965667724609375, 0.026201646775007247, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+284, 195260, 0, 1519, 5151, '0', 0, 0, -8570.2099609375, 900.76397705078125, 100.5009994506835937, 4.677483558654785156, 0, 0, -0.71933937072753906, 0.694658815860748291, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+285, 195260, 0, 1519, 5151, '0', 0, 0, -8575, 907.4949951171875, 100.4059982299804687, 5.829400539398193359, 0, 0, -0.22495079040527343, 0.974370121955871582, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+286, 195260, 0, 1519, 5151, '0', 0, 0, -8575.0400390625, 905.50299072265625, 100.4449996948242187, 3.124123096466064453, 0, 0, 0.99996185302734375, 0.008734640665352344, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+287, 195260, 0, 1519, 5151, '0', 0, 0, -8570.2900390625, 907.552001953125, 104.8040008544921875, 1.570795774459838867, 0, 0, 0.707106590270996093, 0.707106947898864746, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+288, 195260, 0, 1519, 5151, '0', 0, 0, -8568.23046875, 900.78802490234375, 100.4929962158203125, 5.026549339294433593, 0, 0, -0.5877847671508789, 0.809017360210418701, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+289, 195253, 0, 1519, 5151, '0', 0, 0, -8523.935546875, 930.32086181640625, 108.9770278930664062, 1.535889506340026855, 0, 0, 0.694658279418945312, 0.719339847564697265, 120, 255, 1, 45338), -- Hanging, Streamer x3 - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+290, 195256, 0, 1519, 5151, '0', 0, 0, -8586.7041015625, 962.4266357421875, 98.4514617919921875, 3.019413232803344726, 0, 0, 0.998134613037109375, 0.061051756143569946, 120, 255, 1, 45338), -- Standing, Exterior, Medium - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+291, 195253, 0, 1519, 5151, '0', 0, 0, -8630.92578125, 945.2586669921875, 135.815643310546875, 3.822272777557373046, 0, 0, -0.94264125823974609, 0.333807557821273803, 120, 255, 1, 45338), -- Hanging, Streamer x3 - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+292, 195255, 0, 1519, 5151, '0', 0, 0, -8630.6298828125, 945.80035400390625, 112.9881973266601562, 3.822272777557373046, 0, 0, -0.94264125823974609, 0.333807557821273803, 120, 255, 1, 45338), -- Hanging, Tall/Thin, Large - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+293, 195266, 0, 1519, 5151, '0', 0, 0, -8641.03125, 953.5711669921875, 122.9622268676757812, 3.822272777557373046, 0, 0, -0.94264125823974609, 0.333807557821273803, 120, 255, 1, 45338), -- Hanging, Streamer - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+294, 195260, 0, 1519, 5151, '0', 0, 0, -8489.6396484375, 842.10797119140625, 108.7779998779296875, 3.630291461944580078, 0, 0, -0.97029495239257812, 0.241925001144409179, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+295, 195260, 0, 1519, 5151, '0', 0, 0, -8487.7197265625, 839.50701904296875, 106.66400146484375, 2.792518377304077148, 0, 0, 0.984807014465332031, 0.173652306199073791, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+296, 195260, 0, 1519, 5151, '0', 0, 0, -8489.25, 844.07098388671875, 106.6750030517578125, 0.890116631984710693, 0, 0, 0.430510520935058593, 0.902585566043853759, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+297, 195260, 0, 1519, 5151, '0', 0, 0, -8490.2998046875, 841.06597900390625, 110.5, 3.22885894775390625, 0, 0, -0.99904823303222656, 0.043619260191917419, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+298, 195260, 0, 1519, 5151, '0', 0, 0, -8491.1796875, 843.42401123046875, 108.7779998779296875, 4.328419685363769531, 0, 0, -0.82903671264648437, 0.559194147586822509, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+299, 195260, 0, 1519, 5151, '0', 0, 0, -8493.1396484375, 843.26397705078125, 108.7779998779296875, 2.094393253326416015, 0, 0, 0.866024971008300781, 0.50000077486038208, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+300, 195260, 0, 1519, 5151, '0', 0, 0, -8489.48046875, 840.12799072265625, 108.7819976806640625, 2.740161895751953125, 0, 0, 0.979924201965332031, 0.199370384216308593, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+301, 195260, 0, 1519, 5151, '0', 0, 0, -8489.9296875, 836.9219970703125, 106.6620025634765625, 1.972219824790954589, 0, 0, 0.83388519287109375, 0.55193793773651123, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+302, 195260, 0, 1519, 5151, '0', 0, 0, -8495.83984375, 838.88201904296875, 106.6439971923828125, 0.575957298278808593, 0, 0, 0.284014701843261718, 0.958819925785064697, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+303, 195260, 0, 1519, 5151, '0', 0, 0, -8492.1298828125, 845.04901123046875, 106.6699981689453125, 1.640606880187988281, 0, 0, 0.731352806091308593, 0.6819993257522583, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+304, 195260, 0, 1519, 5151, '0', 0, 0, -8490.76953125, 838.59197998046875, 108.7809982299804687, 2.024578809738159179, 0, 0, 0.848047256469726562, 0.529920578002929687, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+305, 195260, 0, 1519, 5151, '0', 0, 0, -8493.9296875, 844.89898681640625, 106.667999267578125, 2.146752834320068359, 0, 0, 0.878816604614257812, 0.477159708738327026, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+306, 195253, 0, 1519, 5151, '0', 0, 0, -8578.419921875, 986.79998779296875, 133.947998046875, 0.680676698684692382, 0, 0, 0.333806037902832031, 0.942641794681549072, 120, 255, 1, 45338), -- Hanging, Streamer x3 - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+307, 195260, 0, 1519, 5151, '0', 0, 0, -8494.2900390625, 839.76898193359375, 108.759002685546875, 3.647741317749023437, 0, 0, -0.96814727783203125, 0.250381410121917724, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+308, 195260, 0, 1519, 5151, '0', 0, 0, -8496.1103515625, 840.6199951171875, 106.6510009765625, 0.174532130360603332, 0, 0, 0.087155342102050781, 0.996194720268249511, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+309, 195260, 0, 1519, 5151, '0', 0, 0, -8488.7900390625, 838.1939697265625, 106.6630020141601562, 2.391098499298095703, 0, 0, 0.930417060852050781, 0.366502493619918823, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+310, 195256, 0, 1519, 5151, '0', 0, 0, -8605.8203125, 983.83074951171875, 98.5787200927734375, 4.834563255310058593, 0, 0, -0.66261959075927734, 0.748956084251403808, 120, 255, 1, 45338), -- Standing, Exterior, Medium - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+311, 195260, 0, 1519, 5151, '0', 0, 0, -8488, 842.88201904296875, 106.6630020141601562, 0.296705186367034912, 0, 0, 0.147809028625488281, 0.989015936851501464, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+312, 195260, 0, 1519, 5151, '0', 0, 0, -8495.080078125, 843.64202880859375, 106.6650009155273437, 2.373644113540649414, 0, 0, 0.927183151245117187, 0.37460830807685852, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+313, 195260, 0, 1519, 5151, '0', 0, 0, -8487.7998046875, 841.12799072265625, 106.6650009155273437, 0.122172988951206207, 0, 0, 0.061048507690429687, 0.998134791851043701, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+314, 195260, 0, 1519, 5151, '0', 0, 0, -8492.099609375, 842.63702392578125, 110.5, 1.605701684951782226, 0, 0, 0.719339370727539062, 0.694658815860748291, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+315, 195255, 0, 1519, 5151, '0', 0, 0, -8578.53125, 986.1268310546875, 111.2677764892578125, 0.680676698684692382, 0, 0, 0.333806037902832031, 0.942641794681549072, 120, 255, 1, 45338), -- Hanging, Tall/Thin, Large - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+316, 195260, 0, 1519, 5151, '0', 0, 0, -8492.759765625, 838.44097900390625, 108.779998779296875, 1.274088263511657714, 0, 0, 0.594821929931640625, 0.80385744571685791, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+317, 195260, 0, 1519, 5151, '0', 0, 0, -8493.6796875, 840.83197021484375, 110.5009994506835937, 3.22885894775390625, 0, 0, -0.99904823303222656, 0.043619260191917419, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+318, 195260, 0, 1519, 5151, '0', 0, 0, -8490.4697265625, 845.10601806640625, 106.6729965209960937, 1.204277276992797851, 0, 0, 0.56640625, 0.824126183986663818, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+319, 195260, 0, 1519, 5151, '0', 0, 0, -8491.5595703125, 836.802001953125, 106.6630020141601562, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+320, 195266, 0, 1519, 5151, '0', 0, 0, -8568.1474609375, 978.65399169921875, 122.7586669921875, 3.804818391799926757, 0, 0, -0.94551849365234375, 0.325568377971649169, 120, 255, 1, 45338), -- Hanging, Streamer - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+321, 195260, 0, 1519, 5151, '0', 0, 0, -8494.4599609375, 841.74798583984375, 108.7760009765625, 2.914689540863037109, 0, 0, 0.993571281433105468, 0.113208353519439697, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+322, 195260, 0, 1519, 5151, '0', 0, 0, -8496.169921875, 842.2760009765625, 106.6620025634765625, 5.95157480239868164, 0, 0, -0.16504669189453125, 0.986285746097564697, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+323, 195260, 0, 1519, 5151, '0', 0, 0, -8491.8095703125, 839.22698974609375, 110.4980010986328125, 1.640606880187988281, 0, 0, 0.731352806091308593, 0.6819993257522583, 120, 255, 1, 45338), -- Standing, Interior, Small - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+324, 195256, 0, 1519, 5151, '0', 0, 0, -8548.0390625, 997.265869140625, 89.73065185546875, 1.047197580337524414, 0, 0, 0.5, 0.866025388240814208, 120, 255, 1, 45338), -- Standing, Exterior, Medium - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+325, 195266, 0, 1519, 5151, '0', 0, 0, -8584.169921875, 998.56298828125, 122.819000244140625, 0.680676698684692382, 0, 0, 0.333806037902832031, 0.942641794681549072, 120, 255, 1, 45338), -- Hanging, Streamer - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+326, 195256, 0, 1519, 5151, '0', 0, 0, -8562.5634765625, 1016.08551025390625, 89.73065185546875, 0.349065244197845458, 0, 0, 0.173647880554199218, 0.984807789325714111, 120, 255, 1, 45338), -- Standing, Exterior, Medium - Brewfest (Area: Cathedral Square - Difficulty: 0)
|
||||
(@OGUID+327, 195254, 0, 1519, 4411, '0', 0, 0, -8532.0751953125, 1059.33544921875, 28.86179542541503906, 1.937312245368957519, 0, 0, 0.824125289916992187, 0.566407561302185058, 120, 255, 1, 45338), -- Hanging, Square, Large - Brewfest (Area: Stormwind Harbor - Difficulty: 0)
|
||||
(@OGUID+328, 195254, 0, 1519, 4411, '0', 0, 0, -8475.3037109375, 1051.581298828125, 29.42984390258789062, 0.942476630210876464, 0, 0, 0.453989982604980468, 0.891006767749786376, 120, 255, 1, 45338), -- Hanging, Square, Large - Brewfest (Area: Stormwind Harbor - Difficulty: 0)
|
||||
(@OGUID+329, 195273, 0, 1519, 4411, '0', 0, 0, -8489.2880859375, 1178.189697265625, 19.15488624572753906, 4.782202720642089843, 0, 0, -0.68199825286865234, 0.731353819370269775, 120, 255, 1, 45338), -- Hanging, Tall/Thin, Medium - Brewfest (Area: Stormwind Harbor - Difficulty: 0)
|
||||
(@OGUID+330, 195256, 0, 1519, 4411, '0', 0, 0, -8412.6845703125, 1042.2760009765625, 68.3837890625, 2.338739633560180664, 0, 0, 0.920504570007324218, 0.3907318115234375, 120, 255, 1, 45338), -- Standing, Exterior, Medium - Brewfest (Area: Stormwind Harbor - Difficulty: 0)
|
||||
(@OGUID+331, 195266, 0, 1519, 4411, '0', 0, 0, -8534.486328125, 1204.2041015625, 16.40989112854003906, 1.745326757431030273, 0, 0, 0.766043663024902343, 0.642788589000701904, 120, 255, 1, 45338), -- Hanging, Streamer - Brewfest (Area: Stormwind Harbor - Difficulty: 0)
|
||||
(@OGUID+332, 195266, 0, 1519, 4411, '0', 0, 0, -8542.3212890625, 1200.5806884765625, 16.43208122253417968, 2.129300594329833984, 0, 0, 0.874619483947753906, 0.484810054302215576, 120, 255, 1, 45338), -- Hanging, Streamer - Brewfest (Area: Stormwind Harbor - Difficulty: 0)
|
||||
(@OGUID+333, 195266, 0, 1519, 4411, '0', 0, 0, -8520.5244140625, 1204.2047119140625, 16.42971992492675781, 1.396261811256408691, 0, 0, 0.642786979675292968, 0.766044974327087402, 120, 255, 1, 45338), -- Hanging, Streamer - Brewfest (Area: Stormwind Harbor - Difficulty: 0)
|
||||
(@OGUID+334, 195266, 0, 1519, 4411, '0', 0, 0, -8512.31640625, 1200.337890625, 16.39689445495605468, 0.925023794174194335, 0, 0, 0.446197509765625, 0.894934535026550292, 120, 255, 1, 45338), -- Hanging, Streamer - Brewfest (Area: Stormwind Harbor - Difficulty: 0)
|
||||
(@OGUID+335, 195273, 0, 1519, 4411, '0', 0, 0, -8470.8974609375, 1178.189208984375, 19.26302337646484375, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 45338), -- Hanging, Tall/Thin, Medium - Brewfest (Area: Stormwind Harbor - Difficulty: 0)
|
||||
(@OGUID+336, 195273, 0, 1519, 4411, '0', 0, 0, -8565.794921875, 1178.1890869140625, 19.314239501953125, 4.782202720642089843, 0, 0, -0.68199825286865234, 0.731353819370269775, 120, 255, 1, 45338), -- Hanging, Tall/Thin, Medium - Brewfest (Area: Stormwind Harbor - Difficulty: 0)
|
||||
(@OGUID+337, 195273, 0, 1519, 4411, '0', 0, 0, -8584.2392578125, 1178.189208984375, 19.26141548156738281, 4.764749526977539062, 0, 0, -0.6883544921875, 0.725374460220336914, 120, 255, 1, 45338), -- Hanging, Tall/Thin, Medium - Brewfest (Area: Stormwind Harbor - Difficulty: 0)
|
||||
(@OGUID+338, 195273, 0, 1519, 4411, '0', 0, 0, -8565.8369140625, 1181.0335693359375, 18.98039054870605468, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 45338), -- Hanging, Tall/Thin, Medium - Brewfest (Area: Stormwind Harbor - Difficulty: 0)
|
||||
(@OGUID+339, 195273, 0, 1519, 4411, '0', 0, 0, -8584.185546875, 1181.032958984375, 18.81927490234375, 1.570795774459838867, 0, 0, 0.707106590270996093, 0.707106947898864746, 120, 255, 1, 45338), -- Hanging, Tall/Thin, Medium - Brewfest (Area: Stormwind Harbor - Difficulty: 0)
|
||||
(@OGUID+340, 195273, 0, 1519, 4411, '0', 0, 0, -8470.8994140625, 1181.034912109375, 19.37266159057617187, 1.623155713081359863, 0, 0, 0.725374221801757812, 0.688354730606079101, 120, 255, 1, 45338), -- Hanging, Tall/Thin, Medium - Brewfest (Area: Stormwind Harbor - Difficulty: 0)
|
||||
(@OGUID+341, 195266, 0, 1519, 4411, '0', 0, 0, -8504.935546875, 1192.6331787109375, 16.33524894714355468, 0.541050612926483154, 0, 0, 0.267237663269042968, 0.96363067626953125, 120, 255, 1, 45338), -- Hanging, Streamer - Brewfest (Area: Stormwind Harbor - Difficulty: 0)
|
||||
(@OGUID+342, 195273, 0, 1519, 4411, '0', 0, 0, -8489.095703125, 1181.034912109375, 19.36829757690429687, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 45338), -- Hanging, Tall/Thin, Medium - Brewfest (Area: Stormwind Harbor - Difficulty: 0)
|
||||
(@OGUID+343, 195273, 0, 1519, 4411, '0', 0, 0, -8489.3603515625, 1251.8638916015625, 9.806099891662597656, 4.764749526977539062, 0, 0, -0.6883544921875, 0.725374460220336914, 120, 255, 1, 45338), -- Hanging, Tall/Thin, Medium - Brewfest (Area: Stormwind Harbor - Difficulty: 0)
|
||||
(@OGUID+344, 195256, 0, 1519, 4411, '0', 0, 0, -8439.421875, 1221.0718994140625, 5.66116189956665039, 0.122172988951206207, 0, 0, 0.061048507690429687, 0.998134791851043701, 120, 255, 1, 45338), -- Standing, Exterior, Medium - Brewfest (Area: Stormwind Harbor - Difficulty: 0)
|
||||
(@OGUID+345, 195273, 0, 1519, 4411, '0', 0, 0, -8458.8095703125, 1252.0125732421875, 9.891839981079101562, 4.660029888153076171, 0, 0, -0.72537422180175781, 0.688354730606079101, 120, 255, 1, 45338), -- Hanging, Tall/Thin, Medium - Brewfest (Area: Stormwind Harbor - Difficulty: 0)
|
||||
(@OGUID+346, 195256, 0, 1519, 4411, '0', 0, 0, -8451.66015625, 1220.8668212890625, 5.64672708511352539, 3.036838293075561523, 0, 0, 0.998628616333007812, 0.052353221923112869, 120, 255, 1, 45338), -- Standing, Exterior, Medium - Brewfest (Area: Stormwind Harbor - Difficulty: 0)
|
||||
(@OGUID+347, 195273, 0, 1519, 4411, '0', 0, 0, -8397.2392578125, 1251.8677978515625, 9.888047218322753906, 4.660029888153076171, 0, 0, -0.72537422180175781, 0.688354730606079101, 120, 255, 1, 45338), -- Hanging, Tall/Thin, Medium - Brewfest (Area: Stormwind Harbor - Difficulty: 0)
|
||||
(@OGUID+348, 195256, 0, 1519, 4411, '0', 0, 0, -8350.607421875, 1093.49365234375, 57.26216506958007812, 0.680676698684692382, 0, 0, 0.333806037902832031, 0.942641794681549072, 120, 255, 1, 45338), -- Standing, Exterior, Medium - Brewfest (Area: Stormwind Harbor - Difficulty: 0)
|
||||
(@OGUID+349, 195263, 0, 1519, 4411, '0', 0, 0, -8745.3095703125, 860.75177001953125, 110.069366455078125, 0.715584874153137207, 0, 0, 0.350207328796386718, 0.936672210693359375, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: Stormwind Harbor - Difficulty: 0)
|
||||
(@OGUID+350, 195263, 0, 1519, 8411, '0', 0, 0, -8805.12109375, 868.18316650390625, 109.9552078247070312, 2.181660413742065429, 0, 0, 0.887010574340820312, 0.461749136447906494, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: -Unknown- - Difficulty: 0)
|
||||
(@OGUID+351, 195263, 0, 1519, 5390, '0', 0, 0, -8811.73046875, 809.0419921875, 109.8079986572265625, 3.78736734390258789, 0, 0, -0.94832324981689453, 0.317305892705917358, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+352, 195263, 0, 1519, 5390, '0', 0, 0, -8883.6806640625, 758.49298095703125, 105.1223526000976562, 5.375615119934082031, 0, 0, -0.4383707046508789, 0.898794233798980712, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+353, 195253, 0, 1519, 5390, '0', 0, 0, -8892.51953125, 867.23602294921875, 109.0019989013671875, 0.925023794174194335, 0, 0, 0.446197509765625, 0.894934535026550292, 120, 255, 1, 45338), -- Hanging, Streamer x3 - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+354, 195263, 0, 1519, 5390, '0', 0, 0, -8857.830078125, 931.6610107421875, 113.0839996337890625, 0.575957298278808593, 0, 0, 0.284014701843261718, 0.958819925785064697, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+355, 195253, 0, 1519, 5390, '0', 0, 0, -8914.2099609375, 995.18798828125, 129.576995849609375, 4.188792228698730468, 0, 0, -0.86602497100830078, 0.50000077486038208, 120, 255, 1, 45338), -- Hanging, Streamer x3 - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+356, 195253, 0, 1519, 5390, '0', 0, 0, -8904.2197265625, 1010.32000732421875, 130.6670074462890625, 1.099556446075439453, 0, 0, 0.522498130798339843, 0.852640450000762939, 120, 255, 1, 45338), -- Hanging, Streamer x3 - Brewfest (Area: The Canals - Difficulty: 0)
|
||||
(@OGUID+357, 195253, 0, 1519, 5154, '0', 0, 0, -8948.169921875, 861.864990234375, 119.2649993896484375, 2.967041015625, 0, 0, 0.996193885803222656, 0.087165042757987976, 120, 255, 1, 45338), -- Hanging, Streamer x3 - Brewfest (Area: Mage Quarter - Difficulty: 0)
|
||||
(@OGUID+358, 195253, 0, 1519, 5154, '0', 0, 0, -8937.3095703125, 861.2340087890625, 119.3000030517578125, 6.213373661041259765, 0, 0, -0.03489875793457031, 0.999390840530395507, 120, 255, 1, 45338), -- Hanging, Streamer x3 - Brewfest (Area: Mage Quarter - Difficulty: 0)
|
||||
(@OGUID+359, 195256, 0, 1519, 5154, '0', 0, 0, -8993.67578125, 964.9757080078125, 67.5161590576171875, 4.15491485595703125, 0, 0, -0.87436962127685546, 0.485260486602783203, 120, 255, 1, 45338), -- Standing, Exterior, Medium - Brewfest (Area: Mage Quarter - Difficulty: 0)
|
||||
(@OGUID+360, 195256, 0, 1519, 5154, '0', 0, 0, -8986.0263671875, 954.234375, 67.51596832275390625, 3.490974664688110351, 0, 0, -0.98478031158447265, 0.173803776502609252, 120, 255, 1, 45338), -- Standing, Exterior, Medium - Brewfest (Area: Mage Quarter - Difficulty: 0)
|
||||
(@OGUID+361, 195263, 0, 1519, 5154, '0', 0, 0, -9006.259765625, 877.905029296875, 116.46600341796875, 1.448621988296508789, 0, 0, 0.662619590759277343, 0.748956084251403808, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: Mage Quarter - Difficulty: 0)
|
||||
(@OGUID+362, 195256, 0, 1519, 5154, '0', 0, 0, -9041.0380859375, 932.81597900390625, 66.15769195556640625, 4.886923789978027343, 0, 0, -0.64278697967529296, 0.766044974327087402, 120, 255, 1, 45338), -- Standing, Exterior, Medium - Brewfest (Area: Mage Quarter - Difficulty: 0)
|
||||
(@OGUID+363, 195256, 0, 1519, 5154, '0', 0, 0, -9021.5380859375, 901.03472900390625, 64.86025238037109375, 4.886923789978027343, 0, 0, -0.64278697967529296, 0.766044974327087402, 120, 255, 1, 45338), -- Standing, Exterior, Medium - Brewfest (Area: Mage Quarter - Difficulty: 0)
|
||||
(@OGUID+364, 195256, 0, 1519, 5154, '0', 0, 0, -9002.96875, 877.66839599609375, 64.86025238037109375, 4.886923789978027343, 0, 0, -0.64278697967529296, 0.766044974327087402, 120, 255, 1, 45338), -- Standing, Exterior, Medium - Brewfest (Area: Mage Quarter - Difficulty: 0)
|
||||
(@OGUID+365, 195256, 0, 1519, 5154, '0', 0, 0, -9029.875, 895.02777099609375, 64.86025238037109375, 5.864306926727294921, 0, 0, -0.20791149139404296, 0.978147625923156738, 120, 255, 1, 45338), -- Standing, Exterior, Medium - Brewfest (Area: Mage Quarter - Difficulty: 0)
|
||||
(@OGUID+366, 195263, 0, 1519, 5154, '0', 0, 0, -9013.9599609375, 872.1409912109375, 113.3000030517578125, 3.019413232803344726, 0, 0, 0.998134613037109375, 0.061051756143569946, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: Mage Quarter - Difficulty: 0)
|
||||
(@OGUID+367, 195263, 0, 1519, 5154, '0', 0, 0, -9003.76953125, 862.552001953125, 129.85699462890625, 5.026549339294433593, 0, 0, -0.5877847671508789, 0.809017360210418701, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: Mage Quarter - Difficulty: 0)
|
||||
(@OGUID+368, 195263, 0, 1519, 5154, '0', 0, 0, -8999.5, 865.91497802734375, 129.675994873046875, 5.742135047912597656, 0, 0, -0.26723766326904296, 0.96363067626953125, 120, 255, 1, 45338), -- Hanging, Square, Medium - Brewfest (Area: Mage Quarter - Difficulty: 0)
|
||||
(@OGUID+369, 195256, 0, 1519, 5154, '0', 0, 0, -9055.580078125, 921.295166015625, 66.15769195556640625, 5.864306926727294921, 0, 0, -0.20791149139404296, 0.978147625923156738, 120, 255, 1, 45338), -- Standing, Exterior, Medium - Brewfest (Area: Mage Quarter - Difficulty: 0)
|
||||
(@OGUID+370, 195256, 0, 1519, 5154, '0', 0, 0, -9011.3037109375, 871.66143798828125, 64.86025238037109375, 5.864306926727294921, 0, 0, -0.20791149139404296, 0.978147625923156738, 120, 255, 1, 45338), -- Standing, Exterior, Medium - Brewfest (Area: Mage Quarter - Difficulty: 0)
|
||||
(@OGUID+371, 195256, 0, 1519, 5154, '0', 0, 0, -9071.94140625, 887.44268798828125, 67.48587799072265625, 1.096506595611572265, 0, 0, 0.521197319030761718, 0.853436231613159179, 120, 255, 1, 45338), -- Standing, Exterior, Medium - Brewfest (Area: Mage Quarter - Difficulty: 0)
|
||||
(@OGUID+372, 195256, 0, 1519, 5154, '0', 0, 0, -9079.9755859375, 898.69097900390625, 67.47487640380859375, 0.137406647205352783, 0, 0, 0.0686492919921875, 0.997640848159790039, 120, 255, 1, 45338), -- Standing, Exterior, Medium - Brewfest (Area: Mage Quarter - Difficulty: 0)
|
||||
(@OGUID+373, 292549, 0, 1519, 1617, '0', 0, 0, -9107.373046875, 340.611114501953125, 94.87996673583984375, 1.029241323471069335, 0, 0, 0.492204666137695312, 0.870479464530944824, 120, 255, 1, 45338), -- Hay Bale (Area: Valley of Heroes - Difficulty: 0)
|
||||
(@OGUID+374, 292549, 0, 1519, 1617, '0', 0, 0, -9116.408203125, 351.524322509765625, 93.59757232666015625, 2.009107112884521484, 0, 0, 0.843922615051269531, 0.536464929580688476, 120, 255, 1, 45338); -- Hay Bale (Area: Valley of Heroes - Difficulty: 0)
|
||||
|
||||
-- Creature Template
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60 WHERE `entry`=40441; -- Battered Brewmaster
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=7861, `npcflag`=3 WHERE `entry`=18927; -- Human Commoner
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60, `unit_flags3`=16777216 WHERE `entry`=155345; -- [DNT] Brewfest Music
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60 WHERE `entry`=23510; -- Thunderbrew Apprentice
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60 WHERE `entry`=153931; -- Brewfest Reveler
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60 WHERE `entry`=23482; -- Barleybrew Apprentice
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60 WHERE `entry`=23511; -- Gordok Brew Apprentice
|
||||
|
||||
-- GameObject Template
|
||||
DELETE FROM `gameobject_template` WHERE `entry` IN (367978 /*Standing, Interior, Small 3 - Brewfest*/, 367977 /*Standing, Interior, Small 2 - Brewfest*/);
|
||||
INSERT INTO `gameobject_template` (`entry`, `type`, `displayId`, `name`, `IconName`, `castBarCaption`, `unk1`, `size`, `Data0`, `Data1`, `Data2`, `Data3`, `Data4`, `Data5`, `Data6`, `Data7`, `Data8`, `Data9`, `Data10`, `Data11`, `Data12`, `Data13`, `Data14`, `Data15`, `Data16`, `Data17`, `Data18`, `Data19`, `Data20`, `Data21`, `Data22`, `Data23`, `Data24`, `Data25`, `Data26`, `Data27`, `Data28`, `Data29`, `Data30`, `Data31`, `Data32`, `Data33`, `Data34`, `ContentTuningId`, `VerifiedBuild`) VALUES
|
||||
(367978, 5, 69060, 'Standing, Interior, Small 3 - Brewfest', '', '', '', 1.25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45338), -- Standing, Interior, Small 3 - Brewfest
|
||||
(367977, 5, 8993, 'Standing, Interior, Small 2 - Brewfest', '', '', '', 1.25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45338); -- Standing, Interior; Small 2 - Brewfest
|
||||
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=298, `VerifiedBuild`=45338 WHERE `entry`=186185; -- Gordok Festive Keg
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=298, `VerifiedBuild`=45338 WHERE `entry`=326139; -- Alcohol-Free Brewfest Sampler
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=298, `VerifiedBuild`=45338 WHERE `entry`=186184; -- Thunderbrew Festive Keg
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=298, `VerifiedBuild`=45338 WHERE `entry`=186183; -- Barleybrew Festive Keg
|
||||
UPDATE `gameobject_template` SET `displayId`=57059, `VerifiedBuild`=45338 WHERE `entry`=195254; -- Hanging, Square, Large - Brewfest
|
||||
|
||||
-- GameObject Template Addon
|
||||
DELETE FROM `gameobject_template_addon` WHERE `entry` IN (326138 /*Party Table*/, 292549 /*Hay Bale*/, 367978 /*Standing, Interior, Small 3 - Brewfest*/, 367977 /*Standing, Interior, Small 2 - Brewfest*/);
|
||||
INSERT INTO `gameobject_template_addon` (`entry`, `faction`, `flags`, `WorldEffectID`, `AIAnimKitID`) VALUES
|
||||
(326138, 114, 0, 0, 0), -- Party Table
|
||||
(292549, 1375, 8192, 0, 0), -- Hay Bale
|
||||
(367978, 114, 0, 0, 0), -- Standing, Interior, Small 3 - Brewfest
|
||||
(367977, 114, 0, 0, 0); -- Standing, Interior, Small 2 - Brewfest
|
||||
|
||||
-- Scaling
|
||||
DELETE FROM `creature_template_scaling` WHERE (`Entry`=40441 AND `DifficultyID`=0);
|
||||
INSERT INTO `creature_template_scaling` (`Entry`, `DifficultyID`, `LevelScalingDeltaMin`, `LevelScalingDeltaMax`, `ContentTuningID`, `VerifiedBuild`) VALUES
|
||||
(40441, 0, 0, 0, 298, 45338);
|
||||
|
||||
UPDATE `creature_template_scaling` SET `VerifiedBuild`=45338 WHERE (`DifficultyID`=0 AND `Entry` IN (149458,1141,1313,1311,3628,5503,5499,5081,5500,1300,1347,1346,5566,1314,4078,1310,1309,148796,1429,5567,149445,147785,52408,148233,158753,5497,158463,158440,158436,23837,158755,149616,1415,1414,1413,2708,150122,158456,151937,331,149121,149131,2485,5498,149124,5694,149626,89174,174146,85307,149433,5520,1435,461,5496,149099,9584,147741,103033,147714,5495,1733,155739,148124,82564,85819,1307,1305,1419,84751,84749,85818,85817,84745,85816,3627,1308,1304,130828,297,133704,5506,30730,30713,1317,49701,5386,52031,42288,338,1316,1315,1312,46180,11068,1318,1366,5493,5494,188679,113211,1367,188342,188678,49893,11828,11827,5504,9977,151287,7295,114246,5505,29154,43102,188374,3469,141554,44749,29016,29152,29088,29144,29019,176240,176224,176231,176234,36674,176236,176225,176223,50435,44880,6173,5489,15214,376,29712,57800,1212,1371,1370,1368,1348,54443,54442,1405,68980,3520,1350,1349,50424,157498,157496,142816,50432,83883,6171,83890,83882,83878,14450,173819,4982,7917,1444,141508,5484,1351,141504,5492,5491,12336,14496,56796,54117,928,14497,54026,1646,10782,133494,133458,3511,3510,3508,3507,3505,16908,44395,133675,19269,3681,43840,43825,7232,43842,43841,43725,43724,43823,5509,43824,5514,3513,3512,3509,43690,1416,43723,5513,11026,14563,80069,5518,44394,1649,44393,20407,43034,5519,144134,6579,44235,44236,45306,144135,5511,5512,5510,957,144133,29725,188521,7798,133441,5516,5517,2879,5413,44392,5515,1472,53991,54214,54219,54217,54216,54215,54218,53641,656,11069,1439,17103,4960,2285,1752,721,165505,61840,61839,58167,5384,61841,1756,1327,173706,6090,176220,5483,176203,340,6089,3629,5482,155011,1328,164960,164948,164940,164957,164954,164953,164939,164950,164947,1326,164955,6946,164961,164952,164946,1325,164945,164962,164942,164956,164949,164943,164941,175435,62913,167429,7208,7207,51998,8383,35845,13283,14559,114832,44252,14561,153292,1341,918,44237,1324,31146,1323,3626,176192,28355,28347,176237,176235,71526,55684,38821,140407,140403,3504,47688,2330,2331,4961,1333,43694,163007,43693,1721,4269,73190,14560,87503,2795,1395,12783,44245,12787,12786,12785,308,284,58154,146633,54660,69975,52029,12784,19848,44246,175051,12781,12780,12779,62954,69974,52030,176221,87501,188523,23050,1292,11096,176226,1339,1321,1320,176244,5564,5565,1319,52361,52359,52358,44583,50480,1478,1477,61837,176230,176233,176229,18376,44582,50523,133509,56925,42421,50525,50524,29142,61838,2533,2532,61081,18406,43768,890,5917,1933,1412,94,30,1423,2442,61165,23511,60649,155345,883,23510,153931,23482,42218,61080,4959,17804,18360,186180,14721,14394,352,18359,18357,65153,18362,49877,1302,61896,61895,1303,18375,43769,35477,2334,2198,1294,1287,1285,49748,51440,1402,48632,1301,1297,14439,14438,1286,1299,1298,1295,142668,1291,142666,1289,14423,6174,43692,133431,50669,8670,111190,482,4981,4974,46602,12481,12480,1432,1431,1428,1427,483,141270,1257,1275,15659,2457,2456,1976,2455,49540,29093,279,277,5193,121541,18927,8719,43822,43820,179896,32520,175420,3518,175416,188151,68,44774,44773,6740,140253,51348,61836,61834,43819,4075,62822,42339,133433,62821,162935));
|
||||
UPDATE `creature_template_scaling` SET `LevelScalingDeltaMax`=-4, `VerifiedBuild`=45338 WHERE (`DifficultyID`=0 AND `Entry` IN (66876,51081));
|
||||
UPDATE `creature_template_scaling` SET `LevelScalingDeltaMin`=-4, `LevelScalingDeltaMax`=-4, `VerifiedBuild`=45338 WHERE (`Entry`=108180 AND `DifficultyID`=0);
|
||||
UPDATE `creature_template_scaling` SET `LevelScalingDeltaMin`=-2, `VerifiedBuild`=45338 WHERE (`Entry`=53626 AND `DifficultyID`=0);
|
||||
UPDATE `creature_template_scaling` SET `LevelScalingDeltaMin`=3, `LevelScalingDeltaMax`=3, `ContentTuningID`=2148, `VerifiedBuild`=45338 WHERE (`Entry`=175138 AND `DifficultyID`=0);
|
||||
|
||||
DELETE FROM `creature_model_info` WHERE `DisplayID`=83108;
|
||||
INSERT INTO `creature_model_info` (`DisplayID`, `BoundingRadius`, `CombatReach`, `DisplayID_Other_Gender`, `VerifiedBuild`) VALUES
|
||||
(83108, 0.347222000360488891, 1.5, 0, 45338);
|
||||
|
||||
-- Equip Template
|
||||
DELETE FROM `creature_equip_template` WHERE (`CreatureID`=18927 AND `ID`=7);
|
||||
INSERT INTO `creature_equip_template` (`CreatureID`, `ID`, `ItemID1`, `AppearanceModID1`, `ItemVisual1`, `ItemID2`, `AppearanceModID2`, `ItemVisual2`, `ItemID3`, `AppearanceModID3`, `ItemVisual3`, `VerifiedBuild`) VALUES
|
||||
(18927, 7, 46733, 0, 0, 0, 0, 0, 0, 0, 0, 45338); -- Human Commoner
|
||||
|
||||
-- Vendor Data
|
||||
DELETE FROM `npc_vendor` WHERE (`entry`=23511 AND `item`=138869 AND `ExtendedCost`=0 AND `type`=1) OR (`entry`=23510 AND `item`=138868 AND `ExtendedCost`=0 AND `type`=1) OR (`entry`=23510 AND `item`=138871 AND `ExtendedCost`=0 AND `type`=1) OR (`entry`=23510 AND `item`=46399 AND `ExtendedCost`=0 AND `type`=1) OR (`entry`=23482 AND `item`=138867 AND `ExtendedCost`=0 AND `type`=1) OR (`entry`=23482 AND `item`=46400 AND `ExtendedCost`=0 AND `type`=1);
|
||||
INSERT INTO `npc_vendor` (`entry`, `slot`, `item`, `maxcount`, `ExtendedCost`, `type`, `PlayerConditionID`, `IgnoreFiltering`, `VerifiedBuild`) VALUES
|
||||
(23511, 5, 138869, 0, 0, 1, 0, 0, 45338), -- Gordok Bock
|
||||
(23510, 6, 138868, 0, 0, 1, 0, 0, 45338), -- Mannoroth's Blood Red Ale
|
||||
(23510, 5, 138871, 0, 0, 1, 0, 0, 45338), -- Storming Saison
|
||||
(23510, 4, 46399, 0, 0, 1, 0, 0, 45338), -- Thunder's Plunder
|
||||
(23482, 5, 138867, 0, 0, 1, 0, 0, 45338), -- Shimmer Stout
|
||||
(23482, 4, 46400, 0, 0, 1, 0, 0, 45338); -- Barleybrew Gold
|
||||
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=45338 WHERE (`entry`=23511 AND `item`=46403 AND `ExtendedCost`=0 AND `type`=1) OR (`entry`=23511 AND `item`=33036 AND `ExtendedCost`=0 AND `type`=1) OR (`entry`=23511 AND `item`=33035 AND `ExtendedCost`=0 AND `type`=1) OR (`entry`=23511 AND `item`=33034 AND `ExtendedCost`=0 AND `type`=1);
|
||||
UPDATE `npc_vendor` SET `slot`=3, `VerifiedBuild`=45338 WHERE (`entry`=23510 AND `item`=33033 AND `ExtendedCost`=0 AND `type`=1); -- Thunderbrew Stout
|
||||
UPDATE `npc_vendor` SET `slot`=2, `VerifiedBuild`=45338 WHERE (`entry`=23510 AND `item`=33032 AND `ExtendedCost`=0 AND `type`=1); -- Thunderbrew Ale
|
||||
UPDATE `npc_vendor` SET `slot`=1, `VerifiedBuild`=45338 WHERE (`entry`=23510 AND `item`=33031 AND `ExtendedCost`=0 AND `type`=1); -- Thunder 45
|
||||
UPDATE `npc_vendor` SET `slot`=3, `VerifiedBuild`=45338 WHERE (`entry`=23482 AND `item`=33029 AND `ExtendedCost`=0 AND `type`=1); -- Barleybrew Dark
|
||||
UPDATE `npc_vendor` SET `slot`=2, `VerifiedBuild`=45338 WHERE (`entry`=23482 AND `item`=33028 AND `ExtendedCost`=0 AND `type`=1); -- Barleybrew Light
|
||||
UPDATE `npc_vendor` SET `slot`=1, `VerifiedBuild`=45338 WHERE (`entry`=23482 AND `item`=33030 AND `ExtendedCost`=0 AND `type`=1); -- Barleybrew Clear
|
||||
|
||||
-- Outdated Commoner spawns
|
||||
DELETE FROM `creature` WHERE `guid` IN (134885, 134886);
|
||||
DELETE FROM `game_event_creature` WHERE `guid` IN (134885, 134886);
|
||||
|
||||
-- game_event_spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=24 AND `guid` BETWEEN @CGUID+0 AND @CGUID+23;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(24, @CGUID+0),
|
||||
(24, @CGUID+1),
|
||||
(24, @CGUID+2),
|
||||
(24, @CGUID+3),
|
||||
(24, @CGUID+4),
|
||||
(24, @CGUID+5),
|
||||
(24, @CGUID+6),
|
||||
(24, @CGUID+7),
|
||||
(24, @CGUID+8),
|
||||
(24, @CGUID+9),
|
||||
(24, @CGUID+10),
|
||||
(24, @CGUID+11),
|
||||
(24, @CGUID+12),
|
||||
(24, @CGUID+13),
|
||||
(24, @CGUID+14),
|
||||
(24, @CGUID+15),
|
||||
(24, @CGUID+16),
|
||||
(24, @CGUID+17),
|
||||
(24, @CGUID+18),
|
||||
(24, @CGUID+19),
|
||||
(24, @CGUID+20),
|
||||
(24, @CGUID+21),
|
||||
(24, @CGUID+22),
|
||||
(24, @CGUID+23);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=24 AND `guid` BETWEEN @OGUID+0 AND @OGUID+374;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(24, @OGUID+0),
|
||||
(24, @OGUID+1),
|
||||
(24, @OGUID+2),
|
||||
(24, @OGUID+3),
|
||||
(24, @OGUID+4),
|
||||
(24, @OGUID+5),
|
||||
(24, @OGUID+6),
|
||||
(24, @OGUID+7),
|
||||
(24, @OGUID+8),
|
||||
(24, @OGUID+9),
|
||||
(24, @OGUID+10),
|
||||
(24, @OGUID+11),
|
||||
(24, @OGUID+12),
|
||||
(24, @OGUID+13),
|
||||
(24, @OGUID+14),
|
||||
(24, @OGUID+15),
|
||||
(24, @OGUID+16),
|
||||
(24, @OGUID+17),
|
||||
(24, @OGUID+18),
|
||||
(24, @OGUID+19),
|
||||
(24, @OGUID+20),
|
||||
(24, @OGUID+21),
|
||||
(24, @OGUID+22),
|
||||
(24, @OGUID+23),
|
||||
(24, @OGUID+24),
|
||||
(24, @OGUID+25),
|
||||
(24, @OGUID+26),
|
||||
(24, @OGUID+27),
|
||||
(24, @OGUID+28),
|
||||
(24, @OGUID+29),
|
||||
(24, @OGUID+30),
|
||||
(24, @OGUID+31),
|
||||
(24, @OGUID+32),
|
||||
(24, @OGUID+33),
|
||||
(24, @OGUID+34),
|
||||
(24, @OGUID+35),
|
||||
(24, @OGUID+36),
|
||||
(24, @OGUID+37),
|
||||
(24, @OGUID+38),
|
||||
(24, @OGUID+39),
|
||||
(24, @OGUID+40),
|
||||
(24, @OGUID+41),
|
||||
(24, @OGUID+42),
|
||||
(24, @OGUID+43),
|
||||
(24, @OGUID+44),
|
||||
(24, @OGUID+45),
|
||||
(24, @OGUID+46),
|
||||
(24, @OGUID+47),
|
||||
(24, @OGUID+48),
|
||||
(24, @OGUID+49),
|
||||
(24, @OGUID+50),
|
||||
(24, @OGUID+51),
|
||||
(24, @OGUID+52),
|
||||
(24, @OGUID+53),
|
||||
(24, @OGUID+54),
|
||||
(24, @OGUID+55),
|
||||
(24, @OGUID+56),
|
||||
(24, @OGUID+57),
|
||||
(24, @OGUID+58),
|
||||
(24, @OGUID+59),
|
||||
(24, @OGUID+60),
|
||||
(24, @OGUID+61),
|
||||
(24, @OGUID+62),
|
||||
(24, @OGUID+63),
|
||||
(24, @OGUID+64),
|
||||
(24, @OGUID+65),
|
||||
(24, @OGUID+66),
|
||||
(24, @OGUID+67),
|
||||
(24, @OGUID+68),
|
||||
(24, @OGUID+69),
|
||||
(24, @OGUID+70),
|
||||
(24, @OGUID+71),
|
||||
(24, @OGUID+72),
|
||||
(24, @OGUID+73),
|
||||
(24, @OGUID+74),
|
||||
(24, @OGUID+75),
|
||||
(24, @OGUID+76),
|
||||
(24, @OGUID+77),
|
||||
(24, @OGUID+78),
|
||||
(24, @OGUID+79),
|
||||
(24, @OGUID+80),
|
||||
(24, @OGUID+81),
|
||||
(24, @OGUID+82),
|
||||
(24, @OGUID+83),
|
||||
(24, @OGUID+84),
|
||||
(24, @OGUID+85),
|
||||
(24, @OGUID+86),
|
||||
(24, @OGUID+87),
|
||||
(24, @OGUID+88),
|
||||
(24, @OGUID+89),
|
||||
(24, @OGUID+90),
|
||||
(24, @OGUID+91),
|
||||
(24, @OGUID+92),
|
||||
(24, @OGUID+93),
|
||||
(24, @OGUID+94),
|
||||
(24, @OGUID+95),
|
||||
(24, @OGUID+96),
|
||||
(24, @OGUID+97),
|
||||
(24, @OGUID+98),
|
||||
(24, @OGUID+99),
|
||||
(24, @OGUID+100),
|
||||
(24, @OGUID+101),
|
||||
(24, @OGUID+102),
|
||||
(24, @OGUID+103),
|
||||
(24, @OGUID+104),
|
||||
(24, @OGUID+105),
|
||||
(24, @OGUID+106),
|
||||
(24, @OGUID+107),
|
||||
(24, @OGUID+108),
|
||||
(24, @OGUID+109),
|
||||
(24, @OGUID+110),
|
||||
(24, @OGUID+111),
|
||||
(24, @OGUID+112),
|
||||
(24, @OGUID+113),
|
||||
(24, @OGUID+114),
|
||||
(24, @OGUID+115),
|
||||
(24, @OGUID+116),
|
||||
(24, @OGUID+117),
|
||||
(24, @OGUID+118),
|
||||
(24, @OGUID+119),
|
||||
(24, @OGUID+120),
|
||||
(24, @OGUID+121),
|
||||
(24, @OGUID+122),
|
||||
(24, @OGUID+123),
|
||||
(24, @OGUID+124),
|
||||
(24, @OGUID+125),
|
||||
(24, @OGUID+126),
|
||||
(24, @OGUID+127),
|
||||
(24, @OGUID+128),
|
||||
(24, @OGUID+129),
|
||||
(24, @OGUID+130),
|
||||
(24, @OGUID+131),
|
||||
(24, @OGUID+132),
|
||||
(24, @OGUID+133),
|
||||
(24, @OGUID+134),
|
||||
(24, @OGUID+135),
|
||||
(24, @OGUID+136),
|
||||
(24, @OGUID+137),
|
||||
(24, @OGUID+138),
|
||||
(24, @OGUID+139),
|
||||
(24, @OGUID+140),
|
||||
(24, @OGUID+141),
|
||||
(24, @OGUID+142),
|
||||
(24, @OGUID+143),
|
||||
(24, @OGUID+144),
|
||||
(24, @OGUID+145),
|
||||
(24, @OGUID+146),
|
||||
(24, @OGUID+147),
|
||||
(24, @OGUID+148),
|
||||
(24, @OGUID+149),
|
||||
(24, @OGUID+150),
|
||||
(24, @OGUID+151),
|
||||
(24, @OGUID+152),
|
||||
(24, @OGUID+153),
|
||||
(24, @OGUID+154),
|
||||
(24, @OGUID+155),
|
||||
(24, @OGUID+156),
|
||||
(24, @OGUID+157),
|
||||
(24, @OGUID+158),
|
||||
(24, @OGUID+159),
|
||||
(24, @OGUID+160),
|
||||
(24, @OGUID+161),
|
||||
(24, @OGUID+162),
|
||||
(24, @OGUID+163),
|
||||
(24, @OGUID+164),
|
||||
(24, @OGUID+165),
|
||||
(24, @OGUID+166),
|
||||
(24, @OGUID+167),
|
||||
(24, @OGUID+168),
|
||||
(24, @OGUID+169),
|
||||
(24, @OGUID+170),
|
||||
(24, @OGUID+171),
|
||||
(24, @OGUID+172),
|
||||
(24, @OGUID+173),
|
||||
(24, @OGUID+174),
|
||||
(24, @OGUID+175),
|
||||
(24, @OGUID+176),
|
||||
(24, @OGUID+177),
|
||||
(24, @OGUID+178),
|
||||
(24, @OGUID+179),
|
||||
(24, @OGUID+180),
|
||||
(24, @OGUID+181),
|
||||
(24, @OGUID+182),
|
||||
(24, @OGUID+183),
|
||||
(24, @OGUID+184),
|
||||
(24, @OGUID+185),
|
||||
(24, @OGUID+186),
|
||||
(24, @OGUID+187),
|
||||
(24, @OGUID+188),
|
||||
(24, @OGUID+189),
|
||||
(24, @OGUID+190),
|
||||
(24, @OGUID+191),
|
||||
(24, @OGUID+192),
|
||||
(24, @OGUID+193),
|
||||
(24, @OGUID+194),
|
||||
(24, @OGUID+195),
|
||||
(24, @OGUID+196),
|
||||
(24, @OGUID+197),
|
||||
(24, @OGUID+198),
|
||||
(24, @OGUID+199),
|
||||
(24, @OGUID+200),
|
||||
(24, @OGUID+201),
|
||||
(24, @OGUID+202),
|
||||
(24, @OGUID+203),
|
||||
(24, @OGUID+204),
|
||||
(24, @OGUID+205),
|
||||
(24, @OGUID+206),
|
||||
(24, @OGUID+207),
|
||||
(24, @OGUID+208),
|
||||
(24, @OGUID+209),
|
||||
(24, @OGUID+210),
|
||||
(24, @OGUID+211),
|
||||
(24, @OGUID+212),
|
||||
(24, @OGUID+213),
|
||||
(24, @OGUID+214),
|
||||
(24, @OGUID+215),
|
||||
(24, @OGUID+216),
|
||||
(24, @OGUID+217),
|
||||
(24, @OGUID+218),
|
||||
(24, @OGUID+219),
|
||||
(24, @OGUID+220),
|
||||
(24, @OGUID+221),
|
||||
(24, @OGUID+222),
|
||||
(24, @OGUID+223),
|
||||
(24, @OGUID+224),
|
||||
(24, @OGUID+225),
|
||||
(24, @OGUID+226),
|
||||
(24, @OGUID+227),
|
||||
(24, @OGUID+228),
|
||||
(24, @OGUID+229),
|
||||
(24, @OGUID+230),
|
||||
(24, @OGUID+231),
|
||||
(24, @OGUID+232),
|
||||
(24, @OGUID+233),
|
||||
(24, @OGUID+234),
|
||||
(24, @OGUID+235),
|
||||
(24, @OGUID+236),
|
||||
(24, @OGUID+237),
|
||||
(24, @OGUID+238),
|
||||
(24, @OGUID+239),
|
||||
(24, @OGUID+240),
|
||||
(24, @OGUID+241),
|
||||
(24, @OGUID+242),
|
||||
(24, @OGUID+243),
|
||||
(24, @OGUID+244),
|
||||
(24, @OGUID+245),
|
||||
(24, @OGUID+246),
|
||||
(24, @OGUID+247),
|
||||
(24, @OGUID+248),
|
||||
(24, @OGUID+249),
|
||||
(24, @OGUID+250),
|
||||
(24, @OGUID+251),
|
||||
(24, @OGUID+252),
|
||||
(24, @OGUID+253),
|
||||
(24, @OGUID+254),
|
||||
(24, @OGUID+255),
|
||||
(24, @OGUID+256),
|
||||
(24, @OGUID+257),
|
||||
(24, @OGUID+258),
|
||||
(24, @OGUID+259),
|
||||
(24, @OGUID+260),
|
||||
(24, @OGUID+261),
|
||||
(24, @OGUID+262),
|
||||
(24, @OGUID+263),
|
||||
(24, @OGUID+264),
|
||||
(24, @OGUID+265),
|
||||
(24, @OGUID+266),
|
||||
(24, @OGUID+267),
|
||||
(24, @OGUID+268),
|
||||
(24, @OGUID+269),
|
||||
(24, @OGUID+270),
|
||||
(24, @OGUID+271),
|
||||
(24, @OGUID+272),
|
||||
(24, @OGUID+273),
|
||||
(24, @OGUID+274),
|
||||
(24, @OGUID+275),
|
||||
(24, @OGUID+276),
|
||||
(24, @OGUID+277),
|
||||
(24, @OGUID+278),
|
||||
(24, @OGUID+279),
|
||||
(24, @OGUID+280),
|
||||
(24, @OGUID+281),
|
||||
(24, @OGUID+282),
|
||||
(24, @OGUID+283),
|
||||
(24, @OGUID+284),
|
||||
(24, @OGUID+285),
|
||||
(24, @OGUID+286),
|
||||
(24, @OGUID+287),
|
||||
(24, @OGUID+288),
|
||||
(24, @OGUID+289),
|
||||
(24, @OGUID+290),
|
||||
(24, @OGUID+291),
|
||||
(24, @OGUID+292),
|
||||
(24, @OGUID+293),
|
||||
(24, @OGUID+294),
|
||||
(24, @OGUID+295),
|
||||
(24, @OGUID+296),
|
||||
(24, @OGUID+297),
|
||||
(24, @OGUID+298),
|
||||
(24, @OGUID+299),
|
||||
(24, @OGUID+300),
|
||||
(24, @OGUID+301),
|
||||
(24, @OGUID+302),
|
||||
(24, @OGUID+303),
|
||||
(24, @OGUID+304),
|
||||
(24, @OGUID+305),
|
||||
(24, @OGUID+306),
|
||||
(24, @OGUID+307),
|
||||
(24, @OGUID+308),
|
||||
(24, @OGUID+309),
|
||||
(24, @OGUID+310),
|
||||
(24, @OGUID+311),
|
||||
(24, @OGUID+312),
|
||||
(24, @OGUID+313),
|
||||
(24, @OGUID+314),
|
||||
(24, @OGUID+315),
|
||||
(24, @OGUID+316),
|
||||
(24, @OGUID+317),
|
||||
(24, @OGUID+318),
|
||||
(24, @OGUID+319),
|
||||
(24, @OGUID+320),
|
||||
(24, @OGUID+321),
|
||||
(24, @OGUID+322),
|
||||
(24, @OGUID+323),
|
||||
(24, @OGUID+324),
|
||||
(24, @OGUID+325),
|
||||
(24, @OGUID+326),
|
||||
(24, @OGUID+327),
|
||||
(24, @OGUID+328),
|
||||
(24, @OGUID+329),
|
||||
(24, @OGUID+330),
|
||||
(24, @OGUID+331),
|
||||
(24, @OGUID+332),
|
||||
(24, @OGUID+333),
|
||||
(24, @OGUID+334),
|
||||
(24, @OGUID+335),
|
||||
(24, @OGUID+336),
|
||||
(24, @OGUID+337),
|
||||
(24, @OGUID+338),
|
||||
(24, @OGUID+339),
|
||||
(24, @OGUID+340),
|
||||
(24, @OGUID+341),
|
||||
(24, @OGUID+342),
|
||||
(24, @OGUID+343),
|
||||
(24, @OGUID+344),
|
||||
(24, @OGUID+345),
|
||||
(24, @OGUID+346),
|
||||
(24, @OGUID+347),
|
||||
(24, @OGUID+348),
|
||||
(24, @OGUID+349),
|
||||
(24, @OGUID+350),
|
||||
(24, @OGUID+351),
|
||||
(24, @OGUID+352),
|
||||
(24, @OGUID+353),
|
||||
(24, @OGUID+354),
|
||||
(24, @OGUID+355),
|
||||
(24, @OGUID+356),
|
||||
(24, @OGUID+357),
|
||||
(24, @OGUID+358),
|
||||
(24, @OGUID+359),
|
||||
(24, @OGUID+360),
|
||||
(24, @OGUID+361),
|
||||
(24, @OGUID+362),
|
||||
(24, @OGUID+363),
|
||||
(24, @OGUID+364),
|
||||
(24, @OGUID+365),
|
||||
(24, @OGUID+366),
|
||||
(24, @OGUID+367),
|
||||
(24, @OGUID+368),
|
||||
(24, @OGUID+369),
|
||||
(24, @OGUID+370),
|
||||
(24, @OGUID+371),
|
||||
(24, @OGUID+372),
|
||||
(24, @OGUID+373),
|
||||
(24, @OGUID+374);
|
||||
@@ -1,17 +0,0 @@
|
||||
-- Update PhaseID
|
||||
UPDATE `creature` SET `PhaseId` = 16826 WHERE `guid` IN (850207, 850208);
|
||||
UPDATE `gameobject` SET `PhaseId` = 16826 WHERE `guid` = 500400;
|
||||
|
||||
-- Phase
|
||||
DELETE FROM `phase_area` WHERE `AreaId` = 10523 AND `PhaseId` = 16826;
|
||||
INSERT INTO `phase_area` (`AreaId`, `PhaseId`, `Comment`) VALUES
|
||||
(10523, 16826, 'See Portal to Oribos in Wizards Sanctum');
|
||||
|
||||
DELETE FROM `phase_name` WHERE `ID` = 16826;
|
||||
INSERT INTO `phase_name` (`ID`, `Name`) VALUES
|
||||
(16826, 'See Portal to Oribos in Wizards Sanctum');
|
||||
|
||||
-- Condition
|
||||
DELETE FROM `conditions` WHERE (`SourceTypeOrReferenceId` = 26 AND `SourceGroup` = 16826 AND `SourceEntry` = 10523);
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `Comment`) VALUES
|
||||
(26, 16826, 10523, 0, 0, 47, 0, 60151, 2 | 8 | 64, 0, 0, 'Apply Phase 16826 If Quest 60151 IS in Progress | complete | rewarded');
|
||||
@@ -1,82 +0,0 @@
|
||||
--
|
||||
-- Add missing gossip_menu
|
||||
DELETE FROM `gossip_menu` WHERE (`MenuID`,`TextID`) IN ((7552,9380),(7581,9396),(7581,9398));
|
||||
INSERT INTO `gossip_menu`(`MenuID`, `TextID`, `VerifiedBuild`) VALUES
|
||||
(7552, 9380, 0),
|
||||
(7581, 9396, 0),
|
||||
(7581, 9398, 0);
|
||||
|
||||
-- Add missing npc_text
|
||||
DELETE FROM `npc_text` WHERE `ID` IN (9396,9398);
|
||||
INSERT INTO `npc_text`(`ID`, `BroadcastTextID0`, `Probability0`, `VerifiedBuild`) VALUES
|
||||
(9396, 15444, 1, 0),
|
||||
(9398, 15448, 1, 0);
|
||||
|
||||
-- Trash Mobs Creature Text
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` IN (17899,17905,17919,17934,17932,17933,17936) AND `GroupID` IN (0,1);
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`=17772 AND `GroupID`=7;
|
||||
INSERT INTO `creature_text`(`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(17899, 0, 0, 'Lambs for the slaughter!', 12, 0, 100, 0, 0, 0, 18450, 0, 'Shadowy Necromancer say slay'),
|
||||
(17899, 1, 0, 'A pleasure... to serve the master.', 12, 0, 100, 0, 0, 0, 18448, 0, 'Shadowy Necromancer say death'),
|
||||
(17899, 1, 1, 'My life... to the master.', 12, 0, 100, 0, 0, 0, 18447, 0, 'Shadowy Necromancer say death'),
|
||||
(17899, 1, 2, 'You will... ultimately fail.', 12, 0, 100, 0, 0, 0, 18446, 0, 'Shadowy Necromancer say death'),
|
||||
(17905, 0, 0, 'Let this torment end!!', 12, 0, 100, 0, 0, 0, 18451, 0, 'Banshee say slay'),
|
||||
(17905, 0, 1, 'I obey.', 12, 0, 100, 0, 0, 0, 18454, 0, 'Banshee say slay'),
|
||||
(17905, 1, 0, 'I am... released?', 12, 0, 100, 0, 0, 0, 18452, 0, 'Banshee say death'),
|
||||
(17905, 1, 1, 'Is it really... over?', 12, 0, 100, 0, 0, 0, 18453, 0, 'Banshee say death'),
|
||||
(17919, 0, 0, 'Back, hold them back!', 12, 0, 100, 0, 0, 0, 18457, 0, 'Alliance Footman say slay'),
|
||||
(17919, 0, 1, 'Let these monsters taste cold steel!', 12, 0, 100, 0, 0, 0, 18456, 0, 'Alliance Footman say slay'),
|
||||
(17919, 1, 0, 'Agghh!', 12, 0, 100, 0, 0, 0, 18458, 0, 'Alliance Footman say death'),
|
||||
(17934, 0, 0, 'Dis no good....', 12, 0, 100, 0, 0, 0, 18501, 0, 'Horde Headhunter say slay'),
|
||||
(17934, 0, 1, 'Take their heads!', 12, 0, 100, 0, 0, 0, 18499, 0, 'Horde Headhunter say slay'),
|
||||
(17934, 0, 2, 'We kill \'em good, mon.', 12, 0, 100, 0, 0, 0, 18500, 0, 'Horde Headhunter say slay'),
|
||||
(17934, 0, 3, 'You stay dead.', 12, 0, 100, 0, 0, 0, 18503, 0, 'Horde Headhunter say slay'),
|
||||
(17934, 0, 4, 'Da Legion gonna pay.', 12, 0, 100, 0, 0, 0, 18504, 0, 'Horde Headhunter say slay'),
|
||||
(17934, 1, 0, 'It all over... now.', 12, 0, 100, 0, 0, 0, 18502, 0, 'Horde Headhunter say death'),
|
||||
(17932, 0, 0, 'Destroy them all!', 12, 0, 100, 0, 0, 0, 18486, 0, 'Horde Grunt say slay'),
|
||||
(17932, 0, 1, 'Have at them! Lok-Tar!', 12, 0, 100, 0, 0, 0, 18485, 0, 'Horde Grunt say slay'),
|
||||
(17932, 0, 2, 'Spill their... blood!', 12, 0, 100, 0, 0, 0, 18488, 0, 'Horde Grunt say slay'),
|
||||
(17932, 0, 3, 'Another one down!', 12, 0, 100, 0, 0, 0, 18490, 0, 'Horde Grunt say slay'),
|
||||
(17932, 0, 4, 'Demon filth!', 12, 0, 100, 0, 0, 0, 18489, 0, 'Horde Grunt say slay'),
|
||||
(17932, 1, 0, 'Keep... fighting!', 12, 0, 100, 0, 0, 0, 18487, 0, 'Horde Grunt say death'),
|
||||
(17933, 0, 0, 'For the Earth Mother!', 12, 0, 100, 0, 0, 0, 18493, 0, 'Tauren Warrior say slay'),
|
||||
(17933, 0, 1, 'Crush them!', 12, 0, 100, 0, 0, 0, 18494, 0, 'Tauren Warrior say slay'),
|
||||
(17933, 0, 2, 'Balance must be restored!', 12, 0, 100, 0, 0, 0, 18497, 0, 'Tauren Warrior say slay'),
|
||||
(17933, 0, 3, 'This world is not for you!', 12, 0, 100, 0, 0, 0, 18498, 0, 'Tauren Warrior say slay'),
|
||||
(17933, 1, 0, 'I return... to the earth.', 12, 0, 100, 0, 0, 0, 18495, 0, 'Tauren Warrior say death'),
|
||||
(17933, 1, 1, 'My spirit... goes on.', 12, 0, 100, 0, 0, 0, 18496, 0, 'Tauren Warrior say death'),
|
||||
(17936, 0, 1, 'I am one... with all.', 12, 0, 100, 0, 0, 0, 18510, 0, 'Horde Shaman say slay'),
|
||||
(17936, 1, 0, 'My spirit... goes on.', 12, 0, 100, 0, 0, 0, 18496, 0, 'Horde Shaman say death'),
|
||||
(17772, 7, 0, '%s begins channelling a massive teleport spell. ', 16, 0, 100, 0, 0, 0, 15310, 0, 'jaina hyjal horde base SUCCESS');
|
||||
|
||||
-- enable gargoyle frost wyrm fly
|
||||
DELETE FROM `creature_template_movement` WHERE `CreatureID` IN (17906,17907);
|
||||
INSERT INTO `creature_template_movement`(`CreatureId`, `Ground`, `Swim`, `Flight`, `Rooted`, `Chase`, `Random`, `InteractionPauseTimer`) VALUES
|
||||
(17906, 0, 0, 1, 0, 0, 0, NULL),
|
||||
(17907, 0, 0, 1, 0, 0, 0, NULL);
|
||||
|
||||
-- add protection of elune(38528) spell script
|
||||
DELETE FROM `spell_script_names` WHERE `spell_id`=38528;
|
||||
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
|
||||
(38528,'spell_protection_of_elune');
|
||||
|
||||
-- change wrong position and movement type of worldtree channel target
|
||||
UPDATE `creature` SET `position_x`=5502.2876, `position_y`=-3525.4714, `position_z`=1607.9094, `orientation`=2.61799, `MovementType`=0 WHERE `guid`=22418;
|
||||
|
||||
-- update doomfire(18095) and doomfire_spirit(18104) flag_extra to 128
|
||||
UPDATE `creature_template` SET `flags_extra` = `flags_extra`|128 WHERE `entry` IN (18095,18104);
|
||||
|
||||
-- add say slay and death text for guards
|
||||
DELETE FROM `smart_scripts` WHERE (`entryorguid`,`source_type`,`id`,`link`) IN ((17919,0,1,0),(17919,0,2,0),(17932,0,1,0),(17932,0,2,0),(17933,0,1,0),(17933,0,2,0),(17934,0,0,0),(17934,0,1,0),(17936,0,3,0),(17936,0,4,0));
|
||||
INSERT INTO `smart_scripts`(`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(17919, 0, 1, 0, 5, 0, 100, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Alliance Footman - In Combat - Say Slay'),
|
||||
(17919, 0, 2, 0, 6, 0, 100, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Alliance Footman - In Combat - Say Death'),
|
||||
(17932, 0, 1, 0, 5, 0, 100, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Horde Grunt - In Combat - Say Slay'),
|
||||
(17932, 0, 2, 0, 6, 0, 100, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Horde Grunt - In Combat - Say Death'),
|
||||
(17933, 0, 1, 0, 5, 0, 100, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Tauren Warrior - In Combat - Say Slay'),
|
||||
(17933, 0, 2, 0, 6, 0, 100, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Tauren Warrior - In Combat - Say Death'),
|
||||
(17934, 0, 0, 0, 5, 0, 100, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Horde Headhunter - In Combat - Say Slay'),
|
||||
(17934, 0, 1, 0, 6, 0, 100, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Horde Headhunter - In Combat - Say Death'),
|
||||
(17936, 0, 3, 0, 5, 0, 100, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Horde Shaman - In Combat - Say Slay'),
|
||||
(17936, 0, 4, 0, 6, 0, 100, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Horde Shaman - In Combat - Say Death');
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry` IN (17919,17934,17932,17933,17936);
|
||||
@@ -1,42 +0,0 @@
|
||||
DELETE FROM `spawn_group_template` WHERE `groupId` BETWEEN 137 AND 144;
|
||||
INSERT INTO `spawn_group_template` (`groupId`,`groupName`,`groupFlags`) VALUES
|
||||
(137,'Molten Core - Magmadar',4),
|
||||
(138,'Molten Core - Lucifron',4),
|
||||
(139,'Molten Core - Gehennas',4),
|
||||
(140,'Molten Core - Garr',4),
|
||||
(141,'Molten Core - Shazzrah',4),
|
||||
(142,'Molten Core - Baron Geddon',4),
|
||||
(143,'Molten Core - Sulfuron Harbinger',4),
|
||||
(144,'Molten Core - Golemagg the Incinerator',4);
|
||||
|
||||
DELETE FROM `instance_spawn_groups` WHERE `spawnGroupId` BETWEEN 137 AND 144;
|
||||
INSERT INTO `instance_spawn_groups` (`instanceMapId`,`bossStateId`,`bossStates`,`spawnGroupId`,`flags`) VALUES
|
||||
(409,1,23,137,1),
|
||||
(409,0,23,138,1),
|
||||
(409,2,23,139,1),
|
||||
(409,3,23,140,1),
|
||||
(409,4,23,141,1),
|
||||
(409,5,23,142,1),
|
||||
(409,6,23,143,1),
|
||||
(409,7,23,144,1);
|
||||
|
||||
DELETE FROM `spawn_group` WHERE `groupId` BETWEEN 137 AND 144;
|
||||
INSERT INTO `spawn_group` SELECT 137, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=56683 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 138, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=56605 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 139, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=56737 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 140, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=56609 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 141, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=56608 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 142, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=56655 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 143, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=56677 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 144, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=56684 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` (`groupId`,`spawnType`,`spawnId`) VALUES
|
||||
(137,0,56683),
|
||||
(138,0,56605),
|
||||
(139,0,56737),
|
||||
(140,0,56609),
|
||||
(141,0,56608),
|
||||
(142,0,56655),
|
||||
(143,0,56677),
|
||||
(144,0,56684);
|
||||
|
||||
DELETE FROM `linked_respawn` WHERE `linkedGuid` IN (56683,56605,56737,56609,56608,56655,56677,56684);
|
||||
@@ -1,26 +0,0 @@
|
||||
DELETE FROM `spawn_group_template` WHERE `groupId` BETWEEN 145 AND 148;
|
||||
INSERT INTO `spawn_group_template` (`groupId`,`groupName`,`groupFlags`) VALUES
|
||||
(145,'Ahn''Qiraj Temple - The Prophet Skeram',4),
|
||||
(146,'Ahn''Qiraj Temple - Battleguard Sartura',4),
|
||||
(147,'Ahn''Qiraj Temple - Fankriss the Unyielding',4),
|
||||
(148,'Ahn''Qiraj Temple - Princess Huhuran',4);
|
||||
|
||||
DELETE FROM `instance_spawn_groups` WHERE `spawnGroupId` BETWEEN 145 AND 148;
|
||||
INSERT INTO `instance_spawn_groups` (`instanceMapId`,`bossStateId`,`bossStates`,`spawnGroupId`,`flags`) VALUES
|
||||
(531,0,23,145,1),
|
||||
(531,1,23,146,1),
|
||||
(531,2,23,147,1),
|
||||
(531,3,23,148,1);
|
||||
|
||||
DELETE FROM `spawn_group` WHERE `groupId` BETWEEN 145 AND 148;
|
||||
INSERT INTO `spawn_group` SELECT 145, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=88075 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 146, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=87648 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 147, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=87911 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 148, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=88014 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` (`groupId`,`spawnType`,`spawnId`) VALUES
|
||||
(145,0,88075),
|
||||
(146,0,87648),
|
||||
(147,0,87911),
|
||||
(148,0,88014);
|
||||
|
||||
DELETE FROM `linked_respawn` WHERE `linkedGuid` IN (88075,87648,87911,88014);
|
||||
@@ -1,42 +0,0 @@
|
||||
DELETE FROM `spawn_group_template` WHERE `groupId` BETWEEN 149 AND 156;
|
||||
INSERT INTO `spawn_group_template` (`groupId`,`groupName`,`groupFlags`) VALUES
|
||||
(149,'Karazhan - Attumen the Huntsman',4),
|
||||
(150,'Karazhan - Moroes',4),
|
||||
(151,'Karazhan - Maiden of Virtue',4),
|
||||
(152,'Karazhan - The Curator',4),
|
||||
(153,'Karazhan - Shade of Aran',4),
|
||||
(154,'Karazhan - Terestian Illhoof',4),
|
||||
(155,'Karazhan - Netherspite',4),
|
||||
(156,'Karazhan - Prince Malchezaar',4);
|
||||
|
||||
DELETE FROM `instance_spawn_groups` WHERE `spawnGroupId` BETWEEN 149 AND 156;
|
||||
INSERT INTO `instance_spawn_groups` (`instanceMapId`,`bossStateId`,`bossStates`,`spawnGroupId`,`flags`) VALUES
|
||||
(532,0,23,149,1),
|
||||
(532,1,23,150,1),
|
||||
(532,2,23,151,1),
|
||||
(532,5,23,152,1),
|
||||
(532,6,23,153,1),
|
||||
(532,7,23,154,1),
|
||||
(532,8,23,155,1),
|
||||
(532,10,23,156,1);
|
||||
|
||||
DELETE FROM `spawn_group` WHERE `groupId` BETWEEN 149 AND 156;
|
||||
INSERT INTO `spawn_group` SELECT 149, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=135159 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 150, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=135472 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 151, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=135474 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 152, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=135489 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 153, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=135692 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 154, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=135473 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 155, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=135476 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 156, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=135477 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` (`groupId`,`spawnType`,`spawnId`) VALUES
|
||||
(149,0,135159),
|
||||
(150,0,135472),
|
||||
(151,0,135474),
|
||||
(152,0,135489),
|
||||
(153,0,135692),
|
||||
(154,0,135473),
|
||||
(155,0,135476),
|
||||
(156,0,135477);
|
||||
|
||||
DELETE FROM `linked_respawn` WHERE `linkedGuid` IN (135159,135472,135474,135489,135692,135473,135476,135477);
|
||||
@@ -1,61 +0,0 @@
|
||||
DELETE FROM `spawn_group_template` WHERE `groupId` BETWEEN 157 AND 168;
|
||||
INSERT INTO `spawn_group_template` (`groupId`,`groupName`,`groupFlags`) VALUES
|
||||
(157,'Naxxramas - Anub''Rekhan',4),
|
||||
(158,'Naxxramas - Grand Widow Faerlina',4),
|
||||
(159,'Naxxramas - Maexxna',4),
|
||||
(160,'Naxxramas - Noth the Plaguebringer',4),
|
||||
(161,'Naxxramas - Heigan the Unclean',4),
|
||||
(162,'Naxxramas - Loatheb',4),
|
||||
(163,'Naxxramas - Patchwerk',4),
|
||||
(164,'Naxxramas - Grobbulus',4),
|
||||
(165,'Naxxramas - Thaddius',4),
|
||||
(166,'Naxxramas - Instructor Razuvious',4),
|
||||
(167,'Naxxramas - Gothik the Harvester',4),
|
||||
(168,'Naxxramas - The Four Horsemen',4);
|
||||
|
||||
DELETE FROM `instance_spawn_groups` WHERE `spawnGroupId` BETWEEN 157 AND 168;
|
||||
INSERT INTO `instance_spawn_groups` (`instanceMapId`,`bossStateId`,`bossStates`,`spawnGroupId`,`flags`) VALUES
|
||||
(533,0,23,157,1),
|
||||
(533,1,23,158,1),
|
||||
(533,2,23,159,1),
|
||||
(533,3,23,160,1),
|
||||
(533,4,23,161,1),
|
||||
(533,5,23,162,1),
|
||||
(533,6,23,163,1),
|
||||
(533,7,23,164,1),
|
||||
(533,9,23,165,1),
|
||||
(533,10,23,166,1),
|
||||
(533,11,23,167,1),
|
||||
(533,12,23,168,1);
|
||||
|
||||
DELETE FROM `spawn_group` WHERE `groupId` BETWEEN 157 AND 168;
|
||||
INSERT INTO `spawn_group` SELECT 157, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=127814 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 158, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=127800 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 159, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=130960 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 160, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=127801 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 161, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=127789 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 162, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=128066 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 163, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=128135 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 164, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=127781 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 165, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=130957 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 166, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=128312 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 167, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=128311 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 168, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=130963 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` (`groupId`,`spawnType`,`spawnId`) VALUES
|
||||
(157,0,127814),
|
||||
(158,0,127800),
|
||||
(159,0,130960),
|
||||
(160,0,127801),
|
||||
(161,0,127789),
|
||||
(162,0,128066),
|
||||
(163,0,128135),
|
||||
(164,0,127781),
|
||||
(165,0,130957),
|
||||
(166,0,128312),
|
||||
(167,0,128311),
|
||||
(168,0,130961),
|
||||
(168,0,130962),
|
||||
(168,0,130963),
|
||||
(168,0,130964);
|
||||
|
||||
DELETE FROM `linked_respawn` WHERE `linkedGuid` IN (127814,127800,130960,127801,127789,128066,128135,127781,130957,128312,128311,130963);
|
||||
@@ -1,26 +0,0 @@
|
||||
DELETE FROM `spawn_group_template` WHERE `groupId` BETWEEN 169 AND 172;
|
||||
INSERT INTO `spawn_group_template` (`groupId`,`groupName`,`groupFlags`) VALUES
|
||||
(169,'Hellfire Citadel: The Shattered Halls - Grand Warlock Nethekurse',4),
|
||||
(170,'Hellfire Citadel: The Shattered Halls - Blood Guard Porung',4),
|
||||
(171,'Hellfire Citadel: The Shattered Halls - Warbringer O''mrogg',4),
|
||||
(172,'Hellfire Citadel: The Shattered Halls - Warchief Kargath Bladefist',4);
|
||||
|
||||
DELETE FROM `instance_spawn_groups` WHERE `spawnGroupId` BETWEEN 169 AND 172;
|
||||
INSERT INTO `instance_spawn_groups` (`instanceMapId`,`bossStateId`,`bossStates`,`spawnGroupId`,`flags`) VALUES
|
||||
(540,0,23,169,1),
|
||||
(540,1,23,170,1),
|
||||
(540,2,23,171,1),
|
||||
(540,3,23,172,1);
|
||||
|
||||
DELETE FROM `spawn_group` WHERE `groupId` BETWEEN 169 AND 172;
|
||||
INSERT INTO `spawn_group` SELECT 169, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=57853 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 170, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=34038 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 171, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=57855 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 172, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=57854 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` (`groupId`,`spawnType`,`spawnId`) VALUES
|
||||
(169,0,57853),
|
||||
(170,0,34038),
|
||||
(171,0,57855),
|
||||
(172,0,57854);
|
||||
|
||||
DELETE FROM `linked_respawn` WHERE `linkedGuid` IN (57853,34038,57855,57854);
|
||||
@@ -1,22 +0,0 @@
|
||||
DELETE FROM `spawn_group_template` WHERE `groupId` BETWEEN 173 AND 175;
|
||||
INSERT INTO `spawn_group_template` (`groupId`,`groupName`,`groupFlags`) VALUES
|
||||
(173,'Coilfang: The Steamvault - Hydromancer Thespia',4),
|
||||
(174,'Coilfang: The Steamvault - Mekgineer Steamrigger',4),
|
||||
(175,'Coilfang: The Steamvault - Warchief Kargath Bladefist',4);
|
||||
|
||||
DELETE FROM `instance_spawn_groups` WHERE `spawnGroupId` BETWEEN 173 AND 175;
|
||||
INSERT INTO `instance_spawn_groups` (`instanceMapId`,`bossStateId`,`bossStates`,`spawnGroupId`,`flags`) VALUES
|
||||
(545,0,23,173,1),
|
||||
(545,1,23,174,1),
|
||||
(545,2,23,175,1);
|
||||
|
||||
DELETE FROM `spawn_group` WHERE `groupId` BETWEEN 173 AND 175;
|
||||
INSERT INTO `spawn_group` SELECT 173, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=3453 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 174, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=12597 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 175, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=12613 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` (`groupId`,`spawnType`,`spawnId`) VALUES
|
||||
(173,0,3453),
|
||||
(174,0,12597),
|
||||
(175,0,12613);
|
||||
|
||||
DELETE FROM `linked_respawn` WHERE `linkedGuid` IN (3453,12597,12613);
|
||||
@@ -1,22 +0,0 @@
|
||||
DELETE FROM `spawn_group_template` WHERE `groupId` BETWEEN 176 AND 178;
|
||||
INSERT INTO `spawn_group_template` (`groupId`,`groupName`,`groupFlags`) VALUES
|
||||
(176,'Coilfang: The Slave Pens - Mennu the Betrayer',4),
|
||||
(177,'Coilfang: The Slave Pens - Rokmar the Crackler',4),
|
||||
(178,'Coilfang: The Slave Pens - Quagmirran',4);
|
||||
|
||||
DELETE FROM `instance_spawn_groups` WHERE `spawnGroupId` BETWEEN 176 AND 178;
|
||||
INSERT INTO `instance_spawn_groups` (`instanceMapId`,`bossStateId`,`bossStates`,`spawnGroupId`,`flags`) VALUES
|
||||
(547,0,23,176,1),
|
||||
(547,1,23,177,1),
|
||||
(547,2,23,178,1);
|
||||
|
||||
DELETE FROM `spawn_group` WHERE `groupId` BETWEEN 176 AND 178;
|
||||
INSERT INTO `spawn_group` SELECT 176, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=79362 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 177, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=79339 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 178, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=80260 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` (`groupId`,`spawnType`,`spawnId`) VALUES
|
||||
(176,0,79362),
|
||||
(177,0,79339),
|
||||
(178,0,80260);
|
||||
|
||||
DELETE FROM `linked_respawn` WHERE `linkedGuid` IN (79362,79339,80260);
|
||||
@@ -1,30 +0,0 @@
|
||||
DELETE FROM `spawn_group_template` WHERE `groupId` BETWEEN 179 AND 183;
|
||||
INSERT INTO `spawn_group_template` (`groupId`,`groupName`,`groupFlags`) VALUES
|
||||
(179,'Coilfang: Serpentshrine Cavern - Hydross the Unstable',4),
|
||||
(180,'Coilfang: Serpentshrine Cavern - The Lurker Below',4),
|
||||
(181,'Coilfang: Serpentshrine Cavern - Leotheras the Blind',4),
|
||||
(182,'Coilfang: Serpentshrine Cavern - Fathom-Lord Karathress',4),
|
||||
(183,'Coilfang: Serpentshrine Cavern - Morogrim Tidewalker',4);
|
||||
|
||||
DELETE FROM `instance_spawn_groups` WHERE `spawnGroupId` BETWEEN 179 AND 183;
|
||||
INSERT INTO `instance_spawn_groups` (`instanceMapId`,`bossStateId`,`bossStates`,`spawnGroupId`,`flags`) VALUES
|
||||
(547,0,23,179,1),
|
||||
(547,1,23,180,1),
|
||||
(547,2,23,181,1),
|
||||
(547,3,23,182,1),
|
||||
(547,4,23,183,1);
|
||||
|
||||
DELETE FROM `spawn_group` WHERE `groupId` BETWEEN 179 AND 183;
|
||||
INSERT INTO `spawn_group` SELECT 179, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=93846 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 180, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=93838 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 181, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=93773 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 182, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=93766 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 183, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=82974 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` (`groupId`,`spawnType`,`spawnId`) VALUES
|
||||
(179,0,93846),
|
||||
(180,0,93838),
|
||||
(181,0,93773),
|
||||
(182,0,93766),
|
||||
(183,0,82974);
|
||||
|
||||
DELETE FROM `linked_respawn` WHERE `linkedGuid` IN (93846,93838,93773,93766,82974);
|
||||
@@ -1,22 +0,0 @@
|
||||
DELETE FROM `spawn_group_template` WHERE `groupId` BETWEEN 184 AND 186;
|
||||
INSERT INTO `spawn_group_template` (`groupId`,`groupName`,`groupFlags`) VALUES
|
||||
(184,'Tempest Keep: The Arcatraz - Zereketh the Unbound',4),
|
||||
(185,'Tempest Keep: The Arcatraz - Wrath-Scryer Soccothrates',4),
|
||||
(186,'Tempest Keep: The Arcatraz - Harbinger Skyriss',4);
|
||||
|
||||
DELETE FROM `instance_spawn_groups` WHERE `spawnGroupId` BETWEEN 184 AND 186;
|
||||
INSERT INTO `instance_spawn_groups` (`instanceMapId`,`bossStateId`,`bossStates`,`spawnGroupId`,`flags`) VALUES
|
||||
(552,0,23,184,1),
|
||||
(552,2,23,185,1),
|
||||
(552,3,23,186,1);
|
||||
|
||||
DELETE FROM `spawn_group` WHERE `groupId` BETWEEN 184 AND 186;
|
||||
INSERT INTO `spawn_group` SELECT 184, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=79391 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 185, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=79398 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 186, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=79451 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` (`groupId`,`spawnType`,`spawnId`) VALUES
|
||||
(184,0,79391),
|
||||
(185,0,79398),
|
||||
(186,0,79451);
|
||||
|
||||
DELETE FROM `linked_respawn` WHERE `linkedGuid` IN (79391,79398,79451);
|
||||
@@ -1,30 +0,0 @@
|
||||
DELETE FROM `spawn_group_template` WHERE `groupId` BETWEEN 187 AND 191;
|
||||
INSERT INTO `spawn_group_template` (`groupId`,`groupName`,`groupFlags`) VALUES
|
||||
(187,'Tempest Keep: The Botanica - Commander Sarannis',4),
|
||||
(188,'Tempest Keep: The Botanica - High Botanist Freywinn',4),
|
||||
(189,'Tempest Keep: The Botanica - Thorngrin the Tender',4),
|
||||
(190,'Tempest Keep: The Botanica - Laj',4),
|
||||
(191,'Tempest Keep: The Botanica - Warp Splinter',4);
|
||||
|
||||
DELETE FROM `instance_spawn_groups` WHERE `spawnGroupId` BETWEEN 187 AND 191;
|
||||
INSERT INTO `instance_spawn_groups` (`instanceMapId`,`bossStateId`,`bossStates`,`spawnGroupId`,`flags`) VALUES
|
||||
(553,0,23,187,1),
|
||||
(553,1,23,188,1),
|
||||
(553,2,23,189,1),
|
||||
(553,3,23,190,1),
|
||||
(553,4,23,191,1);
|
||||
|
||||
DELETE FROM `spawn_group` WHERE `groupId` BETWEEN 187 AND 191;
|
||||
INSERT INTO `spawn_group` SELECT 187, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=82986 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 188, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=82987 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 189, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=83076 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 190, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=82989 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 191, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=82990 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` (`groupId`,`spawnType`,`spawnId`) VALUES
|
||||
(187,0,82986),
|
||||
(188,0,82987),
|
||||
(189,0,83076),
|
||||
(190,0,82989),
|
||||
(191,0,82990);
|
||||
|
||||
DELETE FROM `linked_respawn` WHERE `linkedGuid` IN (82986,82987,83076,82989,82990);
|
||||
@@ -1,22 +0,0 @@
|
||||
DELETE FROM `spawn_group_template` WHERE `groupId` BETWEEN 192 AND 194;
|
||||
INSERT INTO `spawn_group_template` (`groupId`,`groupName`,`groupFlags`) VALUES
|
||||
(192,'Tempest Keep: The Mechanar - Mechano-Lord Capacitus',4),
|
||||
(193,'Tempest Keep: The Mechanar - Nethermancer Sepethrea',4),
|
||||
(194,'Tempest Keep: The Mechanar - Pathaleon the Calculator',4);
|
||||
|
||||
DELETE FROM `instance_spawn_groups` WHERE `spawnGroupId` BETWEEN 192 AND 194;
|
||||
INSERT INTO `instance_spawn_groups` (`instanceMapId`,`bossStateId`,`bossStates`,`spawnGroupId`,`flags`) VALUES
|
||||
(554,2,23,192,1),
|
||||
(554,3,23,193,1),
|
||||
(554,4,23,194,1);
|
||||
|
||||
DELETE FROM `spawn_group` WHERE `groupId` BETWEEN 192 AND 194;
|
||||
INSERT INTO `spawn_group` SELECT 192, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=83160 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 193, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=83230 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 194, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=83241 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` (`groupId`,`spawnType`,`spawnId`) VALUES
|
||||
(192,0,83160),
|
||||
(193,0,83230),
|
||||
(194,0,83241);
|
||||
|
||||
DELETE FROM `linked_respawn` WHERE `linkedGuid` IN (83160,83230,83241);
|
||||
@@ -1,26 +0,0 @@
|
||||
DELETE FROM `spawn_group_template` WHERE `groupId` BETWEEN 195 AND 198;
|
||||
INSERT INTO `spawn_group_template` (`groupId`,`groupName`,`groupFlags`) VALUES
|
||||
(195,'Auchindoun: Shadow Labyrinth - Ambassador Hellmaw',4),
|
||||
(196,'Auchindoun: Shadow Labyrinth - Blackheart the Inciter',4),
|
||||
(197,'Auchindoun: Shadow Labyrinth - Grandmaster Vorpil',4),
|
||||
(198,'Auchindoun: Shadow Labyrinth - Murmur',4);
|
||||
|
||||
DELETE FROM `instance_spawn_groups` WHERE `spawnGroupId` BETWEEN 195 AND 198;
|
||||
INSERT INTO `instance_spawn_groups` (`instanceMapId`,`bossStateId`,`bossStates`,`spawnGroupId`,`flags`) VALUES
|
||||
(555,0,23,195,1),
|
||||
(555,1,23,196,1),
|
||||
(555,2,23,197,1),
|
||||
(555,3,23,198,1);
|
||||
|
||||
DELETE FROM `spawn_group` WHERE `groupId` BETWEEN 195 AND 198;
|
||||
INSERT INTO `spawn_group` SELECT 195, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=66999 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 196, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=66937 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 197, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=67000 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 198, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=66952 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` (`groupId`,`spawnType`,`spawnId`) VALUES
|
||||
(195,0,66999),
|
||||
(196,0,66937),
|
||||
(197,0,67000),
|
||||
(198,0,66952);
|
||||
|
||||
DELETE FROM `linked_respawn` WHERE `linkedGuid` IN (66999,66937,67000,66952);
|
||||
@@ -1,18 +0,0 @@
|
||||
DELETE FROM `spawn_group_template` WHERE `groupId` BETWEEN 199 AND 200;
|
||||
INSERT INTO `spawn_group_template` (`groupId`,`groupName`,`groupFlags`) VALUES
|
||||
(199,'Auchindoun: Sethekk Halls - Darkweaver Syth',4),
|
||||
(200,'Auchindoun: Sethekk Halls - Talon King Ikiss',4);
|
||||
|
||||
DELETE FROM `instance_spawn_groups` WHERE `spawnGroupId` BETWEEN 199 AND 200;
|
||||
INSERT INTO `instance_spawn_groups` (`instanceMapId`,`bossStateId`,`bossStates`,`spawnGroupId`,`flags`) VALUES
|
||||
(556,0,23,199,1),
|
||||
(556,1,23,200,1);
|
||||
|
||||
DELETE FROM `spawn_group` WHERE `groupId` BETWEEN 199 AND 200;
|
||||
INSERT INTO `spawn_group` SELECT 199, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=83270 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 200, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=83300 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` (`groupId`,`spawnType`,`spawnId`) VALUES
|
||||
(199,0,83270),
|
||||
(200,0,83300);
|
||||
|
||||
DELETE FROM `linked_respawn` WHERE `linkedGuid` IN (83270,83300);
|
||||
@@ -1,22 +0,0 @@
|
||||
DELETE FROM `spawn_group_template` WHERE `groupId` BETWEEN 201 AND 203;
|
||||
INSERT INTO `spawn_group_template` (`groupId`,`groupName`,`groupFlags`) VALUES
|
||||
(201,'Auchindoun: Mana-Tombs - Pandemonius',4),
|
||||
(202,'Auchindoun: Mana-Tombs - Tavarok',4),
|
||||
(203,'Auchindoun: Mana-Tombs - Nexus-Prince Shaffar',4);
|
||||
|
||||
DELETE FROM `instance_spawn_groups` WHERE `spawnGroupId` BETWEEN 201 AND 203;
|
||||
INSERT INTO `instance_spawn_groups` (`instanceMapId`,`bossStateId`,`bossStates`,`spawnGroupId`,`flags`) VALUES
|
||||
(557,0,23,201,1),
|
||||
(557,1,23,202,1),
|
||||
(557,2,23,203,1);
|
||||
|
||||
DELETE FROM `spawn_group` WHERE `groupId` BETWEEN 201 AND 203;
|
||||
INSERT INTO `spawn_group` SELECT 201, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=91163 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 202, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=91161 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 203, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=91162 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` (`groupId`,`spawnType`,`spawnId`) VALUES
|
||||
(201,0,91163),
|
||||
(202,0,91161),
|
||||
(203,0,91162);
|
||||
|
||||
DELETE FROM `linked_respawn` WHERE `linkedGuid` IN (91163,91161,91162);
|
||||
@@ -1,18 +0,0 @@
|
||||
DELETE FROM `spawn_group_template` WHERE `groupId` BETWEEN 204 AND 205;
|
||||
INSERT INTO `spawn_group_template` (`groupId`,`groupName`,`groupFlags`) VALUES
|
||||
(204,'Auchindoun: Auchenai Crypts - Shirrak the Dead Watcher',4),
|
||||
(205,'Auchindoun: Auchenai Crypts - Exarch Maladaar',4);
|
||||
|
||||
DELETE FROM `instance_spawn_groups` WHERE `spawnGroupId` BETWEEN 204 AND 205;
|
||||
INSERT INTO `instance_spawn_groups` (`instanceMapId`,`bossStateId`,`bossStates`,`spawnGroupId`,`flags`) VALUES
|
||||
(556,0,23,204,1),
|
||||
(556,1,23,205,1);
|
||||
|
||||
DELETE FROM `spawn_group` WHERE `groupId` BETWEEN 204 AND 205;
|
||||
INSERT INTO `spawn_group` SELECT 204, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=83388 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 205, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=83453 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` (`groupId`,`spawnType`,`spawnId`) VALUES
|
||||
(204,0,83388),
|
||||
(205,0,83453);
|
||||
|
||||
DELETE FROM `linked_respawn` WHERE `linkedGuid` IN (83388,83453);
|
||||
@@ -1,46 +0,0 @@
|
||||
DELETE FROM `spawn_group_template` WHERE `groupId` BETWEEN 206 AND 214;
|
||||
INSERT INTO `spawn_group_template` (`groupId`,`groupName`,`groupFlags`) VALUES
|
||||
(206,'Black Temple - High Warlord Naj''entus',4),
|
||||
(207,'Black Temple - Supremus',4),
|
||||
(208,'Black Temple - Shade of Akama',4),
|
||||
(209,'Black Temple - Teron Gorefiend',4),
|
||||
(210,'Black Temple - Gurtogg Bloodboil',4),
|
||||
(211,'Black Temple - Reliquary of Souls',4),
|
||||
(212,'Black Temple - Mother Shahraz',4),
|
||||
(213,'Black Temple - The Illidari Council',4),
|
||||
(214,'Black Temple - Illidan Stormrage',4);
|
||||
|
||||
DELETE FROM `instance_spawn_groups` WHERE `spawnGroupId` BETWEEN 206 AND 214;
|
||||
INSERT INTO `instance_spawn_groups` (`instanceMapId`,`bossStateId`,`bossStates`,`spawnGroupId`,`flags`) VALUES
|
||||
(564,0,23,206,1),
|
||||
(564,1,23,207,1),
|
||||
(564,2,23,208,1),
|
||||
(564,3,23,209,1),
|
||||
(564,4,23,210,1),
|
||||
(564,5,23,211,1),
|
||||
(564,6,23,212,1),
|
||||
(564,7,23,213,1),
|
||||
(564,8,23,214,1);
|
||||
|
||||
DELETE FROM `spawn_group` WHERE `groupId` BETWEEN 206 AND 214;
|
||||
INSERT INTO `spawn_group` SELECT 206, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=40527 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 207, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=52458 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 208, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=12777 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 209, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=12843 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 210, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=52761 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 211, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=12828 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 212, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=52760 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 213, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=52479 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 214, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=52484 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` (`groupId`,`spawnType`,`spawnId`) VALUES
|
||||
(206,0,40527),
|
||||
(207,0,52458),
|
||||
(208,0,12777),
|
||||
(209,0,12843),
|
||||
(210,0,52761),
|
||||
(211,0,12828),
|
||||
(212,0,52760),
|
||||
(213,0,52479),
|
||||
(214,0,52484);
|
||||
|
||||
DELETE FROM `linked_respawn` WHERE `linkedGuid` IN (40527,52458,12777,12843,52761,12828,52760,52479,52484);
|
||||
@@ -1,35 +0,0 @@
|
||||
DELETE FROM `spawn_group_template` WHERE `groupId` BETWEEN 215 AND 220;
|
||||
INSERT INTO `spawn_group_template` (`groupId`,`groupName`,`groupFlags`) VALUES
|
||||
(215,'Zul''Aman - Nalorakk',4),
|
||||
(216,'Zul''Aman - Akil''zon',4),
|
||||
(217,'Zul''Aman - Jan''alai',4),
|
||||
(218,'Zul''Aman - Halazzi',4),
|
||||
(219,'Zul''Aman - Hex Lord Malacrass',4),
|
||||
(220,'Zul''Aman - Daakara',4);
|
||||
|
||||
|
||||
DELETE FROM `instance_spawn_groups` WHERE `spawnGroupId` BETWEEN 215 AND 220;
|
||||
INSERT INTO `instance_spawn_groups` (`instanceMapId`,`bossStateId`,`bossStates`,`spawnGroupId`,`flags`) VALUES
|
||||
(568,1,23,215,1),
|
||||
(568,0,23,216,1),
|
||||
(568,2,23,217,1),
|
||||
(568,3,23,218,1),
|
||||
(568,4,23,219,1),
|
||||
(568,5,23,220,1);
|
||||
|
||||
DELETE FROM `spawn_group` WHERE `groupId` BETWEEN 215 AND 220;
|
||||
-- INSERT INTO `spawn_group` SELECT 215, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=86609 AND `linkType` IN (0,3);
|
||||
-- INSERT INTO `spawn_group` SELECT 216, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=86494 AND `linkType` IN (0,3);
|
||||
-- INSERT INTO `spawn_group` SELECT 217, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=89322 AND `linkType` IN (0,3);
|
||||
-- INSERT INTO `spawn_group` SELECT 218, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=86195 AND `linkType` IN (0,3);
|
||||
-- INSERT INTO `spawn_group` SELECT 219, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=89357 AND `linkType` IN (0,3);
|
||||
-- INSERT INTO `spawn_group` SELECT 220, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=89358 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` (`groupId`,`spawnType`,`spawnId`) VALUES
|
||||
(215,0,291934),
|
||||
(216,0,291862),
|
||||
(217,0,339123),
|
||||
(218,0,313388),
|
||||
(219,0,313406),
|
||||
(220,0,292021);
|
||||
|
||||
-- DELETE FROM `linked_respawn` WHERE `linkedGuid` IN (86609,86494,89322,86195,89357,89358);
|
||||
@@ -1,22 +0,0 @@
|
||||
DELETE FROM `spawn_group_template` WHERE `groupId` BETWEEN 221 AND 223;
|
||||
INSERT INTO `spawn_group_template` (`groupId`,`groupName`,`groupFlags`) VALUES
|
||||
(221,'Utgarde Keep - Prince Keleseth',4),
|
||||
(222,'Utgarde Keep - Skarvold & Dalronn',4),
|
||||
(223,'Utgarde Keep - Ingvar the Plunderer',4);
|
||||
|
||||
DELETE FROM `instance_spawn_groups` WHERE `spawnGroupId` BETWEEN 221 AND 223;
|
||||
INSERT INTO `instance_spawn_groups` (`instanceMapId`,`bossStateId`,`bossStates`,`spawnGroupId`,`flags`) VALUES
|
||||
(574,0,23,221,1),
|
||||
(574,1,23,222,1),
|
||||
(574,2,23,223,1);
|
||||
|
||||
DELETE FROM `spawn_group` WHERE `groupId` BETWEEN 221 AND 223;
|
||||
INSERT INTO `spawn_group` SELECT 221, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=126025 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 222, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=126023 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 223, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=126026 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` (`groupId`,`spawnType`,`spawnId`) VALUES
|
||||
(221,0,126025),
|
||||
(222,0,126023),
|
||||
(223,0,126026);
|
||||
|
||||
DELETE FROM `linked_respawn` WHERE `linkedGuid` IN (126025,126023,126026);
|
||||
@@ -1,23 +0,0 @@
|
||||
DELETE FROM `spawn_group_template` WHERE `groupId` BETWEEN 224 AND 225;
|
||||
INSERT INTO `spawn_group_template` (`groupId`,`groupName`,`groupFlags`) VALUES
|
||||
(224,'Utgarde Pinnacle - Svala Sorrowgrave',4),
|
||||
(225,'Utgarde Pinnacle - King Ymiron',4);
|
||||
|
||||
DELETE FROM `instance_spawn_groups` WHERE `spawnGroupId` BETWEEN 224 AND 225;
|
||||
INSERT INTO `instance_spawn_groups` (`instanceMapId`,`bossStateId`,`bossStates`,`spawnGroupId`,`flags`) VALUES
|
||||
(575,0,23,224,1),
|
||||
(575,3,23,225,1);
|
||||
|
||||
DELETE FROM `spawn_group` WHERE `groupId` BETWEEN 224 AND 225;
|
||||
INSERT INTO `spawn_group` SELECT 224, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=126115 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 225, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=126255 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` (`groupId`,`spawnType`,`spawnId`) VALUES
|
||||
(224,0,126115),
|
||||
(225,0,126255);
|
||||
|
||||
DELETE FROM `linked_respawn` WHERE `linkedGuid` IN (126115,126255);
|
||||
|
||||
-- from ba1df45d36285e283a295ea93560c2215ec21e37
|
||||
DELETE FROM `linked_respawn` WHERE `linkedGuid`=126102;
|
||||
DELETE FROM `creature` WHERE `guid` IN(126091,126092,126093,126094,126256);
|
||||
DELETE FROM `creature_addon` WHERE `guid` IN(126091,126092,126093,126094,126256);
|
||||
@@ -1,14 +0,0 @@
|
||||
DELETE FROM `spawn_group_template` WHERE `groupId` BETWEEN 226 AND 227;
|
||||
INSERT INTO `spawn_group_template` (`groupId`,`groupName`,`groupFlags`) VALUES
|
||||
(226,'Utgarde Pinnacle - Gortok Palehoof',4),
|
||||
(227,'Utgarde Pinnacle - Skadi the Ruthless',4);
|
||||
|
||||
DELETE FROM `instance_spawn_groups` WHERE `spawnGroupId` BETWEEN 226 AND 227;
|
||||
INSERT INTO `instance_spawn_groups` (`instanceMapId`,`bossStateId`,`bossStates`,`spawnGroupId`,`flags`) VALUES
|
||||
(575,2,23,226,1),
|
||||
(575,2,23,227,1);
|
||||
|
||||
DELETE FROM `spawn_group` WHERE `groupId` BETWEEN 226 AND 227;
|
||||
INSERT INTO `spawn_group` (`groupId`,`spawnType`,`spawnId`) VALUES
|
||||
(226,0,126102),
|
||||
(227,0,126103);
|
||||
@@ -1,2 +0,0 @@
|
||||
-- handled by spawn groups already
|
||||
DELETE FROM `linked_respawn` WHERE `linkedGuid` IN (126599);
|
||||
@@ -1,26 +0,0 @@
|
||||
DELETE FROM `spawn_group_template` WHERE `groupId` BETWEEN 228 AND 231;
|
||||
INSERT INTO `spawn_group_template` (`groupId`,`groupName`,`groupFlags`) VALUES
|
||||
(228,'The Oculus - Drakos the Interrogator',4),
|
||||
(229,'The Oculus - Varos Cloudstrider',4),
|
||||
(230,'The Oculus - Mage-Lord Urom',4),
|
||||
(231,'The Oculus - Ley-Guardian Eregos',4);
|
||||
|
||||
DELETE FROM `instance_spawn_groups` WHERE `spawnGroupId` BETWEEN 228 AND 231;
|
||||
INSERT INTO `instance_spawn_groups` (`instanceMapId`,`bossStateId`,`bossStates`,`spawnGroupId`,`flags`) VALUES
|
||||
(578,0,23,228,1),
|
||||
(578,1,23,229,1),
|
||||
(578,2,23,230,1),
|
||||
(578,3,23,231,1);
|
||||
|
||||
DELETE FROM `spawn_group` WHERE `groupId` BETWEEN 228 AND 231;
|
||||
INSERT INTO `spawn_group` SELECT 228, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=100172 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 229, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=100235 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 230, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=100220 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 231, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=100221 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` (`groupId`,`spawnType`,`spawnId`) VALUES
|
||||
(228,0,100172),
|
||||
(229,0,100235),
|
||||
(230,0,100220),
|
||||
(231,0,100221);
|
||||
|
||||
DELETE FROM `linked_respawn` WHERE `linkedGuid` IN (100172,100235,100220,100221);
|
||||
@@ -1 +0,0 @@
|
||||
UPDATE `instance_spawn_groups` SET `instanceMapId`=558 WHERE `spawnGroupId` BETWEEN 204 AND 205;
|
||||
@@ -1,43 +0,0 @@
|
||||
DELETE FROM `spawn_group_template` WHERE `groupId` BETWEEN 232 AND 237;
|
||||
INSERT INTO `spawn_group_template` (`groupId`,`groupName`,`groupFlags`) VALUES
|
||||
(232,'The Sunwell - Kalecgos',4),
|
||||
(233,'The Sunwell - Brutallus',4),
|
||||
(234,'The Sunwell - Felmyst',4),
|
||||
(235,'The Sunwell - Eredar Twins',4),
|
||||
(236,'The Sunwell - M''uru',4),
|
||||
(237,'The Sunwell - Kil''jaeden',4);
|
||||
|
||||
DELETE FROM `instance_spawn_groups` WHERE `spawnGroupId` BETWEEN 232 AND 237;
|
||||
INSERT INTO `instance_spawn_groups` (`instanceMapId`,`bossStateId`,`bossStates`,`spawnGroupId`,`flags`) VALUES
|
||||
(580,0,23,232,1),
|
||||
(580,1,23,233,1),
|
||||
(580,1,23,234,2), -- dont spawn felmyst before brutallus is dead
|
||||
(580,2,23,234,1),
|
||||
(580,3,23,235,1),
|
||||
(580,4,23,236,1),
|
||||
(580,5,23,237,1);
|
||||
|
||||
DELETE FROM `creature` WHERE `guid`=55421 AND `id`=25038;
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `phaseId`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES
|
||||
(55421, 25038, 580, 4075, 4140, '4', 0, 0, 0, 1460.2911376953125, 628.89984130859375, 46.09189605712890625, 5.281038284301757812, 604800, 0, 0, 0, 0, 0, 0, 0, 0, 45745); -- Felmyst (Area: The Dead Scar - Difficulty: 4) (Auras: 45068 - Felblaze Visual)
|
||||
|
||||
DELETE FROM `spawn_group` WHERE `groupId` BETWEEN 232 AND 237;
|
||||
INSERT INTO `spawn_group` SELECT 232, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=54810 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 233, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=54811 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 235, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=53668 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 236, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=53705 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 237, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=56332 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` (`groupId`,`spawnType`,`spawnId`) VALUES
|
||||
(232,0,54810),
|
||||
(232,0,53645),
|
||||
(233,0,54811),
|
||||
(233,0,54812),
|
||||
(234,0,55421),
|
||||
(235,0,53668),
|
||||
(235,0,53687),
|
||||
(236,0,53705),
|
||||
(237,0,56332);
|
||||
|
||||
UPDATE `creature_template` SET `flags_extra`=`flags_extra` & ~0x80 WHERE `entry`=25038; -- remove trigger flag from felmyst
|
||||
|
||||
DELETE FROM `linked_respawn` WHERE `linkedGuid` IN (54810,54811,55421,53668,53705,56332);
|
||||
@@ -1 +0,0 @@
|
||||
UPDATE `instance_spawn_groups` SET `instanceMapId`=548 WHERE `spawnGroupId` BETWEEN 179 AND 183;
|
||||
@@ -1,26 +0,0 @@
|
||||
DELETE FROM `spawn_group_template` WHERE `groupId` BETWEEN 238 AND 241;
|
||||
INSERT INTO `spawn_group_template` (`groupId`,`groupName`,`groupFlags`) VALUES
|
||||
(238,'Magister''s Terrace - Selin Fireheart',4),
|
||||
(239,'Magister''s Terrace - Vexallus',4),
|
||||
(240,'Magister''s Terrace - Priestess Delrissa',4),
|
||||
(241,'Magister''s Terrace - Kael''thas Sunstrider',4);
|
||||
|
||||
DELETE FROM `instance_spawn_groups` WHERE `spawnGroupId` BETWEEN 238 AND 241;
|
||||
INSERT INTO `instance_spawn_groups` (`instanceMapId`,`bossStateId`,`bossStates`,`spawnGroupId`,`flags`) VALUES
|
||||
(585,0,23,238,1),
|
||||
(585,1,23,239,1),
|
||||
(585,2,23,240,1),
|
||||
(585,3,23,241,1);
|
||||
|
||||
DELETE FROM `spawn_group` WHERE `groupId` BETWEEN 238 AND 241;
|
||||
INSERT INTO `spawn_group` SELECT 238, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=96875 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 239, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=96876 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 240, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=96966 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 241, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=96762 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` (`groupId`,`spawnType`,`spawnId`) VALUES
|
||||
(238,0,96875),
|
||||
(239,0,96876),
|
||||
(240,0,96966),
|
||||
(241,0,96762);
|
||||
|
||||
DELETE FROM `linked_respawn` WHERE `linkedGuid` IN (96875,96876,96966,96762);
|
||||
@@ -1,39 +0,0 @@
|
||||
DELETE FROM `spawn_group_template` WHERE `groupId` BETWEEN 242 AND 245;
|
||||
INSERT INTO `spawn_group_template` (`groupId`,`groupName`,`groupFlags`) VALUES
|
||||
(242,'Halls of Stone - Krystallus',4),
|
||||
(243,'Halls of Stone - Maiden of Grief',4),
|
||||
(244,'Halls of Stone - Tribunal of Ages',4),
|
||||
(245,'Halls of Stone - Sjonnir the Ironshaper',4);
|
||||
|
||||
DELETE FROM `instance_spawn_groups` WHERE `spawnGroupId` BETWEEN 242 AND 245;
|
||||
INSERT INTO `instance_spawn_groups` (`instanceMapId`,`bossStateId`,`bossStates`,`spawnGroupId`,`flags`) VALUES
|
||||
(599,0,23,242,1),
|
||||
(599,1,23,243,1),
|
||||
(599,2,23,244,1),
|
||||
(599,3,23,245,1);
|
||||
|
||||
DELETE FROM `spawn_group` WHERE `groupId` BETWEEN 242 AND 245;
|
||||
INSERT INTO `spawn_group` (`groupId`,`spawnType`,`spawnId`) VALUES
|
||||
(242,0,126790),
|
||||
(243,0,126789),
|
||||
(244,0,126743),
|
||||
(244,0,126742),
|
||||
(244,0,126737),
|
||||
(244,0,126733),
|
||||
(244,0,126738),
|
||||
(244,0,126745),
|
||||
(244,0,126744),
|
||||
(244,0,126739),
|
||||
(244,0,126815),
|
||||
(244,0,126816),
|
||||
(244,0,126817),
|
||||
(244,0,126801),
|
||||
(244,0,126800),
|
||||
(244,0,126746),
|
||||
(244,0,126749),
|
||||
(244,0,126750),
|
||||
(244,1,65564),
|
||||
(244,1,151790),
|
||||
(245,0,126792);
|
||||
|
||||
DELETE FROM `linked_respawn` WHERE `linkedGuid` IN (126790,126789,126792);
|
||||
@@ -1,26 +0,0 @@
|
||||
DELETE FROM `spawn_group_template` WHERE `groupId` BETWEEN 246 AND 249;
|
||||
INSERT INTO `spawn_group_template` (`groupId`,`groupName`,`groupFlags`) VALUES
|
||||
(246,'Drak''Tharon Keep - Trollgore',4),
|
||||
(247,'Drak''Tharon Keep - Novos the Summoner',4),
|
||||
(248,'Drak''Tharon Keep - King Dred',4),
|
||||
(249,'Drak''Tharon Keep - The Prophet Tharon''ja',4);
|
||||
|
||||
DELETE FROM `instance_spawn_groups` WHERE `spawnGroupId` BETWEEN 246 AND 249;
|
||||
INSERT INTO `instance_spawn_groups` (`instanceMapId`,`bossStateId`,`bossStates`,`spawnGroupId`,`flags`) VALUES
|
||||
(600,0,23,246,1),
|
||||
(600,1,23,247,1),
|
||||
(600,2,23,248,1),
|
||||
(600,3,23,249,1);
|
||||
|
||||
DELETE FROM `spawn_group` WHERE `groupId` BETWEEN 246 AND 249;
|
||||
INSERT INTO `spawn_group` SELECT 246, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=127422 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 247, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=127424 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 248, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=127507 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 249, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=200143 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` (`groupId`,`spawnType`,`spawnId`) VALUES
|
||||
(246,0,127422),
|
||||
(247,0,127424),
|
||||
(248,0,127507),
|
||||
(249,0,200143);
|
||||
|
||||
DELETE FROM `linked_respawn` WHERE `linkedGuid` IN (127422,127424,127507,200143);
|
||||
@@ -1,22 +0,0 @@
|
||||
DELETE FROM `spawn_group_template` WHERE `groupId` BETWEEN 250 AND 252;
|
||||
INSERT INTO `spawn_group_template` (`groupId`,`groupName`,`groupFlags`) VALUES
|
||||
(250,'Azjol-Nerub - Krik''thir the Gatewatcher',4),
|
||||
(251,'Azjol-Nerub - Hadronox',4),
|
||||
(252,'Azjol-Nerub - Anub''arak',4);
|
||||
|
||||
DELETE FROM `instance_spawn_groups` WHERE `spawnGroupId` BETWEEN 250 AND 252;
|
||||
INSERT INTO `instance_spawn_groups` (`instanceMapId`,`bossStateId`,`bossStates`,`spawnGroupId`,`flags`) VALUES
|
||||
(601,0,23,250,1),
|
||||
(601,1,23,251,1),
|
||||
(601,2,23,252,1);
|
||||
|
||||
DELETE FROM `spawn_group` WHERE `groupId` BETWEEN 250 AND 252;
|
||||
INSERT INTO `spawn_group` SELECT 250, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=127214 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 251, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=127401 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 252, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=132273 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` (`groupId`,`spawnType`,`spawnId`) VALUES
|
||||
(250,0,127214),
|
||||
(251,0,127401),
|
||||
(252,0,132273);
|
||||
|
||||
DELETE FROM `linked_respawn` WHERE `linkedGuid` IN (127214,127401,132273);
|
||||
@@ -1,26 +0,0 @@
|
||||
DELETE FROM `spawn_group_template` WHERE `groupId` BETWEEN 253 AND 256;
|
||||
INSERT INTO `spawn_group_template` (`groupId`,`groupName`,`groupFlags`) VALUES
|
||||
(253,'Halls of Lightning - General Bjarngrim',4),
|
||||
(254,'Halls of Lightning - Volkhan',4),
|
||||
(255,'Halls of Lightning - Ionar',4),
|
||||
(256,'Halls of Lightning - Loken',4);
|
||||
|
||||
DELETE FROM `instance_spawn_groups` WHERE `spawnGroupId` BETWEEN 253 AND 256;
|
||||
INSERT INTO `instance_spawn_groups` (`instanceMapId`,`bossStateId`,`bossStates`,`spawnGroupId`,`flags`) VALUES
|
||||
(602,0,23,253,1),
|
||||
(602,1,23,254,1),
|
||||
(602,2,23,255,1),
|
||||
(602,3,23,256,1);
|
||||
|
||||
DELETE FROM `spawn_group` WHERE `groupId` BETWEEN 253 AND 256;
|
||||
INSERT INTO `spawn_group` SELECT 253, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=126981 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 254, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=126982 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 255, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=126873 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` SELECT 256, 0, `guid` FROM `linked_respawn` WHERE `linkedGuid`=126985 AND `linkType` IN (0,3);
|
||||
INSERT INTO `spawn_group` (`groupId`,`spawnType`,`spawnId`) VALUES
|
||||
(253,0,126981),
|
||||
(254,0,126982),
|
||||
(255,0,126873),
|
||||
(256,0,126985);
|
||||
|
||||
DELETE FROM `linked_respawn` WHERE `linkedGuid` IN (126981,126982,126873,126985);
|
||||
@@ -1 +0,0 @@
|
||||
DELETE FROM `linked_respawn` WHERE `linkedGuid` IN (127042,127043);
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user