TDB 1002.22121 - 2022/12/20
Port From (https://github.com/TrinityCore/TrinityCore/commit/731217703819c26645944091f47aec63b45c25d4)
This commit is contained in:
@@ -1,15 +0,0 @@
|
||||
DELETE FROM `build_info` WHERE `build` IN (46479,46658,46689,46702,46741,46801,46879,46924,47067);
|
||||
INSERT INTO `build_info` (`build`,`majorVersion`,`minorVersion`,`bugfixVersion`,`hotfixVersion`,`winAuthSeed`,`win64AuthSeed`,`mac64AuthSeed`,`winChecksumSeed`,`macChecksumSeed`) VALUES
|
||||
(46479,10,0,2,NULL,NULL,'CB9AF4D89B60A3ABA288D395D315D932',NULL,NULL,NULL),
|
||||
(46658,10,0,2,NULL,NULL,'3F8EFB085428D75360E9EFE25CD8639A',NULL,NULL,NULL),
|
||||
(46689,10,0,2,NULL,NULL,'D9A11D188D6AD60906F5467510EFD3AA',NULL,NULL,NULL),
|
||||
(46702,10,0,2,NULL,NULL,'01B4D1688FF97DC9AAFCCD0A0B842C0B',NULL,NULL,NULL),
|
||||
(46741,10,0,2,NULL,NULL,'4C0F4A7EC2098AF1FBA745848EC79A78',NULL,NULL,NULL),
|
||||
(46801,10,0,2,NULL,NULL,'E6AC18D1EA5D36ABFFAE5EDED80630DF',NULL,NULL,NULL),
|
||||
(46879,10,0,2,NULL,NULL,'EFEC43936051DD1A210633AF1F6B63DB',NULL,NULL,NULL),
|
||||
(46924,10,0,2,NULL,NULL,'E6CE0B1A8119F069ECF1E7DBAA7BB2F8',NULL,NULL,NULL),
|
||||
(47067,10,0,2,NULL,NULL,'63862CFCDEA6BD2BD7F740EB36B65657',NULL,NULL,NULL);
|
||||
|
||||
UPDATE `realmlist` SET `gamebuild`=47067 WHERE `gamebuild`=45745;
|
||||
|
||||
ALTER TABLE `realmlist` CHANGE `gamebuild` `gamebuild` int unsigned NOT NULL DEFAULT '47067';
|
||||
@@ -1 +0,0 @@
|
||||
ALTER TABLE `account` MODIFY `expansion` tinyint unsigned NOT NULL DEFAULT '9';
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
-- TDB 927.22111 auth
|
||||
-- TDB 1002.22121 auth
|
||||
UPDATE `updates` SET `state`='ARCHIVED',`speed`=0;
|
||||
REPLACE INTO `updates_include` (`path`, `state`) VALUES ('$/sql/old/9.x/auth', 'ARCHIVED');
|
||||
REPLACE INTO `updates_include` (`path`, `state`) VALUES ('$/sql/old/10.x/auth', 'ARCHIVED');
|
||||
+4
-4
@@ -1,7 +1,7 @@
|
||||
DELETE FROM `build_info` WHERE `build` IN (47187);
|
||||
DELETE FROM `build_info` WHERE `build`=47213;
|
||||
INSERT INTO `build_info` (`build`,`majorVersion`,`minorVersion`,`bugfixVersion`,`hotfixVersion`,`winAuthSeed`,`win64AuthSeed`,`mac64AuthSeed`,`winChecksumSeed`,`macChecksumSeed`) VALUES
|
||||
(47187,10,0,2,NULL,NULL,'711F8455C5000C237292E1E6E90631E1',NULL,NULL,NULL);
|
||||
(47213,10,0,2,NULL,NULL,'23C50D88CEAC0A8696ADDE8DD244D4A2',NULL,NULL,NULL);
|
||||
|
||||
UPDATE `realmlist` SET `gamebuild`=47187 WHERE `gamebuild`=47067;
|
||||
UPDATE `realmlist` SET `gamebuild`=47213 WHERE `gamebuild`=47187;
|
||||
|
||||
ALTER TABLE `realmlist` CHANGE `gamebuild` `gamebuild` int unsigned NOT NULL DEFAULT '47187';
|
||||
ALTER TABLE `realmlist` CHANGE `gamebuild` `gamebuild` int unsigned NOT NULL DEFAULT '47213';
|
||||
@@ -0,0 +1,8 @@
|
||||
DELETE FROM `rbac_linked_permissions` WHERE `linkedId`=775;
|
||||
DELETE FROM `rbac_permissions` WHERE `id`=775;
|
||||
|
||||
INSERT INTO `rbac_permissions` (`id`,`name`) VALUES
|
||||
(775,'Command: modify currency');
|
||||
|
||||
INSERT INTO `rbac_linked_permissions` (`id`,`linkedId`) VALUES
|
||||
(197,775);
|
||||
@@ -1,47 +0,0 @@
|
||||
ALTER TABLE `character_inventory` ADD `newSlot` tinyint unsigned;
|
||||
ALTER TABLE `character_inventory` DROP INDEX `guid`;
|
||||
UPDATE `character_inventory` SET `newSlot`=`slot`;
|
||||
UPDATE `character_inventory` SET `newSlot`=`slot`+12 WHERE `slot`>=23 AND `bag`=0; -- free up space for reagent bag
|
||||
UPDATE `character_inventory` SET `newSlot`=`slot`+11 WHERE `slot` BETWEEN 19 AND 22 AND `bag`=0; -- free up space for profession equipment
|
||||
UPDATE `character_inventory` SET `slot`=`newSlot`;
|
||||
ALTER TABLE `character_inventory` ADD UNIQUE KEY `uk_location` (`guid`,`bag`,`slot`);
|
||||
ALTER TABLE `character_inventory` DROP `newSlot`;
|
||||
|
||||
UPDATE `characters` SET `equipmentCache`=CONCAT(`equipmentCache`, '0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ');
|
||||
|
||||
--
|
||||
-- Table structure for table `character_trait_entry`
|
||||
--
|
||||
DROP TABLE IF EXISTS `character_trait_entry`;
|
||||
CREATE TABLE `character_trait_entry` (
|
||||
`guid` bigint unsigned NOT NULL,
|
||||
`traitConfigId` int NOT NULL,
|
||||
`traitNodeId` int NOT NULL,
|
||||
`traitNodeEntryId` int NOT NULL,
|
||||
`rank` int NOT NULL DEFAULT '0',
|
||||
`grantedRanks` int NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`guid`,`traitConfigId`,`traitNodeId`,`traitNodeEntryId`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
--
|
||||
-- Table structure for table `character_trait_config`
|
||||
--
|
||||
DROP TABLE IF EXISTS `character_trait_config`;
|
||||
CREATE TABLE `character_trait_config` (
|
||||
`guid` bigint unsigned NOT NULL,
|
||||
`traitConfigId` int NOT NULL,
|
||||
`type` int NOT NULL,
|
||||
`chrSpecializationId` int DEFAULT NULL,
|
||||
`combatConfigFlags` int DEFAULT NULL,
|
||||
`localIdentifier` int DEFAULT NULL,
|
||||
`skillLineId` int DEFAULT NULL,
|
||||
`traitSystemId` int DEFAULT NULL,
|
||||
`name` varchar(260) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
PRIMARY KEY (`guid`,`traitConfigId`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
ALTER TABLE `character_action` ADD `traitConfigId` int NOT NULL DEFAULT 0 AFTER `spec`;
|
||||
ALTER TABLE `character_action` DROP PRIMARY KEY;
|
||||
ALTER TABLE `character_action` ADD PRIMARY KEY (`guid`,`spec`,`traitConfigId`,`button`);
|
||||
|
||||
DELETE FROM `character_talent`;
|
||||
@@ -1,9 +0,0 @@
|
||||
--
|
||||
-- Table structure for table `character_spell_favorite`
|
||||
--
|
||||
DROP TABLE IF EXISTS `character_spell_favorite`;
|
||||
CREATE TABLE `character_spell_favorite` (
|
||||
`guid` bigint unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
||||
`spell` int unsigned NOT NULL DEFAULT '0' COMMENT 'Spell Identifier',
|
||||
PRIMARY KEY (`guid`,`spell`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Player System';
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
-- TDB 927.22111 characters
|
||||
-- TDB 1002.22121 characters
|
||||
UPDATE `updates` SET `state`='ARCHIVED',`speed`=0;
|
||||
REPLACE INTO `updates_include` (`path`, `state`) VALUES ('$/sql/old/9.x/characters', 'ARCHIVED');
|
||||
REPLACE INTO `updates_include` (`path`, `state`) VALUES ('$/sql/old/10.x/characters', 'ARCHIVED');
|
||||
@@ -0,0 +1,3 @@
|
||||
-- delete corrupted trait configs
|
||||
DELETE FROM `character_trait_entry`;
|
||||
DELETE FROM `character_trait_config`;
|
||||
@@ -1,343 +0,0 @@
|
||||
--
|
||||
-- Table structure for table `battle_pet_breed_quality`
|
||||
--
|
||||
ALTER TABLE `battle_pet_breed_quality` ADD `MaxQualityRoll` int NOT NULL DEFAULT 0 AFTER `ID`;
|
||||
|
||||
--
|
||||
-- Table structure for table `battle_pet_species`
|
||||
--
|
||||
ALTER TABLE `battle_pet_species` MODIFY `Flags` int NOT NULL DEFAULT 0 AFTER `PetTypeEnum`;
|
||||
|
||||
--
|
||||
-- Table structure for table `battlemaster_list`
|
||||
--
|
||||
ALTER TABLE `battlemaster_list` MODIFY `MaxPlayers` int NOT NULL DEFAULT 0 AFTER `MinPlayers`;
|
||||
|
||||
--
|
||||
-- Table structure for table `battlemaster_list`
|
||||
--
|
||||
ALTER TABLE `character_loadout` MODIFY `Purpose` int NOT NULL DEFAULT 0 AFTER `ChrClassID`;
|
||||
ALTER TABLE `character_loadout` CHANGE `Unused910` `ItemContext` tinyint NOT NULL DEFAULT 0 AFTER `Purpose`;
|
||||
|
||||
--
|
||||
-- Table structure for table `chr_customization_choice`
|
||||
--
|
||||
ALTER TABLE `chr_customization_choice` ADD `ChrCustomizationVisReqID` int NOT NULL DEFAULT 0 AFTER `ChrCustomizationReqID`;
|
||||
|
||||
--
|
||||
-- Table structure for table `chr_customization_element`
|
||||
--
|
||||
ALTER TABLE `chr_customization_element` ADD `ChrCustomizationVoiceID` int NOT NULL DEFAULT 0 AFTER `ChrCustItemGeoModifyID`;
|
||||
|
||||
--
|
||||
-- Table structure for table `chr_customization_req`
|
||||
--
|
||||
ALTER TABLE `chr_customization_req`
|
||||
ADD `ReqSource` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL AFTER `ID`,
|
||||
ADD `QuestID` int NOT NULL DEFAULT 0 AFTER `AchievementID`;
|
||||
|
||||
--
|
||||
-- Table structure for table `chr_customization_req_locale`
|
||||
--
|
||||
DROP TABLE IF EXISTS `chr_customization_req_locale`;
|
||||
CREATE TABLE `chr_customization_req_locale` (
|
||||
`ID` int unsigned NOT NULL DEFAULT '0',
|
||||
`locale` varchar(4) NOT NULL,
|
||||
`ReqSource_lang` text,
|
||||
`VerifiedBuild` int 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);
|
||||
|
||||
--
|
||||
-- Table structure for table `chr_model`
|
||||
--
|
||||
ALTER TABLE `chr_model` MODIFY `DisplayID` int NOT NULL DEFAULT 0 AFTER `Sex`;
|
||||
|
||||
--
|
||||
-- Table structure for table `chr_model`
|
||||
--
|
||||
ALTER TABLE `chr_race_x_chr_model`
|
||||
ADD `Sex` int NOT NULL DEFAULT 0 AFTER `ChrModelID`,
|
||||
ADD `AllowedTransmogSlots` int NOT NULL DEFAULT 0 AFTER `Sex`;
|
||||
|
||||
--
|
||||
-- Table structure for table `chr_races`
|
||||
--
|
||||
ALTER TABLE `chr_races` ADD `Unknown1000` int NOT NULL DEFAULT 0 AFTER `Unknown910_23`;
|
||||
|
||||
--
|
||||
-- Table structure for table `cinematic_camera`
|
||||
--
|
||||
ALTER TABLE `cinematic_camera` CHANGE `Unknown915` `ConversationID` int unsigned NOT NULL DEFAULT 0 AFTER `FileDataID`;
|
||||
|
||||
--
|
||||
-- Table structure for table `creature_display_info`
|
||||
--
|
||||
ALTER TABLE `creature_display_info` ADD `TextureVariationFileDataID4` int NOT NULL DEFAULT 0 AFTER `TextureVariationFileDataID3`;
|
||||
|
||||
--
|
||||
-- Table structure for table `currency_types`
|
||||
--
|
||||
ALTER TABLE `currency_types`
|
||||
ADD `RechargingAmountPerCycle` int unsigned NOT NULL DEFAULT 0 AFTER `MaxQtyWorldStateID`,
|
||||
ADD `RechargingCycleDurationMS` int unsigned NOT NULL DEFAULT 0 AFTER `RechargingAmountPerCycle`;
|
||||
|
||||
--
|
||||
-- Table structure for table `curve_point`
|
||||
--
|
||||
ALTER TABLE `curve_point` MODIFY `ID` int unsigned NOT NULL DEFAULT 0 AFTER `PreSLSquishPosY`;
|
||||
|
||||
--
|
||||
-- Table structure for table `dungeon_encounter`
|
||||
--
|
||||
ALTER TABLE `dungeon_encounter` DROP `CreatureDisplayID`;
|
||||
|
||||
--
|
||||
-- Table structure for table `faction`
|
||||
--
|
||||
ALTER TABLE `faction`
|
||||
ADD `RenownFactionID` int NOT NULL DEFAULT 0 AFTER `ParagonFactionID`,
|
||||
ADD `RenownCurrencyID` int NOT NULL DEFAULT 0 AFTER `RenownFactionID`,
|
||||
MODIFY `Flags` int NOT NULL DEFAULT 0 AFTER `FriendshipRepID`;
|
||||
|
||||
--
|
||||
-- Table structure for table `faction_template`
|
||||
--
|
||||
ALTER TABLE `faction_template`
|
||||
ADD `Enemies5` smallint unsigned NOT NULL DEFAULT 0 AFTER `Enemies4`,
|
||||
ADD `Enemies6` smallint unsigned NOT NULL DEFAULT 0 AFTER `Enemies5`,
|
||||
ADD `Enemies7` smallint unsigned NOT NULL DEFAULT 0 AFTER `Enemies6`,
|
||||
ADD `Enemies8` smallint unsigned NOT NULL DEFAULT 0 AFTER `Enemies7`,
|
||||
ADD `Friend5` smallint unsigned NOT NULL DEFAULT 0 AFTER `Friend4`,
|
||||
ADD `Friend6` smallint unsigned NOT NULL DEFAULT 0 AFTER `Friend5`,
|
||||
ADD `Friend7` smallint unsigned NOT NULL DEFAULT 0 AFTER `Friend6`,
|
||||
ADD `Friend8` smallint unsigned NOT NULL DEFAULT 0 AFTER `Friend7`;
|
||||
|
||||
--
|
||||
-- Table structure for table `garr_talent_tree`
|
||||
--
|
||||
ALTER TABLE `garr_talent_tree` MODIFY `FeatureTypeIndex` tinyint unsigned NOT NULL DEFAULT 0 AFTER `PlayerConditionID`;
|
||||
|
||||
--
|
||||
-- Table structure for table `gossip_npc_option`
|
||||
--
|
||||
DROP TABLE IF EXISTS `gossip_npc_option`;
|
||||
CREATE TABLE `gossip_npc_option` (
|
||||
`ID` int unsigned NOT NULL DEFAULT '0',
|
||||
`GossipNpcOption` int NOT NULL DEFAULT '0',
|
||||
`LFGDungeonsID` int NOT NULL DEFAULT '0',
|
||||
`TrainerID` int NOT NULL DEFAULT '0',
|
||||
`GarrFollowerTypeID` int NOT NULL DEFAULT '0',
|
||||
`CharShipmentID` int NOT NULL DEFAULT '0',
|
||||
`GarrTalentTreeID` int NOT NULL DEFAULT '0',
|
||||
`UiMapID` int NOT NULL DEFAULT '0',
|
||||
`UiItemInteractionID` int NOT NULL DEFAULT '0',
|
||||
`Unknown_1000_8` int NOT NULL DEFAULT '0',
|
||||
`Unknown_1000_9` int NOT NULL DEFAULT '0',
|
||||
`CovenantID` int NOT NULL DEFAULT '0',
|
||||
`GossipOptionID` int NOT NULL DEFAULT '0',
|
||||
`TraitTreeID` int NOT NULL DEFAULT '0',
|
||||
`ProfessionID` int NOT NULL DEFAULT '0',
|
||||
`Unknown_1002_14` int NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` int NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`,`VerifiedBuild`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
--
|
||||
-- Table structure for table `item`
|
||||
--
|
||||
ALTER TABLE `item` ADD `CraftingQualityID` int NOT NULL DEFAULT 0 AFTER `ModifiedCraftingReagentItemID`;
|
||||
|
||||
--
|
||||
-- Table structure for table `item_extended_cost`
|
||||
--
|
||||
ALTER TABLE `item_extended_cost` MODIFY `MinReputation` int NOT NULL DEFAULT 0 AFTER `MinFactionID`;
|
||||
|
||||
--
|
||||
-- Table structure for table `item_search_name`
|
||||
--
|
||||
ALTER TABLE `item_search_name` MODIFY `MinReputation` int NOT NULL DEFAULT 0 AFTER `MinFactionID`;
|
||||
|
||||
--
|
||||
-- Table structure for table `item_sparse`
|
||||
--
|
||||
ALTER TABLE `item_sparse` MODIFY `MinReputation` int NOT NULL DEFAULT 0 AFTER `MaxCount`;
|
||||
|
||||
--
|
||||
-- Table structure for table `journal_instance`
|
||||
--
|
||||
ALTER TABLE `journal_instance` DROP `OrderIndex`;
|
||||
|
||||
--
|
||||
-- Table structure for table `map`
|
||||
--
|
||||
ALTER TABLE `map` ADD `NavigationMaxDistance` int NOT NULL DEFAULT 0 AFTER `WdtFileDataID`;
|
||||
|
||||
--
|
||||
-- Table structure for table `mount_capability`
|
||||
--
|
||||
ALTER TABLE `mount_capability` ADD `FlightCapabilityID` int NOT NULL DEFAULT 0 AFTER `PlayerConditionID`;
|
||||
|
||||
--
|
||||
-- Table structure for table `player_condition`
|
||||
--
|
||||
ALTER TABLE `player_condition`
|
||||
ADD `TraitNodeEntryLogic` int unsigned NOT NULL DEFAULT 0 AFTER `CovenantID`,
|
||||
ADD `TraitNodeEntryID1` int NOT NULL DEFAULT 0 AFTER `MovementFlags2`,
|
||||
ADD `TraitNodeEntryID2` int NOT NULL DEFAULT 0 AFTER `TraitNodeEntryID1`,
|
||||
ADD `TraitNodeEntryID3` int NOT NULL DEFAULT 0 AFTER `TraitNodeEntryID2`,
|
||||
ADD `TraitNodeEntryID4` int NOT NULL DEFAULT 0 AFTER `TraitNodeEntryID3`,
|
||||
ADD `TraitNodeEntryMinRank1` smallint unsigned NOT NULL DEFAULT 0 AFTER `TraitNodeEntryID4`,
|
||||
ADD `TraitNodeEntryMinRank2` smallint unsigned NOT NULL DEFAULT 0 AFTER `TraitNodeEntryMinRank1`,
|
||||
ADD `TraitNodeEntryMinRank3` smallint unsigned NOT NULL DEFAULT 0 AFTER `TraitNodeEntryMinRank2`,
|
||||
ADD `TraitNodeEntryMinRank4` smallint unsigned NOT NULL DEFAULT 0 AFTER `TraitNodeEntryMinRank3`,
|
||||
ADD `TraitNodeEntryMaxRank1` smallint unsigned NOT NULL DEFAULT 0 AFTER `TraitNodeEntryMinRank4`,
|
||||
ADD `TraitNodeEntryMaxRank2` smallint unsigned NOT NULL DEFAULT 0 AFTER `TraitNodeEntryMaxRank1`,
|
||||
ADD `TraitNodeEntryMaxRank3` smallint unsigned NOT NULL DEFAULT 0 AFTER `TraitNodeEntryMaxRank2`,
|
||||
ADD `TraitNodeEntryMaxRank4` smallint unsigned NOT NULL DEFAULT 0 AFTER `TraitNodeEntryMaxRank3`;
|
||||
|
||||
--
|
||||
-- Table structure for table `power_type`
|
||||
--
|
||||
ALTER TABLE `power_type`
|
||||
MODIFY `MinPower` int NOT NULL DEFAULT 0 AFTER `PowerTypeEnum`,
|
||||
MODIFY `MaxBasePower` int NOT NULL DEFAULT 0 AFTER `MinPower`,
|
||||
MODIFY `CenterPower` int NOT NULL DEFAULT 0 AFTER `MaxBasePower`,
|
||||
MODIFY `DefaultPower` int NOT NULL DEFAULT 0 AFTER `CenterPower`,
|
||||
MODIFY `DisplayModifier` int NOT NULL DEFAULT 0 AFTER `DefaultPower`,
|
||||
MODIFY `RegenInterruptTimeMS` int NOT NULL DEFAULT 0 AFTER `DisplayModifier`;
|
||||
|
||||
--
|
||||
-- Table structure for table `pvp_talent`
|
||||
--
|
||||
ALTER TABLE `pvp_talent` ADD `PlayerConditionID` int NOT NULL DEFAULT 0 AFTER `LevelRequired`;
|
||||
|
||||
--
|
||||
-- Table structure for table `quest_info`
|
||||
--
|
||||
ALTER TABLE `quest_info` MODIFY `Profession` int NOT NULL DEFAULT 0 AFTER `Modifiers`;
|
||||
|
||||
--
|
||||
-- Table structure for table `quest_v2`
|
||||
--
|
||||
ALTER TABLE `quest_v2` ADD `UiQuestDetailsTheme` int NOT NULL DEFAULT 0 AFTER `UniqueBitFlag`;
|
||||
|
||||
--
|
||||
-- Table structure for table `quest_v2`
|
||||
--
|
||||
ALTER TABLE `skill_line`
|
||||
ADD `ExpansionNameSharedStringID` int NOT NULL DEFAULT 0 AFTER `SpellBookSpellID`,
|
||||
ADD `HordeExpansionNameSharedStringID` int NOT NULL DEFAULT 0 AFTER `ExpansionNameSharedStringID`;
|
||||
|
||||
--
|
||||
-- Table structure for table `quest_v2`
|
||||
--
|
||||
ALTER TABLE `skill_line_ability`
|
||||
ADD `AbilityVerb` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL AFTER `RaceMask`,
|
||||
ADD `AbilityAllVerb` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL AFTER `AbilityVerb`;
|
||||
|
||||
--
|
||||
-- Table structure for table `skill_line_ability_locale`
|
||||
--
|
||||
DROP TABLE IF EXISTS `skill_line_ability_locale`;
|
||||
CREATE TABLE `skill_line_ability_locale` (
|
||||
`ID` int unsigned NOT NULL DEFAULT '0',
|
||||
`locale` varchar(4) NOT NULL,
|
||||
`AbilityVerb_lang` text,
|
||||
`AbilityAllVerb_lang` text,
|
||||
`VerifiedBuild` int 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);
|
||||
|
||||
--
|
||||
-- Table structure for table `skill_line_ability_locale`
|
||||
--
|
||||
ALTER TABLE `sound_kit`
|
||||
MODIFY `Flags` int NOT NULL DEFAULT 0 AFTER `VolumeFloat`,
|
||||
ADD `SoundMixGroupID` int unsigned NOT NULL DEFAULT 0 AFTER `MaxInstances`;
|
||||
|
||||
--
|
||||
-- Table structure for table `spell_aura_restrictions`
|
||||
--
|
||||
ALTER TABLE `spell_aura_restrictions`
|
||||
MODIFY `DifficultyID` int NOT NULL DEFAULT 0 AFTER `ID`,
|
||||
MODIFY `CasterAuraState` int NOT NULL DEFAULT 0 AFTER `DifficultyID`,
|
||||
MODIFY `TargetAuraState` int NOT NULL DEFAULT 0 AFTER `CasterAuraState`,
|
||||
MODIFY `ExcludeCasterAuraState` int NOT NULL DEFAULT 0 AFTER `TargetAuraState`,
|
||||
MODIFY `ExcludeTargetAuraState` int NOT NULL DEFAULT 0 AFTER `ExcludeCasterAuraState`,
|
||||
ADD `CasterAuraType` int NOT NULL DEFAULT 0 AFTER `ExcludeTargetAuraSpell`,
|
||||
ADD `TargetAuraType` int NOT NULL DEFAULT 0 AFTER `CasterAuraType`,
|
||||
ADD `ExcludeCasterAuraType` int NOT NULL DEFAULT 0 AFTER `TargetAuraType`,
|
||||
ADD `ExcludeTargetAuraType` int NOT NULL DEFAULT 0 AFTER `ExcludeCasterAuraType`;
|
||||
|
||||
--
|
||||
-- Table structure for table `spell_casting_requirements`
|
||||
--
|
||||
ALTER TABLE `spell_casting_requirements` MODIFY `MinReputation` int NOT NULL DEFAULT 0 AFTER `MinFactionID`;
|
||||
|
||||
--
|
||||
-- Table structure for table `spell_cooldowns`
|
||||
--
|
||||
ALTER TABLE `spell_cooldowns` ADD `AuraSpellID` int NOT NULL DEFAULT 0 AFTER `StartRecoveryTime`;
|
||||
|
||||
--
|
||||
-- Table structure for table `spell_item_enchantment`
|
||||
--
|
||||
ALTER TABLE `spell_item_enchantment` ADD `Duration` int NOT NULL DEFAULT 0 AFTER `HordeName`;
|
||||
|
||||
--
|
||||
-- Table structure for table `spell_power`
|
||||
--
|
||||
ALTER TABLE `spell_power` ADD `OptionalCostPct` float NOT NULL DEFAULT 0 AFTER `PowerCostMaxPct`;
|
||||
|
||||
--
|
||||
-- Table structure for table `spell_power`
|
||||
--
|
||||
ALTER TABLE `spell_reagents` ADD `ReagentRecraftCount1` smallint NOT NULL DEFAULT 0 AFTER `ReagentCount8`,
|
||||
ADD `ReagentRecraftCount2` smallint NOT NULL DEFAULT 0 AFTER `ReagentRecraftCount1`,
|
||||
ADD `ReagentRecraftCount3` smallint NOT NULL DEFAULT 0 AFTER `ReagentRecraftCount2`,
|
||||
ADD `ReagentRecraftCount4` smallint NOT NULL DEFAULT 0 AFTER `ReagentRecraftCount3`,
|
||||
ADD `ReagentRecraftCount5` smallint NOT NULL DEFAULT 0 AFTER `ReagentRecraftCount4`,
|
||||
ADD `ReagentRecraftCount6` smallint NOT NULL DEFAULT 0 AFTER `ReagentRecraftCount5`,
|
||||
ADD `ReagentRecraftCount7` smallint NOT NULL DEFAULT 0 AFTER `ReagentRecraftCount6`,
|
||||
ADD `ReagentRecraftCount8` smallint NOT NULL DEFAULT 0 AFTER `ReagentRecraftCount7`,
|
||||
ADD `ReagentSource1` tinyint unsigned NOT NULL DEFAULT 0 AFTER `ReagentRecraftCount8`,
|
||||
ADD `ReagentSource2` tinyint unsigned NOT NULL DEFAULT 0 AFTER `ReagentSource1`,
|
||||
ADD `ReagentSource3` tinyint unsigned NOT NULL DEFAULT 0 AFTER `ReagentSource2`,
|
||||
ADD `ReagentSource4` tinyint unsigned NOT NULL DEFAULT 0 AFTER `ReagentSource3`,
|
||||
ADD `ReagentSource5` tinyint unsigned NOT NULL DEFAULT 0 AFTER `ReagentSource4`,
|
||||
ADD `ReagentSource6` tinyint unsigned NOT NULL DEFAULT 0 AFTER `ReagentSource5`,
|
||||
ADD `ReagentSource7` tinyint unsigned NOT NULL DEFAULT 0 AFTER `ReagentSource6`,
|
||||
ADD `ReagentSource8` tinyint unsigned NOT NULL DEFAULT 0 AFTER `ReagentSource7`;
|
||||
|
||||
--
|
||||
-- Table structure for table `spell_x_spell_visual`
|
||||
--
|
||||
ALTER TABLE `spell_x_spell_visual` ADD `Flags` int NOT NULL DEFAULT 0 AFTER `Probability`;
|
||||
|
||||
--
|
||||
-- Table structure for table `ui_map_link`
|
||||
--
|
||||
ALTER TABLE `ui_map_link` ADD `PlayerConditionID` int NOT NULL DEFAULT 0 AFTER `ChildUiMapID`;
|
||||
@@ -1,382 +0,0 @@
|
||||
--
|
||||
-- Table structure for table `skill_line_x_trait_tree`
|
||||
--
|
||||
DROP TABLE IF EXISTS `skill_line_x_trait_tree`;
|
||||
CREATE TABLE `skill_line_x_trait_tree` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`SkillLineID` int(11) NOT NULL DEFAULT '0',
|
||||
`TraitTreeID` int(11) NOT NULL DEFAULT '0',
|
||||
`OrderIndex` 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 `trait_cond`
|
||||
--
|
||||
DROP TABLE IF EXISTS `trait_cond`;
|
||||
CREATE TABLE `trait_cond` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`CondType` int(11) NOT NULL DEFAULT '0',
|
||||
`TraitTreeID` int(11) NOT NULL DEFAULT '0',
|
||||
`GrantedRanks` int(11) NOT NULL DEFAULT '0',
|
||||
`QuestID` int(11) NOT NULL DEFAULT '0',
|
||||
`AchievementID` int(11) NOT NULL DEFAULT '0',
|
||||
`SpecSetID` int(11) NOT NULL DEFAULT '0',
|
||||
`TraitNodeGroupID` int(11) NOT NULL DEFAULT '0',
|
||||
`TraitNodeID` int(11) NOT NULL DEFAULT '0',
|
||||
`TraitCurrencyID` int(11) NOT NULL DEFAULT '0',
|
||||
`SpentAmountRequired` int(11) NOT NULL DEFAULT '0',
|
||||
`Flags` int(11) NOT NULL DEFAULT '0',
|
||||
`RequiredLevel` int(11) NOT NULL DEFAULT '0',
|
||||
`FreeSharedStringID` int(11) NOT NULL DEFAULT '0',
|
||||
`SpendMoreSharedStringID` 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 `trait_cost`
|
||||
--
|
||||
DROP TABLE IF EXISTS `trait_cost`;
|
||||
CREATE TABLE `trait_cost` (
|
||||
`InternalName` text,
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Amount` int(11) NOT NULL DEFAULT '0',
|
||||
`TraitCurrencyID` 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 `trait_currency`
|
||||
--
|
||||
DROP TABLE IF EXISTS `trait_currency`;
|
||||
CREATE TABLE `trait_currency` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Type` int(11) NOT NULL DEFAULT '0',
|
||||
`CurrencyTypesID` int(11) NOT NULL DEFAULT '0',
|
||||
`Flags` int(11) NOT NULL DEFAULT '0',
|
||||
`Icon` 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 `trait_currency_source`
|
||||
--
|
||||
DROP TABLE IF EXISTS `trait_currency_source`;
|
||||
CREATE TABLE `trait_currency_source` (
|
||||
`Requirement` text,
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`TraitCurrencyID` int(11) NOT NULL DEFAULT '0',
|
||||
`Amount` int(11) NOT NULL DEFAULT '0',
|
||||
`QuestID` int(11) NOT NULL DEFAULT '0',
|
||||
`AchievementID` int(11) NOT NULL DEFAULT '0',
|
||||
`PlayerLevel` int(11) NOT NULL DEFAULT '0',
|
||||
`TraitNodeEntryID` int(11) NOT NULL DEFAULT '0',
|
||||
`OrderIndex` 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 `trait_currency_source_locale`
|
||||
--
|
||||
DROP TABLE IF EXISTS `trait_currency_source_locale`;
|
||||
CREATE TABLE `trait_currency_source_locale` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`locale` varchar(4) NOT NULL,
|
||||
`Requirement_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);
|
||||
|
||||
--
|
||||
-- Table structure for table `trait_definition`
|
||||
--
|
||||
DROP TABLE IF EXISTS `trait_definition`;
|
||||
CREATE TABLE `trait_definition` (
|
||||
`OverrideName` text,
|
||||
`OverrideSubtext` text,
|
||||
`OverrideDescription` text,
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`SpellID` int(11) NOT NULL DEFAULT '0',
|
||||
`OverrideIcon` int(11) NOT NULL DEFAULT '0',
|
||||
`OverridesSpellID` int(11) NOT NULL DEFAULT '0',
|
||||
`VisibleSpellID` 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 `trait_definition_locale`
|
||||
--
|
||||
DROP TABLE IF EXISTS `trait_definition_locale`;
|
||||
CREATE TABLE `trait_definition_locale` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`locale` varchar(4) NOT NULL,
|
||||
`OverrideName_lang` text,
|
||||
`OverrideSubtext_lang` text,
|
||||
`OverrideDescription_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);
|
||||
|
||||
--
|
||||
-- Table structure for table `trait_definition_effect_points`
|
||||
--
|
||||
DROP TABLE IF EXISTS `trait_definition_effect_points`;
|
||||
CREATE TABLE `trait_definition_effect_points` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`TraitDefinitionID` int(11) NOT NULL DEFAULT '0',
|
||||
`EffectIndex` int(11) NOT NULL DEFAULT '0',
|
||||
`OperationType` int(11) NOT NULL DEFAULT '0',
|
||||
`CurveID` 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 `trait_edge`
|
||||
--
|
||||
DROP TABLE IF EXISTS `trait_edge`;
|
||||
CREATE TABLE `trait_edge` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`VisualStyle` int(11) NOT NULL DEFAULT '0',
|
||||
`LeftTraitNodeID` int(11) NOT NULL DEFAULT '0',
|
||||
`RightTraitNodeID` int(11) NOT NULL DEFAULT '0',
|
||||
`Type` 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 `trait_node`
|
||||
--
|
||||
DROP TABLE IF EXISTS `trait_node`;
|
||||
CREATE TABLE `trait_node` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`TraitTreeID` int(11) NOT NULL DEFAULT '0',
|
||||
`PosX` int(11) NOT NULL DEFAULT '0',
|
||||
`PosY` int(11) NOT NULL DEFAULT '0',
|
||||
`Type` tinyint(4) NOT NULL DEFAULT '0',
|
||||
`Flags` 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 `trait_node_entry`
|
||||
--
|
||||
DROP TABLE IF EXISTS `trait_node_entry`;
|
||||
CREATE TABLE `trait_node_entry` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`TraitDefinitionID` int(11) NOT NULL DEFAULT '0',
|
||||
`MaxRanks` int(11) NOT NULL DEFAULT '0',
|
||||
`NodeEntryType` tinyint(3) unsigned 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 `trait_node_entry_x_trait_cond`
|
||||
--
|
||||
DROP TABLE IF EXISTS `trait_node_entry_x_trait_cond`;
|
||||
CREATE TABLE `trait_node_entry_x_trait_cond` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`TraitCondID` int(11) NOT NULL DEFAULT '0',
|
||||
`TraitNodeEntryID` int(10) unsigned 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 `trait_node_entry_x_trait_cost`
|
||||
--
|
||||
DROP TABLE IF EXISTS `trait_node_entry_x_trait_cost`;
|
||||
CREATE TABLE `trait_node_entry_x_trait_cost` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`TraitNodeEntryID` int(11) NOT NULL DEFAULT '0',
|
||||
`TraitCostID` 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 `trait_node_group`
|
||||
--
|
||||
DROP TABLE IF EXISTS `trait_node_group`;
|
||||
CREATE TABLE `trait_node_group` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`TraitTreeID` int(11) NOT NULL DEFAULT '0',
|
||||
`Flags` 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 `trait_node_group_x_trait_cond`
|
||||
--
|
||||
DROP TABLE IF EXISTS `trait_node_group_x_trait_cond`;
|
||||
CREATE TABLE `trait_node_group_x_trait_cond` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`TraitCondID` int(11) NOT NULL DEFAULT '0',
|
||||
`TraitNodeGroupID` 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 `trait_node_group_x_trait_cost`
|
||||
--
|
||||
DROP TABLE IF EXISTS `trait_node_group_x_trait_cost`;
|
||||
CREATE TABLE `trait_node_group_x_trait_cost` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`TraitNodeGroupID` int(11) NOT NULL DEFAULT '0',
|
||||
`TraitCostID` 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 `trait_node_group_x_trait_node`
|
||||
--
|
||||
DROP TABLE IF EXISTS `trait_node_group_x_trait_node`;
|
||||
CREATE TABLE `trait_node_group_x_trait_node` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`TraitNodeGroupID` int(11) NOT NULL DEFAULT '0',
|
||||
`TraitNodeID` int(11) NOT NULL DEFAULT '0',
|
||||
`Index` 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 `trait_node_x_trait_cond`
|
||||
--
|
||||
DROP TABLE IF EXISTS `trait_node_x_trait_cond`;
|
||||
CREATE TABLE `trait_node_x_trait_cond` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`TraitCondID` int(11) NOT NULL DEFAULT '0',
|
||||
`TraitNodeID` 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 `trait_node_x_trait_cost`
|
||||
--
|
||||
DROP TABLE IF EXISTS `trait_node_x_trait_cost`;
|
||||
CREATE TABLE `trait_node_x_trait_cost` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`TraitNodeID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`TraitCostID` 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 `trait_node_x_trait_node_entry`
|
||||
--
|
||||
DROP TABLE IF EXISTS `trait_node_x_trait_node_entry`;
|
||||
CREATE TABLE `trait_node_x_trait_node_entry` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`TraitNodeID` int(11) NOT NULL DEFAULT '0',
|
||||
`TraitNodeEntryID` int(11) NOT NULL DEFAULT '0',
|
||||
`Index` 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 `trait_tree`
|
||||
--
|
||||
DROP TABLE IF EXISTS `trait_tree`;
|
||||
CREATE TABLE `trait_tree` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`TraitSystemID` int(11) NOT NULL DEFAULT '0',
|
||||
`Unused1000_1` int(11) NOT NULL DEFAULT '0',
|
||||
`FirstTraitNodeID` int(11) NOT NULL DEFAULT '0',
|
||||
`PlayerConditionID` int(11) NOT NULL DEFAULT '0',
|
||||
`Flags` int(11) NOT NULL DEFAULT '0',
|
||||
`Unused1000_2` float NOT NULL DEFAULT '0',
|
||||
`Unused1000_3` float 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 `trait_tree_loadout`
|
||||
--
|
||||
DROP TABLE IF EXISTS `trait_tree_loadout`;
|
||||
CREATE TABLE `trait_tree_loadout` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`TraitTreeID` int(11) NOT NULL DEFAULT '0',
|
||||
`ChrSpecializationID` 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 `trait_tree_loadout_entry`
|
||||
--
|
||||
DROP TABLE IF EXISTS `trait_tree_loadout_entry`;
|
||||
CREATE TABLE `trait_tree_loadout_entry` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`TraitTreeLoadoutID` int(11) NOT NULL DEFAULT '0',
|
||||
`SelectedTraitNodeID` int(11) NOT NULL DEFAULT '0',
|
||||
`SelectedTraitNodeEntryID` int(11) NOT NULL DEFAULT '0',
|
||||
`NumPoints` int(11) NOT NULL DEFAULT '0',
|
||||
`OrderIndex` 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 `trait_tree_x_trait_cost`
|
||||
--
|
||||
DROP TABLE IF EXISTS `trait_tree_x_trait_cost`;
|
||||
CREATE TABLE `trait_tree_x_trait_cost` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`TraitTreeID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`TraitCostID` 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 `trait_tree_x_trait_currency`
|
||||
--
|
||||
DROP TABLE IF EXISTS `trait_tree_x_trait_currency`;
|
||||
CREATE TABLE `trait_tree_x_trait_currency` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Index` int(11) NOT NULL DEFAULT '0',
|
||||
`TraitTreeID` int(11) NOT NULL DEFAULT '0',
|
||||
`TraitCurrencyID` 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;
|
||||
File diff suppressed because one or more lines are too long
+2
-2
@@ -1,3 +1,3 @@
|
||||
-- TDB 927.22111 hotfixes
|
||||
-- TDB 1002.22121 hotfixes
|
||||
UPDATE `updates` SET `state`='ARCHIVED',`speed`=0;
|
||||
REPLACE INTO `updates_include` (`path`, `state`) VALUES ('$/sql/old/9.x/hotfixes', 'ARCHIVED');
|
||||
REPLACE INTO `updates_include` (`path`, `state`) VALUES ('$/sql/old/10.x/hotfixes', 'ARCHIVED');
|
||||
File diff suppressed because one or more lines are too long
@@ -1,4 +0,0 @@
|
||||
-- TDB 927.22111 world
|
||||
UPDATE `version` SET `db_version`='TDB 927.22111', `cache_id`=22111 LIMIT 1;
|
||||
UPDATE `updates` SET `state`='ARCHIVED',`speed`=0;
|
||||
REPLACE INTO `updates_include` (`path`, `state`) VALUES ('$/sql/old/9.x/world', 'ARCHIVED');
|
||||
@@ -1,48 +0,0 @@
|
||||
SET @CGUID := 1051903;
|
||||
SET @CONDREF := -1;
|
||||
|
||||
-- Creature templates
|
||||
UPDATE `creature_template` SET `minlevel`=63, `maxlevel`=63 WHERE `entry`=175135; -- Rokhan
|
||||
|
||||
DELETE FROM `creature_template_addon` WHERE `entry`=175135;
|
||||
INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(175135, 0, 0, 0, 257, 0, 0, 0, 0, 3, ''); -- 175135 (Rokhan)
|
||||
|
||||
-- Gossips
|
||||
UPDATE `gossip_menu` SET `VerifiedBuild`=46597 WHERE `MenuID`=26685 AND `TextID`=42407;
|
||||
|
||||
UPDATE `npc_text` SET `Probability0`=1 WHERE `ID`=42407;
|
||||
|
||||
-- Scaling
|
||||
DELETE FROM `creature_template_scaling` WHERE `DifficultyID`=1 AND `Entry`=175135;
|
||||
|
||||
-- Phases
|
||||
DELETE FROM `phase_name` WHERE `ID`=16786;
|
||||
INSERT INTO `phase_name` (`ID`, `Name`) VALUES
|
||||
(16786, 'Cosmetic - Orgrimmar - Grommash Hold - See Rokhan');
|
||||
|
||||
DELETE FROM `phase_area` WHERE `PhaseId`=16786;
|
||||
INSERT INTO `phase_area` (`AreaId`, `PhaseId`, `Comment`) VALUES
|
||||
(5170, 16786, 'Orgrimmar - Valley of Strength: Cosmetic - Orgrimmar - Valley of Strength - See Rokhan'),
|
||||
(5356, 16786, 'Orgrimmar - Grommash Hold: Cosmetic - Orgrimmar - Grommash Hold - See Rokhan');
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=26 AND `SourceGroup`=16786;
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` BETWEEN @CONDREF-2 AND @CONDREF-0;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `Comment`) VALUES
|
||||
(26, 16786, 0, 0, 0, @CONDREF-0, 0, 0, 0, 0, 0, 'Apply phase 16786 if condition reference 1 is fullfilled'),
|
||||
(26, 16786, 0, 0, 0, @CONDREF-1, 0, 0, 0, 0, 0, 'Apply phase 16786 if condition reference 2 is fullfilled'),
|
||||
(26, 16786, 0, 0, 0, @CONDREF-2, 0, 0, 0, 0, 0, 'Apply phase 16786 if condition reference 3 is fullfilled'),
|
||||
(@CONDREF-0, 0, 0, 0, 0, 47, 0, 60359, 64, 0, 1, 'Apply condition reference if quest 60359 is not rewarded'),
|
||||
(@CONDREF-0, 0, 0, 0, 1, 47, 0, 60361, 64, 0, 0, 'Apply condition reference if quest 60361 is rewarded'),
|
||||
(@CONDREF-1, 0, 0, 0, 0, 47, 0, 51443, 2 | 8, 0, 1, 'Apply condition reference if quest 51443 is not taken | complete'),
|
||||
(@CONDREF-2, 0, 0, 0, 0, 47, 0, 29611, 1, 0, 0, 'Apply condition reference if quest 29611 is not taken | complete | rewarded'),
|
||||
(@CONDREF-2, 0, 0, 0, 0, 47, 0, 29612, 1, 0, 0, 'Apply condition reference if quest 29612 is not taken | complete | rewarded'),
|
||||
(@CONDREF-2, 0, 0, 0, 0, 47, 0, 49852, 1, 0, 0, 'Apply condition reference if quest 49852 is not taken | complete | rewarded'),
|
||||
(@CONDREF-2, 0, 0, 0, 0, 47, 0, 49538, 1, 0, 0, 'Apply condition reference if quest 49538 is not taken | complete | rewarded'),
|
||||
(@CONDREF-2, 0, 0, 0, 0, 47, 0, 60126, 1, 0, 0, 'Apply condition reference if quest 60126 is not taken | complete | rewarded'),
|
||||
(@CONDREF-2, 0, 0, 0, 1, 47, 0, 31853, 64, 0, 0, 'Apply condition reference if quest 31853 is rewarded');
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid`=@CGUID+0;
|
||||
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, 175135, 1, 1637, 5356, '0', 16786, 0, 0, 1, 1664.267333984375, -4345.51416015625, 26.37074661254882812, 3.670068740844726562, 120, 0, 0, 4421750, 262000, 0, 0, 0, 0, 46549); -- Rokhan (Area: Valley of Strength - Difficulty: 0)
|
||||
@@ -1,311 +0,0 @@
|
||||
-- SW City update - part 2 =>> Area : Stormwind Harbor ( 3 / 4 )
|
||||
|
||||
DELETE FROM `creature_addon` WHERE `guid` IN (313610, 313615, 250989, 251030, 313459, 313609, 313605);
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(313459, 3134590, 0, 0, 1, 0, 0, 0, 0, 0, '282130'), -- Dockhand - 282130 - Carry Sack (Peasant)
|
||||
(313610, 3136100, 2410, 0, 1, 0, 0, 0, 0, 0, ''), -- Stormwind Harbor Guard
|
||||
(313615, 3136150, 2410, 0, 1, 0, 0, 0, 0, 0, ''), -- Stormwind Harbor Guard
|
||||
(313605, 3136050, 0, 0, 1, 0, 0, 0, 0, 0, '282130'), -- Dockhand - 282130 - Carry Sack (Peasant)
|
||||
(313609, 3136090, 0, 0, 1, 0, 0, 0, 0, 0, ''); -- Dockhand
|
||||
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60 WHERE `entry`=29712; -- Stormwind Harbor Guard
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60 WHERE `entry`=51348; -- Stormwind Gryphon Rider
|
||||
UPDATE `creature_template` SET `subname`='The Assurance' WHERE `entry` IN (29296, 29299);
|
||||
|
||||
DELETE FROM `creature` WHERE `guid` IN (250989, 251030);
|
||||
|
||||
-- Stormwind Harbor Guard WP
|
||||
SET @CGUID := 313610;
|
||||
SET @PATH := @CGUID * 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, -8509.6015, 1214.2220, 5.157134, 0, 0),
|
||||
(@PATH, 1, -8469.934, 1208.4878, 5.086937, 0, 0),
|
||||
(@PATH, 2, -8444.612, 1208.3251, 5.18425, 0, 0),
|
||||
(@PATH, 3, -8421.286, 1208.1751, 5.27389, 0, 0),
|
||||
(@PATH, 4, -8419.291, 1208.1624, 5.281563, 0, 0);
|
||||
|
||||
UPDATE `creature` SET `wander_distance` = 0, `MovementType`= 2 WHERE `guid`= @CGUID;
|
||||
|
||||
-- Stormwind Harbor Guard WP
|
||||
SET @CGUID := 313615;
|
||||
SET @PATH := @CGUID * 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, -8337.396, 1215.517, 5.28471, 0, 0),
|
||||
(@PATH, 1, -8361.695, 1214.241, 5.15971, 0, 0),
|
||||
(@PATH, 2, -8337.396, 1215.517, 5.28471, 0, 0),
|
||||
(@PATH, 3, -8298.195, 1215.461, 5.268316, 0, 0),
|
||||
(@PATH, 4, -8251.519, 1215.401, 5.174629, 0, 0),
|
||||
(@PATH, 5, -8208.684, 1208.903, 6.532701, 0, 0),
|
||||
(@PATH, 6, -8251.519, 1215.401, 5.174629, 0, 0),
|
||||
(@PATH, 7, -8298.195, 1215.461, 5.268316, 0, 0),
|
||||
(@PATH, 8, -8337.396, 1215.517, 5.28471, 0, 0),
|
||||
(@PATH, 9, -8361.695, 1214.241, 5.15971, 0, 0),
|
||||
(@PATH, 10, -8337.396, 1215.517, 5.28471, 0, 0),
|
||||
(@PATH, 11, -8298.195, 1215.461, 5.268316, 0, 0),
|
||||
(@PATH, 12, -8251.519, 1215.401, 5.174629, 0, 0),
|
||||
(@PATH, 13, -8208.684, 1208.903, 6.532701, 0, 0),
|
||||
(@PATH, 14, -8251.519, 1215.401, 5.174629, 0, 0),
|
||||
(@PATH, 15, -8298.195, 1215.461, 5.268316, 0, 0),
|
||||
(@PATH, 16, -8337.396, 1215.517, 5.28471, 0, 0),
|
||||
(@PATH, 17, -8361.695, 1214.241, 5.15971, 0, 0),
|
||||
(@PATH, 18, -8337.396, 1215.517, 5.28471, 0, 0);
|
||||
|
||||
UPDATE `creature` SET `wander_distance` = 0, `MovementType`= 2 WHERE `guid`= @CGUID;
|
||||
|
||||
-- Stormwind Dock Worker - Area: Stormwind Harbor
|
||||
SET @CGUID := 313616;
|
||||
SET @PATH := @CGUID * 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, -8464.406, 1206.201, 5.314133, 0, 0),
|
||||
(@PATH, 1, -8452.145, 1199.9552, 5.434634, 0, 0),
|
||||
(@PATH, 2, -8440.33 , 1201.16, 5.4957733, 0, 0),
|
||||
(@PATH, 3, -8437.671875 , 1192.377441, 5.477279, 4.872821, 7586),
|
||||
(@PATH, 4, -8440.33 , 1201.16, 5.4957733, 0, 0),
|
||||
(@PATH, 5, -8501.293, 1204.994, 5.440891, 0, 0),
|
||||
(@PATH, 6, -8505.168945, 1204.496582, 5.426817, 3.604930, 8215);
|
||||
|
||||
UPDATE `creature` SET `position_x`= -8464.406, `position_y`= 1206.201, `position_z`= 5.314133, `wander_distance` = 0, `MovementType`= 2 WHERE `guid`= @CGUID;
|
||||
DELETE FROM `creature_addon` WHERE `guid`= @CGUID;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `bytes2`) VALUES
|
||||
(@CGUID, @PATH, 1);
|
||||
|
||||
-- Stormwind Dock Worker with guid 313616 smart ai
|
||||
SET @ENTRY := -313616;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 0 AND `entryOrGuid` = @ENTRY;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 9 AND `entryOrGuid` IN (31361600, 31361601);
|
||||
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` = 29152;
|
||||
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, 3, 0, 0, 80, 31361600, 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 #31361600 (update out of combat) // -inline'),
|
||||
(31361600, 9, 0, 0, 0, 0, 100, 0, 2000, 2000, 0, 0, 17, 69, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 2 seconds - Self: Set emote state to 69'),
|
||||
(31361600, 9, 1, 0, 0, 0, 100, 0, 4000, 4000, 0, 0, 17, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 4 seconds - Self: Set emote state to 0'),
|
||||
(@ENTRY, 0, 1, 0, 34, 0, 100, 0, 2, 6, 0, 0, 80, 31361601, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On movement of type WAYPOINT_MOTION_TYPE inform, point 6 - Self: Start timed action list id #31361601 (update out of combat) // -inline'),
|
||||
(31361601, 9, 0, 0, 0, 0, 100, 0, 2000, 2000, 0, 0, 17, 69, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 2 seconds - Self: Set emote state to 69'),
|
||||
(31361601, 9, 1, 0, 0, 0, 100, 0, 4000, 4000, 0, 0, 17, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 4 seconds - Self: Set emote state to 0');
|
||||
|
||||
-- Stormwind Dock Worker with guid 313620 smart ai
|
||||
SET @ENTRY := -313620;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 0 AND `entryOrGuid` = @ENTRY;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 9 AND `entryOrGuid` IN (31362000);
|
||||
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` = 29152;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(@ENTRY, 0, 0, 0, 1, 0, 100, 0, 1000, 1000, 25000, 30000, 80, 31362000, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Every 25 - 30 seconds (1 - 1s initially) (OOC) - Self: Start timed action list id #31362000 (update out of combat) // -inline'),
|
||||
(31362000, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 28, 83610, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 0 seconds - Self: Remove aura due to spell 83610'),
|
||||
(31362000, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 90, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 0 seconds - Self: Set stand state to KNEEL'),
|
||||
(31362000, 9, 2, 0, 0, 0, 100, 0, 2000, 2000, 0, 0, 17, 234, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 2 seconds - Self: Set emote state to 234'),
|
||||
(31362000, 9, 3, 0, 0, 0, 100, 0, 12000, 12000, 0, 0, 17, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 12 seconds - Self: Set emote state to 0'),
|
||||
(31362000, 9, 4, 0, 0, 0, 100, 0, 3000, 3000, 0, 0, 90, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 3 seconds - Self: Set stand state to STAND');
|
||||
|
||||
-- Stormwind Dockhand - Area: Stormwind Harbor - long road
|
||||
SET @CGUID := 313459;
|
||||
SET @PATH := @CGUID * 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, -8480.91, 1319.51, 5.23798, 0, 0),
|
||||
(@PATH, 1, -8485.2500, 1322.261719, 5.233716, 1.010540, 9356),
|
||||
(@PATH, 2, -8480.91, 1319.51, 5.23798, 0, 0),
|
||||
(@PATH, 3, -8480.87, 1251.77, 5.76071, 0, 0),
|
||||
(@PATH, 4, -8485.05, 1239.29, 5.23076, 0, 0),
|
||||
(@PATH, 5, -8496.43, 1235.27, 5.23066, 0, 0),
|
||||
(@PATH, 6, -8508.56, 1235.4, 5.23066, 0, 0),
|
||||
(@PATH, 7, -8530.38, 1245.13, 5.23066, 0, 0),
|
||||
(@PATH, 8, -8547.4, 1245.52, 5.23066, 0, 0),
|
||||
(@PATH, 9, -8561.02, 1239.26, 5.23066, 0, 0),
|
||||
(@PATH, 10, -8575.33, 1220.83, 5.643151, 0, 0),
|
||||
(@PATH, 11, -8576.64, 1194.8, 5.51819, 0, 0),
|
||||
(@PATH, 12, -8575.24, 1177.15, 18.4897, 0, 0),
|
||||
(@PATH, 13, -8574.37, 1145.1, 17.9648, 0, 0),
|
||||
(@PATH, 14, -8587.49, 1122.38, 17.9632, 0, 0),
|
||||
(@PATH, 15, -8597.44, 1104.74, 27.5189, 0, 0),
|
||||
(@PATH, 16, -8597.27, 1090.91, 32.7682, 0, 0),
|
||||
(@PATH, 17, -8590.9, 1077.28, 36.0082, 0, 0),
|
||||
(@PATH, 18, -8584.64, 1068, 37.4867, 0, 0),
|
||||
(@PATH, 19, -8572.71, 1052.6, 46.9202, 0, 0),
|
||||
(@PATH, 20, -8554.42, 1035.65, 59.3236, 0, 0),
|
||||
(@PATH, 21, -8540.2, 1031.57, 59.512, 0, 0),
|
||||
(@PATH, 22, -8529.66, 1020.3, 59.6992, 0, 0),
|
||||
(@PATH, 23, -8521.36, 992.336, 59.4774, 0, 0),
|
||||
(@PATH, 24, -8510.81, 974.859, 59.479, 0, 0),
|
||||
(@PATH, 25, -8510.33, 971.9, 59.4633, 3.89761, 7345),
|
||||
(@PATH, 26, -8510.71, 974.774, 59.4761, 0, 0),
|
||||
(@PATH, 27, -8521.28, 992.285, 59.479, 0, 0),
|
||||
(@PATH, 28, -8529.62, 1020.33, 59.7022, 0, 0),
|
||||
(@PATH, 29, -8540.21, 1031.59, 59.5113, 0, 0),
|
||||
(@PATH, 30, -8550.78, 1039.03, 59.4272, 0, 0),
|
||||
(@PATH, 31, -8568.54, 1056.66, 46.6462, 0, 0),
|
||||
(@PATH, 32, -8580.69, 1071.71, 37.1212, 0, 0),
|
||||
(@PATH, 33, -8585.94, 1080.75, 34.9448, 0, 0),
|
||||
(@PATH, 34, -8588.24, 1091.2, 31.8073, 0, 0),
|
||||
(@PATH, 35, -8580.31, 1115.79, 17.9452, 0, 0),
|
||||
(@PATH, 36, -8574.34, 1145.09, 17.9637, 0, 0),
|
||||
(@PATH, 37, -8573.24, 1177.06, 18.4901, 0, 0),
|
||||
(@PATH, 38, -8573.37, 1194.56, 5.53562, 0, 0),
|
||||
(@PATH, 39, -8575.33, 1220.83, 5.643151, 0, 0),
|
||||
(@PATH, 40, -8561.02, 1239.17, 5.23091, 0, 0),
|
||||
(@PATH, 41, -8547.41, 1245.53, 5.23091, 0, 0),
|
||||
(@PATH, 42, -8530.34, 1245.1, 5.23091, 0, 0),
|
||||
(@PATH, 43, -8508.68, 1235.4, 5.23091, 0, 0),
|
||||
(@PATH, 44, -8496.47, 1235.28, 5.23091, 0, 0),
|
||||
(@PATH, 45, -8485.08, 1239.24, 5.23095, 0, 0),
|
||||
(@PATH, 46, -8480.87, 1251.74, 5.75954, 0, 0);
|
||||
|
||||
UPDATE `creature` SET `position_x`= -8480.91, `position_y`= 1319.51, `position_z`= 5.23798, `wander_distance` = 0, `MovementType`= 2 WHERE `guid`= @CGUID;
|
||||
|
||||
-- Dockhand with guid 313459 smart ai
|
||||
SET @ENTRY := -313459;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 0 AND `entryOrGuid` = @ENTRY;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 9 AND `entryOrGuid` IN (31345900, 31345901);
|
||||
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` = 29019;
|
||||
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, 31345900, 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 #31345900 (update out of combat) // -inline'),
|
||||
(31345900, 9, 0, 0, 0, 0, 100, 0, 2000, 2000, 0, 0, 85, 282130, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 2 seconds - Self: Cast spell 282130 on self'),
|
||||
(@ENTRY, 0, 1, 0, 34, 0, 100, 0, 2, 24, 0, 0, 80, 31345901, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On movement of type WAYPOINT_MOTION_TYPE inform, point 24 - Self: Start timed action list id #31345901 (update out of combat) // -inline'),
|
||||
(31345901, 9, 0, 0, 0, 0, 100, 0, 2000, 2000, 0, 0, 28, 282130, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 2 seconds - Self: Remove aura due to spell 282130');
|
||||
|
||||
-- Stormwind Dock Worker - Area: Stormwind Harbor
|
||||
SET @CGUID := 313609;
|
||||
SET @PATH := @CGUID * 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, -8405.32, 1216.5, 5.15656, 0.00528744, 0), -- Spawn position
|
||||
(@PATH, 1, -8402.17, 1216.34, 5.14171, 6.20286, 38000),
|
||||
(@PATH, 2, -8436.69, 1216.82, 5.1549, 3.13981, 33000);
|
||||
|
||||
-- Stormwind Dock Worker with guid 313609 smart ai
|
||||
SET @ENTRY := -313609;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 0 AND `entryOrGuid` = @ENTRY;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 9 AND `entryOrGuid` IN (31360900, 31360901);
|
||||
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` = 29152;
|
||||
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, 31360900, 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 #31360900 (update out of combat) // -inline'),
|
||||
(31360900, 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'),
|
||||
(31360900, 9, 1, 0, 0, 0, 100, 0, 34000, 34000, 0, 0, 17, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 34 seconds - Self: Set emote state to 0'),
|
||||
(@ENTRY, 0, 1, 0, 34, 0, 100, 0, 2, 2, 0, 0, 80, 31360901, 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 #31360901 (update out of combat) // -inline'),
|
||||
(31360901, 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'),
|
||||
(31360901, 9, 1, 0, 0, 0, 100, 0, 29000, 29000, 0, 0, 17, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 29 seconds - Self: Set emote state to 0');
|
||||
|
||||
-- Stormwind Dockhand - Area: Stormwind Harbor
|
||||
SET @CGUID := 313605;
|
||||
SET @PATH := @CGUID * 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, -8469.76, 1319.7, 5.23688, 0, 0),
|
||||
(@PATH, 1, -8467.45, 1317.99, 5.22969, 5.817664, 9750),
|
||||
(@PATH, 2, -8470.93, 1313.08, 5.23897, 0, 0),
|
||||
(@PATH, 3, -8470.29, 1248.65, 5.23849, 4.761327, 2045),
|
||||
(@PATH, 4, -8441.68, 1230.75, 5.23027, 0, 0),
|
||||
(@PATH, 5, -8438.9, 1229.5, 5.23027, 0, 0),
|
||||
(@PATH, 6, -8428.19, 1225.89, 5.23027, 0, 0),
|
||||
(@PATH, 7, -8400.8, 1232.4, 5.23027, 0, 0),
|
||||
(@PATH, 8, -8396.62, 1248.42, 5.23027, 0, 0),
|
||||
(@PATH, 9, -8390.77, 1249.4, 5.23027, 0, 0),
|
||||
(@PATH, 10, -8387.84, 1307.83, 5.25174, 1.580432, 10870),
|
||||
(@PATH, 11, -8387.71, 1277.12, 5.28005, 0, 0),
|
||||
(@PATH, 12, -8390.62, 1247.05, 5.23119, 0, 0),
|
||||
(@PATH, 13, -8401.47, 1229.15, 5.2308, 0, 0),
|
||||
(@PATH, 14, -8428.47, 1224.69, 5.2308, 0, 0),
|
||||
(@PATH, 15, -8465, 1243.39, 5.23095, 0, 0);
|
||||
|
||||
UPDATE `creature` SET `position_x`= -8469.76, `position_y`= 1319.7, `position_z`= 5.23688, `wander_distance` = 0, `MovementType`= 2 WHERE `guid`= @CGUID;
|
||||
|
||||
-- Dockhand with guid 313605 smart ai
|
||||
SET @ENTRY := -313605;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 0 AND `entryOrGuid` = @ENTRY;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 9 AND `entryOrGuid` IN (31360500, 31360501);
|
||||
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` = 29019;
|
||||
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, 31360500, 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 #31360500 (update out of combat) // -inline'),
|
||||
(31360500, 9, 0, 0, 0, 0, 100, 0, 4000, 4000, 0, 0, 28, 282130, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 4 seconds - Self: Remove aura due to spell 282130'),
|
||||
(@ENTRY, 0, 1, 0, 34, 0, 100, 0, 2, 10, 0, 0, 80, 31360501, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On movement of type WAYPOINT_MOTION_TYPE inform, point 10 - Self: Start timed action list id #31360501 (update out of combat) // -inline'),
|
||||
(31360501, 9, 0, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 85, 282130, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 6 seconds - Self: Cast spell 282130 on self');
|
||||
|
||||
-- Stormwind Dock Worker with guid 313607
|
||||
SET @CGUID := 313607;
|
||||
SET @PATH := @CGUID * 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, -8372.27, 1291.81, 5.37693, NULL, 0),
|
||||
(@PATH, 1, -8372.36, 1295.16, 5.397205, NULL, 0),
|
||||
(@PATH, 2, -8373.93, 1297.86, 5.320071, NULL, 7903),
|
||||
(@PATH, 3, -8375.09, 1279.99, 5.313354, NULL, 0),
|
||||
(@PATH, 4, -8375.37, 1270.02, 5.313354, NULL, 0),
|
||||
(@PATH, 5, -8375.11, 1260.83, 5.313354, NULL, 0),
|
||||
(@PATH, 6, -8374.94, 1254.91, 5.313354, NULL, 0),
|
||||
(@PATH, 7, -8380.23, 1242.94, 5.352513, NULL, 0),
|
||||
(@PATH, 8, -8385.63, 1233.02, 5.388877, NULL, 0),
|
||||
(@PATH, 9, -8388.66, 1227.19, 5.41057, NULL, 0),
|
||||
(@PATH, 10, -8392.78, 1219.84, 5.410055, NULL, 11748),
|
||||
(@PATH, 11, -8383.01, 1242.67, 5.347569, NULL, 0),
|
||||
(@PATH, 12, -8378.04, 1265.83, 5.313354, NULL, 0),
|
||||
(@PATH, 13, -8378.46, 1273.91, 5.313354, NULL, 0),
|
||||
(@PATH, 14, -8377.56, 1279.99, 5.313354, NULL, 0),
|
||||
(@PATH, 15, -8375.82, 1286.26, 5.313354, NULL, 0);
|
||||
|
||||
UPDATE `creature` SET `position_x`= -8372.27, `position_y`= 1291.81, `position_z`= 5.37693, `MovementType`= 2 WHERE `guid`= @CGUID;
|
||||
DELETE FROM `creature_addon` WHERE `guid`= @CGUID;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `bytes2`) VALUES
|
||||
(@CGUID, @PATH, 1);
|
||||
|
||||
-- Stormwind Dock Worker with guid 313607 smart ai
|
||||
SET @ENTRY := -313607;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 0 AND `entryOrGuid` = @ENTRY;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 9 AND `entryOrGuid` IN (31360700, 31360701);
|
||||
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` = 29152;
|
||||
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, 71, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On movement of type WAYPOINT_MOTION_TYPE inform, point 1 - Self: Take off all equipped items'),
|
||||
(@ENTRY, 0, 1, 0, 34, 0, 100, 0, 2, 2, 0, 0, 80, 31360700, 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 #31360700 (update out of combat) // -inline'),
|
||||
(31360700, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 17, 69, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 0 seconds - Self: Set emote state to 69'),
|
||||
(31360700, 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'),
|
||||
(31360700, 9, 2, 0, 0, 0, 100, 0, 2000, 2000, 0, 0, 17, 69, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 2 seconds - Self: Set emote state to 69'),
|
||||
(31360700, 9, 3, 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, 0, 2, 0, 34, 0, 100, 0, 2, 10, 0, 0, 80, 31360701, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On movement of type WAYPOINT_MOTION_TYPE inform, point 10 - Self: Start timed action list id #31360701 (update out of combat) // -inline'),
|
||||
(31360701, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 17, 69, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 0 seconds - Self: Set emote state to 69'),
|
||||
(31360701, 9, 1, 0, 0, 0, 100, 0, 4000, 4000, 0, 0, 17, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 4 seconds - Self: Set emote state to 0'),
|
||||
(31360701, 9, 2, 0, 0, 0, 100, 0, 2000, 2000, 0, 0, 17, 69, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 2 seconds - Self: Set emote state to 69'),
|
||||
(31360701, 9, 3, 0, 0, 0, 100, 0, 4000, 4000, 0, 0, 17, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 4 seconds - Self: Set emote state to 0');
|
||||
|
||||
-- Dockhand with guid 313580 WP
|
||||
SET @CGUID := 313580;
|
||||
SET @PATH := @CGUID * 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, -8379.228, 1312.783, 5.313354, NULL, 0),
|
||||
(@PATH, 1, -8378.091, 1324.128, 5.313354, NULL, 0),
|
||||
(@PATH, 2, -8373.257, 1324.163, 5.313354, 4.669930, 9826),
|
||||
(@PATH, 3, -8376.374, 1322.796, 5.220047, NULL, 0),
|
||||
(@PATH, 4, -8379.228, 1312.783, 5.313354, NULL, 0),
|
||||
(@PATH, 5, -8380.141, 1299.856, 5.378013, NULL, 0),
|
||||
(@PATH, 6, -8376.221, 1265.028, 5.313354, NULL, 0),
|
||||
(@PATH, 7, -8370.788, 1227.637, 5.231624, NULL, 0),
|
||||
(@PATH, 8, -8361.933, 1195.065, 5.616159, NULL, 0),
|
||||
(@PATH, 9, -8362.246, 1178.997, 17.645021, NULL, 0),
|
||||
(@PATH, 10, -8361.521, 1158.612, 18.144882, NULL, 0),
|
||||
(@PATH, 11, -8372.714, 1127.194, 19.01928, NULL, 0),
|
||||
(@PATH, 12, -8375.056, 1118.154, 19.09496, NULL, 0),
|
||||
(@PATH, 13, -8373.721, 1113.185, 19.09496, NULL, 8433),
|
||||
(@PATH, 14, -8374.737, 1123.714, 19.09496, NULL, 0),
|
||||
(@PATH, 15, -8371.545, 1129.919, 18.81713, NULL, 0),
|
||||
(@PATH, 16, -8365.591, 1146.693, 18.27713, NULL, 0),
|
||||
(@PATH, 17, -8358.072, 1178.757, 17.814270, NULL, 0),
|
||||
(@PATH, 18, -8359.267, 1194.937, 5.617903, NULL, 0),
|
||||
(@PATH, 19, -8370.725, 1227.454, 5.231219, NULL, 0),
|
||||
(@PATH, 20, -8376.200, 1265.093, 5.267419, NULL, 0),
|
||||
(@PATH, 21, -8380.141, 1299.856, 5.378013, NULL, 0);
|
||||
|
||||
UPDATE `creature` SET `position_x`= -8380.175, `position_y`= 1299.527, `position_z`= 5.331614, `MovementType`= 2 WHERE `guid`= @CGUID;
|
||||
DELETE FROM `creature_addon` WHERE `guid`= @CGUID;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `bytes2`) VALUES
|
||||
(@CGUID, @PATH, 1);
|
||||
|
||||
-- Dockhand with guid 313580 smart ai
|
||||
SET @ENTRY := -313580;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 0 AND `entryOrGuid` = @ENTRY;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 9 AND `entryOrGuid` IN (31358000, 31358001);
|
||||
UPDATE `creature_template` SET `AIName` = 'SmartAI', `ScriptName` = '' WHERE `entry` = 29019;
|
||||
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, 2, 0, 0, 80, 31358000, 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 #31358000 (update out of combat) // -inline'),
|
||||
(31358000, 9, 0, 0, 0, 0, 100, 0, 4000, 4000, 0, 0, 85, 282130, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 4 seconds - Self: Cast spell 282130 on self'),
|
||||
(@ENTRY, 0, 1, 0, 34, 0, 100, 0, 2, 13, 0, 0, 80, 31358001, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On movement of type WAYPOINT_MOTION_TYPE inform, point 13 - Self: Start timed action list id #31358001 (update out of combat) // -inline'),
|
||||
(31358001, 9, 0, 0, 0, 0, 100, 0, 4000, 4000, 0, 0, 28, 282130, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 4 seconds - Self: Remove aura due to spell 282130');
|
||||
@@ -1,104 +0,0 @@
|
||||
SET @CGUID := 651819;
|
||||
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+14;
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `PhaseGroup`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES
|
||||
(@CGUID+0, 89032, 1220, 7334, 7344, '0', 4302, 0, 0, 0, -358.40277099609375, 6588.8994140625, 0.215799957513809204, 1.499445915222167968, 120, 0, 0, 7846, 0, 0, 0, 0, 0, 46549), -- Vrykul Harpooner (Area: Shipwreck Arena - Difficulty: 0)
|
||||
(@CGUID+1, 89026, 1220, 7334, 7344, '0', 4304, 0, 0, 0, -357.618072509765625, 6590.0556640625, 0.215799957513809204, 1.663296461105346679, 120, 0, 0, 7846, 0, 0, 0, 0, 0, 46549), -- Kul Tiras Marine (Area: Shipwreck Arena - Difficulty: 0)
|
||||
(@CGUID+2, 89029, 1220, 7334, 7344, '0', 4307, 0, 0, 0, -358.65625, 6590.8369140625, 0.215799957513809204, 1.451566576957702636, 120, 0, 0, 7846, 0, 0, 0, 0, 0, 46549), -- Kul Tiras Marine (Area: Shipwreck Arena - Difficulty: 0)
|
||||
(@CGUID+3, 88908, 1220, 7334, 7344, '0', 4295, 0, 0, 1, -357.90277099609375, 6595.12255859375, 0.215799957513809204, 4.369774818420410156, 120, 0, 0, 15692, 0, 0, 0, 0, 0, 46549), -- Boss Whalebelly (Area: Shipwreck Arena - Difficulty: 0)
|
||||
(@CGUID+4, 89036, 1220, 7334, 7344, '0', 4313, 0, 0, 0, -359.524322509765625, 6592.5380859375, 0.215799957513809204, 1.247439026832580566, 120, 0, 0, 7846, 0, 0, 0, 0, 0, 46549), -- Steamwheedle Rocketeer (Area: Shipwreck Arena - Difficulty: 0)
|
||||
(@CGUID+5, 89034, 1220, 7334, 7344, '0', 4311, 0, 0, 0, -360.982635498046875, 6590.74853515625, 0.215799957513809204, 1.137022733688354492, 120, 0, 0, 7846, 0, 0, 0, 0, 0, 46549), -- Zandalari Striker (Area: Shipwreck Arena - Difficulty: 0)
|
||||
(@CGUID+6, 89018, 1220, 7334, 7344, '0', 4309, 0, 0, 0, -355.44097900390625, 6590.95751953125, 0.215799957513809204, 1.912369132041931152, 120, 0, 0, 7846, 0, 0, 0, 0, 0, 46549), -- Brinesnout Raider (Area: Shipwreck Arena - Difficulty: 0)
|
||||
(@CGUID+7, 88911, 1220, 7334, 7344, '0', 4296, 0, 0, 0, -371.664947509765625, 6659.41162109375, 1.416111946105957031, 0.02996908500790596, 120, 0, 0, 47076, 0, 0, 0, 0, 0, 46549), -- Bilgerudder (Area: Shipwreck Arena - Difficulty: 0)
|
||||
(@CGUID+8, 89034, 1220, 7334, 7344, '0', 4312, 0, 0, 0, -370.604156494140625, 6646.38916015625, 1.460069537162780761, 0.282886296510696411, 120, 0, 0, 11294, 0, 0, 0, 0, 0, 46658), -- Zandalari Striker (Area: Shipwreck Arena - Difficulty: Normal)
|
||||
(@CGUID+9, 89032, 1220, 7334, 7344, '0', 4303, 0, 0, 0, -368.192718505859375, 6664.83349609375, 1.512666940689086914, 5.999370098114013671, 120, 0, 0, 11294, 0, 0, 0, 0, 0, 46658), -- Vrykul Harpooner (Area: Shipwreck Arena - Difficulty: Normal)
|
||||
(@CGUID+10, 89018, 1220, 7334, 7344, '0', 4310, 0, 0, 0, -367.09027099609375, 6643.1630859375, 1.181991219520568847, 0.412034690380096435, 120, 0, 0, 11294, 0, 0, 0, 0, 0, 46658), -- Brinesnout Raider (Area: Shipwreck Arena - Difficulty: Normal)
|
||||
(@CGUID+11, 89026, 1220, 7334, 7344, '0', 4305, 0, 0, 0, -366.671875, 6664.77783203125, 1.221307754516601562, 5.984834671020507812, 120, 0, 0, 11294, 0, 0, 0, 0, 0, 46658), -- Kul Tiras Marine (Area: Shipwreck Arena - Difficulty: Normal)
|
||||
(@CGUID+12, 89029, 1220, 7334, 7344, '0', 4308, 0, 0, 0, -366.734375, 6663.0234375, 1.055171132087707519, 6.043070316314697265, 120, 0, 0, 11294, 0, 0, 0, 0, 0, 46658), -- Kul Tiras Marine (Area: Shipwreck Arena - Difficulty: Normal)
|
||||
(@CGUID+13, 89036, 1220, 7334, 7344, '0', 4314, 0, 0, 0, -367.40625, 6646.8818359375, 0.80381941795349121, 0.305847018957138061, 120, 0, 0, 11294, 0, 0, 0, 0, 0, 46658), -- Steamwheedle Rocketeer (Area: Shipwreck Arena - Difficulty: Normal)
|
||||
(@CGUID+14, 88916, 1220, 7334, 7344, '0', 4297, 0, 0, 1, -370.618072509765625, 6649.99755859375, 0.886875748634338378, 0.085419289767742156, 120, 0, 0, 22588, 0, 0, 0, 0, 0, 46658); -- Boss Whalebelly (Area: Shipwreck Arena - Difficulty: Normal)
|
||||
|
||||
DELETE FROM `creature_addon` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+14;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(@CGUID+3, 0, 0, 0, 0, 0, 0, 0, 0, 0, ''), -- Boss Whalebelly
|
||||
(@CGUID+6, 0, 0, 0, 1, 0, 0, 0, 0, 3, ''), -- Brinesnout Raider
|
||||
(@CGUID+7, 0, 0, 0, 1, 0, 0, 0, 0, 4, ''), -- Bilgerudder
|
||||
(@CGUID+10, 0, 0, 0, 1, 0, 0, 0, 0, 3, ''); -- Brinesnout Raider
|
||||
|
||||
UPDATE `creature_template` SET `minlevel`=45, `maxlevel`=45, `VerifiedBuild`=46549 WHERE `entry`=89032; -- Vrykul Harpooner
|
||||
UPDATE `creature_template` SET `minlevel`=45, `maxlevel`=45, `VerifiedBuild`=46549 WHERE `entry` IN (89029, 89026); -- Kul Tiras Marine
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=17416, `minlevel`=45, `maxlevel`=45, `VerifiedBuild`=46549 WHERE `entry`=88908; -- Boss Whalebelly
|
||||
UPDATE `creature_template` SET `minlevel`=45, `maxlevel`=45, `VerifiedBuild`=46549 WHERE `entry`=89036; -- Steamwheedle Rocketeer
|
||||
UPDATE `creature_template` SET `minlevel`=45, `maxlevel`=45, `VerifiedBuild`=46549 WHERE `entry`=89034; -- Zandalari Striker
|
||||
UPDATE `creature_template` SET `VerifiedBuild`=46549 WHERE `entry`=88911; -- Bilgerudder
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=17417, `minlevel`=45, `maxlevel`=45, `faction`=2136, `npcflag`=1, `BaseAttackTime`=2000, `unit_flags`=33600, `unit_flags2`=2048, `VerifiedBuild`=46549 WHERE `entry`=88916; -- Boss Whalebelly
|
||||
|
||||
UPDATE `creature_template_model` SET `CreatureDisplayID`=714, `VerifiedBuild`=46549 WHERE (`CreatureID`=89018 AND `Idx`=0); -- Brinesnout Raider
|
||||
|
||||
UPDATE `gossip_menu` SET `VerifiedBuild`=46549 WHERE (`MenuID`=17416 AND `TextID`=25871);
|
||||
|
||||
UPDATE `quest_template` SET `VerifiedBuild`=46658 WHERE `ID`=37507; -- Boss Whalebelly's in Charge
|
||||
|
||||
UPDATE `quest_poi` SET `VerifiedBuild`=46658 WHERE (`QuestID`=37507 AND `BlobIndex`=0 AND `Idx1`=2) OR (`QuestID`=37507 AND `BlobIndex`=0 AND `Idx1`=1) OR (`QuestID`=37507 AND `BlobIndex`=0 AND `Idx1`=0);
|
||||
UPDATE `quest_poi_points` SET `VerifiedBuild`=46658 WHERE (`QuestID`=37507 AND `Idx1`=2 AND `Idx2`=0) OR (`QuestID`=37507 AND `Idx1`=1 AND `Idx2`=0) OR (`QuestID`=37507 AND `Idx1`=0 AND `Idx2`=0);
|
||||
|
||||
-- Phase
|
||||
DELETE FROM `phase_name` WHERE `ID` IN (4295, 4296, 4297, 4302, 4303, 4304, 4305, 4307, 4308, 4309, 4310, 4311, 4312, 4313, 4314);
|
||||
INSERT INTO `phase_name` (`ID`, `Name`) VALUES
|
||||
(4295, 'Cosmetic - See Boss Whalebelly at Shipwreck Arena (water)'),
|
||||
(4297, 'Cosmetic - See Boss Whalebelly at Shipwreck Arena (ship)'),
|
||||
(4296, 'Cosmetic - See Bilgerudder at Shipwreck Arena'),
|
||||
(4302, 'Cosmetic - See Vrykul Arponeer at Shipwreck Arena (water)'),
|
||||
(4303, 'Cosmetic - See Vrykul Arponeer at Shipwreck Arena (ship)'),
|
||||
(4304, 'Cosmetic - See Kul Tiras Marine #1 at Shipwreck Arena (water)'),
|
||||
(4305, 'Cosmetic - See Kul Tiras Marine #1 at Shipwreck Arena (ship)'),
|
||||
(4307, 'Cosmetic - See Kul Tiras Marine #2 at Shipwreck Arena (water)'),
|
||||
(4308, 'Cosmetic - See Kul Tiras Marine #2 at Shipwreck Arena (ship)'),
|
||||
(4309, 'Cosmetic - See Brinesnout Raider at Shipwreck Arena (water)'),
|
||||
(4310, 'Cosmetic - See Brinesnout Raider at Shipwreck Arena (ship)'),
|
||||
(4311, 'Cosmetic - See Zandalari Striker at Shipwreck Arena (water)'),
|
||||
(4312, 'Cosmetic - See Zandalari Striker at Shipwreck Arena (ship)'),
|
||||
(4313, 'Cosmetic - See Steamwheedle Rocketeer at Shipwreck Arena (water)'),
|
||||
(4314, 'Cosmetic - See Steamwheedle Rocketeer at Shipwreck Arena (ship)');
|
||||
|
||||
DELETE FROM `phase_area` WHERE `AreaId` = 7344 AND `PhaseId` IN (4295, 4296, 4297, 4302, 4303, 4304, 4305, 4307, 4308, 4309, 4310, 4311, 4312, 4313, 4314);
|
||||
INSERT INTO `phase_area` (`AreaId`, `PhaseId`, `Comment`) VALUES
|
||||
(7344, 4295, 'See Boss Whalebelly at Shipwreck Arena (water)'),
|
||||
(7344, 4296, 'See Bilgerudder at Shipwreck Arena (ship)'),
|
||||
(7344, 4297, 'See Boss Whalebelly at Shipwreck Arena (ship)'),
|
||||
(7344, 4302, 'See Vrykul Arponeer at Shipwreck Arena (water)'),
|
||||
(7344, 4303, 'See Vrykul Arponeer at Shipwreck Arena (ship)'),
|
||||
(7344, 4304, 'See Kul Tiras Marine #1 at Shipwreck Arena (water)'),
|
||||
(7344, 4305, 'See Kul Tiras Marine #1 at Shipwreck Arena (ship)'),
|
||||
(7344, 4307, 'See Kul Tiras Marine #2 at Shipwreck Arena (water)'),
|
||||
(7344, 4308, 'See Kul Tiras Marine #2 at Shipwreck Arena (ship)'),
|
||||
(7344, 4309, 'See Brinesnout Raider at Shipwreck Arena (water)'),
|
||||
(7344, 4310, 'See Brinesnout Raider at Shipwreck Arena (ship)'),
|
||||
(7344, 4311, 'See Zandalari Striker at Shipwreck Arena (water)'),
|
||||
(7344, 4312, 'See Zandalari Striker at Shipwreck Arena (ship)'),
|
||||
(7344, 4313, 'See Steamwheedle Rocketeer at Shipwreck Arena (water)'),
|
||||
(7344, 4314, 'See Steamwheedle Rocketeer at Shipwreck Arena (ship)');
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=26 AND `SourceGroup` IN (4295, 4297, 4302, 4303, 4304, 4305, 4307, 4308, 4309, 4310, 4311, 4312, 4313, 4314) AND `SourceEntry` = 7344;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `Comment`) VALUES
|
||||
(26, 4295, 7344, 0, 0, 47, 0, 37507, 2 | 64, 0, 1, 'Apply Phase 4295 if Quest 37507 is not completed | rewarded'),
|
||||
(26, 4302, 7344, 0, 0, 47, 0, 37507, 2 | 64, 0, 1, 'Apply Phase 4302 if Quest 37507 is not completed | rewarded'),
|
||||
(26, 4304, 7344, 0, 0, 47, 0, 37507, 2 | 64, 0, 1, 'Apply Phase 4304 if Quest 37507 is not completed | rewarded'),
|
||||
(26, 4307, 7344, 0, 0, 47, 0, 37507, 2 | 64, 0, 1, 'Apply Phase 4307 if Quest 37507 is not completed | rewarded'),
|
||||
(26, 4309, 7344, 0, 0, 47, 0, 37507, 2 | 64, 0, 1, 'Apply Phase 4309 if Quest 37507 is not completed | rewarded'),
|
||||
(26, 4311, 7344, 0, 0, 47, 0, 37507, 2 | 64, 0, 1, 'Apply Phase 4311 if Quest 37507 is not completed | rewarded'),
|
||||
(26, 4313, 7344, 0, 0, 47, 0, 37507, 2 | 64, 0, 1, 'Apply Phase 4313 if Quest 37507 is not completed | rewarded'),
|
||||
(26, 4297, 7344, 0, 0, 47, 0, 37507, 2 | 64, 0, 0, 'Apply Phase 4297 if Quest 37507 is completed | rewarded'),
|
||||
(26, 4297, 7344, 0, 0, 47, 0, 37538, 8 | 2, 0, 1, 'Apply Phase 4297 if Quest 37538 is not in progress | completed'),
|
||||
(26, 4303, 7344, 0, 0, 47, 0, 37507, 2 | 64, 0, 0, 'Apply Phase 4303 if Quest 37507 is completed | rewarded'),
|
||||
(26, 4303, 7344, 0, 0, 47, 0, 37538, 8 | 2, 0, 1, 'Apply Phase 4303 if Quest 37538 is not in progress | completed'),
|
||||
(26, 4305, 7344, 0, 0, 47, 0, 37507, 2 | 64, 0, 0, 'Apply Phase 4305 if Quest 37507 is completed | rewarded'),
|
||||
(26, 4305, 7344, 0, 0, 47, 0, 37538, 8 | 2, 0, 1, 'Apply Phase 4305 if Quest 37538 is not in progress | completed'),
|
||||
(26, 4308, 7344, 0, 0, 47, 0, 37507, 2 | 64, 0, 0, 'Apply Phase 4308 if Quest 37507 is completed | rewarded'),
|
||||
(26, 4308, 7344, 0, 0, 47, 0, 37538, 8 | 2, 0, 1, 'Apply Phase 4308 if Quest 37538 is not in progress | completed'),
|
||||
(26, 4310, 7344, 0, 0, 47, 0, 37507, 2 | 64, 0, 0, 'Apply Phase 4310 if Quest 37507 is completed | rewarded'),
|
||||
(26, 4310, 7344, 0, 0, 47, 0, 37538, 8 | 2, 0, 1, 'Apply Phase 4310 if Quest 37538 is not in progress | completed'),
|
||||
(26, 4312, 7344, 0, 0, 47, 0, 37507, 2 | 64, 0, 0, 'Apply Phase 4312 if Quest 37507 is completed | rewarded'),
|
||||
(26, 4312, 7344, 0, 0, 47, 0, 37538, 8 | 2, 0, 1, 'Apply Phase 4312 if Quest 37538 is not in progress | completed'),
|
||||
(26, 4314, 7344, 0, 0, 47, 0, 37507, 2 | 64, 0, 0, 'Apply Phase 4314 if Quest 37507 is completed | rewarded'),
|
||||
(26, 4314, 7344, 0, 0, 47, 0, 37538, 8 | 2, 0, 1, 'Apply Phase 4314 if Quest 37538 is not in progress | completed');
|
||||
@@ -1,27 +0,0 @@
|
||||
SET @OGUID := 400522;
|
||||
|
||||
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, 239120, 1220, 7334, 7348, '0', 4317, 0, -482.0625, 6676.9990234375, -2.05414509773254394, 3.468499183654785156, -0.06594800949096679, 0.2011566162109375, -0.96541213989257812, 0.15220479667186737, 120, 255, 1, 46702); -- Okuna Longtusk's Pack (Area: Oceanus Cove - Difficulty: Normal)
|
||||
|
||||
UPDATE `gameobject_template` SET `ContentTuningId`=331, `VerifiedBuild`=46702 WHERE `entry`=239120; -- Okuna Longtusk's Pack
|
||||
UPDATE `gameobject_queststarter` SET `VerifiedBuild`=46702 WHERE (`id`=239120 AND `quest`=37565);
|
||||
UPDATE `gameobject_questender` SET `VerifiedBuild`=46702 WHERE (`id`=239120 AND `quest`=37538);
|
||||
|
||||
UPDATE `quest_template` SET `VerifiedBuild`=46702 WHERE `ID`=37565; -- The Right Weapon for the Job
|
||||
UPDATE `quest_poi` SET `VerifiedBuild`=46702 WHERE (`QuestID`=37565 AND `BlobIndex`=0 AND `Idx1`=3) OR (`QuestID`=37565 AND `BlobIndex`=1 AND `Idx1`=2) OR (`QuestID`=37565 AND `BlobIndex`=0 AND `Idx1`=1) OR (`QuestID`=37565 AND `BlobIndex`=0 AND `Idx1`=0);
|
||||
UPDATE `quest_poi_points` SET `VerifiedBuild`=46702 WHERE (`QuestID`=37565 AND `Idx1`=3 AND `Idx2`=0) OR (`QuestID`=37565 AND `Idx1`=2 AND `Idx2`=11) OR (`QuestID`=37565 AND `Idx1`=2 AND `Idx2`=10) OR (`QuestID`=37565 AND `Idx1`=2 AND `Idx2`=9) OR (`QuestID`=37565 AND `Idx1`=2 AND `Idx2`=8) OR (`QuestID`=37565 AND `Idx1`=2 AND `Idx2`=7) OR (`QuestID`=37565 AND `Idx1`=2 AND `Idx2`=6) OR (`QuestID`=37565 AND `Idx1`=2 AND `Idx2`=5) OR (`QuestID`=37565 AND `Idx1`=2 AND `Idx2`=4) OR (`QuestID`=37565 AND `Idx1`=2 AND `Idx2`=3) OR (`QuestID`=37565 AND `Idx1`=2 AND `Idx2`=2) OR (`QuestID`=37565 AND `Idx1`=2 AND `Idx2`=1) OR (`QuestID`=37565 AND `Idx1`=2 AND `Idx2`=0) OR (`QuestID`=37565 AND `Idx1`=1 AND `Idx2`=11) OR (`QuestID`=37565 AND `Idx1`=1 AND `Idx2`=10) OR (`QuestID`=37565 AND `Idx1`=1 AND `Idx2`=9) OR (`QuestID`=37565 AND `Idx1`=1 AND `Idx2`=8) OR (`QuestID`=37565 AND `Idx1`=1 AND `Idx2`=7) OR (`QuestID`=37565 AND `Idx1`=1 AND `Idx2`=6) OR (`QuestID`=37565 AND `Idx1`=1 AND `Idx2`=5) OR (`QuestID`=37565 AND `Idx1`=1 AND `Idx2`=4) OR (`QuestID`=37565 AND `Idx1`=1 AND `Idx2`=3) OR (`QuestID`=37565 AND `Idx1`=1 AND `Idx2`=2) OR (`QuestID`=37565 AND `Idx1`=1 AND `Idx2`=1) OR (`QuestID`=37565 AND `Idx1`=1 AND `Idx2`=0) OR (`QuestID`=37565 AND `Idx1`=0 AND `Idx2`=0);
|
||||
UPDATE `quest_details` SET `VerifiedBuild`=46702 WHERE `ID`=37565;
|
||||
|
||||
-- Phase
|
||||
DELETE FROM `phase_name` WHERE `ID` = 4317;
|
||||
INSERT INTO `phase_name` (`ID`, `Name`) VALUES
|
||||
(4317, 'Cosmetic - See Okuna Longtusk\'s Pack at Oceanus Cove');
|
||||
|
||||
DELETE FROM `phase_area` WHERE `AreaId` = 7348 AND `PhaseId` = 4317;
|
||||
INSERT INTO `phase_area` (`AreaId`, `PhaseId`, `Comment`) VALUES
|
||||
(7348, 4317, 'See Okuna Longtusk\'s Pack at Oceanus Cove');
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=26 AND `SourceGroup` = 4317 AND `SourceEntry` = 7348;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `Comment`) VALUES
|
||||
(26, 4317, 7348, 0, 0, 47, 0, 37538, 2 | 64, 0, 0, 'Apply Phase 4317 if Quest 37538 is completed | rewarded');
|
||||
@@ -1,38 +0,0 @@
|
||||
SET @CGUID := 651834;
|
||||
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+1;
|
||||
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, 109334, 1220, 7334, 7348, '0', 6875, 0, 0, 1, -908.14581298828125, 6408.9521484375, 3.654376983642578125, 4.070976734161376953, 120, 0, 0, 33882, 0, 0, 0, 0, 0, 46702), -- Okuna Longtusk (Area: Oceanus Cove - Difficulty: Normal)
|
||||
(@CGUID+1, 89051, 1220, 7334, 7348, '0', 4325, 0, 0, 0, -957.2117919921875, 6309.15283203125, 29.86275672912597656, 2.938225030899047851, 120, 0, 0, 33882, 0, 0, 0, 0, 0, 46702); -- Okuna Longtusk (Area: Oceanus Cove - Difficulty: Normal)
|
||||
|
||||
DELETE FROM `creature_addon` WHERE `guid` = @CGUID+0;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(@CGUID+0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ''); -- Okuna Longtusk
|
||||
|
||||
UPDATE `creature_template` SET `minlevel`=45, `maxlevel`=45, `unit_flags3`=1048576, `VerifiedBuild`=46702 WHERE `entry`=89051; -- Okuna Longtusk
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=19919, `minlevel`=45, `maxlevel`=45, `VerifiedBuild`=46702 WHERE `entry`=109334; -- Okuna Longtusk
|
||||
|
||||
UPDATE `creature_questender` SET `VerifiedBuild`=46702 WHERE (`id`=109334 AND `quest`=37566);
|
||||
|
||||
UPDATE `quest_template` SET `VerifiedBuild`=46702 WHERE `ID`=37566; -- The Prince is Going Down
|
||||
|
||||
UPDATE `quest_offer_reward` SET `VerifiedBuild`=46702 WHERE `ID`=37566;
|
||||
|
||||
UPDATE `quest_poi` SET `VerifiedBuild`=46702 WHERE (`QuestID`=37566 AND `BlobIndex`=0 AND `Idx1`=2) OR (`QuestID`=37566 AND `BlobIndex`=0 AND `Idx1`=1) OR (`QuestID`=37566 AND `BlobIndex`=0 AND `Idx1`=0);
|
||||
UPDATE `quest_poi_points` SET `VerifiedBuild`=46702 WHERE (`QuestID`=37566 AND `Idx1`=2 AND `Idx2`=0) OR (`QuestID`=37566 AND `Idx1`=1 AND `Idx2`=0) OR (`QuestID`=37566 AND `Idx1`=0 AND `Idx2`=0);
|
||||
|
||||
-- Phase
|
||||
DELETE FROM `phase_name` WHERE `ID` IN (4325, 6875);
|
||||
INSERT INTO `phase_name` (`ID`, `Name`) VALUES
|
||||
(4325, 'Cosmetic - See Okuna Longtusk caged'),
|
||||
(6875, 'Cosmetic - See Okuna Longtusk free');
|
||||
|
||||
DELETE FROM `phase_area` WHERE `AreaId` = 7348 AND `PhaseId` IN (4325, 6875);
|
||||
INSERT INTO `phase_area` (`AreaId`, `PhaseId`, `Comment`) VALUES
|
||||
(7348, 4325, 'See Okuna Longtusk caged at Oceanus Cove'),
|
||||
(7348, 6875, 'See Okuna Longtusk free at Oceanus Cove');
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=26 AND `SourceGroup` IN (4325, 6875) AND `SourceEntry` = 7348;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `Comment`) VALUES
|
||||
(26, 4325, 7348, 0, 0, 47, 0, 37566, 64, 0, 1, 'Apply Phase 4325 if Quest 37566 is not rewarded'),
|
||||
(26, 6875, 7348, 0, 0, 47, 0, 37566, 2 | 64, 0, 0, 'Apply Phase 6875 if Quest 37566 is completed | rewarded');
|
||||
@@ -1,45 +0,0 @@
|
||||
SET @CGUID := 651836;
|
||||
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+2;
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `PhaseGroup`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES
|
||||
(@CGUID+0, 107407, 1220, 7334, 7360, '0', 6893, 0, 0, 0, 465.526031494140625, 6507.27685546875, 39.24222183227539062, 0.166833728551864624, 120, 0, 0, 5647, 0, 0, 0, 0, 0, 46702), -- Haterunner (Area: Llothien Highlands - Difficulty: 0)
|
||||
(@CGUID+1, 106914, 1220, 7334, 7360, '0', 6893, 0, 0, 0, 453.4600830078125, 6509.20751953125, 40.34196090698242187, 5.556643962860107421, 120, 0, 0, 22590, 3801, 0, 0, 0, 0, 46702), -- Tehd Shoemaker (Area: Llothien Highlands - Difficulty: 0) (Auras: 79934 - Demon Armor)
|
||||
(@CGUID+2, 106915, 1220, 7334, 7360, '0', 6893, 0, 0, 1, 455.854156494140625, 6505.94970703125, 40.3865203857421875, 2.510084152221679687, 120, 0, 0, 28235, 0, 0, 0, 0, 0, 46702); -- Marius Felbane (Area: Llothien Highlands - Difficulty: 0) (Auras: 42459 - Dual Wield)
|
||||
|
||||
DELETE FROM `creature_addon` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+2;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(@CGUID+2, 0, 0, 0, 1, 0, 0, 0, 0, 0, '42459'); -- Marius Felbane - 42459 - Dual Wield
|
||||
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=19649, `VerifiedBuild`=46702 WHERE `entry`=106915; -- Marius Felbane
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=19648, `AIName`= 'SmartAI', `VerifiedBuild`=46702 WHERE `entry`=106914; -- Tehd Shoemaker
|
||||
|
||||
DELETE FROM `creature_queststarter` WHERE (`id`=106914 AND `quest`=42238) OR (`id`=106915 AND `quest`=42372);
|
||||
INSERT INTO `creature_queststarter` (`id`, `quest`, `VerifiedBuild`) VALUES
|
||||
(106914, 42238, 46702), -- Missing Demon offered Tehd Shoemaker
|
||||
(106915, 42372, 46702); -- Felblaze Ingress offered Marius Felbane
|
||||
|
||||
UPDATE `quest_poi` SET `VerifiedBuild`=46702 WHERE (`QuestID`=42238 AND `BlobIndex`=0 AND `Idx1`=1) OR (`QuestID`=42238 AND `BlobIndex`=0 AND `Idx1`=0) OR (`QuestID`=42372 AND `BlobIndex`=0 AND `Idx1`=1) OR (`QuestID`=42372 AND `BlobIndex`=0 AND `Idx1`=0);
|
||||
UPDATE `quest_poi_points` SET `VerifiedBuild`=46702 WHERE (`QuestID`=42238 AND `Idx1`=1 AND `Idx2`=0) OR (`QuestID`=42238 AND `Idx1`=0 AND `Idx2`=0) OR (`QuestID`=42372 AND `Idx1`=1 AND `Idx2`=0) OR (`QuestID`=42372 AND `Idx1`=0 AND `Idx2`=0);
|
||||
UPDATE `quest_details` SET `VerifiedBuild`=46702 WHERE `ID` IN (42238, 42372);
|
||||
|
||||
UPDATE `quest_offer_reward` SET `VerifiedBuild`=46702 WHERE `ID`=42372;
|
||||
UPDATE `creature_questender` SET `VerifiedBuild`=46702 WHERE (`id`=107244 AND `quest`=42372);
|
||||
|
||||
-- Phase
|
||||
DELETE FROM `phase_name` WHERE `ID` = 6893;
|
||||
INSERT INTO `phase_name` (`ID`, `Name`) VALUES
|
||||
(6893, 'Cosmetic - See Haterunner, Tehd Shoemaker and Marius Felbane at Llothien Highlands');
|
||||
|
||||
DELETE FROM `phase_area` WHERE `AreaId` IN (7340, 7360) AND `PhaseId` = 6893;
|
||||
INSERT INTO `phase_area` (`AreaId`, `PhaseId`, `Comment`) VALUES
|
||||
(7360, 6893, 'See Haterunner, Tehd Shoemaker and Marius Felbane at Llothien Highlands'),
|
||||
(7340, 6893, 'See Haterunner, Tehd Shoemaker and Marius Felbane at Llothien Highlands');
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=26 AND `SourceGroup` = 6893 AND `SourceEntry` IN (7360, 7340);
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `Comment`) VALUES
|
||||
(26, 6893, 7360, 0, 0, 47, 0, 42372, 64, 0, 1, 'Apply Phase 6893 if Quest 42372 is not rewarded'),
|
||||
(26, 6893, 7340, 0, 0, 47, 0, 42372, 64, 0, 1, 'Apply Phase 6893 if Quest 42372 is not rewarded');
|
||||
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=106914 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`, `event_param_string`, `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
|
||||
(106914, 0, 1, 0, 1, 0, 100, 0, 0, 0, 1860000, 2100000, 0, '', 11, 79934, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Tehd Shoemaker - OOC beweteen - Cast Demon Armor');
|
||||
@@ -1,56 +0,0 @@
|
||||
SET @CGUID := 651839;
|
||||
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+1;
|
||||
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, 89007, 1220, 7334, 7344, '0', 4301, 0, 0, 0, -408.09375, 6590.205078125, 0.215781688690185546, 0.842128276824951171, 120, 0, 0, 43153, 0, 0, 0, 0, 0, 46549), -- Sleepy Dhow (Area: Shipwreck Arena - Difficulty: 0) (Auras: 32951 - Sleeping Sleep)
|
||||
(@CGUID+1, 88873, 1220, 7334, 7344, '0', 4574, 0, 0, 0, -327.267364501953125, 6535.986328125, 1.743238687515258789, 0.553760647773742675, 120, 0, 0, 3923, 0, 0, 0, 0, 0, 46549); -- Okuna Longtusk (Area: Shipwreck Arena - Difficulty: 0)
|
||||
|
||||
DELETE FROM `creature_addon` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+1;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(@CGUID+0, 0, 0, 0, 1, 0, 0, 0, 0, 3, '32951'); -- Sleepy Dhow - 32951 - Sleeping Sleep
|
||||
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=17259, `minlevel`=45, `maxlevel`=45,`VerifiedBuild`=46658 WHERE `entry`=88873; -- Okuna Longtusk
|
||||
|
||||
UPDATE `quest_details` SET `VerifiedBuild`=46689 WHERE `ID` IN (37510, 37542, 37528);
|
||||
|
||||
DELETE FROM `creature_queststarter` WHERE (`id`=88873 AND `quest` IN (37510,37542,37528));
|
||||
INSERT INTO `creature_queststarter` (`id`, `quest`, `VerifiedBuild`) VALUES
|
||||
(88873, 37510, 46689), -- Sternfathom's Champion offered Okuna Longtusk
|
||||
(88873, 37542, 46689), -- No Time for Tryouts offered Okuna Longtusk
|
||||
(88873, 37528, 46689); -- Let Sleeping Giants Lie offered Okuna Longtusk
|
||||
|
||||
UPDATE `creature_questender` SET `VerifiedBuild`=46689 WHERE (`id`=88873 AND `quest` IN (37542,37528,37507));
|
||||
|
||||
UPDATE `quest_template` SET `VerifiedBuild`=46689 WHERE `ID`=37510; -- Sternfathom's Champion
|
||||
UPDATE `quest_template` SET `VerifiedBuild`=46689 WHERE `ID`=37542; -- No Time for Tryouts
|
||||
UPDATE `quest_template` SET `VerifiedBuild`=46689 WHERE `ID`=37528; -- Let Sleeping Giants Lie
|
||||
|
||||
DELETE FROM `quest_poi` WHERE (`QuestID`=37542 AND `BlobIndex`=0 AND `Idx1`=2) OR (`QuestID`=37542 AND `BlobIndex`=0 AND `Idx1`=1) OR (`QuestID`=37542 AND `BlobIndex`=0 AND `Idx1`=0);
|
||||
INSERT INTO `quest_poi` (`QuestID`, `BlobIndex`, `Idx1`, `ObjectiveIndex`, `QuestObjectiveID`, `QuestObjectID`, `MapID`, `UiMapID`, `Priority`, `Flags`, `WorldEffectID`, `PlayerConditionID`, `NavigationPlayerConditionID`, `SpawnTrackingID`, `AlwaysAllowMergingBlobs`, `VerifiedBuild`) VALUES
|
||||
(37542, 0, 2, 32, 0, 0, 1220, 630, 0, 0, 0, 0, 0, 964697, 0, 46689), -- No Time for Tryouts
|
||||
(37542, 0, 1, 0, 276420, 89082, 1220, 630, 0, 0, 0, 0, 0, 968248, 0, 46689), -- No Time for Tryouts
|
||||
(37542, 0, 0, -1, 0, 0, 1220, 630, 0, 0, 0, 0, 0, 964697, 0, 46689); -- No Time for Tryouts
|
||||
|
||||
DELETE FROM `quest_poi_points` WHERE (`QuestID`=37542 AND `Idx1`=2 AND `Idx2`=0) OR (`QuestID`=37542 AND `Idx1`=1 AND `Idx2`=0) OR (`QuestID`=37542 AND `Idx1`=0 AND `Idx2`=0);
|
||||
INSERT INTO `quest_poi_points` (`QuestID`, `Idx1`, `Idx2`, `X`, `Y`, `Z`, `VerifiedBuild`) VALUES
|
||||
(37542, 2, 0, -327, 6536, 2, 46689), -- No Time for Tryouts
|
||||
(37542, 1, 0, -242, 6588, 2, 46689), -- No Time for Tryouts
|
||||
(37542, 0, 0, -327, 6536, 2, 46689); -- No Time for Tryouts
|
||||
|
||||
UPDATE `quest_poi` SET `VerifiedBuild`=46689 WHERE (`QuestID`=37510 AND `BlobIndex`=0 AND `Idx1`=1) OR (`QuestID`=37510 AND `BlobIndex`=0 AND `Idx1`=0) OR (`QuestID`=37528 AND `BlobIndex`=0 AND `Idx1`=2) OR (`QuestID`=37528 AND `BlobIndex`=0 AND `Idx1`=1) OR (`QuestID`=37528 AND `BlobIndex`=0 AND `Idx1`=0);
|
||||
UPDATE `quest_poi_points` SET `VerifiedBuild`=46689 WHERE (`QuestID`=37510 AND `Idx1`=1 AND `Idx2`=0) OR (`QuestID`=37510 AND `Idx1`=0 AND `Idx2`=0) OR (`QuestID`=37528 AND `Idx1`=2 AND `Idx2`=0) OR (`QuestID`=37528 AND `Idx1`=1 AND `Idx2`=0) OR (`QuestID`=37528 AND `Idx1`=0 AND `Idx2`=0);
|
||||
|
||||
-- Phase
|
||||
DELETE FROM `phase_name` WHERE `ID` IN (4301, 4574);
|
||||
INSERT INTO `phase_name` (`ID`, `Name`) VALUES
|
||||
(4301, 'Cosmetic - See Sleepy Dhow at Shipwreck Arena'),
|
||||
(4574, 'Cosmetic - See Okuna Longtusk at Shipwreck Arena');
|
||||
|
||||
DELETE FROM `phase_area` WHERE `AreaId` = 7344 AND `PhaseId` IN (4301, 4574);
|
||||
INSERT INTO `phase_area` (`AreaId`, `PhaseId`, `Comment`) VALUES
|
||||
(7344, 4301, 'See Sleepy Dhow at Shipwreck Arena'),
|
||||
(7344, 4574, 'See Okuna Longtusk at Shipwreck Arena');
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=26 AND `SourceGroup` = 4574 AND `SourceEntry` = 7344;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `Comment`) VALUES
|
||||
(26, 4574, 7344, 0, 0, 47, 0, 37510, 8 | 2 | 64, 0, 1, 'Apply Phase 4574 if Quest 37510 is not in progress | completed | rewarded');
|
||||
@@ -1,12 +0,0 @@
|
||||
SET @OGUID := 248207;
|
||||
SET @EVENT := 12;
|
||||
|
||||
-- Gameobject spawns
|
||||
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, 186614, 1, 14, 362, '0', 0, 0, 354.647125244140625, -4739.91552734375, 9.8121490478515625, 6.056293010711669921, 0, 0, -0.11320304870605468, 0.993571877479553222, 120, 255, 1, 46340); -- Water Bucket (Area: Razor Hill - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid`=@OGUID+0;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0);
|
||||
@@ -1,256 +0,0 @@
|
||||
SET @CGUID := 396416;
|
||||
SET @OGUID := 248208;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature templates
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60 WHERE `entry`=32820; -- Wild Turkey
|
||||
UPDATE `creature_template` SET `unit_flags3`=16777216 WHERE `entry`=32824; -- [PH] Pilgrim's Bounty Table - Turkey
|
||||
UPDATE `creature_template` SET `unit_flags3`=16777216 WHERE `entry`=32825; -- [PH] Pilgrim's Bounty Table - Yams
|
||||
UPDATE `creature_template` SET `unit_flags3`=16777216 WHERE `entry`=32827; -- [PH] Pilgrim's Bounty Table - Cranberry Sauce
|
||||
UPDATE `creature_template` SET `unit_flags3`=16777216 WHERE `entry`=32829; -- [PH] Pilgrim's Bounty Table - Pie
|
||||
UPDATE `creature_template` SET `unit_flags3`=16777216 WHERE `entry`=32831; -- [PH] Pilgrim's Bounty Table - Stuffing
|
||||
UPDATE `creature_template` SET `unit_flags3`=16777216 WHERE `entry`=32839; -- Sturdy Plate
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=10576, `minlevel`=60, `maxlevel`=60 WHERE `entry`=34653; -- Bountiful Table Hostess
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60 WHERE `entry`=34675; -- Gregory Tabor
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60 WHERE `entry`=34682; -- Wilmina Holbeck
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=10569, `minlevel`=60, `maxlevel`=60 WHERE `entry`=34710; -- Ellen Moore
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=10570, `minlevel`=60, `maxlevel`=60 WHERE `entry`=34744; -- Jasper Moore
|
||||
UPDATE `creature_template` SET `unit_flags3`=16777216 WHERE `entry`=34812; -- The Turkey Chair
|
||||
UPDATE `creature_template` SET `unit_flags3`=16777217 WHERE `entry`=34819; -- The Stuffing Chair
|
||||
UPDATE `creature_template` SET `unit_flags3`=16777216 WHERE `entry`=34822; -- The Pie Chair
|
||||
UPDATE `creature_template` SET `unit_flags3`=16777216 WHERE `entry`=34823; -- The Cranberry Chair
|
||||
UPDATE `creature_template` SET `unit_flags3`=16777216 WHERE `entry`=34824; -- The Sweet Potato Chair
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60, `unit_flags`=2147746560 WHERE `entry`=35337; -- Bountiful Barrel
|
||||
|
||||
DELETE FROM `creature_template_movement` WHERE `CreatureId` IN (32830, 32840);
|
||||
INSERT INTO `creature_template_movement` (`CreatureId`, `Ground`, `Swim`, `Flight`, `Rooted`, `Chase`, `Random`, `InteractionPauseTimer`) VALUES
|
||||
(32830, 0, 0, 1, 0, 0, 0, NULL),
|
||||
(32840, 0, 0, 1, 0, 0, 0, NULL);
|
||||
|
||||
-- Vehicle data
|
||||
DELETE FROM `vehicle_seat_addon` WHERE `SeatEntry` IN (2824, 2841, 2842, 2843, 2844, 2845);
|
||||
INSERT INTO `vehicle_seat_addon` (`SeatEntry`, `SeatOrientation`, `ExitParamX`, `ExitParamY`, `ExitParamZ`, `ExitParamO`, `ExitParamValue`) VALUES
|
||||
(2824, 0, -3.9238, 0, 0, 0, 1),
|
||||
(2841, 3.7000983, 0, 0, 0, 0, 0),
|
||||
(2842, 2.4609144, 0, 0, 0, 0, 0),
|
||||
(2843, 0, 0, 0, 0, 0, 0),
|
||||
(2844, 1.1868243, 0, 0, 0, 0, 0),
|
||||
(2845, 5.009095, 0, 0, 0, 0, 0);
|
||||
|
||||
-- Gossips
|
||||
DELETE FROM `gossip_menu` WHERE `MenuID` IN (10569, 10570, 10576, 10588);
|
||||
INSERT INTO `gossip_menu` (`MenuID`, `TextID`, `VerifiedBuild`) VALUES
|
||||
(10569, 14627, 46741), -- 34710 (Ellen Moore)
|
||||
(10570, 14628, 46741), -- 34744 (Jasper Moore)
|
||||
(10576, 14634, 46741), -- 34653 (Bountiful Table Hostess)
|
||||
(10588, 14647, 46741); -- 34653 (Bountiful Table Hostess)
|
||||
|
||||
UPDATE `gossip_menu_option` SET `OptionBroadcastTextId`=35108, `ActionMenuID`=10588, `VerifiedBuild`=46741 WHERE (`MenuID`=10576 AND `OptionID`=0);
|
||||
UPDATE `gossip_menu_option` SET `OptionBroadcastTextId`=35062, `VerifiedBuild`=46741 WHERE (`MenuID`=10569 AND `OptionID`=0);
|
||||
|
||||
-- Equipments
|
||||
DELETE FROM `creature_equip_template` WHERE `CreatureID`=34653 AND `ID` IN (1, 2);
|
||||
INSERT INTO `creature_equip_template` (`CreatureID`, `ID`, `ItemID1`, `AppearanceModID1`, `ItemVisual1`, `ItemID2`, `AppearanceModID2`, `ItemVisual2`, `ItemID3`, `AppearanceModID3`, `ItemVisual3`, `VerifiedBuild`) VALUES
|
||||
(34653, 1, 2202, 0, 0, 0, 0, 0, 0, 0, 0, 46741), -- Bountiful Table Hostess
|
||||
(34653, 2, 2703, 0, 0, 0, 0, 0, 0, 0, 0, 46741); -- Bountiful Table Hostess
|
||||
|
||||
UPDATE `creature_equip_template` SET `VerifiedBuild`=46741 WHERE (`ID`=1 AND `CreatureID` IN (51348,34744,34710,34675,1423,68)) OR (`ID`=2 AND `CreatureID`=42218);
|
||||
|
||||
-- Scaling
|
||||
DELETE FROM `creature_template_scaling` WHERE `DifficultyID`=0 AND `Entry` IN (32820, 34653, 34675, 34682, 34710, 34744, 35337);
|
||||
INSERT INTO `creature_template_scaling` (`Entry`, `DifficultyID`, `LevelScalingDeltaMin`, `LevelScalingDeltaMax`, `ContentTuningID`, `VerifiedBuild`) VALUES
|
||||
(32820, 0, 0, 0, 389, 46741),
|
||||
(34653, 0, 0, 0, 389, 46741),
|
||||
(34675, 0, 0, 0, 389, 46741),
|
||||
(34682, 0, 0, 0, 389, 46741),
|
||||
(34710, 0, 0, 0, 389, 46741),
|
||||
(34744, 0, 0, 0, 389, 46741),
|
||||
(35337, 0, 0, 0, 389, 46741);
|
||||
|
||||
-- Trainer
|
||||
DELETE FROM `creature_trainer` WHERE `CreatureID`=34710;
|
||||
INSERT INTO `creature_trainer` (`CreatureID`, `TrainerID`, `MenuID`, `OptionID`) VALUES
|
||||
(34710, 136, 10569, 0);
|
||||
|
||||
-- Gameobject templates
|
||||
UPDATE `gameobject_template_addon` SET `faction`=35 WHERE `entry`=195200; -- Pilgrim's Bounty Cooking Fire
|
||||
|
||||
-- Quests
|
||||
UPDATE `quest_poi_points` SET `VerifiedBuild`=46741 WHERE (`QuestID`=14053 AND `Idx1`=1 AND `Idx2`=0) OR (`QuestID`=14053 AND `Idx1`=0 AND `Idx2`=0) OR (`QuestID`=14055 AND `Idx1`=1 AND `Idx2`=0) OR (`QuestID`=14055 AND `Idx1`=0 AND `Idx2`=0) OR (`QuestID`=14023 AND `Idx1`=1 AND `Idx2`=0) OR (`QuestID`=14023 AND `Idx1`=0 AND `Idx2`=0) OR (`QuestID`=14054 AND `Idx1`=2 AND `Idx2`=0) OR (`QuestID`=14054 AND `Idx1`=1 AND `Idx2`=0) OR (`QuestID`=14054 AND `Idx1`=0 AND `Idx2`=0);
|
||||
|
||||
UPDATE `quest_details` SET `VerifiedBuild`=46741 WHERE `ID` IN (14053, 14055, 14023);
|
||||
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=1 WHERE `ID` IN (14055, 14023);
|
||||
|
||||
UPDATE `creature_queststarter` SET `VerifiedBuild`=46741 WHERE (`id`=34710 AND `quest`=14053) OR (`id`=34744 AND `quest`=14055) OR (`id`=34675 AND `quest`=14023);
|
||||
|
||||
UPDATE `creature_questender` SET `VerifiedBuild`=46741 WHERE (`id`=34710 AND `quest`=14053) OR (`id`=34744 AND `quest` IN (14055,14023));
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+10;
|
||||
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, 32823, 0, 12, 7486, '0', 0, 0, 0, 0, -9125.173828125, 343.607635498046875, 94.2982177734375, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Stormwind Gate - Difficulty: 0) (Auras: )
|
||||
(@CGUID+1, 32823, 0, 12, 7486, '0', 0, 0, 0, 0, -9106.7939453125, 326.197906494140625, 93.49233245849609375, 2.042035102844238281, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Stormwind Gate - Difficulty: 0) (Auras: )
|
||||
(@CGUID+2, 32823, 0, 12, 7486, '0', 0, 0, 0, 0, -9115.9189453125, 334.338531494140625, 93.3733062744140625, 1.274090290069580078, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@CGUID+3, 34653, 0, 12, 7486, '0', 0, 0, 0, 0, -9121.7724609375, 349.138885498046875, 94.0400390625, 2.164208173751831054, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table Hostess (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@CGUID+4, 34675, 0, 12, 7486, '0', 0, 0, 0, 1, -9130.263671875, 351.836822509765625, 93.8494873046875, 2.268928050994873046, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Gregory Tabor (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@CGUID+5, 34682, 0, 12, 7486, '0', 0, 0, 0, 0, -9132.2255859375, 350.265625, 93.7830047607421875, 2.373647689819335937, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Wilmina Holbeck (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@CGUID+6, 34710, 0, 12, 7486, '0', 0, 0, 0, 1, -9111.498046875, 365.263885498046875, 94.74680328369140625, 2.216568231582641601, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Ellen Moore (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@CGUID+7, 34744, 0, 12, 7486, '0', 0, 0, 0, 1, -9115.4443359375, 359.26910400390625, 93.55462646484375, 2.652900457382202148, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Jasper Moore (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@CGUID+8, 35337, 0, 12, 7486, '0', 0, 0, 0, 0, -9132.5283203125, 347.779510498046875, 93.24025726318359375, 4.886921882629394531, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Barrel (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@CGUID+9, 35337, 0, 12, 7486, '0', 0, 0, 0, 0, -9133.2080078125, 349.3350830078125, 93.0038299560546875, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Barrel (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@CGUID+10, 35337, 0, 12, 7486, '0', 0, 0, 0, 0, -9130.798828125, 348.3194580078125, 93.48369598388671875, 4.171336650848388671, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Barrel (Area: Stormwind Gate - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+65;
|
||||
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, 179968, 0, 12, 7486, '0', 0, 0, -9129.6044921875, 350.798614501953125, 93.4149322509765625, 2.303830623626708984, 0, 0, 0.913544654846191406, 0.406738430261611938, 120, 255, 1, 46741), -- Haystack 01 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 0, 12, 7486, '0', 0, 0, -9130.0693359375, 351.388885498046875, 93.164306640625, 2.303830623626708984, 0, 0, 0.913544654846191406, 0.406738430261611938, 120, 255, 1, 46741), -- Haystack 01 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 0, 12, 7486, '0', 0, 0, -9130.53125, 351.958343505859375, 93.15648651123046875, 2.303830623626708984, 0, 0, 0.913544654846191406, 0.406738430261611938, 120, 255, 1, 46741), -- Haystack 01 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 0, 12, 7486, '0', 0, 0, -9112.4150390625, 364.545135498046875, 94.01459503173828125, 2.286378860473632812, 0, 0, 0.909960746765136718, 0.414694398641586303, 120, 255, 1, 46741), -- Haystack 01 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 0, 12, 7486, '0', 0, 0, -9131.4423828125, 349.170135498046875, 93.3055572509765625, 2.286378860473632812, 0, 0, 0.909960746765136718, 0.414694398641586303, 120, 255, 1, 46741), -- Haystack 01 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 0, 12, 7486, '0', 0, 0, -9123.36328125, 329.789947509765625, 93.28472137451171875, 3.926995515823364257, 0, 0, -0.92387866973876953, 0.38268551230430603, 120, 255, 1, 46741), -- Haystack 01 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 0, 12, 7486, '0', 0, 0, -9101.234375, 334.829864501953125, 94.189239501953125, 0.767943859100341796, 0, 0, 0.374606132507324218, 0.927184045314788818, 120, 255, 1, 46741), -- Haystack 01 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 0, 12, 7486, '0', 0, 0, -9121.826171875, 328.229156494140625, 93.19097137451171875, 0.785396754741668701, 0, 0, 0.38268280029296875, 0.923879802227020263, 120, 255, 1, 46741), -- Haystack 01 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 0, 12, 7486, '0', 0, 0, -9132.640625, 338.791656494140625, 93.26215362548828125, 3.94444584846496582, 0, 0, -0.92050457000732421, 0.3907318115234375, 120, 255, 1, 46741), -- Haystack 01 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 0, 12, 7486, '0', 0, 0, -9110.607421875, 366.095489501953125, 94.0480499267578125, 2.286378860473632812, 0, 0, 0.909960746765136718, 0.414694398641586303, 120, 255, 1, 46741), -- Haystack 01 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+10, 179968, 0, 12, 7486, '0', 0, 0, -9118.3232421875, 352.451385498046875, 93.59378814697265625, 3.839725255966186523, 0, 0, -0.93969249725341796, 0.34202045202255249, 120, 255, 1, 46741), -- Haystack 01 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+11, 179968, 0, 12, 7486, '0', 0, 0, -9109.716796875, 342.875, 93.4774627685546875, 3.874631166458129882, 0, 0, -0.93358039855957031, 0.358368009328842163, 120, 255, 1, 46741), -- Haystack 01 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+12, 179968, 0, 12, 7486, '0', 0, 0, -9130.373046875, 336.82464599609375, 93.4618072509765625, 0.855210542678833007, 0, 0, 0.414692878723144531, 0.909961462020874023, 120, 255, 1, 46741), -- Haystack 01 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+13, 179968, 0, 12, 7486, '0', 0, 0, -9131.921875, 349.739593505859375, 93.086761474609375, 2.286378860473632812, 0, 0, 0.909960746765136718, 0.414694398641586303, 120, 255, 1, 46741), -- Haystack 01 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+14, 179968, 0, 12, 7486, '0', 0, 0, -9111.5205078125, 365.3194580078125, 94.02376556396484375, 2.286378860473632812, 0, 0, 0.909960746765136718, 0.414694398641586303, 120, 255, 1, 46741), -- Haystack 01 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+15, 179968, 0, 12, 7486, '0', 0, 0, -9108.3212890625, 341.447906494140625, 93.501739501953125, 3.874631166458129882, 0, 0, -0.93358039855957031, 0.358368009328842163, 120, 255, 1, 46741), -- Haystack 01 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+16, 179968, 0, 12, 7486, '0', 0, 0, -9132.3837890625, 350.317718505859375, 93.0628509521484375, 2.286378860473632812, 0, 0, 0.909960746765136718, 0.414694398641586303, 120, 255, 1, 46741), -- Haystack 01 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+17, 179968, 0, 12, 7486, '0', 0, 0, -9116.998046875, 350.876739501953125, 93.6508636474609375, 3.857182979583740234, 0, 0, -0.93667125701904296, 0.350209832191467285, 120, 255, 1, 46741), -- Haystack 01 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+18, 179968, 0, 12, 7486, '0', 0, 0, -9099.716796875, 333.30035400390625, 94.3125, 3.94444584846496582, 0, 0, -0.92050457000732421, 0.3907318115234375, 120, 255, 1, 46741), -- Haystack 01 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+19, 179968, 0, 12, 7486, '0', 0, 0, -9112.7626953125, 319.407989501953125, 93.15767669677734375, 3.961898565292358398, 0, 0, -0.91705989837646484, 0.398749500513076782, 120, 255, 1, 46741), -- Haystack 01 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+20, 179968, 0, 12, 7486, '0', 0, 0, -9114.45703125, 320.90972900390625, 93.1864776611328125, 0.820303261280059814, 0, 0, 0.398748397827148437, 0.917060375213623046, 120, 255, 1, 46741), -- Haystack 01 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+21, 179968, 0, 12, 7486, '0', 0, 0, -9097.7451171875, 320.314239501953125, 93.797454833984375, 2.303830623626708984, 0, 0, 0.913544654846191406, 0.406738430261611938, 120, 255, 1, 46741), -- Haystack 01 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+22, 179968, 0, 12, 7486, '0', 0, 0, -9099.5830078125, 318.685760498046875, 93.83853912353515625, 2.286378860473632812, 0, 0, 0.909960746765136718, 0.414694398641586303, 120, 255, 1, 46741), -- Haystack 01 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+23, 180353, 0, 12, 7486, '0', 0, 0, -9122.6220703125, 329.0225830078125, 93.240203857421875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+24, 180353, 0, 12, 7486, '0', 0, 0, -9131.75, 337.94097900390625, 93.34102630615234375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+25, 180353, 0, 12, 7486, '0', 0, 0, -9130.513671875, 349.9444580078125, 93.372589111328125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+26, 180353, 0, 12, 7486, '0', 0, 0, -9117.6201171875, 351.670135498046875, 93.62094879150390625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+27, 180353, 0, 12, 7486, '0', 0, 0, -9111.4599609375, 361.625, 93.87502288818359375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+28, 180353, 0, 12, 7486, '0', 0, 0, -9108.4794921875, 363.73089599609375, 93.95777130126953125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+29, 180353, 0, 12, 7486, '0', 0, 0, -9109.0087890625, 342.180572509765625, 93.49059295654296875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+30, 180353, 0, 12, 7486, '0', 0, 0, -9098.654296875, 319.4600830078125, 93.8115692138671875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+31, 180353, 0, 12, 7486, '0', 0, 0, -9100.3798828125, 334.015625, 94.26544952392578125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+32, 180353, 0, 12, 7486, '0', 0, 0, -9113.609375, 320.149322509765625, 93.16226959228515625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+33, 195164, 0, 12, 7486, '0', 0, 0, -9129.7392578125, 350.654510498046875, 94.10631561279296875, 2.251473426818847656, 0, 0, 0.902585029602050781, 0.430511653423309326, 120, 255, 1, 46741), -- Pumpkin (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+34, 195164, 0, 12, 7486, '0', 0, 0, -9131.2451171875, 351.2725830078125, 93.13372802734375, 3.804818391799926757, 0, 0, -0.94551849365234375, 0.325568377971649169, 120, 255, 1, 46741), -- Pumpkin (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+35, 195164, 0, 12, 7486, '0', 0, 0, -9130.2763671875, 336.779510498046875, 94.16184234619140625, 0.872663915157318115, 0, 0, 0.422617912292480468, 0.906307935714721679, 120, 255, 1, 46741), -- Pumpkin (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+36, 195164, 0, 12, 7486, '0', 0, 0, -9132.544921875, 338.74652099609375, 93.96569061279296875, 3.90954136848449707, 0, 0, -0.92718315124511718, 0.37460830807685852, 120, 255, 1, 46741), -- Pumpkin (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+37, 195164, 0, 12, 7486, '0', 0, 0, -9108.7568359375, 364.289947509765625, 94.82573699951171875, 6.178466320037841796, 0, 0, -0.05233573913574218, 0.998629570007324218, 120, 255, 1, 46741), -- Pumpkin (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+38, 195164, 0, 12, 7486, '0', 0, 0, -9121.6875, 328.348968505859375, 93.88315582275390625, 0.802850961685180664, 0, 0, 0.390730857849121093, 0.920504987239837646, 120, 255, 1, 46741), -- Pumpkin (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+39, 195164, 0, 12, 7486, '0', 0, 0, -9117.01953125, 350.83160400390625, 94.34537506103515625, 3.839725255966186523, 0, 0, -0.93969249725341796, 0.34202045202255249, 120, 255, 1, 46741), -- Pumpkin (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+40, 195164, 0, 12, 7486, '0', 0, 0, -9118.2255859375, 352.40625, 94.28531646728515625, 3.804818391799926757, 0, 0, -0.94551849365234375, 0.325568377971649169, 120, 255, 1, 46741), -- Pumpkin (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+41, 195164, 0, 12, 7486, '0', 0, 0, -9131.48828125, 350.74652099609375, 93.15081787109375, 3.804818391799926757, 0, 0, -0.94551849365234375, 0.325568377971649169, 120, 255, 1, 46741), -- Pumpkin (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+42, 195164, 0, 12, 7486, '0', 0, 0, -9108.4580078125, 341.435760498046875, 94.18932342529296875, 3.90954136848449707, 0, 0, -0.92718315124511718, 0.37460830807685852, 120, 255, 1, 46741), -- Pumpkin (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+43, 195164, 0, 12, 7486, '0', 0, 0, -9109.7568359375, 342.779510498046875, 94.17063140869140625, 3.857182979583740234, 0, 0, -0.93667125701904296, 0.350209832191467285, 120, 255, 1, 46741), -- Pumpkin (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+44, 195164, 0, 12, 7486, '0', 0, 0, -9131.5, 349.2413330078125, 93.979583740234375, 2.286378860473632812, 0, 0, 0.909960746765136718, 0.414694398641586303, 120, 255, 1, 46741), -- Pumpkin (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+45, 195164, 0, 12, 7486, '0', 0, 0, -9123.453125, 329.76214599609375, 93.97652435302734375, 3.961898565292358398, 0, 0, -0.91705989837646484, 0.398749500513076782, 120, 255, 1, 46741), -- Pumpkin (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+46, 195164, 0, 12, 7486, '0', 0, 0, -9099.78515625, 333.37152099609375, 95.00388336181640625, 3.9793548583984375, 0, 0, -0.9135446548461914, 0.406738430261611938, 120, 255, 1, 46741), -- Pumpkin (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+47, 195164, 0, 12, 7486, '0', 0, 0, -9101.1826171875, 334.875, 94.88756561279296875, 0.767943859100341796, 0, 0, 0.374606132507324218, 0.927184045314788818, 120, 255, 1, 46741), -- Pumpkin (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+48, 195164, 0, 12, 7486, '0', 0, 0, -9114.513671875, 320.98089599609375, 93.87872314453125, 0.785396754741668701, 0, 0, 0.38268280029296875, 0.923879802227020263, 120, 255, 1, 46741), -- Pumpkin (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+49, 195164, 0, 12, 7486, '0', 0, 0, -9112.8994140625, 319.263885498046875, 93.84804534912109375, 3.961898565292358398, 0, 0, -0.91705989837646484, 0.398749500513076782, 120, 255, 1, 46741), -- Pumpkin (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+50, 195164, 0, 12, 7486, '0', 0, 0, -9099.640625, 318.7569580078125, 94.5261688232421875, 2.286378860473632812, 0, 0, 0.909960746765136718, 0.414694398641586303, 120, 255, 1, 46741), -- Pumpkin (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+51, 195164, 0, 12, 7486, '0', 0, 0, -9097.8798828125, 320.170135498046875, 94.48999786376953125, 2.251473426818847656, 0, 0, 0.902585029602050781, 0.430511653423309326, 120, 255, 1, 46741), -- Pumpkin (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+52, 195191, 0, 12, 7486, '0', 0, 0, -9110.45703125, 363.703125, 93.9090576171875, 2.216565132141113281, 0, 0, 0.894933700561523437, 0.44619917869567871, 120, 255, 1, 46741), -- Dwarven Table Simple 05 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+53, 195192, 0, 12, 7486, '0', 0, 0, -9109.3974609375, 365.076385498046875, 94.8199615478515625, 5.777040958404541015, 0, 0, -0.25037956237792968, 0.968147754669189453, 120, 255, 1, 46741), -- Basket of Corn (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+54, 195194, 0, 12, 7486, '0', 0, 0, -9111.283203125, 362.201385498046875, 94.82390594482421875, 3.804818391799926757, 0, 0, -0.94551849365234375, 0.325568377971649169, 120, 255, 1, 46741), -- Small Basket 01 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+55, 195195, 0, 12, 7486, '0', 0, 0, -9111.908203125, 362.8350830078125, 94.752593994140625, 3.298687219619750976, 0, 0, -0.99691677093505859, 0.078466430306434631, 120, 255, 1, 46741), -- Cranberry Masher (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+56, 195196, 0, 12, 7486, '0', 0, 0, -9107.794921875, 361.203125, 93.81951141357421875, 3.804818391799926757, 0, 0, -0.94551849365234375, 0.325568377971649169, 120, 255, 1, 46741), -- Large Basket 03 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+57, 195197, 0, 12, 7486, '0', 0, 0, -9108.107421875, 365.2882080078125, 93.830322265625, 3.9793548583984375, 0, 0, -0.9135446548461914, 0.406738430261611938, 120, 255, 1, 46741), -- Grain Sack 02 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+58, 195198, 0, 12, 7486, '0', 0, 0, -9109.8681640625, 360.736114501953125, 93.79140472412109375, 4.834563255310058593, 0, 0, -0.66261959075927734, 0.748956084251403808, 120, 255, 1, 46741), -- Crate 01 (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+59, 195200, 0, 12, 7486, '0', 0, 0, -9113.81640625, 361.357635498046875, 93.56732940673828125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pilgrim's Bounty Cooking Fire (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+60, 195212, 0, 12, 7486, '0', 0, 0, -9111.2705078125, 358.232635498046875, 93.6134033203125, 5.916667938232421875, 0, 0, -0.18223476409912109, 0.98325502872467041, 120, 255, 1, 46741), -- Pumpkin (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+61, 195212, 0, 12, 7486, '0', 0, 0, -9109.642578125, 357.170135498046875, 93.48175811767578125, 4.241150379180908203, 0, 0, -0.85264015197753906, 0.522498607635498046, 120, 255, 1, 46741), -- Pumpkin (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+62, 195212, 0, 12, 7486, '0', 0, 0, -9112.9580078125, 356.243072509765625, 93.34070587158203125, 2.635444164276123046, 0, 0, 0.96814727783203125, 0.250381410121917724, 120, 255, 1, 46741), -- Pumpkin (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+63, 195664, 0, 12, 7486, '0', 0, 0, -9125.173828125, 343.607635498046875, 94.21488189697265625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+64, 195664, 0, 12, 7486, '0', 0, 0, -9115.919921875, 334.338531494140625, 93.28997039794921875, 1.274088263511657714, 0, 0, 0.594821929931640625, 0.80385744571685791, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Stormwind Gate - Difficulty: 0)
|
||||
(@OGUID+65, 195664, 0, 12, 7486, '0', 0, 0, -9106.794921875, 326.197906494140625, 93.40899658203125, 2.042035102844238281, 0, 0, 0.852640151977539062, 0.522498607635498046, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Stormwind Gate - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+10;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1),
|
||||
(@EVENT, @CGUID+2),
|
||||
(@EVENT, @CGUID+3),
|
||||
(@EVENT, @CGUID+4),
|
||||
(@EVENT, @CGUID+5),
|
||||
(@EVENT, @CGUID+6),
|
||||
(@EVENT, @CGUID+7),
|
||||
(@EVENT, @CGUID+8),
|
||||
(@EVENT, @CGUID+9),
|
||||
(@EVENT, @CGUID+10);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+65;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25),
|
||||
(@EVENT, @OGUID+26),
|
||||
(@EVENT, @OGUID+27),
|
||||
(@EVENT, @OGUID+28),
|
||||
(@EVENT, @OGUID+29),
|
||||
(@EVENT, @OGUID+30),
|
||||
(@EVENT, @OGUID+31),
|
||||
(@EVENT, @OGUID+32),
|
||||
(@EVENT, @OGUID+33),
|
||||
(@EVENT, @OGUID+34),
|
||||
(@EVENT, @OGUID+35),
|
||||
(@EVENT, @OGUID+36),
|
||||
(@EVENT, @OGUID+37),
|
||||
(@EVENT, @OGUID+38),
|
||||
(@EVENT, @OGUID+39),
|
||||
(@EVENT, @OGUID+40),
|
||||
(@EVENT, @OGUID+41),
|
||||
(@EVENT, @OGUID+42),
|
||||
(@EVENT, @OGUID+43),
|
||||
(@EVENT, @OGUID+44),
|
||||
(@EVENT, @OGUID+45),
|
||||
(@EVENT, @OGUID+46),
|
||||
(@EVENT, @OGUID+47),
|
||||
(@EVENT, @OGUID+48),
|
||||
(@EVENT, @OGUID+49),
|
||||
(@EVENT, @OGUID+50),
|
||||
(@EVENT, @OGUID+51),
|
||||
(@EVENT, @OGUID+52),
|
||||
(@EVENT, @OGUID+53),
|
||||
(@EVENT, @OGUID+54),
|
||||
(@EVENT, @OGUID+55),
|
||||
(@EVENT, @OGUID+56),
|
||||
(@EVENT, @OGUID+57),
|
||||
(@EVENT, @OGUID+58),
|
||||
(@EVENT, @OGUID+59),
|
||||
(@EVENT, @OGUID+60),
|
||||
(@EVENT, @OGUID+61),
|
||||
(@EVENT, @OGUID+62),
|
||||
(@EVENT, @OGUID+63),
|
||||
(@EVENT, @OGUID+64),
|
||||
(@EVENT, @OGUID+65);
|
||||
@@ -1,82 +0,0 @@
|
||||
SET @CGUID := 396427;
|
||||
SET @OGUID := 248274;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+3;
|
||||
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, 32823, 0, 12, 87, '0', 0, 0, 0, 0, -9413.91015625, 73.215301513671875, 57.89853286743164062, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Goldshire - Difficulty: 0) (Auras: )
|
||||
(@CGUID+1, 32823, 0, 12, 87, '0', 0, 0, 0, 0, -9423.0107421875, 94.3663177490234375, 57.43033599853515625, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Goldshire - Difficulty: 0) (Auras: )
|
||||
(@CGUID+2, 32823, 0, 12, 87, '0', 0, 0, 0, 0, -9438.5, 28.53300094604492187, 57.8441314697265625, 4.677482128143310546, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Goldshire - Difficulty: 0) (Auras: )
|
||||
(@CGUID+3, 34653, 0, 12, 87, '0', 0, 0, 0, 0, -9422.4501953125, 69.09380340576171875, 57.20043182373046875, 2.076941728591918945, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Table Hostess (Area: Goldshire - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+27;
|
||||
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, 179968, 0, 12, 87, '0', 0, 0, -9422.7802734375, 70.68399810791015625, 57.03300094604492187, 5.218535900115966796, 0, 0, -0.507537841796875, 0.861629426479339599, 120, 255, 1, 46741), -- Haystack 01 (Area: Goldshire - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 0, 12, 87, '0', 0, 0, -9420.51953125, 71.972198486328125, 57.18579864501953125, 5.201082706451416015, 0, 0, -0.51503753662109375, 0.857167601585388183, 120, 255, 1, 46741), -- Haystack 01 (Area: Goldshire - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 0, 12, 87, '0', 0, 0, -9407.8203125, 81.19100189208984375, 57.65449905395507812, 2.146752834320068359, 0, 0, 0.878816604614257812, 0.477159708738327026, 120, 255, 1, 46741), -- Haystack 01 (Area: Goldshire - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 0, 12, 87, '0', 0, 0, -9439.75, 41.62670135498046875, 57.36460113525390625, 0.802850961685180664, 0, 0, 0.390730857849121093, 0.920504987239837646, 120, 255, 1, 46741), -- Haystack 01 (Area: Goldshire - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 0, 12, 87, '0', 0, 0, -9414.599609375, 98.8889007568359375, 58.3227996826171875, 2.286378860473632812, 0, 0, 0.909960746765136718, 0.414694398641586303, 120, 255, 1, 46741), -- Haystack 01 (Area: Goldshire - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 0, 12, 87, '0', 0, 0, -9416.330078125, 97.38719940185546875, 58.1510009765625, 2.268925428390502929, 0, 0, 0.906307220458984375, 0.422619491815567016, 120, 255, 1, 46741), -- Haystack 01 (Area: Goldshire - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 0, 12, 87, '0', 0, 0, -9405.9296875, 82.4582977294921875, 57.74480056762695312, 2.094393253326416015, 0, 0, 0.866024971008300781, 0.50000077486038208, 120, 255, 1, 46741), -- Haystack 01 (Area: Goldshire - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 0, 12, 87, '0', 0, 0, -9441.6201171875, 43.14929962158203125, 57.0269012451171875, 0.855210542678833007, 0, 0, 0.414692878723144531, 0.909961462020874023, 120, 255, 1, 46741), -- Haystack 01 (Area: Goldshire - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 0, 12, 87, '0', 0, 0, -9433.259765625, 34.90449905395507812, 57.12779998779296875, 0.558503925800323486, 0, 0, 0.275636672973632812, 0.961261868476867675, 120, 255, 1, 46741), -- Haystack 01 (Area: Goldshire - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 0, 12, 87, '0', 0, 0, -9434.83984375, 36.9010009765625, 57.23440170288085937, 3.769911527633666992, 0, 0, -0.95105648040771484, 0.309017121791839599, 120, 255, 1, 46741), -- Haystack 01 (Area: Goldshire - Difficulty: 0)
|
||||
(@OGUID+10, 180353, 0, 12, 87, '0', 0, 0, -9421.58984375, 71.465301513671875, 57.105499267578125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Goldshire - Difficulty: 0)
|
||||
(@OGUID+11, 180353, 0, 12, 87, '0', 0, 0, -9406.919921875, 81.9167022705078125, 57.7238006591796875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Goldshire - Difficulty: 0)
|
||||
(@OGUID+12, 180353, 0, 12, 87, '0', 0, 0, -9440.650390625, 42.54510116577148437, 57.18920135498046875, 0.837757468223571777, 0, 0, 0.406736373901367187, 0.913545548915863037, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Goldshire - Difficulty: 0)
|
||||
(@OGUID+13, 180353, 0, 12, 87, '0', 0, 0, -9415.5302734375, 98.1042022705078125, 57.99900054931640625, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Goldshire - Difficulty: 0)
|
||||
(@OGUID+14, 180353, 0, 12, 87, '0', 0, 0, -9433.919921875, 35.96179962158203125, 57.17020034790039062, 4.764749526977539062, 0, 0, -0.6883544921875, 0.725374460220336914, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Goldshire - Difficulty: 0)
|
||||
(@OGUID+15, 195164, 0, 12, 87, '0', 0, 0, -9422.8203125, 70.5885009765625, 57.69390106201171875, 5.410521507263183593, 0, 0, -0.42261791229248046, 0.906307935714721679, 120, 255, 1, 46741), -- Pumpkin (Area: Goldshire - Difficulty: 0)
|
||||
(@OGUID+16, 195164, 0, 12, 87, '0', 0, 0, -9420.650390625, 71.9600982666015625, 57.84780120849609375, 5.305802345275878906, 0, 0, -0.46947097778320312, 0.882947921752929687, 120, 255, 1, 46741), -- Pumpkin (Area: Goldshire - Difficulty: 0)
|
||||
(@OGUID+17, 195164, 0, 12, 87, '0', 0, 0, -9407.7998046875, 81.1457977294921875, 58.33240127563476562, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Goldshire - Difficulty: 0)
|
||||
(@OGUID+18, 195164, 0, 12, 87, '0', 0, 0, -9416.400390625, 97.57289886474609375, 58.79890060424804687, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Pumpkin (Area: Goldshire - Difficulty: 0)
|
||||
(@OGUID+19, 195164, 0, 12, 87, '0', 0, 0, -9405.7900390625, 82.5764007568359375, 58.43539810180664062, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Goldshire - Difficulty: 0)
|
||||
(@OGUID+20, 195164, 0, 12, 87, '0', 0, 0, -9441.6201171875, 43.21879959106445312, 57.67399978637695312, 0.820303261280059814, 0, 0, 0.398748397827148437, 0.917060375213623046, 120, 255, 1, 46741), -- Pumpkin (Area: Goldshire - Difficulty: 0)
|
||||
(@OGUID+21, 195164, 0, 12, 87, '0', 0, 0, -9414.580078125, 98.9792022705078125, 58.9897003173828125, 2.373644113540649414, 0, 0, 0.927183151245117187, 0.37460830807685852, 120, 255, 1, 46741), -- Pumpkin (Area: Goldshire - Difficulty: 0)
|
||||
(@OGUID+22, 195164, 0, 12, 87, '0', 0, 0, -9439.83984375, 41.62329864501953125, 58.028900146484375, 0.767943859100341796, 0, 0, 0.374606132507324218, 0.927184045314788818, 120, 255, 1, 46741), -- Pumpkin (Area: Goldshire - Difficulty: 0)
|
||||
(@OGUID+23, 195164, 0, 12, 87, '0', 0, 0, -9434.8798828125, 36.7985992431640625, 57.855499267578125, 3.717553615570068359, 0, 0, -0.95881938934326171, 0.284016460180282592, 120, 255, 1, 46741), -- Pumpkin (Area: Goldshire - Difficulty: 0)
|
||||
(@OGUID+24, 195164, 0, 12, 87, '0', 0, 0, -9433.2998046875, 34.92010116577148437, 57.74959945678710937, 4.764749526977539062, 0, 0, -0.6883544921875, 0.725374460220336914, 120, 255, 1, 46741), -- Pumpkin (Area: Goldshire - Difficulty: 0)
|
||||
(@OGUID+25, 195664, 0, 12, 87, '0', 0, 0, -9413.91015625, 73.215301513671875, 57.8152008056640625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Goldshire - Difficulty: 0)
|
||||
(@OGUID+26, 195664, 0, 12, 87, '0', 0, 0, -9423.0107421875, 94.3663177490234375, 57.34700393676757812, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Goldshire - Difficulty: 0)
|
||||
(@OGUID+27, 195664, 0, 12, 87, '0', 0, 0, -9438.5, 28.53300094604492187, 57.76079940795898437, 4.677483558654785156, 0, 0, -0.71933937072753906, 0.694658815860748291, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Goldshire - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+3;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1),
|
||||
(@EVENT, @CGUID+2),
|
||||
(@EVENT, @CGUID+3);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+27;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25),
|
||||
(@EVENT, @OGUID+26),
|
||||
(@EVENT, @OGUID+27);
|
||||
@@ -1,188 +0,0 @@
|
||||
SET @CGUID := 396431;
|
||||
SET @OGUID := 248302;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature templates
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60 WHERE `entry`=34644; -- Edward Winslow
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60 WHERE `entry`=34645; -- Elizabeth Barker Winslow
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=10569, `minlevel`=60, `maxlevel`=60 WHERE `entry`=34708; -- Caitrin Ironkettle
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60, `unit_flags`=2147746560 WHERE `entry`=35340; -- Bountiful Barrel
|
||||
|
||||
-- Scaling
|
||||
DELETE FROM `creature_template_scaling` WHERE `DifficultyID`=0 AND `Entry` IN (34644, 34645, 34708, 35340);
|
||||
INSERT INTO `creature_template_scaling` (`Entry`, `DifficultyID`, `LevelScalingDeltaMin`, `LevelScalingDeltaMax`, `ContentTuningID`, `VerifiedBuild`) VALUES
|
||||
(34644, 0, 0, 0, 389, 46741),
|
||||
(34645, 0, 0, 0, 389, 46741),
|
||||
(34708, 0, 0, 0, 389, 46741),
|
||||
(35340, 0, 0, 0, 389, 46741);
|
||||
|
||||
-- Trainer
|
||||
DELETE FROM `creature_trainer` WHERE `CreatureID`=34708;
|
||||
INSERT INTO `creature_trainer` (`CreatureID`, `TrainerID`, `MenuID`, `OptionID`) VALUES
|
||||
(34708, 136, 10569, 0);
|
||||
|
||||
-- Quests
|
||||
UPDATE `quest_poi_points` SET `VerifiedBuild`=46741 WHERE (`QuestID`=14051 AND `Idx1`=1 AND `Idx2`=0) OR (`QuestID`=14051 AND `Idx1`=0 AND `Idx2`=0) OR (`QuestID`=14048 AND `Idx1`=1 AND `Idx2`=0) OR (`QuestID`=14048 AND `Idx1`=0 AND `Idx2`=0);
|
||||
|
||||
UPDATE `quest_details` SET `VerifiedBuild`=46741 WHERE `ID` IN (14051, 14048);
|
||||
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=1 WHERE `ID` IN (14051, 14048);
|
||||
|
||||
UPDATE `creature_queststarter` SET `VerifiedBuild`=46741 WHERE (`id`=34708 AND `quest` IN (14051,14048));
|
||||
|
||||
UPDATE `creature_questender` SET `VerifiedBuild`=46741 WHERE (`id`=34708 AND `quest` IN (14051,14048));
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+9;
|
||||
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, 32823, 0, 1, 809, '0', 0, 0, 0, 0, -5072.61962890625, -797.685791015625, 495.21044921875, 1.047197580337524414, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Gates of Ironforge - Difficulty: 0) (Auras: )
|
||||
(@CGUID+1, 32823, 0, 1, 809, '0', 0, 0, 0, 0, -5093.845703125, -796.42706298828125, 495.21044921875, 0.05235987901687622, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Gates of Ironforge - Difficulty: 0) (Auras: )
|
||||
(@CGUID+2, 32823, 0, 1, 809, '0', 0, 0, 0, 0, -5083.28466796875, -797.29168701171875, 495.297149658203125, 1.762782573699951171, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@CGUID+3, 34644, 0, 1, 809, '0', 0, 0, 0, 1, -5062.74462890625, -791.94097900390625, 495.79791259765625, 0.01745329238474369, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Edward Winslow (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@CGUID+4, 34645, 0, 1, 809, '0', 0, 0, 0, 0, -5062.7587890625, -789.94097900390625, 495.784149169921875, 0.209439516067504882, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Elizabeth Barker Winslow (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@CGUID+5, 34653, 0, 1, 809, '0', 0, 0, 0, 0, -5075.27978515625, -789.80206298828125, 495.37744140625, 6.0737457275390625, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table Hostess (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@CGUID+6, 34708, 0, 1, 809, '0', 0, 0, 0, 1, -5061.73095703125, -803.34552001953125, 495.81610107421875, 1.413716673851013183, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Caitrin Ironkettle (Area: Gates of Ironforge - Difficulty: 0) (Auras: )
|
||||
(@CGUID+7, 35340, 0, 1, 809, '0', 0, 0, 0, 0, -5065.533203125, -789.8524169921875, 495.123382568359375, 3.019419670104980468, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Barrel (Area: Gates of Ironforge - Difficulty: 0) (Auras: )
|
||||
(@CGUID+8, 35340, 0, 1, 809, '0', 0, 0, 0, 0, -5062.578125, -788.59722900390625, 495.062896728515625, 2.0245819091796875, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Barrel (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@CGUID+9, 35340, 0, 1, 809, '0', 0, 0, 0, 0, -5064.38037109375, -788.28125, 495.032012939453125, 3.892084121704101562, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Barrel (Area: Gates of Ironforge - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+59;
|
||||
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, 179968, 0, 1, 809, '0', 0, 0, -5064.15283203125, -791.8663330078125, 495.115875244140625, 3.036838293075561523, 0, 0, 0.998628616333007812, 0.052353221923112869, 120, 255, 1, 46741), -- Haystack 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 0, 1, 809, '0', 0, 0, -5064.564453125, -796.0555419921875, 495.127105712890625, 3.106652259826660156, 0, 0, 0.999847412109375, 0.017469281330704689, 120, 255, 1, 46741), -- Haystack 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 0, 1, 809, '0', 0, 0, -5064.1337890625, -789.92364501953125, 495.076507568359375, 3.106652259826660156, 0, 0, 0.999847412109375, 0.017469281330704689, 120, 255, 1, 46741), -- Haystack 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 0, 1, 809, '0', 0, 0, -5079.015625, -801.65972900390625, 495.127105712890625, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 0, 1, 809, '0', 0, 0, -5064.58349609375, -797.998291015625, 495.127105712890625, 3.036838293075561523, 0, 0, 0.998628616333007812, 0.052353221923112869, 120, 255, 1, 46741), -- Haystack 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 0, 1, 809, '0', 0, 0, -5087.4375, -789.0225830078125, 495.572265625, 4.607671737670898437, 0, 0, -0.74314403533935546, 0.669131457805633544, 120, 255, 1, 46741), -- Haystack 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 0, 1, 809, '0', 0, 0, -5062.921875, -803.07464599609375, 495.127105712890625, 3.036838293075561523, 0, 0, 0.998628616333007812, 0.052353221923112869, 120, 255, 1, 46741), -- Haystack 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 0, 1, 809, '0', 0, 0, -5089.99462890625, -788.8194580078125, 495.42584228515625, 4.555310726165771484, 0, 0, -0.76040554046630859, 0.649448513984680175, 120, 255, 1, 46741), -- Haystack 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 0, 1, 809, '0', 0, 0, -5060.626953125, -803.404541015625, 495.127105712890625, 3.036838293075561523, 0, 0, 0.998628616333007812, 0.052353221923112869, 120, 255, 1, 46741), -- Haystack 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 0, 1, 809, '0', 0, 0, -5078.66162109375, -789.6475830078125, 495.649322509765625, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+10, 179968, 0, 1, 809, '0', 0, 0, -5063.41845703125, -791.953125, 495.124237060546875, 3.036838293075561523, 0, 0, 0.998628616333007812, 0.052353221923112869, 120, 255, 1, 46741), -- Haystack 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+11, 179968, 0, 1, 809, '0', 0, 0, -5062.67724609375, -789.97222900390625, 495.076507568359375, 3.106652259826660156, 0, 0, 0.999847412109375, 0.017469281330704689, 120, 255, 1, 46741), -- Haystack 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+12, 179968, 0, 1, 809, '0', 0, 0, -5076.79150390625, -789.859375, 495.47222900390625, 4.660029888153076171, 0, 0, -0.72537422180175781, 0.688354730606079101, 120, 255, 1, 46741), -- Haystack 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+13, 179968, 0, 1, 809, '0', 0, 0, -5062.673828125, -792.04168701171875, 495.1236572265625, 3.036838293075561523, 0, 0, 0.998628616333007812, 0.052353221923112869, 120, 255, 1, 46741), -- Haystack 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+14, 179968, 0, 1, 809, '0', 0, 0, -5063.41162109375, -789.94964599609375, 495.0826416015625, 3.106652259826660156, 0, 0, 0.999847412109375, 0.017469281330704689, 120, 255, 1, 46741), -- Haystack 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+15, 179968, 0, 1, 809, '0', 0, 0, -5062.126953125, -803.18927001953125, 495.127105712890625, 3.036838293075561523, 0, 0, 0.998628616333007812, 0.052353221923112869, 120, 255, 1, 46741), -- Haystack 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+16, 179968, 0, 1, 809, '0', 0, 0, -5077.21875, -801.61456298828125, 495.127105712890625, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+17, 179968, 0, 1, 809, '0', 0, 0, -5061.3837890625, -803.28302001953125, 495.127105712890625, 3.036838293075561523, 0, 0, 0.998628616333007812, 0.052353221923112869, 120, 255, 1, 46741), -- Haystack 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+18, 179968, 0, 1, 809, '0', 0, 0, -5089.546875, -801.55731201171875, 495.127105712890625, 4.660029888153076171, 0, 0, -0.72537422180175781, 0.688354730606079101, 120, 255, 1, 46741), -- Haystack 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+19, 179968, 0, 1, 809, '0', 0, 0, -5087.671875, -801.560791015625, 495.127105712890625, 1.553341388702392578, 0, 0, 0.700908660888671875, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+20, 179968, 0, 1, 809, '0', 0, 0, -5100.3056640625, -794.28302001953125, 495.31597900390625, 5.986480236053466796, 0, 0, -0.14780902862548828, 0.989015936851501464, 120, 255, 1, 46741), -- Haystack 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+21, 179968, 0, 1, 809, '0', 0, 0, -5100.84716796875, -796.0086669921875, 495.348968505859375, 6.003933906555175781, 0, 0, -0.13917255401611328, 0.990268170833587646, 120, 255, 1, 46741), -- Haystack 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+22, 180353, 0, 1, 809, '0', 0, 0, -5059.5, -806.65972900390625, 495.127349853515625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+23, 180353, 0, 1, 809, '0', 0, 0, -5078.08837890625, -801.765625, 495.127105712890625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+24, 180353, 0, 1, 809, '0', 0, 0, -5064.6005859375, -806.17706298828125, 495.395233154296875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+25, 180353, 0, 1, 809, '0', 0, 0, -5088.4755859375, -788.82989501953125, 495.5167236328125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+26, 180353, 0, 1, 809, '0', 0, 0, -5077.658203125, -789.80902099609375, 495.555572509765625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+27, 180353, 0, 1, 809, '0', 0, 0, -5064.455078125, -796.98614501953125, 495.127105712890625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+28, 180353, 0, 1, 809, '0', 0, 0, -5064.0244140625, -790.85418701171875, 495.108062744140625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+29, 180353, 0, 1, 809, '0', 0, 0, -5100.564453125, -795.11285400390625, 495.40386962890625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+30, 180353, 0, 1, 809, '0', 0, 0, -5088.6875, -801.7117919921875, 495.127105712890625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+31, 195164, 0, 1, 809, '0', 0, 0, -5064.220703125, -791.795166015625, 495.8145751953125, 3.054326534271240234, 0, 0, 0.999048233032226562, 0.043619260191917419, 120, 255, 1, 46741), -- Pumpkin (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+32, 195164, 0, 1, 809, '0', 0, 0, -5079.0712890625, -801.58856201171875, 495.792877197265625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+33, 195164, 0, 1, 809, '0', 0, 0, -5060.69287109375, -805.232666015625, 496.026641845703125, 4.014260292053222656, 0, 0, -0.90630722045898437, 0.422619491815567016, 120, 255, 1, 46741), -- Pumpkin (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+34, 195164, 0, 1, 809, '0', 0, 0, -5064.65087890625, -797.92706298828125, 495.792877197265625, 3.054326534271240234, 0, 0, 0.999048233032226562, 0.043619260191917419, 120, 255, 1, 46741), -- Pumpkin (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+35, 195164, 0, 1, 809, '0', 0, 0, -5087.45654296875, -789.06768798828125, 496.23577880859375, 4.625123500823974609, 0, 0, -0.73727703094482421, 0.67559051513671875, 120, 255, 1, 46741), -- Pumpkin (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+36, 195164, 0, 1, 809, '0', 0, 0, -5064.08154296875, -789.87847900390625, 495.755157470703125, 3.124123096466064453, 0, 0, 0.99996185302734375, 0.008734640665352344, 120, 255, 1, 46741), -- Pumpkin (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+37, 195164, 0, 1, 809, '0', 0, 0, -5076.9287109375, -789.87152099609375, 496.151031494140625, 4.694936752319335937, 0, 0, -0.71325016021728515, 0.700909554958343505, 120, 255, 1, 46741), -- Pumpkin (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+38, 195164, 0, 1, 809, '0', 0, 0, -5064.51220703125, -796.01043701171875, 495.792877197265625, 3.124123096466064453, 0, 0, 0.99996185302734375, 0.008734640665352344, 120, 255, 1, 46741), -- Pumpkin (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+39, 195164, 0, 1, 809, '0', 0, 0, -5078.70166015625, -789.7430419921875, 496.316802978515625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+40, 195164, 0, 1, 809, '0', 0, 0, -5089.8974609375, -788.86456298828125, 496.097320556640625, 4.520402908325195312, 0, 0, -0.77162456512451171, 0.636078238487243652, 120, 255, 1, 46741), -- Pumpkin (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+41, 195164, 0, 1, 809, '0', 0, 0, -5077.35595703125, -801.7586669921875, 495.792877197265625, 1.396261811256408691, 0, 0, 0.642786979675292968, 0.766044974327087402, 120, 255, 1, 46741), -- Pumpkin (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+42, 195164, 0, 1, 809, '0', 0, 0, -5100.20849609375, -794.328125, 495.9366455078125, 5.986480236053466796, 0, 0, -0.14780902862548828, 0.989015936851501464, 120, 255, 1, 46741), -- Pumpkin (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+43, 195164, 0, 1, 809, '0', 0, 0, -5089.63720703125, -801.5850830078125, 495.792877197265625, 4.677483558654785156, 0, 0, -0.71933937072753906, 0.694658815860748291, 120, 255, 1, 46741), -- Pumpkin (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+44, 195164, 0, 1, 809, '0', 0, 0, -5100.75, -796.0538330078125, 495.968048095703125, 6.003933906555175781, 0, 0, -0.13917255401611328, 0.990268170833587646, 120, 255, 1, 46741), -- Pumpkin (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+45, 195164, 0, 1, 809, '0', 0, 0, -5087.533203125, -801.44097900390625, 495.792877197265625, 1.623155713081359863, 0, 0, 0.725374221801757812, 0.688354730606079101, 120, 255, 1, 46741), -- Pumpkin (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+46, 195191, 0, 1, 809, '0', 0, 0, -5062.0869140625, -805.50518798828125, 495.13134765625, 1.518436193466186523, 0, 0, 0.6883544921875, 0.725374460220336914, 120, 255, 1, 46741), -- Dwarven Table Simple 05 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+47, 195192, 0, 1, 809, '0', 0, 0, -5063.34033203125, -804.935791015625, 496.03607177734375, 3.804818391799926757, 0, 0, -0.94551849365234375, 0.325568377971649169, 120, 255, 1, 46741), -- Basket of Corn (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+48, 195194, 0, 1, 809, '0', 0, 0, -5063.56103515625, -805.90106201171875, 496.00592041015625, 3.804818391799926757, 0, 0, -0.94551849365234375, 0.325568377971649169, 120, 255, 1, 46741), -- Small Basket 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+49, 195195, 0, 1, 809, '0', 0, 0, -5060.9912109375, -806.17706298828125, 495.885955810546875, 2.862335443496704101, 0, 0, 0.990267753601074218, 0.139175355434417724, 120, 255, 1, 46741), -- Cranberry Masher (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+50, 195196, 0, 1, 809, '0', 0, 0, -5059.03125, -805.3038330078125, 495.127166748046875, 3.804818391799926757, 0, 0, -0.94551849365234375, 0.325568377971649169, 120, 255, 1, 46741), -- Large Basket 03 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+51, 195197, 0, 1, 809, '0', 0, 0, -5061.283203125, -807.59722900390625, 495.12744140625, 5.096362113952636718, 0, 0, -0.55919265747070312, 0.829037725925445556, 120, 255, 1, 46741), -- Grain Sack 02 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+52, 195198, 0, 1, 809, '0', 0, 0, -5063.8818359375, -807.35418701171875, 495.31494140625, 1.012289404869079589, 0, 0, 0.484808921813964843, 0.87462007999420166, 120, 255, 1, 46741), -- Crate 01 (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+53, 195199, 0, 1, 809, '0', 0, 0, -5062.5380859375, -808.54864501953125, 495.128143310546875, 1.012289404869079589, 0, 0, 0.484808921813964843, 0.87462007999420166, 120, 255, 1, 46741), -- Cranberry Bush (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+54, 195199, 0, 1, 809, '0', 0, 0, -5065.55712890625, -807.85589599609375, 495.19097900390625, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Cranberry Bush (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+55, 195199, 0, 1, 809, '0', 0, 0, -5064.07275390625, -808.83331298828125, 495.128204345703125, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Cranberry Bush (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+56, 195200, 0, 1, 809, '0', 0, 0, -5066.08837890625, -804.046875, 495.11627197265625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pilgrim's Bounty Cooking Fire (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+57, 195664, 0, 1, 809, '0', 0, 0, -5072.6494140625, -797.68927001953125, 495.127105712890625, 1.047197580337524414, 0, 0, 0.5, 0.866025388240814208, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+58, 195664, 0, 1, 809, '0', 0, 0, -5083.3193359375, -797.29168701171875, 495.2149658203125, 1.762782454490661621, 0, 0, 0.771624565124511718, 0.636078238487243652, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Gates of Ironforge - Difficulty: 0)
|
||||
(@OGUID+59, 195664, 0, 1, 809, '0', 0, 0, -5093.87841796875, -796.42364501953125, 495.127105712890625, 0.052358884364366531, 0, 0, 0.02617645263671875, 0.999657332897186279, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Gates of Ironforge - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+9;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1),
|
||||
(@EVENT, @CGUID+2),
|
||||
(@EVENT, @CGUID+3),
|
||||
(@EVENT, @CGUID+4),
|
||||
(@EVENT, @CGUID+5),
|
||||
(@EVENT, @CGUID+6),
|
||||
(@EVENT, @CGUID+7),
|
||||
(@EVENT, @CGUID+8),
|
||||
(@EVENT, @CGUID+9);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+59;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25),
|
||||
(@EVENT, @OGUID+26),
|
||||
(@EVENT, @OGUID+27),
|
||||
(@EVENT, @OGUID+28),
|
||||
(@EVENT, @OGUID+29),
|
||||
(@EVENT, @OGUID+30),
|
||||
(@EVENT, @OGUID+31),
|
||||
(@EVENT, @OGUID+32),
|
||||
(@EVENT, @OGUID+33),
|
||||
(@EVENT, @OGUID+34),
|
||||
(@EVENT, @OGUID+35),
|
||||
(@EVENT, @OGUID+36),
|
||||
(@EVENT, @OGUID+37),
|
||||
(@EVENT, @OGUID+38),
|
||||
(@EVENT, @OGUID+39),
|
||||
(@EVENT, @OGUID+40),
|
||||
(@EVENT, @OGUID+41),
|
||||
(@EVENT, @OGUID+42),
|
||||
(@EVENT, @OGUID+43),
|
||||
(@EVENT, @OGUID+44),
|
||||
(@EVENT, @OGUID+45),
|
||||
(@EVENT, @OGUID+46),
|
||||
(@EVENT, @OGUID+47),
|
||||
(@EVENT, @OGUID+48),
|
||||
(@EVENT, @OGUID+49),
|
||||
(@EVENT, @OGUID+50),
|
||||
(@EVENT, @OGUID+51),
|
||||
(@EVENT, @OGUID+52),
|
||||
(@EVENT, @OGUID+53),
|
||||
(@EVENT, @OGUID+54),
|
||||
(@EVENT, @OGUID+55),
|
||||
(@EVENT, @OGUID+56),
|
||||
(@EVENT, @OGUID+57),
|
||||
(@EVENT, @OGUID+58),
|
||||
(@EVENT, @OGUID+59);
|
||||
@@ -1,122 +0,0 @@
|
||||
SET @CGUID := 396441;
|
||||
SET @OGUID := 248362;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+3;
|
||||
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, 32823, 0, 1, 131, '0', 0, 0, 0, 0, -5615.43603515625, -472.838531494140625, 397.118072509765625, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Kharanos - Difficulty: 0) (Auras: )
|
||||
(@CGUID+1, 32823, 0, 1, 131, '0', 0, 0, 0, 0, -5687.1875, -495.3350830078125, 396.381591796875, 5.916666030883789062, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Kharanos - Difficulty: 0)
|
||||
(@CGUID+2, 32823, 0, 1, 131, '0', 0, 0, 0, 0, -5697.0380859375, -497.515625, 396.72802734375, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Kharanos - Difficulty: 0)
|
||||
(@CGUID+3, 34653, 0, 1, 131, '0', 0, 0, 0, 0, -5619.97900390625, -478.279510498046875, 397.0635986328125, 4.537856101989746093, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Table Hostess (Area: Kharanos - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+47;
|
||||
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, 179968, 0, 1, 131, '0', 0, 0, -5617.85595703125, -477.04339599609375, 396.980255126953125, 1.029743075370788574, 0, 0, 0.492423057556152343, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 0, 1, 131, '0', 0, 0, -5619.13037109375, -475.204864501953125, 396.980255126953125, 3.403396368026733398, 0, 0, -0.99144458770751953, 0.130528271198272705, 120, 255, 1, 46741), -- Haystack 01 (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 0, 1, 131, '0', 0, 0, -5611.64404296875, -478.067718505859375, 396.980255126953125, 1.989672422409057617, 0, 0, 0.838669776916503906, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 0, 1, 131, '0', 0, 0, -5614.29345703125, -478.513885498046875, 396.980255126953125, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 0, 1, 131, '0', 0, 0, -5613.421875, -467.37152099609375, 398.1632080078125, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 0, 1, 131, '0', 0, 0, -5608.890625, -471.6788330078125, 397.21875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 0, 1, 131, '0', 0, 0, -5608.861328125, -474.03472900390625, 397.017364501953125, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 0, 1, 131, '0', 0, 0, -5618.17529296875, -468.51910400390625, 397.560760498046875, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 46741), -- Haystack 01 (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 0, 1, 131, '0', 0, 0, -5620.09033203125, -470.654510498046875, 397.291656494140625, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Haystack 01 (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 0, 1, 131, '0', 0, 0, -5611.33154296875, -467.982635498046875, 398.1475830078125, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Haystack 01 (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+10, 179968, 0, 1, 131, '0', 0, 0, -5678.47021484375, -489.404998779296875, 395.944000244140625, 4.747295856475830078, 0, 0, -0.69465827941894531, 0.719339847564697265, 120, 255, 1, 46741), -- Haystack 01 (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+11, 179968, 0, 1, 131, '0', 0, 0, -5680.8193359375, -489.517364501953125, 396.004852294921875, 1.623155713081359863, 0, 0, 0.725374221801757812, 0.688354730606079101, 120, 255, 1, 46741), -- Haystack 01 (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+12, 179968, 0, 1, 131, '0', 0, 0, -5691.68017578125, -490.0830078125, 396.290985107421875, 1.762782454490661621, 0, 0, 0.771624565124511718, 0.636078238487243652, 120, 255, 1, 46741), -- Haystack 01 (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+13, 179968, 0, 1, 131, '0', 0, 0, -5688.31005859375, -503.707000732421875, 396.311004638671875, 1.658061861991882324, 0, 0, 0.737277030944824218, 0.67559051513671875, 120, 255, 1, 46741), -- Haystack 01 (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+14, 179968, 0, 1, 131, '0', 0, 0, -5693.85986328125, -490.62200927734375, 396.281005859375, 4.904376029968261718, 0, 0, -0.636077880859375, 0.771624863147735595, 120, 255, 1, 46741), -- Haystack 01 (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+15, 179968, 0, 1, 131, '0', 0, 0, -5708.25, -502.625, 396.60699462890625, 2.303830623626708984, 0, 0, 0.913544654846191406, 0.406738430261611938, 120, 255, 1, 46741), -- Haystack 01 (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+16, 179968, 0, 1, 131, '0', 0, 0, -5705.2900390625, -500.06298828125, 396.4110107421875, 2.356194972991943359, 0, 0, 0.923879623413085937, 0.382683247327804565, 120, 255, 1, 46741), -- Haystack 01 (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+17, 179968, 0, 1, 131, '0', 0, 0, -5691.740234375, -504.281005859375, 396.334991455078125, 1.640606880187988281, 0, 0, 0.731352806091308593, 0.6819993257522583, 120, 255, 1, 46741), -- Haystack 01 (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+18, 180353, 0, 1, 131, '0', 0, 0, -5612.84375, -478.260406494140625, 396.980255126953125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+19, 180353, 0, 1, 131, '0', 0, 0, -5618.74658203125, -476.130218505859375, 396.980255126953125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+20, 180353, 0, 1, 131, '0', 0, 0, -5619.390625, -469.427093505859375, 397.40625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+21, 180353, 0, 1, 131, '0', 0, 0, -5608.828125, -472.795135498046875, 397.12847900390625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+22, 180353, 0, 1, 131, '0', 0, 0, -5612.41845703125, -467.532989501953125, 398.23089599609375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+23, 180353, 0, 1, 131, '0', 0, 0, -5679.580078125, -489.506988525390625, 395.967987060546875, 4.747295856475830078, 0, 0, -0.69465827941894531, 0.719339847564697265, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+24, 180353, 0, 1, 131, '0', 0, 0, -5689.85009765625, -504.040008544921875, 396.324005126953125, 0.034906249493360519, 0, 0, 0.017452239990234375, 0.999847710132598876, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+25, 180353, 0, 1, 131, '0', 0, 0, -5692.759765625, -490.332000732421875, 396.2860107421875, 0.174532130360603332, 0, 0, 0.087155342102050781, 0.996194720268249511, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+26, 180353, 0, 1, 131, '0', 0, 0, -5706.7001953125, -501.343994140625, 396.3179931640625, 0.715584874153137207, 0, 0, 0.350207328796386718, 0.936672210693359375, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+27, 195164, 0, 1, 131, '0', 0, 0, -5617.923828125, -476.97222900390625, 397.641998291015625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+28, 195164, 0, 1, 131, '0', 0, 0, -5614.34912109375, -478.442718505859375, 397.641998291015625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+29, 195164, 0, 1, 131, '0', 0, 0, -5619.078125, -475.161468505859375, 397.641998291015625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+30, 195164, 0, 1, 131, '0', 0, 0, -5608.99853515625, -474.1788330078125, 397.654815673828125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+31, 195164, 0, 1, 131, '0', 0, 0, -5611.46875, -467.994781494140625, 398.8006591796875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+32, 195164, 0, 1, 131, '0', 0, 0, -5618.1943359375, -468.564239501953125, 398.21209716796875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+33, 195164, 0, 1, 131, '0', 0, 0, -5619.9931640625, -470.69964599609375, 397.94647216796875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+34, 195164, 0, 1, 131, '0', 0, 0, -5613.4619140625, -467.467010498046875, 398.788482666015625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+35, 195164, 0, 1, 131, '0', 0, 0, -5608.98095703125, -471.70660400390625, 397.871826171875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+36, 195164, 0, 1, 131, '0', 0, 0, -5611.50537109375, -477.947906494140625, 397.641998291015625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+37, 195164, 0, 1, 131, '0', 0, 0, -5678.5, -489.313995361328125, 396.634002685546875, 4.747295856475830078, 0, 0, -0.69465827941894531, 0.719339847564697265, 120, 255, 1, 46741), -- Pumpkin (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+38, 195164, 0, 1, 131, '0', 0, 0, -5680.96875, -489.385406494140625, 396.6871337890625, 4.747295856475830078, 0, 0, -0.69465827941894531, 0.719339847564697265, 120, 255, 1, 46741), -- Pumpkin (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+39, 195164, 0, 1, 131, '0', 0, 0, -5691.60009765625, -489.959991455078125, 396.990997314453125, 0.174532130360603332, 0, 0, 0.087155342102050781, 0.996194720268249511, 120, 255, 1, 46741), -- Pumpkin (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+40, 195164, 0, 1, 131, '0', 0, 0, -5688.2099609375, -503.670013427734375, 396.97698974609375, 1.710421562194824218, 0, 0, 0.754709243774414062, 0.656059443950653076, 120, 255, 1, 46741), -- Pumpkin (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+41, 195164, 0, 1, 131, '0', 0, 0, -5691.68994140625, -504.302001953125, 397.00201416015625, 1.710421562194824218, 0, 0, 0.754709243774414062, 0.656059443950653076, 120, 255, 1, 46741), -- Pumpkin (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+42, 195164, 0, 1, 131, '0', 0, 0, -5708.14990234375, -502.566009521484375, 397.26300048828125, 2.373644113540649414, 0, 0, 0.927183151245117187, 0.37460830807685852, 120, 255, 1, 46741), -- Pumpkin (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+43, 195164, 0, 1, 131, '0', 0, 0, -5705.18017578125, -500.12200927734375, 397.121002197265625, 2.373644113540649414, 0, 0, 0.927183151245117187, 0.37460830807685852, 120, 255, 1, 46741), -- Pumpkin (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+44, 195164, 0, 1, 131, '0', 0, 0, -5693.97998046875, -490.572998046875, 396.97698974609375, 0.174532130360603332, 0, 0, 0.087155342102050781, 0.996194720268249511, 120, 255, 1, 46741), -- Pumpkin (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+45, 195664, 0, 1, 131, '0', 0, 0, -5615.43994140625, -472.8389892578125, 397.035003662109375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+46, 195664, 0, 1, 131, '0', 0, 0, -5687.1875, -495.3350830078125, 396.298248291015625, 5.916667938232421875, 0, 0, -0.18223476409912109, 0.98325502872467041, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Kharanos - Difficulty: 0)
|
||||
(@OGUID+47, 195664, 0, 1, 131, '0', 0, 0, -5697.0380859375, -497.515625, 396.624176025390625, 0, 0, 0, 0, 1, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Kharanos - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+3;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1),
|
||||
(@EVENT, @CGUID+2),
|
||||
(@EVENT, @CGUID+3);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+47;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25),
|
||||
(@EVENT, @OGUID+26),
|
||||
(@EVENT, @OGUID+27),
|
||||
(@EVENT, @OGUID+28),
|
||||
(@EVENT, @OGUID+29),
|
||||
(@EVENT, @OGUID+30),
|
||||
(@EVENT, @OGUID+31),
|
||||
(@EVENT, @OGUID+32),
|
||||
(@EVENT, @OGUID+33),
|
||||
(@EVENT, @OGUID+34),
|
||||
(@EVENT, @OGUID+35),
|
||||
(@EVENT, @OGUID+36),
|
||||
(@EVENT, @OGUID+37),
|
||||
(@EVENT, @OGUID+38),
|
||||
(@EVENT, @OGUID+39),
|
||||
(@EVENT, @OGUID+40),
|
||||
(@EVENT, @OGUID+41),
|
||||
(@EVENT, @OGUID+42),
|
||||
(@EVENT, @OGUID+43),
|
||||
(@EVENT, @OGUID+44),
|
||||
(@EVENT, @OGUID+45),
|
||||
(@EVENT, @OGUID+46),
|
||||
(@EVENT, @OGUID+47);
|
||||
@@ -1,190 +0,0 @@
|
||||
SET @CGUID := 396445;
|
||||
SET @OGUID := 248410;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature templates
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60 WHERE `entry`=34676; -- Isaac Allerton
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60 WHERE `entry`=34681; -- Ikaneba Summerset
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=10569, `minlevel`=60, `maxlevel`=60 WHERE `entry`=34711; -- Mary Allerton
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60, `unit_flags`=2147746560 WHERE `entry`=35338; -- Bountiful Barrel
|
||||
|
||||
-- Scaling
|
||||
DELETE FROM `creature_template_scaling` WHERE `DifficultyID`=0 AND `Entry` IN (34676, 34681, 34711, 35338);
|
||||
INSERT INTO `creature_template_scaling` (`Entry`, `DifficultyID`, `LevelScalingDeltaMin`, `LevelScalingDeltaMax`, `ContentTuningID`, `VerifiedBuild`) VALUES
|
||||
(34676, 0, 0, 0, 389, 46741),
|
||||
(34681, 0, 0, 0, 389, 46741),
|
||||
(34711, 0, 0, 0, 389, 46741),
|
||||
(35338, 0, 0, 0, 389, 46741);
|
||||
|
||||
-- Trainer
|
||||
DELETE FROM `creature_trainer` WHERE `CreatureID`=34711;
|
||||
INSERT INTO `creature_trainer` (`CreatureID`, `TrainerID`, `MenuID`, `OptionID`) VALUES
|
||||
(34711, 136, 10569, 0);
|
||||
|
||||
-- Quests
|
||||
UPDATE `quest_poi` SET `VerifiedBuild`=46741 WHERE (`QuestID`=14054 AND `BlobIndex`=1 AND `Idx1`=2) OR (`QuestID`=14054 AND `BlobIndex`=0 AND `Idx1`=1) OR (`QuestID`=14054 AND `BlobIndex`=0 AND `Idx1`=0);
|
||||
|
||||
DELETE FROM `quest_details` WHERE `ID`=14054;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(14054, 1, 1, 0, 0, 0, 0, 0, 0, 46741); -- Easy As Pie
|
||||
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=1 WHERE `ID`=14054;
|
||||
|
||||
UPDATE `creature_queststarter` SET `VerifiedBuild`=46741 WHERE (`id`=34711 AND `quest`=14054);
|
||||
|
||||
UPDATE `creature_questender` SET `VerifiedBuild`=46741 WHERE (`id`=34711 AND `quest`=14054);
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+10;
|
||||
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, 32823, 1, 1657, 1657, '0', 0, 0, 0, 0, 9969.5810546875, 2219.484375, 1329.6641845703125, 1.274090290069580078, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Darnassus - Difficulty: 0)
|
||||
(@CGUID+1, 32823, 1, 1657, 1657, '0', 0, 0, 0, 0, 9967.9287109375, 2202.5400390625, 1328.907470703125, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Darnassus - Difficulty: 0)
|
||||
(@CGUID+2, 32823, 1, 1657, 1657, '0', 0, 0, 0, 0, 9984.1142578125, 2219.63720703125, 1328.7196044921875, 2.042035102844238281, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Darnassus - Difficulty: 0) (Auras: )
|
||||
(@CGUID+3, 32823, 1, 1657, 1657, '0', 0, 0, 0, 0, 9983.890625, 2202.319580078125, 1328.6611328125, 2.042035102844238281, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Darnassus - Difficulty: 0) (Auras: )
|
||||
(@CGUID+4, 34653, 1, 1657, 1657, '0', 0, 0, 0, 0, 9975.640625, 2211.302001953125, 1329.3121337890625, 3.106686115264892578, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table Hostess (Area: Darnassus - Difficulty: 0)
|
||||
(@CGUID+5, 34676, 1, 1657, 1657, '0', 0, 0, 0, 1, 9960.447265625, 2241.05029296875, 1333.9410400390625, 3.228859186172485351, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Isaac Allerton (Area: Darnassus - Difficulty: 0)
|
||||
(@CGUID+6, 34681, 1, 1657, 1657, '0', 0, 0, 0, 0, 9960.2060546875, 2238.427001953125, 1333.58349609375, 2.984513044357299804, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Ikaneba Summerset (Area: Darnassus - Difficulty: 0)
|
||||
(@CGUID+7, 34711, 1, 1657, 1657, '0', 0, 0, 0, 1, 9990.419921875, 2234.536376953125, 1331.2042236328125, 3.159045934677124023, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Mary Allerton (Area: Darnassus - Difficulty: 0) (Auras: )
|
||||
(@CGUID+8, 35338, 1, 1657, 1657, '0', 0, 0, 0, 0, 9960.31640625, 2236.973876953125, 1332.883056640625, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Barrel (Area: Darnassus - Difficulty: 0)
|
||||
(@CGUID+9, 35338, 1, 1657, 1657, '0', 0, 0, 0, 0, 9961.9775390625, 2236.779541015625, 1332.889892578125, 3.385938644409179687, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Barrel (Area: Darnassus - Difficulty: 0)
|
||||
(@CGUID+10, 35338, 1, 1657, 1657, '0', 0, 0, 0, 0, 9962.9033203125, 2238.0556640625, 1333.0186767578125, 4.764749050140380859, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Barrel (Area: Darnassus - Difficulty: 0) (Auras: )
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+58;
|
||||
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, 179968, 1, 1657, 1657, '0', 0, 0, 9961.5888671875, 2238.329833984375, 1332.903076171875, 3.106652259826660156, 0, 0, 0.999847412109375, 0.017469281330704689, 120, 255, 1, 46741), -- Haystack 01 (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 1, 1657, 1657, '0', 0, 0, 9960.8095703125, 2238.375, 1332.8931884765625, 3.106652259826660156, 0, 0, 0.999847412109375, 0.017469281330704689, 120, 255, 1, 46741), -- Haystack 01 (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 1, 1657, 1657, '0', 0, 0, 9992.2255859375, 2213.4619140625, 1328.2369384765625, 0.017452461645007133, 0, 0, 0.008726119995117187, 0.999961912631988525, 120, 255, 1, 46741), -- Haystack 01 (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 1, 1657, 1657, '0', 0, 0, 9960.125, 2241.038330078125, 1333.27783203125, 6.230826377868652343, 0, 0, -0.02617645263671875, 0.999657332897186279, 120, 255, 1, 46741), -- Haystack 01 (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 1, 1657, 1657, '0', 0, 0, 9977.4912109375, 2228.904541015625, 1329.3697509765625, 4.712389945983886718, 0, 0, -0.70710659027099609, 0.707106947898864746, 120, 255, 1, 46741), -- Haystack 01 (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 1, 1657, 1657, '0', 0, 0, 9976.6728515625, 2195.81591796875, 1328.9478759765625, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 1, 1657, 1657, '0', 0, 0, 9990.234375, 2234.6962890625, 1330.4951171875, 6.230826377868652343, 0, 0, -0.02617645263671875, 0.999657332897186279, 120, 255, 1, 46741), -- Haystack 01 (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 1, 1657, 1657, '0', 0, 0, 9959.9130859375, 2213.0556640625, 1329.4652099609375, 6.230826377868652343, 0, 0, -0.02617645263671875, 0.999657332897186279, 120, 255, 1, 46741), -- Haystack 01 (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 1, 1657, 1657, '0', 0, 0, 9960.0908203125, 2238.420166015625, 1332.8853759765625, 3.106652259826660156, 0, 0, 0.999847412109375, 0.017469281330704689, 120, 255, 1, 46741), -- Haystack 01 (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 1, 1657, 1657, '0', 0, 0, 9960.0888671875, 2209.89404296875, 1329.0875244140625, 3.176533222198486328, 0, 0, -0.999847412109375, 0.017469281330704689, 120, 255, 1, 46741), -- Haystack 01 (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+10, 179968, 1, 1657, 1657, '0', 0, 0, 9974.400390625, 2195.692626953125, 1328.934326171875, 4.712389945983886718, 0, 0, -0.70710659027099609, 0.707106947898864746, 120, 255, 1, 46741), -- Haystack 01 (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+11, 179968, 1, 1657, 1657, '0', 0, 0, 9961.6220703125, 2240.947998046875, 1333.232421875, 6.230826377868652343, 0, 0, -0.02617645263671875, 0.999657332897186279, 120, 255, 1, 46741), -- Haystack 01 (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+12, 179968, 1, 1657, 1657, '0', 0, 0, 9975.4287109375, 2229.036376953125, 1329.484375, 1.588248729705810546, 0, 0, 0.713250160217285156, 0.700909554958343505, 120, 255, 1, 46741), -- Haystack 01 (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+13, 179968, 1, 1657, 1657, '0', 0, 0, 9992.1123046875, 2210.3056640625, 1328.140625, 0.017452461645007133, 0, 0, 0.008726119995117187, 0.999961912631988525, 120, 255, 1, 46741), -- Haystack 01 (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+14, 179968, 1, 1657, 1657, '0', 0, 0, 9990.294921875, 2235.880126953125, 1330.4976806640625, 6.230826377868652343, 0, 0, -0.02617645263671875, 0.999657332897186279, 120, 255, 1, 46741), -- Haystack 01 (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+15, 179968, 1, 1657, 1657, '0', 0, 0, 9960.84375, 2240.9931640625, 1333.2552490234375, 6.230826377868652343, 0, 0, -0.02617645263671875, 0.999657332897186279, 120, 255, 1, 46741), -- Haystack 01 (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+16, 179968, 1, 1657, 1657, '0', 0, 0, 9990.2861328125, 2233.522705078125, 1330.47705078125, 3.176533222198486328, 0, 0, -0.999847412109375, 0.017469281330704689, 120, 255, 1, 46741), -- Haystack 01 (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+17, 179968, 1, 1657, 1657, '0', 0, 0, 9961.3994140625, 2195.057373046875, 1328.15625, 3.106652259826660156, 0, 0, 0.999847412109375, 0.017469281330704689, 120, 255, 1, 46741), -- Haystack 01 (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+18, 179968, 1, 1657, 1657, '0', 0, 0, 9961.1728515625, 2192.432373046875, 1328.2525634765625, 0.017452461645007133, 0, 0, 0.008726119995117187, 0.999961912631988525, 120, 255, 1, 46741), -- Haystack 01 (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+19, 180353, 1, 1657, 1657, '0', 0, 0, 9992.49609375, 2212.013916015625, 1328.1802978515625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+20, 180353, 1, 1657, 1657, '0', 0, 0, 9961.55078125, 2239.6806640625, 1333.0538330078125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+21, 180353, 1, 1657, 1657, '0', 0, 0, 9959.984375, 2211.553955078125, 1329.2899169921875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+22, 180353, 1, 1657, 1657, '0', 0, 0, 9976.45703125, 2228.854248046875, 1329.4097900390625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+23, 180353, 1, 1657, 1657, '0', 0, 0, 9994.2041015625, 2228.501708984375, 1329.9305419921875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+24, 180353, 1, 1657, 1657, '0', 0, 0, 9993.8330078125, 2238.109375, 1330.4830322265625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+25, 180353, 1, 1657, 1657, '0', 0, 0, 9961.2802734375, 2193.795166015625, 1328.2022705078125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+26, 180353, 1, 1657, 1657, '0', 0, 0, 9975.4365234375, 2195.723876953125, 1328.94873046875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+27, 195164, 1, 1657, 1657, '0', 0, 0, 9992.205078125, 2213.416748046875, 1328.8983154296875, 0.034906249493360519, 0, 0, 0.017452239990234375, 0.999847710132598876, 120, 255, 1, 46741), -- Pumpkin (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+28, 195164, 1, 1657, 1657, '0', 0, 0, 9974.3427734375, 2195.763916015625, 1329.5924072265625, 4.764749526977539062, 0, 0, -0.6883544921875, 0.725374460220336914, 120, 255, 1, 46741), -- Pumpkin (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+29, 195164, 1, 1657, 1657, '0', 0, 0, 9959.8505859375, 2213.013916015625, 1330.1253662109375, 6.248279094696044921, 0, 0, -0.01745223999023437, 0.999847710132598876, 120, 255, 1, 46741), -- Pumpkin (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+30, 195164, 1, 1657, 1657, '0', 0, 0, 9975.5244140625, 2228.991455078125, 1330.1357421875, 1.675513744354248046, 0, 0, 0.743144035339355468, 0.669131457805633544, 120, 255, 1, 46741), -- Pumpkin (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+31, 195164, 1, 1657, 1657, '0', 0, 0, 9961.4541015625, 2238.185791015625, 1333.5587158203125, 1.570795774459838867, 0, 0, 0.707106590270996093, 0.707106947898864746, 120, 255, 1, 46741), -- Pumpkin (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+32, 195164, 1, 1657, 1657, '0', 0, 0, 9961.5654296875, 2241.01904296875, 1333.9119873046875, 6.230826377868652343, 0, 0, -0.02617645263671875, 0.999657332897186279, 120, 255, 1, 46741), -- Pumpkin (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+33, 195164, 1, 1657, 1657, '0', 0, 0, 9977.5888671875, 2228.859375, 1330.01953125, 4.607671737670898437, 0, 0, -0.74314403533935546, 0.669131457805633544, 120, 255, 1, 46741), -- Pumpkin (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+34, 195164, 1, 1657, 1657, '0', 0, 0, 9976.537109375, 2195.671875, 1329.6131591796875, 4.904376029968261718, 0, 0, -0.636077880859375, 0.771624863147735595, 120, 255, 1, 46741), -- Pumpkin (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+35, 195164, 1, 1657, 1657, '0', 0, 0, 9961.1328125, 2192.3369140625, 1328.9117431640625, 0.017452461645007133, 0, 0, 0.008726119995117187, 0.999961912631988525, 120, 255, 1, 46741), -- Pumpkin (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+36, 195164, 1, 1657, 1657, '0', 0, 0, 9992.208984375, 2210.260498046875, 1328.7969970703125, 0.017452461645007133, 0, 0, 0.008726119995117187, 0.999961912631988525, 120, 255, 1, 46741), -- Pumpkin (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+37, 195164, 1, 1657, 1657, '0', 0, 0, 9992.7412109375, 2233.30029296875, 1331.1549072265625, 6.178466320037841796, 0, 0, -0.05233573913574218, 0.998629570007324218, 120, 255, 1, 46741), -- Pumpkin (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+38, 195164, 1, 1657, 1657, '0', 0, 0, 9960.140625, 2209.939208984375, 1329.7520751953125, 3.194002151489257812, 0, 0, -0.99965667724609375, 0.026201646775007247, 120, 255, 1, 46741), -- Pumpkin (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+39, 195164, 1, 1657, 1657, '0', 0, 0, 9961.2626953125, 2195.045166015625, 1328.8111572265625, 3.089183330535888671, 0, 0, 0.99965667724609375, 0.026201646775007247, 120, 255, 1, 46741), -- Pumpkin (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+40, 195191, 1, 1657, 1657, '0', 0, 0, 9992.783203125, 2234.6650390625, 1330.3138427734375, 3.159062385559082031, 0, 0, -0.99996185302734375, 0.008734640665352344, 120, 255, 1, 46741), -- Dwarven Table Simple 05 (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+41, 195192, 1, 1657, 1657, '0', 0, 0, 9993.0810546875, 2235.944580078125, 1331.2213134765625, 5.777040958404541015, 0, 0, -0.25037956237792968, 0.968147754669189453, 120, 255, 1, 46741), -- Basket of Corn (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+42, 195194, 1, 1657, 1657, '0', 0, 0, 9992.1640625, 2235.94091796875, 1331.2017822265625, 3.804818391799926757, 0, 0, -0.94551849365234375, 0.325568377971649169, 120, 255, 1, 46741), -- Small Basket 01 (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+43, 195195, 1, 1657, 1657, '0', 0, 0, 9993.162109375, 2233.248291015625, 1331.1094970703125, 3.298687219619750976, 0, 0, -0.99691677093505859, 0.078466430306434631, 120, 255, 1, 46741), -- Cranberry Masher (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+44, 195196, 1, 1657, 1657, '0', 0, 0, 9991.75390625, 2237.9619140625, 1330.768310546875, 3.804818391799926757, 0, 0, -0.94551849365234375, 0.325568377971649169, 120, 255, 1, 46741), -- Large Basket 03 (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+45, 195197, 1, 1657, 1657, '0', 0, 0, 9996.41796875, 2231.651123046875, 1330.16943359375, 3.9793548583984375, 0, 0, -0.9135446548461914, 0.406738430261611938, 120, 255, 1, 46741), -- Grain Sack 02 (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+46, 195198, 1, 1657, 1657, '0', 0, 0, 9994.83203125, 2232.52783203125, 1330.235595703125, 5.811946868896484375, 0, 0, -0.2334451675415039, 0.972369968891143798, 120, 255, 1, 46741), -- Crate 01 (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+47, 195200, 1, 1657, 1657, '0', 0, 0, 9993.107421875, 2230.94091796875, 1330.155029296875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pilgrim's Bounty Cooking Fire (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+48, 195215, 1, 1657, 1657, '0', 0, 0, 9995.3701171875, 2236.9462890625, 1330.28955078125, 6.108653545379638671, 0, 0, -0.08715534210205078, 0.996194720268249511, 120, 255, 1, 46741), -- Sweet Potato (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+49, 195215, 1, 1657, 1657, '0', 0, 0, 9995.5185546875, 2236.3681640625, 1330.2763671875, 0.349065244197845458, 0, 0, 0.173647880554199218, 0.984807789325714111, 120, 255, 1, 46741), -- Sweet Potato (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+50, 195215, 1, 1657, 1657, '0', 0, 0, 9995.1123046875, 2235.96875, 1330.3131103515625, 0.820303261280059814, 0, 0, 0.398748397827148437, 0.917060375213623046, 120, 255, 1, 46741), -- Sweet Potato (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+51, 195215, 1, 1657, 1657, '0', 0, 0, 9994.9736328125, 2236.232666015625, 1330.32568359375, 0.855210542678833007, 0, 0, 0.414692878723144531, 0.909961462020874023, 120, 255, 1, 46741), -- Sweet Potato (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+52, 195215, 1, 1657, 1657, '0', 0, 0, 9994.8544921875, 2236.458251953125, 1330.3363037109375, 1.937312245368957519, 0, 0, 0.824125289916992187, 0.566407561302185058, 120, 255, 1, 46741), -- Sweet Potato (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+53, 195215, 1, 1657, 1657, '0', 0, 0, 9995.5263671875, 2236.6181640625, 1330.275634765625, 1.937312245368957519, 0, 0, 0.824125289916992187, 0.566407561302185058, 120, 255, 1, 46741), -- Sweet Potato (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+54, 195215, 1, 1657, 1657, '0', 0, 0, 9994.9951171875, 2236.710205078125, 1330.2353515625, 6.195919513702392578, 0, 0, -0.04361915588378906, 0.999048233032226562, 120, 255, 1, 46741), -- Sweet Potato (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+55, 195664, 1, 1657, 1657, '0', 0, 0, 9983.8896484375, 2202.320068359375, 1328.5799560546875, 2.042035102844238281, 0, 0, 0.852640151977539062, 0.522498607635498046, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+56, 195664, 1, 1657, 1657, '0', 0, 0, 9984.1103515625, 2219.639892578125, 1328.6400146484375, 2.042035102844238281, 0, 0, 0.852640151977539062, 0.522498607635498046, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+57, 195664, 1, 1657, 1657, '0', 0, 0, 9969.580078125, 2219.47998046875, 1329.5799560546875, 1.274088263511657714, 0, 0, 0.594821929931640625, 0.80385744571685791, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Darnassus - Difficulty: 0)
|
||||
(@OGUID+58, 195664, 1, 1657, 1657, '0', 0, 0, 9967.9296875, 2202.5400390625, 1328.8199462890625, 0, 0, 0, 0, 1, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Darnassus - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+10;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1),
|
||||
(@EVENT, @CGUID+2),
|
||||
(@EVENT, @CGUID+3),
|
||||
(@EVENT, @CGUID+4),
|
||||
(@EVENT, @CGUID+5),
|
||||
(@EVENT, @CGUID+6),
|
||||
(@EVENT, @CGUID+7),
|
||||
(@EVENT, @CGUID+8),
|
||||
(@EVENT, @CGUID+9),
|
||||
(@EVENT, @CGUID+10);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+58;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25),
|
||||
(@EVENT, @OGUID+26),
|
||||
(@EVENT, @OGUID+27),
|
||||
(@EVENT, @OGUID+28),
|
||||
(@EVENT, @OGUID+29),
|
||||
(@EVENT, @OGUID+30),
|
||||
(@EVENT, @OGUID+31),
|
||||
(@EVENT, @OGUID+32),
|
||||
(@EVENT, @OGUID+33),
|
||||
(@EVENT, @OGUID+34),
|
||||
(@EVENT, @OGUID+35),
|
||||
(@EVENT, @OGUID+36),
|
||||
(@EVENT, @OGUID+37),
|
||||
(@EVENT, @OGUID+38),
|
||||
(@EVENT, @OGUID+39),
|
||||
(@EVENT, @OGUID+40),
|
||||
(@EVENT, @OGUID+41),
|
||||
(@EVENT, @OGUID+42),
|
||||
(@EVENT, @OGUID+43),
|
||||
(@EVENT, @OGUID+44),
|
||||
(@EVENT, @OGUID+45),
|
||||
(@EVENT, @OGUID+46),
|
||||
(@EVENT, @OGUID+47),
|
||||
(@EVENT, @OGUID+48),
|
||||
(@EVENT, @OGUID+49),
|
||||
(@EVENT, @OGUID+50),
|
||||
(@EVENT, @OGUID+51),
|
||||
(@EVENT, @OGUID+52),
|
||||
(@EVENT, @OGUID+53),
|
||||
(@EVENT, @OGUID+54),
|
||||
(@EVENT, @OGUID+55),
|
||||
(@EVENT, @OGUID+56),
|
||||
(@EVENT, @OGUID+57),
|
||||
(@EVENT, @OGUID+58);
|
||||
@@ -1,128 +0,0 @@
|
||||
SET @CGUID := 396456;
|
||||
SET @OGUID := 248469;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+2;
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `PhaseGroup`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES
|
||||
(@CGUID+0, 32823, 1, 141, 186, '0', 0, 0, 0, 0, 9848.1533203125, 940.576416015625, 1307.310546875, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Dolanaar - Difficulty: 0)
|
||||
(@CGUID+1, 32823, 1, 141, 186, '0', 0, 0, 0, 0, 9898.7958984375, 944.94097900390625, 1312.765625, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Dolanaar - Difficulty: 0)
|
||||
(@CGUID+2, 34653, 1, 141, 186, '0', 0, 0, 0, 0, 9850.5693359375, 947.52606201171875, 1307.8408203125, 0.680678427219390869, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Table Hostess (Area: Dolanaar - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+51;
|
||||
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, 179968, 1, 141, 186, '0', 0, 0, 9905.0595703125, 945.7725830078125, 1313.185791015625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 1, 141, 186, '0', 0, 0, 9894.5029296875, 947.484375, 1312.4947509765625, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Haystack 01 (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 1, 141, 186, '0', 0, 0, 9851.9111328125, 945.62847900390625, 1307.57470703125, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Haystack 01 (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 1, 141, 186, '0', 0, 0, 9902.5966796875, 950.0225830078125, 1312.97265625, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Haystack 01 (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 1, 141, 186, '0', 0, 0, 9854.2099609375, 939.81597900390625, 1307.8663330078125, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 1, 141, 186, '0', 0, 0, 9904.8955078125, 944.2100830078125, 1313.1441650390625, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 1, 141, 186, '0', 0, 0, 9844.4619140625, 938.2117919921875, 1306.9791259765625, 3.403396368026733398, 0, 0, -0.99144458770751953, 0.130528271198272705, 120, 255, 1, 46741), -- Haystack 01 (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 1, 141, 186, '0', 0, 0, 9896.193359375, 941.10589599609375, 1312.6258544921875, 1.029743075370788574, 0, 0, 0.492423057556152343, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 1, 141, 186, '0', 0, 0, 9843.8173828125, 943.09027099609375, 1307.204833984375, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Haystack 01 (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 1, 141, 186, '0', 0, 0, 9844.8974609375, 944.43402099609375, 1307.453125, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 46741), -- Haystack 01 (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+10, 179968, 1, 141, 186, '0', 0, 0, 9854.375, 941.37847900390625, 1307.79345703125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+11, 179968, 1, 141, 186, '0', 0, 0, 9850.3818359375, 946.03472900390625, 1307.640625, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+12, 179968, 1, 141, 186, '0', 0, 0, 9895.5830078125, 948.828125, 1312.5850830078125, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 46741), -- Haystack 01 (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+13, 179968, 1, 141, 186, '0', 0, 0, 9849.90625, 935.03472900390625, 1307.546875, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+14, 179968, 1, 141, 186, '0', 0, 0, 9902.2314453125, 939.9149169921875, 1312.9202880859375, 1.989672422409057617, 0, 0, 0.838669776916503906, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+15, 179968, 1, 141, 186, '0', 0, 0, 9845.5087890625, 936.7117919921875, 1307.0260009765625, 1.029743075370788574, 0, 0, 0.492423057556152343, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+16, 179968, 1, 141, 186, '0', 0, 0, 9895.146484375, 942.60589599609375, 1312.548583984375, 3.403396368026733398, 0, 0, -0.99144458770751953, 0.130528271198272705, 120, 255, 1, 46741), -- Haystack 01 (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+17, 179968, 1, 141, 186, '0', 0, 0, 9851.546875, 935.52081298828125, 1307.8021240234375, 1.989672422409057617, 0, 0, 0.838669776916503906, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+18, 179968, 1, 141, 186, '0', 0, 0, 9901.0673828125, 950.4288330078125, 1312.8994140625, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+19, 179968, 1, 141, 186, '0', 0, 0, 9900.5908203125, 939.4288330078125, 1312.7974853515625, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+20, 180353, 1, 141, 186, '0', 0, 0, 9901.85546875, 950.279541015625, 1312.9337158203125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+21, 180353, 1, 141, 186, '0', 0, 0, 9844.1455078125, 943.92706298828125, 1307.329833984375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+22, 180353, 1, 141, 186, '0', 0, 0, 9905.0478515625, 944.98785400390625, 1313.170166015625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+23, 180353, 1, 141, 186, '0', 0, 0, 9894.8310546875, 948.3211669921875, 1312.5086669921875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+24, 180353, 1, 141, 186, '0', 0, 0, 9895.5263671875, 941.68231201171875, 1312.5797119140625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+25, 180353, 1, 141, 186, '0', 0, 0, 9844.8408203125, 937.2882080078125, 1306.9703369140625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+26, 180353, 1, 141, 186, '0', 0, 0, 9850.7431640625, 935.15625, 1307.6754150390625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+27, 180353, 1, 141, 186, '0', 0, 0, 9901.427734375, 939.55035400390625, 1312.8619384765625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+28, 180353, 1, 141, 186, '0', 0, 0, 9851.169921875, 945.88543701171875, 1307.6007080078125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+29, 180353, 1, 141, 186, '0', 0, 0, 9854.36328125, 940.59375, 1307.8350830078125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+30, 195164, 1, 141, 186, '0', 0, 0, 9895.1953125, 942.65106201171875, 1313.26220703125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+31, 195164, 1, 141, 186, '0', 0, 0, 9904.9658203125, 945.74481201171875, 1313.873291015625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+32, 195164, 1, 141, 186, '0', 0, 0, 9854.28125, 941.3507080078125, 1308.4913330078125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+33, 195164, 1, 141, 186, '0', 0, 0, 9900.5439453125, 939.498291015625, 1313.5010986328125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+34, 195164, 1, 141, 186, '0', 0, 0, 9894.599609375, 947.43927001953125, 1313.208984375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+35, 195164, 1, 141, 186, '0', 0, 0, 9850.3408203125, 945.94097900390625, 1308.34033203125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+36, 195164, 1, 141, 186, '0', 0, 0, 9896.1240234375, 941.17535400390625, 1313.328857421875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+37, 195164, 1, 141, 186, '0', 0, 0, 9851.8486328125, 945.64581298828125, 1308.27783203125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+38, 195164, 1, 141, 186, '0', 0, 0, 9844.5107421875, 938.2569580078125, 1307.6900634765625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+39, 195164, 1, 141, 186, '0', 0, 0, 9849.857421875, 935.10418701171875, 1308.2447509765625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+40, 195164, 1, 141, 186, '0', 0, 0, 9851.685546875, 935.638916015625, 1308.529541015625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+41, 195164, 1, 141, 186, '0', 0, 0, 9854.0712890625, 939.67364501953125, 1308.5677490234375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+42, 195164, 1, 141, 186, '0', 0, 0, 9895.5595703125, 948.78302001953125, 1313.2882080078125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+43, 195164, 1, 141, 186, '0', 0, 0, 9845.439453125, 936.78125, 1307.7257080078125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+44, 195164, 1, 141, 186, '0', 0, 0, 9844.875, 944.388916015625, 1308.15283203125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+45, 195164, 1, 141, 186, '0', 0, 0, 9902.5341796875, 950.0399169921875, 1313.6727294921875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+46, 195164, 1, 141, 186, '0', 0, 0, 9843.9150390625, 943.045166015625, 1307.9124755859375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+47, 195164, 1, 141, 186, '0', 0, 0, 9904.755859375, 944.06768798828125, 1313.826416015625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+48, 195164, 1, 141, 186, '0', 0, 0, 9901.0263671875, 950.3350830078125, 1313.6065673828125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+49, 195164, 1, 141, 186, '0', 0, 0, 9902.3720703125, 940.03302001953125, 1313.6304931640625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+50, 195664, 1, 141, 186, '0', 0, 0, 9898.7900390625, 944.94097900390625, 1312.6800537109375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Dolanaar - Difficulty: 0)
|
||||
(@OGUID+51, 195664, 1, 141, 186, '0', 0, 0, 9848.150390625, 940.57598876953125, 1307.22998046875, 0, 0, 0, 0, 1, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Dolanaar - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+2;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1),
|
||||
(@EVENT, @CGUID+2);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+51;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25),
|
||||
(@EVENT, @OGUID+26),
|
||||
(@EVENT, @OGUID+27),
|
||||
(@EVENT, @OGUID+28),
|
||||
(@EVENT, @OGUID+29),
|
||||
(@EVENT, @OGUID+30),
|
||||
(@EVENT, @OGUID+31),
|
||||
(@EVENT, @OGUID+32),
|
||||
(@EVENT, @OGUID+33),
|
||||
(@EVENT, @OGUID+34),
|
||||
(@EVENT, @OGUID+35),
|
||||
(@EVENT, @OGUID+36),
|
||||
(@EVENT, @OGUID+37),
|
||||
(@EVENT, @OGUID+38),
|
||||
(@EVENT, @OGUID+39),
|
||||
(@EVENT, @OGUID+40),
|
||||
(@EVENT, @OGUID+41),
|
||||
(@EVENT, @OGUID+42),
|
||||
(@EVENT, @OGUID+43),
|
||||
(@EVENT, @OGUID+44),
|
||||
(@EVENT, @OGUID+45),
|
||||
(@EVENT, @OGUID+46),
|
||||
(@EVENT, @OGUID+47),
|
||||
(@EVENT, @OGUID+48),
|
||||
(@EVENT, @OGUID+49),
|
||||
(@EVENT, @OGUID+50),
|
||||
(@EVENT, @OGUID+51);
|
||||
@@ -1,173 +0,0 @@
|
||||
SET @CGUID := 396459;
|
||||
SET @OGUID := 248521;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature templates
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60 WHERE `entry`=34783; -- Ranisa Whitebough
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=10569, `minlevel`=60, `maxlevel`=60, `npcflag`=81, `unit_flags`=33536 WHERE `entry`=34785; -- Alnar Whitebough
|
||||
|
||||
-- Scaling
|
||||
DELETE FROM `creature_template_scaling` WHERE `DifficultyID`=0 AND `Entry` IN (34783, 34785);
|
||||
INSERT INTO `creature_template_scaling` (`Entry`, `DifficultyID`, `LevelScalingDeltaMin`, `LevelScalingDeltaMax`, `ContentTuningID`, `VerifiedBuild`) VALUES
|
||||
(34783, 0, 0, 0, 389, 46741),
|
||||
(34785, 0, 0, 0, 389, 46741);
|
||||
|
||||
-- Trainer
|
||||
DELETE FROM `creature_trainer` WHERE `CreatureID`=34785;
|
||||
INSERT INTO `creature_trainer` (`CreatureID`, `TrainerID`, `MenuID`, `OptionID`) VALUES
|
||||
(34785, 136, 10569, 0);
|
||||
|
||||
-- Old creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN 138346 AND 138349;
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN 138370 AND 138373;
|
||||
DELETE FROM `game_event_creature` WHERE `guid` BETWEEN 138346 AND 138349;
|
||||
DELETE FROM `game_event_creature` WHERE `guid` BETWEEN 138370 AND 138373;
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+6;
|
||||
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, 32823, 530, 3557, 3557, '0', 0, 0, 0, 0, -3983.451416015625, -11882.845703125, 0.513425350189208984, 2.042035102844238281, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: The Exodar - Difficulty: 0)
|
||||
(@CGUID+1, 32823, 530, 3557, 3557, '0', 0, 0, 0, 0, -3978.157958984375, -11867.6005859375, 0.525727331638336181, 1.274090290069580078, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: The Exodar - Difficulty: 0)
|
||||
(@CGUID+2, 32823, 530, 3557, 3557, '0', 0, 0, 0, 0, -3965.34716796875, -11867.595703125, 0.761884331703186035, 2.042035102844238281, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: The Exodar - Difficulty: 0) (Auras: )
|
||||
(@CGUID+3, 32823, 530, 3557, 3557, '0', 0, 0, 0, 0, -3971.795166015625, -11879.7255859375, 0.705299317836761474, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: The Exodar - Difficulty: 0)
|
||||
(@CGUID+4, 34653, 530, 3557, 3557, '0', 0, 0, 0, 0, -3985.220458984375, -11871.1806640625, 0.450035333633422851, 2.234021425247192382, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table Hostess (Area: The Exodar - Difficulty: 0)
|
||||
(@CGUID+5, 34783, 530, 3557, 3557, '0', 0, 0, 0, 0, -4019.364501953125, -11861.6611328125, 0.735240340232849121, 0.541052043437957763, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Ranisa Whitebough (Area: The Exodar - Difficulty: 0)
|
||||
(@CGUID+6, 34785, 530, 3557, 3557, '0', 0, 0, 0, 1, -4007.119873046875, -11839.8857421875, 0.896734297275543212, 4.15388345718383789, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Alnar Whitebough (Area: The Exodar - Difficulty: 0) (Auras: )
|
||||
|
||||
-- Old gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN 76167 AND 76199;
|
||||
DELETE FROM `game_event_gameobject` WHERE `guid` BETWEEN 76167 AND 76199;
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+57;
|
||||
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, 179968, 530, 3557, 3557, '0', 0, 0, -4023.3681640625, -11850.314453125, -0.01728500053286552, 3.194002151489257812, 0, 0, -0.99965667724609375, 0.026201646775007247, 120, 255, 1, 46741), -- Haystack 01 (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 530, 3557, 3557, '0', 0, 0, -4023.45654296875, -11847.853515625, -0.01446899957954883, 0.069811686873435974, 0, 0, 0.034898757934570312, 0.999390840530395507, 120, 255, 1, 46741), -- Haystack 01 (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 530, 3557, 3557, '0', 0, 0, -3954.882080078125, -11863.265625, 0.841229975223541259, 3.43830275535583496, 0, 0, -0.98901557922363281, 0.147811368107795715, 120, 255, 1, 46741), -- Haystack 01 (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 530, 3557, 3557, '0', 0, 0, -3989.704833984375, -11873.890625, 0.31319400668144226, 5.95157480239868164, 0, 0, -0.16504669189453125, 0.986285746097564697, 120, 255, 1, 46741), -- Haystack 01 (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 530, 3557, 3557, '0', 0, 0, -4007.154541015625, -11839.90625, 0.183230996131896972, 5.759587764739990234, 0, 0, -0.25881862640380859, 0.965925931930541992, 120, 255, 1, 46741), -- Haystack 01 (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 530, 3557, 3557, '0', 0, 0, -4006.51904296875, -11840.271484375, 0.188604995608329772, 2.617989301681518554, 0, 0, 0.965925216674804687, 0.258821308612823486, 120, 255, 1, 46741), -- Haystack 01 (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 530, 3557, 3557, '0', 0, 0, -3955.944580078125, -11860.5087890625, 0.793404996395111083, 3.543023586273193359, 0, 0, -0.97992420196533203, 0.199370384216308593, 120, 255, 1, 46741), -- Haystack 01 (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 530, 3557, 3557, '0', 0, 0, -3992.65966796875, -11883.75, 0.249393001198768615, 5.84685373306274414, 0, 0, -0.21643924713134765, 0.976296067237854003, 120, 255, 1, 46741), -- Haystack 01 (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 530, 3557, 3557, '0', 0, 0, -4007.49658203125, -11863.2431640625, 0.134553998708724975, 1.500982880592346191, 0, 0, 0.681998252868652343, 0.731353819370269775, 120, 255, 1, 46741), -- Haystack 01 (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 530, 3557, 3557, '0', 0, 0, -3976.236083984375, -11894.00390625, 0.601652979850769042, 1.413715124130249023, 0, 0, 0.649447441101074218, 0.760406434535980224, 120, 255, 1, 46741), -- Haystack 01 (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+10, 179968, 530, 3557, 3557, '0', 0, 0, -4004.57470703125, -11864.0361328125, 0.164826005697250366, 1.082102894783020019, 0, 0, 0.51503753662109375, 0.857167601585388183, 120, 255, 1, 46741), -- Haystack 01 (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+11, 179968, 530, 3557, 3557, '0', 0, 0, -4019.588623046875, -11861.8701171875, -0.00016100000357255, 1.082102894783020019, 0, 0, 0.51503753662109375, 0.857167601585388183, 120, 255, 1, 46741), -- Haystack 01 (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+12, 179968, 530, 3557, 3557, '0', 0, 0, -4020.451416015625, -11832.0087890625, 0.088124997913837432, 6.03883981704711914, 0, 0, -0.12186908721923828, 0.9925462007522583, 120, 255, 1, 46741), -- Haystack 01 (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+13, 179968, 530, 3557, 3557, '0', 0, 0, -4007.770751953125, -11839.5107421875, 0.178123995661735534, 5.759587764739990234, 0, 0, -0.25881862640380859, 0.965925931930541992, 120, 255, 1, 46741), -- Haystack 01 (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+14, 179968, 530, 3557, 3557, '0', 0, 0, -4019.720458984375, -11860.982421875, -0.0001429999974789, 1.082102894783020019, 0, 0, 0.51503753662109375, 0.857167601585388183, 120, 255, 1, 46741), -- Haystack 01 (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+15, 179968, 530, 3557, 3557, '0', 0, 0, -4018.642333984375, -11861.5361328125, 0.011126000434160232, 1.082102894783020019, 0, 0, 0.51503753662109375, 0.857167601585388183, 120, 255, 1, 46741), -- Haystack 01 (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+16, 179968, 530, 3557, 3557, '0', 0, 0, -3979.072998046875, -11892.7451171875, 0.540421009063720703, 1.134462952613830566, 0, 0, 0.537299156188964843, 0.843391716480255126, 120, 255, 1, 46741), -- Haystack 01 (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+17, 179968, 530, 3557, 3557, '0', 0, 0, -4017.515625, -11830.66015625, 0.121440999209880828, 1.082102894783020019, 0, 0, 0.51503753662109375, 0.857167601585388183, 120, 255, 1, 46741), -- Haystack 01 (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+18, 179968, 530, 3557, 3557, '0', 0, 0, -4019.51904296875, -11863.294921875, -0.00182100001256912, 1.082102894783020019, 0, 0, 0.51503753662109375, 0.857167601585388183, 120, 255, 1, 46741), -- Haystack 01 (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+19, 179968, 530, 3557, 3557, '0', 0, 0, -3991.939208984375, -11886.978515625, 0.262340009212493896, 1.117009282112121582, 0, 0, 0.529918670654296875, 0.84804844856262207, 120, 255, 1, 46741), -- Haystack 01 (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+20, 179968, 530, 3557, 3557, '0', 0, 0, -3990.60595703125, -11871.2587890625, 0.301728010177612304, 1.134462952613830566, 0, 0, 0.537299156188964843, 0.843391716480255126, 120, 255, 1, 46741), -- Haystack 01 (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+21, 180353, 530, 3557, 3557, '0', 0, 0, -3955.38720703125, -11861.8076171875, 0.817112982273101806, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+22, 180353, 530, 3557, 3557, '0', 0, 0, -3989.295166015625, -11872.2783203125, 0.315988987684249877, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+23, 180353, 530, 3557, 3557, '0', 0, 0, -4002.882080078125, -11838.6201171875, 0.229010999202728271, 3.700104713439941406, 0, 0, -0.96126079559326171, 0.275640487670898437, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+24, 180353, 530, 3557, 3557, '0', 0, 0, -3977.78125, -11893.5595703125, 0.569688022136688232, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+25, 180353, 530, 3557, 3557, '0', 0, 0, -3993.395751953125, -11886.1513671875, 0.233521997928619384, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+26, 180353, 530, 3557, 3557, '0', 0, 0, -4023.29345703125, -11849.125, -0.01464200019836425, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+27, 180353, 530, 3557, 3557, '0', 0, 0, -4005.979248046875, -11863.45703125, 0.150845006108283996, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+28, 180353, 530, 3557, 3557, '0', 0, 0, -4007.51904296875, -11835.3076171875, 0.191512003540992736, 3.752462387084960937, 0, 0, -0.95371627807617187, 0.300707906484603881, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+29, 180353, 530, 3557, 3557, '0', 0, 0, -4020.923583984375, -11862.7158203125, -0.01675100065767765, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+30, 180353, 530, 3557, 3557, '0', 0, 0, -4019.963623046875, -11829.2001953125, 0.119457997381687164, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+31, 195164, 530, 3557, 3557, '0', 0, 0, -4019.442626953125, -11863.2236328125, 0.714635014533996582, 1.082102894783020019, 0, 0, 0.51503753662109375, 0.857167601585388183, 120, 255, 1, 46741), -- Pumpkin (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+32, 195164, 530, 3557, 3557, '0', 0, 0, -4007.447998046875, -11863.421875, 0.850269973278045654, 1.535889506340026855, 0, 0, 0.694658279418945312, 0.719339847564697265, 120, 255, 1, 46741), -- Pumpkin (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+33, 195164, 530, 3557, 3557, '0', 0, 0, -4020.229248046875, -11831.7744140625, 0.807295024394989013, 1.535889506340026855, 0, 0, 0.694658279418945312, 0.719339847564697265, 120, 255, 1, 46741), -- Pumpkin (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+34, 195164, 530, 3557, 3557, '0', 0, 0, -4017.439208984375, -11830.5888671875, 0.838163018226623535, 1.082102894783020019, 0, 0, 0.51503753662109375, 0.857167601585388183, 120, 255, 1, 46741), -- Pumpkin (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+35, 195164, 530, 3557, 3557, '0', 0, 0, -3990.741455078125, -11871.404296875, 1.015535950660705566, 1.099556446075439453, 0, 0, 0.522498130798339843, 0.852640450000762939, 120, 255, 1, 46741), -- Pumpkin (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+36, 195164, 530, 3557, 3557, '0', 0, 0, -3955.640625, -11860.5244140625, 1.515169024467468261, 1.553341388702392578, 0, 0, 0.700908660888671875, 0.713251054286956787, 120, 255, 1, 46741), -- Pumpkin (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+37, 195164, 530, 3557, 3557, '0', 0, 0, -4007.147705078125, -11837.2275390625, 1.117460012435913085, 3.52557229995727539, 0, 0, -0.98162651062011718, 0.190812408924102783, 120, 255, 1, 46741), -- Pumpkin (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+38, 195164, 530, 3557, 3557, '0', 0, 0, -4004.498291015625, -11863.9658203125, 0.881223022937774658, 1.082102894783020019, 0, 0, 0.51503753662109375, 0.857167601585388183, 120, 255, 1, 46741), -- Pumpkin (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+39, 195164, 530, 3557, 3557, '0', 0, 0, -3992.67529296875, -11883.55078125, 0.96467900276184082, 0.052358884364366531, 0, 0, 0.02617645263671875, 0.999657332897186279, 120, 255, 1, 46741), -- Pumpkin (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+40, 195164, 530, 3557, 3557, '0', 0, 0, -3954.703125, -11863.205078125, 1.559762001037597656, 3.43830275535583496, 0, 0, -0.98901557922363281, 0.147811368107795715, 120, 255, 1, 46741), -- Pumpkin (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+41, 195164, 530, 3557, 3557, '0', 0, 0, -3976.005126953125, -11894.095703125, 1.322070956230163574, 1.570795774459838867, 0, 0, 0.707106590270996093, 0.707106947898864746, 120, 255, 1, 46741), -- Pumpkin (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+42, 195164, 530, 3557, 3557, '0', 0, 0, -3979.038330078125, -11892.8056640625, 1.256886005401611328, 1.047197580337524414, 0, 0, 0.5, 0.866025388240814208, 120, 255, 1, 46741), -- Pumpkin (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+43, 195164, 530, 3557, 3557, '0', 0, 0, -3991.826416015625, -11887.1650390625, 0.981033027172088623, 0.069811686873435974, 0, 0, 0.034898757934570312, 0.999390840530395507, 120, 255, 1, 46741), -- Pumpkin (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+44, 195164, 530, 3557, 3557, '0', 0, 0, -4023.59375, -11847.8662109375, 0.699485003948211669, 0.069811686873435974, 0, 0, 0.034898757934570312, 0.999390840530395507, 120, 255, 1, 46741), -- Pumpkin (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+45, 195164, 530, 3557, 3557, '0', 0, 0, -4023.407958984375, -11850.41015625, 0.697601974010467529, 3.176533222198486328, 0, 0, -0.999847412109375, 0.017469281330704689, 120, 255, 1, 46741), -- Pumpkin (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+46, 195164, 530, 3557, 3557, '0', 0, 0, -3989.51904296875, -11874.01953125, 1.032209038734436035, 5.986480236053466796, 0, 0, -0.14780902862548828, 0.989015936851501464, 120, 255, 1, 46741), -- Pumpkin (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+47, 195191, 530, 3557, 3557, '0', 0, 0, -4006.015625, -11838.2431640625, 0.187720999121665954, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Dwarven Table Simple 05 (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+48, 195192, 530, 3557, 3557, '0', 0, 0, -4007.192626953125, -11838.0537109375, 1.093829989433288574, 3.508116960525512695, 0, 0, -0.98325443267822265, 0.182238012552261352, 120, 255, 1, 46741), -- Basket of Corn (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+49, 195194, 530, 3557, 3557, '0', 0, 0, -4004.788330078125, -11838.501953125, 1.111768007278442382, 3.385940074920654296, 0, 0, -0.99254608154296875, 0.121869951486587524, 120, 255, 1, 46741), -- Small Basket 01 (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+50, 195196, 530, 3557, 3557, '0', 0, 0, -4021.642333984375, -11860.8857421875, -0.02176300063729286, 3.735006093978881835, 0, 0, -0.95630455017089843, 0.292372345924377441, 120, 255, 1, 46741), -- Large Basket 03 (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+51, 195197, 530, 3557, 3557, '0', 0, 0, -4005.079833984375, -11834.9619140625, 0.216630995273590087, 3.368495941162109375, 0, 0, -0.99357128143310546, 0.113208353519439697, 120, 255, 1, 46741), -- Grain Sack 02 (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+52, 195198, 530, 3557, 3557, '0', 0, 0, -4003.89404296875, -11836.5126953125, 0.224408000707626342, 3.141592741012573242, 0, 0, -1, 0, 120, 255, 1, 46741), -- Crate 01 (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+53, 195200, 530, 3557, 3557, '0', 0, 0, -4002.55908203125, -11840.4267578125, 0.227538004517555236, 2.757613182067871093, 0, 0, 0.981626510620117187, 0.190812408924102783, 120, 255, 1, 46741), -- Pilgrim's Bounty Cooking Fire (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+54, 195664, 530, 3557, 3557, '0', 0, 0, -3971.795166015625, -11879.7255859375, 0.621966004371643066, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+55, 195664, 530, 3557, 3557, '0', 0, 0, -3983.451416015625, -11882.845703125, 0.430092006921768188, 2.042035102844238281, 0, 0, 0.852640151977539062, 0.522498607635498046, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+56, 195664, 530, 3557, 3557, '0', 0, 0, -3965.34716796875, -11867.595703125, 0.678551018238067626, 2.042035102844238281, 0, 0, 0.852640151977539062, 0.522498607635498046, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: The Exodar - Difficulty: 0)
|
||||
(@OGUID+57, 195664, 530, 3557, 3557, '0', 0, 0, -3978.157958984375, -11867.6005859375, 0.442393988370895385, 1.274088263511657714, 0, 0, 0.594821929931640625, 0.80385744571685791, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: The Exodar - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+6;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1),
|
||||
(@EVENT, @CGUID+2),
|
||||
(@EVENT, @CGUID+3),
|
||||
(@EVENT, @CGUID+4),
|
||||
(@EVENT, @CGUID+5),
|
||||
(@EVENT, @CGUID+6);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+57;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25),
|
||||
(@EVENT, @OGUID+26),
|
||||
(@EVENT, @OGUID+27),
|
||||
(@EVENT, @OGUID+28),
|
||||
(@EVENT, @OGUID+29),
|
||||
(@EVENT, @OGUID+30),
|
||||
(@EVENT, @OGUID+31),
|
||||
(@EVENT, @OGUID+32),
|
||||
(@EVENT, @OGUID+33),
|
||||
(@EVENT, @OGUID+34),
|
||||
(@EVENT, @OGUID+35),
|
||||
(@EVENT, @OGUID+36),
|
||||
(@EVENT, @OGUID+37),
|
||||
(@EVENT, @OGUID+38),
|
||||
(@EVENT, @OGUID+39),
|
||||
(@EVENT, @OGUID+40),
|
||||
(@EVENT, @OGUID+41),
|
||||
(@EVENT, @OGUID+42),
|
||||
(@EVENT, @OGUID+43),
|
||||
(@EVENT, @OGUID+44),
|
||||
(@EVENT, @OGUID+45),
|
||||
(@EVENT, @OGUID+46),
|
||||
(@EVENT, @OGUID+47),
|
||||
(@EVENT, @OGUID+48),
|
||||
(@EVENT, @OGUID+49),
|
||||
(@EVENT, @OGUID+50),
|
||||
(@EVENT, @OGUID+51),
|
||||
(@EVENT, @OGUID+52),
|
||||
(@EVENT, @OGUID+53),
|
||||
(@EVENT, @OGUID+54),
|
||||
(@EVENT, @OGUID+55),
|
||||
(@EVENT, @OGUID+56),
|
||||
(@EVENT, @OGUID+57);
|
||||
@@ -1,128 +0,0 @@
|
||||
SET @CGUID := 396466;
|
||||
SET @OGUID := 248579;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+2;
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `PhaseGroup`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES
|
||||
(@CGUID+0, 32823, 530, 3524, 3576, '0', 0, 0, 0, 0, -4209.03466796875, -12604.923828125, 34.42758941650390625, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Azure Watch - Difficulty: 0) (Auras: )
|
||||
(@CGUID+1, 32823, 530, 3524, 3576, '0', 0, 0, 0, 0, -4183.00341796875, -12604.2568359375, 35.16207504272460937, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Azure Watch - Difficulty: 0)
|
||||
(@CGUID+2, 34653, 530, 3524, 3576, '0', 0, 0, 0, 0, -4206.533203125, -12597.8056640625, 34.61111068725585937, 0.994837641716003417, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Table Hostess (Area: Azure Watch - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+51;
|
||||
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, 179968, 530, 3524, 3576, '0', 0, 0, -4187.33837890625, -12601.7431640625, 35.00790023803710937, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Haystack 01 (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 530, 3524, 3576, '0', 0, 0, -4202.8125, -12604.1220703125, 34.2072906494140625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 530, 3524, 3576, '0', 0, 0, -4205.27587890625, -12599.8720703125, 34.407257080078125, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Haystack 01 (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 530, 3524, 3576, '0', 0, 0, -4211.6787109375, -12608.7880859375, 34.56770706176757812, 1.029743075370788574, 0, 0, 0.492423057556152343, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 530, 3524, 3576, '0', 0, 0, -4179.24462890625, -12599.205078125, 35.87847137451171875, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Haystack 01 (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 530, 3524, 3576, '0', 0, 0, -4185.6474609375, -12608.1220703125, 35.12382888793945312, 1.029743075370788574, 0, 0, 0.492423057556152343, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 530, 3524, 3576, '0', 0, 0, -4206.8056640625, -12599.4658203125, 34.54445266723632812, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 530, 3524, 3576, '0', 0, 0, -4207.28125, -12610.4658203125, 34.3675079345703125, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 530, 3524, 3576, '0', 0, 0, -4179.609375, -12609.3134765625, 35.16167068481445312, 1.989672422409057617, 0, 0, 0.838669776916503906, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 530, 3524, 3576, '0', 0, 0, -4202.9775390625, -12605.6845703125, 34.17027664184570312, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+10, 179968, 530, 3524, 3576, '0', 0, 0, -4205.640625, -12609.978515625, 34.28645706176757812, 1.989672422409057617, 0, 0, 0.838669776916503906, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+11, 179968, 530, 3524, 3576, '0', 0, 0, -4181.25, -12609.798828125, 35.077728271484375, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+12, 179968, 530, 3524, 3576, '0', 0, 0, -4186.6943359375, -12606.6220703125, 34.98984146118164062, 3.403396368026733398, 0, 0, -0.99144458770751953, 0.130528271198272705, 120, 255, 1, 46741), -- Haystack 01 (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+13, 179968, 530, 3524, 3576, '0', 0, 0, -4176.9462890625, -12605.017578125, 35.421875, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+14, 179968, 530, 3524, 3576, '0', 0, 0, -4213.36962890625, -12602.41015625, 34.8125, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Haystack 01 (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+15, 179968, 530, 3524, 3576, '0', 0, 0, -4180.7744140625, -12598.798828125, 35.91840362548828125, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+16, 179968, 530, 3524, 3576, '0', 0, 0, -4176.78125, -12603.455078125, 35.55034637451171875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+17, 179968, 530, 3524, 3576, '0', 0, 0, -4212.7255859375, -12607.2880859375, 34.61284637451171875, 3.403396368026733398, 0, 0, -0.99144458770751953, 0.130528271198272705, 120, 255, 1, 46741), -- Haystack 01 (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+18, 179968, 530, 3524, 3576, '0', 0, 0, -4186.2587890625, -12600.3994140625, 35.23263931274414062, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 46741), -- Haystack 01 (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+19, 179968, 530, 3524, 3576, '0', 0, 0, -4212.2900390625, -12601.06640625, 34.88541793823242187, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 46741), -- Haystack 01 (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+20, 180353, 530, 3524, 3576, '0', 0, 0, -4206.017578125, -12599.6142578125, 34.47569656372070312, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+21, 180353, 530, 3524, 3576, '0', 0, 0, -4202.82470703125, -12604.90625, 34.18402862548828125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+22, 180353, 530, 3524, 3576, '0', 0, 0, -4187.01025390625, -12600.90625, 35.0868072509765625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+23, 180353, 530, 3524, 3576, '0', 0, 0, -4213.04150390625, -12601.5732421875, 34.85069656372070312, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+24, 180353, 530, 3524, 3576, '0', 0, 0, -4212.34716796875, -12608.2119140625, 34.57972335815429687, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+25, 180353, 530, 3524, 3576, '0', 0, 0, -4206.4443359375, -12610.34375, 34.33842086791992187, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+26, 180353, 530, 3524, 3576, '0', 0, 0, -4186.31591796875, -12607.544921875, 35.0684967041015625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+27, 180353, 530, 3524, 3576, '0', 0, 0, -4180.4130859375, -12609.6767578125, 35.09911727905273437, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+28, 180353, 530, 3524, 3576, '0', 0, 0, -4179.986328125, -12598.9482421875, 35.91145706176757812, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+29, 180353, 530, 3524, 3576, '0', 0, 0, -4176.79345703125, -12604.2392578125, 35.46875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+30, 195164, 530, 3524, 3576, '0', 0, 0, -4202.90625, -12604.1494140625, 34.89220428466796875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+31, 195164, 530, 3524, 3576, '0', 0, 0, -4187.2412109375, -12601.7880859375, 35.72325515747070312, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+32, 195164, 530, 3524, 3576, '0', 0, 0, -4205.33837890625, -12599.853515625, 35.09649658203125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+33, 195164, 530, 3524, 3576, '0', 0, 0, -4179.30712890625, -12599.1884765625, 36.59477996826171875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+34, 195164, 530, 3524, 3576, '0', 0, 0, -4181.298828125, -12609.728515625, 35.79798507690429687, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+35, 195164, 530, 3524, 3576, '0', 0, 0, -4176.875, -12603.482421875, 36.26839065551757812, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+36, 195164, 530, 3524, 3576, '0', 0, 0, -4212.67724609375, -12607.2431640625, 35.29962158203125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+37, 195164, 530, 3524, 3576, '0', 0, 0, -4212.3125, -12601.111328125, 35.56524658203125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+38, 195164, 530, 3524, 3576, '0', 0, 0, -4186.64599609375, -12606.576171875, 35.70222854614257812, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+39, 195164, 530, 3524, 3576, '0', 0, 0, -4207.330078125, -12610.396484375, 35.05656814575195312, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+40, 195164, 530, 3524, 3576, '0', 0, 0, -4203.1162109375, -12605.826171875, 34.85738754272460937, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+41, 195164, 530, 3524, 3576, '0', 0, 0, -4185.71728515625, -12608.0517578125, 35.83351898193359375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+42, 195164, 530, 3524, 3576, '0', 0, 0, -4186.28125, -12600.4443359375, 35.93852996826171875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+43, 195164, 530, 3524, 3576, '0', 0, 0, -4179.470703125, -12609.1943359375, 35.88818359375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+44, 195164, 530, 3524, 3576, '0', 0, 0, -4211.74853515625, -12608.71875, 35.24753952026367187, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+45, 195164, 530, 3524, 3576, '0', 0, 0, -4177.0849609375, -12605.16015625, 36.13471221923828125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+46, 195164, 530, 3524, 3576, '0', 0, 0, -4206.84716796875, -12599.5595703125, 35.22844314575195312, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+47, 195164, 530, 3524, 3576, '0', 0, 0, -4180.81591796875, -12598.892578125, 36.61908721923828125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+48, 195164, 530, 3524, 3576, '0', 0, 0, -4205.501953125, -12609.861328125, 34.95413589477539062, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+49, 195164, 530, 3524, 3576, '0', 0, 0, -4213.2724609375, -12602.455078125, 35.4958038330078125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+50, 195664, 530, 3524, 3576, '0', 0, 0, -4183.00341796875, -12604.2568359375, 35.07874298095703125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Azure Watch - Difficulty: 0)
|
||||
(@OGUID+51, 195664, 530, 3524, 3576, '0', 0, 0, -4209.03466796875, -12604.923828125, 34.34425735473632812, 0, 0, 0, 0, 1, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Azure Watch - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+2;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1),
|
||||
(@EVENT, @CGUID+2);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+51;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25),
|
||||
(@EVENT, @OGUID+26),
|
||||
(@EVENT, @OGUID+27),
|
||||
(@EVENT, @OGUID+28),
|
||||
(@EVENT, @OGUID+29),
|
||||
(@EVENT, @OGUID+30),
|
||||
(@EVENT, @OGUID+31),
|
||||
(@EVENT, @OGUID+32),
|
||||
(@EVENT, @OGUID+33),
|
||||
(@EVENT, @OGUID+34),
|
||||
(@EVENT, @OGUID+35),
|
||||
(@EVENT, @OGUID+36),
|
||||
(@EVENT, @OGUID+37),
|
||||
(@EVENT, @OGUID+38),
|
||||
(@EVENT, @OGUID+39),
|
||||
(@EVENT, @OGUID+40),
|
||||
(@EVENT, @OGUID+41),
|
||||
(@EVENT, @OGUID+42),
|
||||
(@EVENT, @OGUID+43),
|
||||
(@EVENT, @OGUID+44),
|
||||
(@EVENT, @OGUID+45),
|
||||
(@EVENT, @OGUID+46),
|
||||
(@EVENT, @OGUID+47),
|
||||
(@EVENT, @OGUID+48),
|
||||
(@EVENT, @OGUID+49),
|
||||
(@EVENT, @OGUID+50),
|
||||
(@EVENT, @OGUID+51);
|
||||
@@ -1,211 +0,0 @@
|
||||
SET @CGUID := 396469;
|
||||
SET @OGUID := 248631;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Gossips
|
||||
UPDATE `gossip_menu` SET `VerifiedBuild`=46702 WHERE (`MenuID`=10575 AND `TextID`=14633) OR (`MenuID`=12520 AND `TextID`=17608) OR (`MenuID`=10589 AND `TextID`=14648);
|
||||
|
||||
UPDATE `gossip_menu_option` SET `VerifiedBuild`=46702 WHERE (`MenuID`=10575 AND `OptionID`=0);
|
||||
|
||||
-- Equipments
|
||||
UPDATE `creature_equip_template` SET `VerifiedBuild`=46702 WHERE (`ID`=1 AND `CreatureID` IN (175135,168459,150131,149626,149270,148795,148770,148263,148250,148242,133186,89830,88703,88702,88701,74228,72559,71100,62195,58155,54870,51346,50304,49750,49622,47571,47253,46556,46555,46359,46358,46357,46142,46140,45339,45337,44878,44877,44876,44872,44871,44851,42637,37072,35068,34723,34721,34719,34718,34717,34715,34713,34679,31727,31726,31725,31724,31723,31720,23128,14720,14392,6929,6566,6466,5817,5614,5613,5611,5610,5609,5606,5188,4311,4047,3370,3342,3323,3314,3313,3312,3296,3144,3084)) OR (`ID`=2 AND `CreatureID` IN (74228,3296));
|
||||
|
||||
-- Scaling
|
||||
UPDATE `creature_template_scaling` SET `VerifiedBuild`=46702 WHERE (`DifficultyID`=0 AND `Entry` IN (188656,188655,188157,187758,175135,173548,168459,155739,151937,150131,149626,149523,149522,149371,149297,149296,149279,149270,149258,148795,148770,148263,148250,148242,143622,137762,135202,135201,133186,121541,89830,88703,88702,88701,74228,72654,72559,71163,71100,62822,62821,62195,62116,62115,62114,58155,54870,52034,51346,51195,50304,49837,49750,49743,49622,49131,47571,47253,46572,46556,46555,46512,46359,46358,46357,46142,46140,45339,45337,44878,44877,44876,44872,44871,44868,44867,44866,44865,44856,44854,44853,44852,44851,44338,43499,42859,42637,42504,40891,39380,39379,38821,37072,35342,35068,34824,34823,34822,34819,34812,34730,34723,34721,34719,34718,34717,34715,34713,34685,34679,34654,32840,32839,32831,32830,32829,32827,32825,32824,32823,31727,31726,31725,31724,31723,31720,28960,27489,25075,24935,24934,23128,19175,17098,14720,14392,6929,6566,6466,5951,5817,5614,5613,5611,5610,5609,5606,5188,4311,4047,3370,3342,3323,3319,3314,3313,3312,3296,3144,3084));
|
||||
|
||||
-- Trainer
|
||||
DELETE FROM `creature_trainer` WHERE `CreatureID`=34713;
|
||||
INSERT INTO `creature_trainer` (`CreatureID`, `TrainerID`, `MenuID`, `OptionID`) VALUES
|
||||
(34713, 136, 10569, 0);
|
||||
|
||||
-- Quests
|
||||
UPDATE `quest_poi` SET `VerifiedBuild`=46702 WHERE (`QuestID`=14036 AND `BlobIndex`=0 AND `Idx1`=0) OR (`QuestID`=14062 AND `BlobIndex`=0 AND `Idx1`=1) OR (`QuestID`=14062 AND `BlobIndex`=0 AND `Idx1`=0) OR (`QuestID`=14061 AND `BlobIndex`=0 AND `Idx1`=1) OR (`QuestID`=14061 AND `BlobIndex`=0 AND `Idx1`=0) OR (`QuestID`=14065 AND `BlobIndex`=11 AND `Idx1`=55) OR (`QuestID`=14065 AND `BlobIndex`=10 AND `Idx1`=54) OR (`QuestID`=14065 AND `BlobIndex`=9 AND `Idx1`=53) OR (`QuestID`=14065 AND `BlobIndex`=8 AND `Idx1`=52) OR (`QuestID`=14065 AND `BlobIndex`=7 AND `Idx1`=51) OR (`QuestID`=14065 AND `BlobIndex`=6 AND `Idx1`=50) OR (`QuestID`=14065 AND `BlobIndex`=5 AND `Idx1`=49) OR (`QuestID`=14065 AND `BlobIndex`=4 AND `Idx1`=48) OR (`QuestID`=14065 AND `BlobIndex`=3 AND `Idx1`=47) OR (`QuestID`=14065 AND `BlobIndex`=2 AND `Idx1`=46) OR (`QuestID`=14065 AND `BlobIndex`=1 AND `Idx1`=45) OR (`QuestID`=14065 AND `BlobIndex`=0 AND `Idx1`=44) OR (`QuestID`=14065 AND `BlobIndex`=43 AND `Idx1`=43) OR (`QuestID`=14065 AND `BlobIndex`=42 AND `Idx1`=42) OR (`QuestID`=14065 AND `BlobIndex`=41 AND `Idx1`=41) OR (`QuestID`=14065 AND `BlobIndex`=40 AND `Idx1`=40) OR (`QuestID`=14065 AND `BlobIndex`=39 AND `Idx1`=39) OR (`QuestID`=14065 AND `BlobIndex`=38 AND `Idx1`=38) OR (`QuestID`=14065 AND `BlobIndex`=37 AND `Idx1`=37) OR (`QuestID`=14065 AND `BlobIndex`=36 AND `Idx1`=36) OR (`QuestID`=14065 AND `BlobIndex`=35 AND `Idx1`=35) OR (`QuestID`=14065 AND `BlobIndex`=34 AND `Idx1`=34) OR (`QuestID`=14065 AND `BlobIndex`=33 AND `Idx1`=33) OR (`QuestID`=14065 AND `BlobIndex`=32 AND `Idx1`=32) OR (`QuestID`=14065 AND `BlobIndex`=31 AND `Idx1`=31) OR (`QuestID`=14065 AND `BlobIndex`=30 AND `Idx1`=30) OR (`QuestID`=14065 AND `BlobIndex`=29 AND `Idx1`=29) OR (`QuestID`=14065 AND `BlobIndex`=28 AND `Idx1`=28) OR (`QuestID`=14065 AND `BlobIndex`=27 AND `Idx1`=27) OR (`QuestID`=14065 AND `BlobIndex`=26 AND `Idx1`=26) OR (`QuestID`=14065 AND `BlobIndex`=25 AND `Idx1`=25) OR (`QuestID`=14065 AND `BlobIndex`=24 AND `Idx1`=24) OR (`QuestID`=14065 AND `BlobIndex`=23 AND `Idx1`=23) OR (`QuestID`=14065 AND `BlobIndex`=22 AND `Idx1`=22) OR (`QuestID`=14065 AND `BlobIndex`=21 AND `Idx1`=21) OR (`QuestID`=14065 AND `BlobIndex`=20 AND `Idx1`=20) OR (`QuestID`=14065 AND `BlobIndex`=19 AND `Idx1`=19) OR (`QuestID`=14065 AND `BlobIndex`=18 AND `Idx1`=18) OR (`QuestID`=14065 AND `BlobIndex`=17 AND `Idx1`=17) OR (`QuestID`=14065 AND `BlobIndex`=16 AND `Idx1`=16) OR (`QuestID`=14065 AND `BlobIndex`=15 AND `Idx1`=15) OR (`QuestID`=14065 AND `BlobIndex`=14 AND `Idx1`=14) OR (`QuestID`=14065 AND `BlobIndex`=13 AND `Idx1`=13) OR (`QuestID`=14065 AND `BlobIndex`=12 AND `Idx1`=12) OR (`QuestID`=14065 AND `BlobIndex`=11 AND `Idx1`=11) OR (`QuestID`=14065 AND `BlobIndex`=10 AND `Idx1`=10) OR (`QuestID`=14065 AND `BlobIndex`=9 AND `Idx1`=9) OR (`QuestID`=14065 AND `BlobIndex`=8 AND `Idx1`=8) OR (`QuestID`=14065 AND `BlobIndex`=7 AND `Idx1`=7) OR (`QuestID`=14065 AND `BlobIndex`=6 AND `Idx1`=6) OR (`QuestID`=14065 AND `BlobIndex`=5 AND `Idx1`=5) OR (`QuestID`=14065 AND `BlobIndex`=4 AND `Idx1`=4) OR (`QuestID`=14065 AND `BlobIndex`=3 AND `Idx1`=3) OR (`QuestID`=14065 AND `BlobIndex`=2 AND `Idx1`=2) OR (`QuestID`=14065 AND `BlobIndex`=1 AND `Idx1`=1) OR (`QuestID`=14065 AND `BlobIndex`=0 AND `Idx1`=0);
|
||||
|
||||
UPDATE `quest_poi_points` SET `VerifiedBuild`=46702 WHERE (`QuestID`=14036 AND `Idx1`=0 AND `Idx2`=0) OR (`QuestID`=14062 AND `Idx1`=1 AND `Idx2`=0) OR (`QuestID`=14062 AND `Idx1`=0 AND `Idx2`=0) OR (`QuestID`=14061 AND `Idx1`=1 AND `Idx2`=0) OR (`QuestID`=14061 AND `Idx1`=0 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=55 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=54 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=53 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=52 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=51 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=50 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=49 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=48 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=47 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=46 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=45 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=44 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=43 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=42 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=41 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=40 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=39 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=38 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=37 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=36 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=35 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=34 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=33 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=32 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=31 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=30 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=29 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=28 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=27 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=26 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=25 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=24 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=23 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=22 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=21 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=20 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=19 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=18 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=17 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=16 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=15 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=14 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=13 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=12 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=11 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=10 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=9 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=8 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=7 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=6 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=5 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=4 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=3 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=2 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=1 AND `Idx2`=0) OR (`QuestID`=14065 AND `Idx1`=0 AND `Idx2`=0);
|
||||
|
||||
DELETE FROM `quest_details` WHERE `ID` IN (14036 /*Pilgrim's Bounty*/, 14062 /*Don't Forget The Stuffing!*/, 14061 /*Can't Get Enough Turkey*/, 14065 /*Sharing a Bountiful Feast*/);
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(14036, 1, 1, 0, 0, 0, 0, 0, 0, 46702), -- Pilgrim's Bounty
|
||||
(14061, 1, 1, 0, 0, 0, 0, 0, 0, 46702), -- Can't Get Enough Turkey
|
||||
(14062, 1, 1, 0, 0, 0, 0, 0, 0, 46702), -- Don't Forget The Stuffing!
|
||||
(14065, 1, 0, 0, 0, 0, 0, 0, 0, 46702); -- Sharing a Bountiful Feast
|
||||
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=1 WHERE `ID`=14061;
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=1, `EmoteOnIncomplete`=1, `VerifiedBuild`=46702 WHERE `ID`=14062; -- Don't Forget The Stuffing!
|
||||
UPDATE `quest_request_items` SET `VerifiedBuild`=46702 WHERE `ID`=14065;
|
||||
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1, `VerifiedBuild`=46702 WHERE `ID`=14065; -- Sharing a Bountiful Feast
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=5, `Emote2`=1, `VerifiedBuild`=46702 WHERE `ID`=14062; -- Don't Forget The Stuffing!
|
||||
|
||||
UPDATE `creature_queststarter` SET `VerifiedBuild`=46702 WHERE (`id`=34713 AND `quest` IN (14062,14061)) OR (`id`=34654 AND `quest`=14065);
|
||||
|
||||
UPDATE `creature_questender` SET `VerifiedBuild`=46702 WHERE (`id`=34654 AND `quest`=14065) OR (`id`=34713 AND `quest` IN (14062,14061));
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+10;
|
||||
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, 32823, 1, 14, 4982, '0', 0, 0, 0, 0, 1276.8472900390625, -4415.20166015625, 26.49131965637207031, 1.274090290069580078, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46702), -- Bountiful Table (Area: The Dranosh'ar Blockade - Difficulty: 0) (Auras: )
|
||||
(@CGUID+1, 32823, 1, 14, 4982, '0', 0, 0, 0, 0, 1295.0086669921875, -4412.328125, 26.67513656616210937, 2.042035102844238281, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46702), -- Bountiful Table (Area: The Dranosh'ar Blockade - Difficulty: 0) (Auras: )
|
||||
(@CGUID+2, 32823, 1, 14, 4982, '0', 0, 0, 0, 0, 1293.576416015625, -4428.80224609375, 26.9217681884765625, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46702), -- Bountiful Table (Area: The Dranosh'ar Blockade - Difficulty: 0) (Auras: )
|
||||
(@CGUID+3, 32823, 1, 14, 4982, '0', 0, 0, 0, 0, 1279.30908203125, -4430.4130859375, 26.98611259460449218, 2.042035102844238281, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46702), -- Bountiful Table (Area: The Dranosh'ar Blockade - Difficulty: 0) (Auras: )
|
||||
(@CGUID+4, 34654, 1, 14, 4982, '0', 0, 0, 0, 0, 1304.060791015625, -4407.546875, 26.32804298400878906, 6.038839340209960937, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46702), -- Bountiful Feast Hostess (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@CGUID+5, 34679, 1, 14, 4982, '0', 0, 0, 0, 1, 1321.890625, -4425.7412109375, 25.1535797119140625, 3.455751895904541015, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46702), -- Francis Eaton (Area: The Dranosh'ar Blockade - Difficulty: 0) (Auras: )
|
||||
(@CGUID+6, 34685, 1, 14, 4982, '0', 0, 0, 0, 0, 1322.2239990234375, -4427.3212890625, 25.11901473999023437, 3.368485450744628906, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46702), -- Dalni Tallgrass (Area: The Dranosh'ar Blockade - Difficulty: 0) (Auras: )
|
||||
(@CGUID+7, 34713, 1, 14, 4982, '0', 0, 0, 0, 1, 1319.8697509765625, -4414.03125, 25.01573371887207031, 3.228859186172485351, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46702), -- Ondani Greatmill (Area: The Dranosh'ar Blockade - Difficulty: 0) (Auras: )
|
||||
(@CGUID+8, 35342, 1, 14, 4982, '0', 0, 0, 0, 0, 1323.5069580078125, -4428.765625, 24.54776954650878906, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46702), -- Bountiful Barrel (Area: The Dranosh'ar Blockade - Difficulty: 0) (Auras: )
|
||||
(@CGUID+9, 35342, 1, 14, 4982, '0', 0, 0, 0, 0, 1323.4132080078125, -4425.939453125, 24.53654861450195312, 4.817108631134033203, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46702), -- Bountiful Barrel (Area: The Dranosh'ar Blockade - Difficulty: 0) (Auras: )
|
||||
(@CGUID+10, 35342, 1, 14, 4982, '0', 0, 0, 0, 0, 1324.1910400390625, -4427.68408203125, 24.53653526306152343, 5.375614166259765625, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46702); -- Bountiful Barrel (Area: The Dranosh'ar Blockade - Difficulty: 0) (Auras: )
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+65;
|
||||
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, 179968, 1, 14, 4982, '0', 0, 0, 1277.3802490234375, -4405.548828125, 26.31678581237792968, 1.518436193466186523, 0, 0, 0.6883544921875, 0.725374460220336914, 120, 255, 1, 46702), -- Haystack 01 (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 1, 14, 4982, '0', 0, 0, 1304.9410400390625, -4425.04150390625, 25.04649925231933593, 0.017452461645007133, 0, 0, 0.008726119995117187, 0.999961912631988525, 120, 255, 1, 46702), -- Haystack 01 (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 1, 14, 4982, '0', 0, 0, 1320.2447509765625, -4414.15625, 24.23568344116210937, 3.106652259826660156, 0, 0, 0.999847412109375, 0.017469281330704689, 120, 255, 1, 46702), -- Haystack 01 (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 1, 14, 4982, '0', 0, 0, 1302.9410400390625, -4409.1494140625, 26.33159828186035156, 0.383971005678176879, 0, 0, 0.190808296203613281, 0.981627285480499267, 120, 255, 1, 46702), -- Haystack 01 (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 1, 14, 4982, '0', 0, 0, 1295.66845703125, -4402.92724609375, 26.57817840576171875, 1.605701684951782226, 0, 0, 0.719339370727539062, 0.694658815860748291, 120, 255, 1, 46702), -- Haystack 01 (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 1, 14, 4982, '0', 0, 0, 1293.263916015625, -4402.76220703125, 26.54281044006347656, 4.625123500823974609, 0, 0, -0.73727703094482421, 0.67559051513671875, 120, 255, 1, 46702), -- Haystack 01 (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 1, 14, 4982, '0', 0, 0, 1292.7396240234375, -4442.40625, 27.61631965637207031, 1.535889506340026855, 0, 0, 0.694658279418945312, 0.719339847564697265, 120, 255, 1, 46702), -- Haystack 01 (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 1, 14, 4982, '0', 0, 0, 1295.013916015625, -4442.3525390625, 27.46701431274414062, 1.623155713081359863, 0, 0, 0.725374221801757812, 0.688354730606079101, 120, 255, 1, 46702), -- Haystack 01 (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 1, 14, 4982, '0', 0, 0, 1319.48095703125, -4414.1494140625, 24.40517616271972656, 3.211419343948364257, 0, 0, -0.9993906021118164, 0.034906134009361267, 120, 255, 1, 46702), -- Haystack 01 (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 1, 14, 4982, '0', 0, 0, 1321.967041015625, -4425.72900390625, 24.45289039611816406, 3.124123096466064453, 0, 0, 0.99996185302734375, 0.008734640665352344, 120, 255, 1, 46702), -- Haystack 01 (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+10, 179968, 1, 14, 4982, '0', 0, 0, 1271.736083984375, -4422.87841796875, 26.55555534362792968, 0.069811686873435974, 0, 0, 0.034898757934570312, 0.999390840530395507, 120, 255, 1, 46702), -- Haystack 01 (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+11, 179968, 1, 14, 4982, '0', 0, 0, 1303.5989990234375, -4411.70849609375, 26.16232109069824218, 3.141592741012573242, 0, 0, -1, 0, 120, 255, 1, 46702), -- Haystack 01 (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+12, 179968, 1, 14, 4982, '0', 0, 0, 1271.82470703125, -4425.33837890625, 26.68402862548828125, 3.194002151489257812, 0, 0, -0.99965667724609375, 0.026201646775007247, 120, 255, 1, 46702), -- Haystack 01 (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+13, 179968, 1, 14, 4982, '0', 0, 0, 1280.3055419921875, -4441.1962890625, 27.30381965637207031, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46702), -- Haystack 01 (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+14, 179968, 1, 14, 4982, '0', 0, 0, 1320.96875, -4423.70654296875, 24.46972084045410156, 3.78736734390258789, 0, 0, -0.94832324981689453, 0.317305892705917358, 120, 255, 1, 46702), -- Haystack 01 (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+15, 179968, 1, 14, 4982, '0', 0, 0, 1322.6336669921875, -4427.44775390625, 24.38968849182128906, 3.141592741012573242, 0, 0, -1, 0, 120, 255, 1, 46702), -- Haystack 01 (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+16, 179968, 1, 14, 4982, '0', 0, 0, 1305.0555419921875, -4427.5087890625, 24.90009307861328125, 0.034906249493360519, 0, 0, 0.017452239990234375, 0.999847710132598876, 120, 255, 1, 46702), -- Haystack 01 (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+17, 179968, 1, 14, 4982, '0', 0, 0, 1279.6475830078125, -4405.84033203125, 26.4991607666015625, 1.448621988296508789, 0, 0, 0.662619590759277343, 0.748956084251403808, 120, 255, 1, 46702), -- Haystack 01 (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+18, 179968, 1, 14, 4982, '0', 0, 0, 1277.920166015625, -4441.05908203125, 27.13855934143066406, 1.605701684951782226, 0, 0, 0.719339370727539062, 0.694658815860748291, 120, 255, 1, 46702), -- Haystack 01 (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+19, 179968, 1, 14, 4982, '0', 0, 0, 1321.763916015625, -4427.3837890625, 24.46640396118164062, 3.194002151489257812, 0, 0, -0.99965667724609375, 0.026201646775007247, 120, 255, 1, 46702), -- Haystack 01 (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+20, 179968, 1, 14, 4982, '0', 0, 0, 1321.03125, -4430.08154296875, 24.5333099365234375, 2.111847877502441406, 0, 0, 0.870355606079101562, 0.492423713207244873, 120, 255, 1, 46702), -- Haystack 01 (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+21, 180353, 1, 14, 4982, '0', 0, 0, 1323.3836669921875, -4411.408203125, 25.90285301208496093, 0, 0, 0, 0, 1, 120, 255, 1, 46702), -- Freestanding Torch 01 (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+22, 180353, 1, 14, 4982, '0', 0, 0, 1294.404541015625, -4402.734375, 26.55142021179199218, 0, 0, 0, 0, 1, 120, 255, 1, 46702), -- Freestanding Torch 01 (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+23, 180353, 1, 14, 4982, '0', 0, 0, 1322.4427490234375, -4429.18603515625, 24.48129844665527343, 0, 0, 0, 0, 1, 120, 255, 1, 46702), -- Freestanding Torch 01 (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+24, 180353, 1, 14, 4982, '0', 0, 0, 1322.21533203125, -4424.501953125, 24.45236015319824218, 0, 0, 0, 0, 1, 120, 255, 1, 46702), -- Freestanding Torch 01 (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+25, 180353, 1, 14, 4982, '0', 0, 0, 1279.064208984375, -4441.02978515625, 27.21180534362792968, 0, 0, 0, 0, 1, 120, 255, 1, 46702), -- Freestanding Torch 01 (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+26, 180353, 1, 14, 4982, '0', 0, 0, 1323.5694580078125, -4415.953125, 25.89385795593261718, 0, 0, 0, 0, 1, 120, 255, 1, 46702), -- Freestanding Torch 01 (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+27, 180353, 1, 14, 4982, '0', 0, 0, 1303.2274169921875, -4410.27978515625, 26.31661033630371093, 0, 0, 0, 0, 1, 120, 255, 1, 46702), -- Freestanding Torch 01 (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+28, 180353, 1, 14, 4982, '0', 0, 0, 1271.8992919921875, -4424.1494140625, 26.68923568725585937, 0, 0, 0, 0, 1, 120, 255, 1, 46702), -- Freestanding Torch 01 (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+29, 180353, 1, 14, 4982, '0', 0, 0, 1278.5382080078125, -4405.64599609375, 26.39136695861816406, 0, 0, 0, 0, 1, 120, 255, 1, 46702), -- Freestanding Torch 01 (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+30, 180353, 1, 14, 4982, '0', 0, 0, 1294.0399169921875, -4442.3193359375, 27.52743339538574218, 0, 0, 0, 0, 1, 120, 255, 1, 46702), -- Freestanding Torch 01 (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+31, 180353, 1, 14, 4982, '0', 0, 0, 1305.1007080078125, -4426.37841796875, 24.96751022338867187, 0, 0, 0, 0, 1, 120, 255, 1, 46702), -- Freestanding Torch 01 (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+32, 195164, 1, 14, 4982, '0', 0, 0, 1280.4444580078125, -4441.07666015625, 27.97844886779785156, 4.642575740814208984, 0, 0, -0.731353759765625, 0.681998312473297119, 120, 255, 1, 46702), -- Pumpkin (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+33, 195164, 1, 14, 4982, '0', 0, 0, 1294.8785400390625, -4442.49853515625, 28.1468505859375, 1.588248729705810546, 0, 0, 0.713250160217285156, 0.700909554958343505, 120, 255, 1, 46702), -- Pumpkin (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+34, 195164, 1, 14, 4982, '0', 0, 0, 1277.4774169921875, -4405.59375, 27.00274085998535156, 1.553341388702392578, 0, 0, 0.700908660888671875, 0.713251054286956787, 120, 255, 1, 46702), -- Pumpkin (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+35, 195164, 1, 14, 4982, '0', 0, 0, 1271.5989990234375, -4422.890625, 27.20762062072753906, 0.069811686873435974, 0, 0, 0.034898757934570312, 0.999390840530395507, 120, 255, 1, 46702), -- Pumpkin (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+36, 195164, 1, 14, 4982, '0', 0, 0, 1295.532958984375, -4403.0712890625, 27.26003837585449218, 1.570795774459838867, 0, 0, 0.707106590270996093, 0.707106947898864746, 120, 255, 1, 46702), -- Pumpkin (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+37, 195164, 1, 14, 4982, '0', 0, 0, 1303.54345703125, -4411.64599609375, 26.83146286010742187, 3.176533222198486328, 0, 0, -0.999847412109375, 0.017469281330704689, 120, 255, 1, 46702), -- Pumpkin (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+38, 195164, 1, 14, 4982, '0', 0, 0, 1277.829833984375, -4441.0869140625, 27.79824638366699218, 1.588248729705810546, 0, 0, 0.713250160217285156, 0.700909554958343505, 120, 255, 1, 46702), -- Pumpkin (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+39, 195164, 1, 14, 4982, '0', 0, 0, 1321.001708984375, -4423.63916015625, 25.15823173522949218, 3.141592741012573242, 0, 0, -1, 0, 120, 255, 1, 46702), -- Pumpkin (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+40, 195164, 1, 14, 4982, '0', 0, 0, 1305.1510009765625, -4427.5537109375, 25.55774497985839843, 0.069811686873435974, 0, 0, 0.034898757934570312, 0.999390840530395507, 120, 255, 1, 46702), -- Pumpkin (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+41, 195164, 1, 14, 4982, '0', 0, 0, 1303.0069580078125, -4409.17724609375, 27.0159912109375, 0.418878614902496337, 0, 0, 0.207911491394042968, 0.978147625923156738, 120, 255, 1, 46702), -- Pumpkin (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+42, 195164, 1, 14, 4982, '0', 0, 0, 1322.263916015625, -4428.4755859375, 24.47579383850097656, 3.141592741012573242, 0, 0, -1, 0, 120, 255, 1, 46702), -- Pumpkin (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+43, 195164, 1, 14, 4982, '0', 0, 0, 1279.626708984375, -4405.88525390625, 27.18757057189941406, 1.448621988296508789, 0, 0, 0.662619590759277343, 0.748956084251403808, 120, 255, 1, 46702), -- Pumpkin (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+44, 195164, 1, 14, 4982, '0', 0, 0, 1271.7847900390625, -4425.43408203125, 27.351470947265625, 3.176533222198486328, 0, 0, -0.999847412109375, 0.017469281330704689, 120, 255, 1, 46702), -- Pumpkin (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+45, 195164, 1, 14, 4982, '0', 0, 0, 1305.0382080078125, -4425.0869140625, 25.703125, 0.052358884364366531, 0, 0, 0.02617645263671875, 0.999657332897186279, 120, 255, 1, 46702), -- Pumpkin (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+46, 195164, 1, 14, 4982, '0', 0, 0, 1321.1146240234375, -4412.3212890625, 25.35983467102050781, 6.178466320037841796, 0, 0, -0.05233573913574218, 0.998629570007324218, 120, 255, 1, 46702), -- Pumpkin (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+47, 195164, 1, 14, 4982, '0', 0, 0, 1292.6822509765625, -4442.3369140625, 28.28226661682128906, 1.518436193466186523, 0, 0, 0.6883544921875, 0.725374460220336914, 120, 255, 1, 46702), -- Pumpkin (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+48, 195164, 1, 14, 4982, '0', 0, 0, 1293.2066650390625, -4402.69091796875, 27.22710990905761718, 4.642575740814208984, 0, 0, -0.731353759765625, 0.681998312473297119, 120, 255, 1, 46702), -- Pumpkin (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+49, 195164, 1, 14, 4982, '0', 0, 0, 1321.829833984375, -4428.1650390625, 24.47648048400878906, 2.426007747650146484, 0, 0, 0.936672210693359375, 0.350207358598709106, 120, 255, 1, 46702), -- Pumpkin (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+50, 195164, 1, 14, 4982, '0', 0, 0, 1321.0833740234375, -4430.080078125, 25.24030876159667968, 3.141592741012573242, 0, 0, -1, 0, 120, 255, 1, 46702), -- Pumpkin (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+51, 195191, 1, 14, 4982, '0', 0, 0, 1321.6510009765625, -4413.78466796875, 24.50566291809082031, 3.176533222198486328, 0, 0, -0.999847412109375, 0.017469281330704689, 120, 255, 1, 46702), -- Dwarven Table Simple 05 (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+52, 195192, 1, 14, 4982, '0', 0, 0, 1321.920166015625, -4412.10400390625, 25.39811515808105468, 5.777040958404541015, 0, 0, -0.25037956237792968, 0.968147754669189453, 120, 255, 1, 46702), -- Basket of Corn (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+53, 195194, 1, 14, 4982, '0', 0, 0, 1322.1163330078125, -4413.01904296875, 25.38296127319335937, 3.804818391799926757, 0, 0, -0.94551849365234375, 0.325568377971649169, 120, 255, 1, 46702), -- Small Basket 01 (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+54, 195195, 1, 14, 4982, '0', 0, 0, 1322.1353759765625, -4415.234375, 25.38079261779785156, 3.298687219619750976, 0, 0, -0.99691677093505859, 0.078466430306434631, 120, 255, 1, 46702), -- Cranberry Masher (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+55, 195196, 1, 14, 4982, '0', 0, 0, 1320.6754150390625, -4410.63037109375, 24.57164382934570312, 3.804818391799926757, 0, 0, -0.94551849365234375, 0.325568377971649169, 120, 255, 1, 46702), -- Large Basket 03 (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+56, 195197, 1, 14, 4982, '0', 0, 0, 1320.470458984375, -4412.17529296875, 24.44214248657226562, 3.9793548583984375, 0, 0, -0.9135446548461914, 0.406738430261611938, 120, 255, 1, 46702), -- Grain Sack 02 (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+57, 195198, 1, 14, 4982, '0', 0, 0, 1320.6319580078125, -4419.82470703125, 24.53960990905761718, 5.811946868896484375, 0, 0, -0.2334451675415039, 0.972369968891143798, 120, 255, 1, 46702), -- Crate 01 (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+58, 195199, 1, 14, 4982, '0', 0, 0, 1320.0086669921875, -4409.3212890625, 24.68540191650390625, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46702), -- Cranberry Bush (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+59, 195199, 1, 14, 4982, '0', 0, 0, 1322.046875, -4409.5224609375, 25.32001686096191406, 1.012289404869079589, 0, 0, 0.484808921813964843, 0.87462007999420166, 120, 255, 1, 46702), -- Cranberry Bush (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+60, 195199, 1, 14, 4982, '0', 0, 0, 1321.0728759765625, -4408.86279296875, 24.87704086303710937, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46702), -- Cranberry Bush (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+61, 195200, 1, 14, 4982, '0', 0, 0, 1321.7413330078125, -4417.61962890625, 24.569793701171875, 0, 0, 0, 0, 1, 120, 255, 1, 46702), -- Pilgrim's Bounty Cooking Fire (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+62, 195664, 1, 14, 4982, '0', 0, 0, 1295.0086669921875, -4412.328125, 26.59180259704589843, 2.042035102844238281, 0, 0, 0.852640151977539062, 0.522498607635498046, 120, 255, 1, 46702), -- [DND] Collision Thanksgiving Table Size (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+63, 195664, 1, 14, 4982, '0', 0, 0, 1293.576416015625, -4428.80224609375, 26.83843421936035156, 0, 0, 0, 0, 1, 120, 255, 1, 46702), -- [DND] Collision Thanksgiving Table Size (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+64, 195664, 1, 14, 4982, '0', 0, 0, 1279.30908203125, -4430.4130859375, 26.90277862548828125, 2.042035102844238281, 0, 0, 0.852640151977539062, 0.522498607635498046, 120, 255, 1, 46702), -- [DND] Collision Thanksgiving Table Size (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
(@OGUID+65, 195664, 1, 14, 4982, '0', 0, 0, 1276.8472900390625, -4415.20166015625, 26.40798568725585937, 1.274088263511657714, 0, 0, 0.594821929931640625, 0.80385744571685791, 120, 255, 1, 46702); -- [DND] Collision Thanksgiving Table Size (Area: The Dranosh'ar Blockade - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+10;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1),
|
||||
(@EVENT, @CGUID+2),
|
||||
(@EVENT, @CGUID+3),
|
||||
(@EVENT, @CGUID+4),
|
||||
(@EVENT, @CGUID+5),
|
||||
(@EVENT, @CGUID+6),
|
||||
(@EVENT, @CGUID+7),
|
||||
(@EVENT, @CGUID+8),
|
||||
(@EVENT, @CGUID+9),
|
||||
(@EVENT, @CGUID+10);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+65;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25),
|
||||
(@EVENT, @OGUID+26),
|
||||
(@EVENT, @OGUID+27),
|
||||
(@EVENT, @OGUID+28),
|
||||
(@EVENT, @OGUID+29),
|
||||
(@EVENT, @OGUID+30),
|
||||
(@EVENT, @OGUID+31),
|
||||
(@EVENT, @OGUID+32),
|
||||
(@EVENT, @OGUID+33),
|
||||
(@EVENT, @OGUID+34),
|
||||
(@EVENT, @OGUID+35),
|
||||
(@EVENT, @OGUID+36),
|
||||
(@EVENT, @OGUID+37),
|
||||
(@EVENT, @OGUID+38),
|
||||
(@EVENT, @OGUID+39),
|
||||
(@EVENT, @OGUID+40),
|
||||
(@EVENT, @OGUID+41),
|
||||
(@EVENT, @OGUID+42),
|
||||
(@EVENT, @OGUID+43),
|
||||
(@EVENT, @OGUID+44),
|
||||
(@EVENT, @OGUID+45),
|
||||
(@EVENT, @OGUID+46),
|
||||
(@EVENT, @OGUID+47),
|
||||
(@EVENT, @OGUID+48),
|
||||
(@EVENT, @OGUID+49),
|
||||
(@EVENT, @OGUID+50),
|
||||
(@EVENT, @OGUID+51),
|
||||
(@EVENT, @OGUID+52),
|
||||
(@EVENT, @OGUID+53),
|
||||
(@EVENT, @OGUID+54),
|
||||
(@EVENT, @OGUID+55),
|
||||
(@EVENT, @OGUID+56),
|
||||
(@EVENT, @OGUID+57),
|
||||
(@EVENT, @OGUID+58),
|
||||
(@EVENT, @OGUID+59),
|
||||
(@EVENT, @OGUID+60),
|
||||
(@EVENT, @OGUID+61),
|
||||
(@EVENT, @OGUID+62),
|
||||
(@EVENT, @OGUID+63),
|
||||
(@EVENT, @OGUID+64),
|
||||
(@EVENT, @OGUID+65);
|
||||
@@ -1,108 +0,0 @@
|
||||
SET @CGUID := 396480;
|
||||
SET @OGUID := 248697;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+2;
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `PhaseGroup`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES
|
||||
(@CGUID+0, 32823, 1, 14, 362, '0', 0, 0, 0, 0, 253.087005615234375, -4762.85986328125, 12.20313262939453125, 4.956735134124755859, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Razor Hill - Difficulty: 0) (Auras: )
|
||||
(@CGUID+1, 32823, 1, 14, 362, '0', 0, 0, 0, 0, 256.266998291015625, -4774.66015625, 11.46393299102783203, 4.956735134124755859, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Razor Hill - Difficulty: 0)
|
||||
(@CGUID+2, 34654, 1, 14, 362, '0', 0, 0, 0, 0, 253.337005615234375, -4753.85986328125, 11.8663330078125, 1.082104086875915527, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Feast Hostess (Area: Razor Hill - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+41;
|
||||
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, 179968, 1, 14, 362, '0', 0, 0, 259.9639892578125, -4768.60009765625, 11.68229961395263671, 3.473210096359252929, 0, 0, -0.98628520965576171, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 1, 14, 362, '0', 0, 0, 259.269012451171875, -4766.7099609375, 11.7239999771118164, 3.43830275535583496, 0, 0, -0.98901557922363281, 0.147811368107795715, 120, 255, 1, 46741), -- Haystack 01 (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 1, 14, 362, '0', 0, 0, 252.3260040283203125, -4783.22998046875, 10.75049972534179687, 1.239183306694030761, 0, 0, 0.580702781677246093, 0.814115643501281738, 120, 255, 1, 46741), -- Haystack 01 (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 1, 14, 362, '0', 0, 0, 244.281005859375, -4759.740234375, 12.91839981079101562, 2.565631866455078125, 0, 0, 0.958819389343261718, 0.284016460180282592, 120, 255, 1, 46741), -- Haystack 01 (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 1, 14, 362, '0', 0, 0, 247.8130035400390625, -4772.830078125, 11.55210018157958984, 0.226892471313476562, 0, 0, 0.113203048706054687, 0.993571877479553222, 120, 255, 1, 46741), -- Haystack 01 (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 1, 14, 362, '0', 0, 0, 247.188995361328125, -4770.81005859375, 11.82989978790283203, 0.314158439636230468, 0, 0, 0.156434059143066406, 0.987688362598419189, 120, 255, 1, 46741), -- Haystack 01 (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 1, 14, 362, '0', 0, 0, 255.417999267578125, -4754.35986328125, 11.48390007019042968, 4.555310726165771484, 0, 0, -0.76040554046630859, 0.649448513984680175, 120, 255, 1, 46741), -- Haystack 01 (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 1, 14, 362, '0', 0, 0, 260.24798583984375, -4783.5400390625, 10.90050029754638671, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 46741), -- Haystack 01 (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 1, 14, 362, '0', 0, 0, 243.787994384765625, -4762.06005859375, 12.84720039367675781, 0.261798173189163208, 0, 0, 0.130525588989257812, 0.991444945335388183, 120, 255, 1, 46741), -- Haystack 01 (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 1, 14, 362, '0', 0, 0, 258.14801025390625, -4784.60009765625, 10.82269954681396484, 2.007128477096557617, 0, 0, 0.84339141845703125, 0.537299633026123046, 120, 255, 1, 46741), -- Haystack 01 (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+10, 179968, 1, 14, 362, '0', 0, 0, 263.99700927734375, -4777.0400390625, 11.27089977264404296, 3.543023586273193359, 0, 0, -0.97992420196533203, 0.199370384216308593, 120, 255, 1, 46741), -- Haystack 01 (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+11, 179968, 1, 14, 362, '0', 0, 0, 250.9499969482421875, -4782, 10.77779960632324218, 0.418878614902496337, 0, 0, 0.207911491394042968, 0.978147625923156738, 120, 255, 1, 46741), -- Haystack 01 (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+12, 179968, 1, 14, 362, '0', 0, 0, 257.235992431640625, -4755.9599609375, 11.48270034790039062, 3.595378875732421875, 0, 0, -0.97437000274658203, 0.224951311945915222, 120, 255, 1, 46741), -- Haystack 01 (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+13, 179968, 1, 14, 362, '0', 0, 0, 250.037994384765625, -4754.72021484375, 12.27779960632324218, 4.991643905639648437, 0, 0, -0.60181427001953125, 0.798636078834533691, 120, 255, 1, 46741), -- Haystack 01 (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+14, 179968, 1, 14, 362, '0', 0, 0, 263.587005615234375, -4779.3798828125, 11.1436004638671875, 2.44346022605895996, 0, 0, 0.939692497253417968, 0.34202045202255249, 120, 255, 1, 46741), -- Haystack 01 (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+15, 179968, 1, 14, 362, '0', 0, 0, 247.8390045166015625, -4755.58984375, 12.57989978790283203, 5.061456203460693359, 0, 0, -0.57357597351074218, 0.819152355194091796, 120, 255, 1, 46741), -- Haystack 01 (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+16, 180353, 1, 14, 362, '0', 0, 0, 259.635009765625, -4767.75, 11.70489978790283203, 4.956737518310546875, 0, 0, -0.61566066741943359, 0.788011372089385986, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+17, 180353, 1, 14, 362, '0', 0, 0, 247.3679962158203125, -4771.85986328125, 11.6875, 4.956737518310546875, 0, 0, -0.61566066741943359, 0.788011372089385986, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+18, 180353, 1, 14, 362, '0', 0, 0, 256.365997314453125, -4755.2001953125, 11.47570037841796875, 4.956737518310546875, 0, 0, -0.61566066741943359, 0.788011372089385986, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+19, 180353, 1, 14, 362, '0', 0, 0, 264.1199951171875, -4778.2998046875, 11.20139980316162109, 2.164205789566040039, 0, 0, 0.882946968078613281, 0.469472706317901611, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+20, 180353, 1, 14, 362, '0', 0, 0, 248.8300018310546875, -4755.16015625, 12.43920040130615234, 5.026549339294433593, 0, 0, -0.5877847671508789, 0.809017360210418701, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+21, 180353, 1, 14, 362, '0', 0, 0, 251.7449951171875, -4782.56982421875, 10.77079963684082031, 4.956737518310546875, 0, 0, -0.61566066741943359, 0.788011372089385986, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+22, 180353, 1, 14, 362, '0', 0, 0, 243.688995361328125, -4760.85009765625, 12.92879962921142578, 4.956737518310546875, 0, 0, -0.61566066741943359, 0.788011372089385986, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+23, 180353, 1, 14, 362, '0', 0, 0, 259.1610107421875, -4784.16015625, 10.85449981689453125, 1.937312245368957519, 0, 0, 0.824125289916992187, 0.566407561302185058, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+24, 195164, 1, 14, 362, '0', 0, 0, 259.092010498046875, -4766.60986328125, 12.37390041351318359, 3.473210096359252929, 0, 0, -0.98628520965576171, 0.165049895644187927, 120, 255, 1, 46741), -- Pumpkin (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+25, 195164, 1, 14, 362, '0', 0, 0, 259.907989501953125, -4768.52001953125, 12.32880020141601562, 3.490667104721069335, 0, 0, -0.98480701446533203, 0.173652306199073791, 120, 255, 1, 46741), -- Pumpkin (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+26, 195164, 1, 14, 362, '0', 0, 0, 252.4720001220703125, -4783.330078125, 11.39480018615722656, 1.274088263511657714, 0, 0, 0.594821929931640625, 0.80385744571685791, 120, 255, 1, 46741), -- Pumpkin (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+27, 195164, 1, 14, 362, '0', 0, 0, 244.3350067138671875, -4759.77001953125, 13.55970001220703125, 2.565631866455078125, 0, 0, 0.958819389343261718, 0.284016460180282592, 120, 255, 1, 46741), -- Pumpkin (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+28, 195164, 1, 14, 362, '0', 0, 0, 243.8329925537109375, -4761.97021484375, 13.49370002746582031, 0.24434557557106018, 0, 0, 0.121869087219238281, 0.9925462007522583, 120, 255, 1, 46741), -- Pumpkin (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+29, 195164, 1, 14, 362, '0', 0, 0, 263.587005615234375, -4779.31982421875, 11.79129981994628906, 2.460912704467773437, 0, 0, 0.942641258239746093, 0.333807557821273803, 120, 255, 1, 46741), -- Pumpkin (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+30, 195164, 1, 14, 362, '0', 0, 0, 250.9980010986328125, -4781.93994140625, 11.42599964141845703, 0.418878614902496337, 0, 0, 0.207911491394042968, 0.978147625923156738, 120, 255, 1, 46741), -- Pumpkin (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+31, 195164, 1, 14, 362, '0', 0, 0, 247.1349945068359375, -4770.7998046875, 12.47809982299804687, 0.314158439636230468, 0, 0, 0.156434059143066406, 0.987688362598419189, 120, 255, 1, 46741), -- Pumpkin (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+32, 195164, 1, 14, 362, '0', 0, 0, 249.985992431640625, -4754.7099609375, 12.92770004272460937, 4.991643905639648437, 0, 0, -0.60181427001953125, 0.798636078834533691, 120, 255, 1, 46741), -- Pumpkin (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+33, 195164, 1, 14, 362, '0', 0, 0, 260.14599609375, -4783.52978515625, 11.54430007934570312, 2.059488296508789062, 0, 0, 0.857167243957519531, 0.515038192272186279, 120, 255, 1, 46741), -- Pumpkin (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+34, 195164, 1, 14, 362, '0', 0, 0, 258.14801025390625, -4784.52978515625, 11.47039985656738281, 2.007128477096557617, 0, 0, 0.84339141845703125, 0.537299633026123046, 120, 255, 1, 46741), -- Pumpkin (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+35, 195164, 1, 14, 362, '0', 0, 0, 247.8260040283203125, -4755.7001953125, 13.22980022430419921, 5.061456203460693359, 0, 0, -0.57357597351074218, 0.819152355194091796, 120, 255, 1, 46741), -- Pumpkin (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+36, 195164, 1, 14, 362, '0', 0, 0, 255.2469940185546875, -4754.27001953125, 12.14570045471191406, 4.59021615982055664, 0, 0, -0.74895572662353515, 0.662620067596435546, 120, 255, 1, 46741), -- Pumpkin (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+37, 195164, 1, 14, 362, '0', 0, 0, 257.180999755859375, -4755.8798828125, 12.11520004272460937, 3.612837791442871093, 0, 0, -0.97236919403076171, 0.233448356389999389, 120, 255, 1, 46741), -- Pumpkin (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+38, 195164, 1, 14, 362, '0', 0, 0, 263.89801025390625, -4777.02978515625, 11.91609954833984375, 3.560472726821899414, 0, 0, -0.97814750671386718, 0.207912087440490722, 120, 255, 1, 46741), -- Pumpkin (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+39, 195164, 1, 14, 362, '0', 0, 0, 247.7969970703125, -4772.93994140625, 12.18120002746582031, 0.24434557557106018, 0, 0, 0.121869087219238281, 0.9925462007522583, 120, 255, 1, 46741), -- Pumpkin (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+40, 195664, 1, 14, 362, '0', 0, 0, 253.087005615234375, -4762.85986328125, 12.11979961395263671, 4.956737518310546875, 0, 0, -0.61566066741943359, 0.788011372089385986, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Razor Hill - Difficulty: 0)
|
||||
(@OGUID+41, 195664, 1, 14, 362, '0', 0, 0, 256.266998291015625, -4774.66015625, 11.3805999755859375, 4.956737518310546875, 0, 0, -0.61566066741943359, 0.788011372089385986, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Razor Hill - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+2;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1),
|
||||
(@EVENT, @CGUID+2);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+41;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25),
|
||||
(@EVENT, @OGUID+26),
|
||||
(@EVENT, @OGUID+27),
|
||||
(@EVENT, @OGUID+28),
|
||||
(@EVENT, @OGUID+29),
|
||||
(@EVENT, @OGUID+30),
|
||||
(@EVENT, @OGUID+31),
|
||||
(@EVENT, @OGUID+32),
|
||||
(@EVENT, @OGUID+33),
|
||||
(@EVENT, @OGUID+34),
|
||||
(@EVENT, @OGUID+35),
|
||||
(@EVENT, @OGUID+36),
|
||||
(@EVENT, @OGUID+37),
|
||||
(@EVENT, @OGUID+38),
|
||||
(@EVENT, @OGUID+39),
|
||||
(@EVENT, @OGUID+40),
|
||||
(@EVENT, @OGUID+41);
|
||||
@@ -1,219 +0,0 @@
|
||||
SET @CGUID := 396483;
|
||||
SET @OGUID := 248739;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature templates
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60 WHERE `entry`=34678; -- Dokin Farplain
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60 WHERE `entry`=34684; -- Laha Farplain
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=10569, `minlevel`=60, `maxlevel`=60, `npcflag`=83 WHERE `entry`=34714; -- Mahara Goldwheat
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60, `unit_flags`=2147746560 WHERE `entry`=35343; -- Bountiful Barrel
|
||||
|
||||
DELETE FROM `creature_template_addon` WHERE `entry`=34714;
|
||||
INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(34714, 0, 0, 0, 2, 0, 0, 0, 0, 0, ''); -- 34714 (Mahara Goldwheat)
|
||||
|
||||
-- Equipments
|
||||
UPDATE `creature_equip_template` SET `VerifiedBuild`=46741 WHERE (`ID`=1 AND `CreatureID` IN (52651,51372,34723,34721,34719,34718,34717,34715,34714,34678,10881,8364,8362,8361,5189,5054,3084,3002,3001));
|
||||
|
||||
-- Scaling
|
||||
DELETE FROM `creature_template_scaling` WHERE `DifficultyID`=0 AND `Entry` IN (34678, 34684, 34714, 35343);
|
||||
INSERT INTO `creature_template_scaling` (`Entry`, `DifficultyID`, `LevelScalingDeltaMin`, `LevelScalingDeltaMax`, `ContentTuningID`, `VerifiedBuild`) VALUES
|
||||
(34678, 0, 0, 0, 389, 46741),
|
||||
(34684, 0, 0, 0, 389, 46741),
|
||||
(34714, 0, 0, 0, 389, 46741),
|
||||
(35343, 0, 0, 0, 389, 46741);
|
||||
|
||||
UPDATE `creature_template_scaling` SET `VerifiedBuild`=46741 WHERE (`DifficultyID`=0 AND `Entry` IN (121541,61143,61141,52658,52657,52655,52651,51503,51372,34824,34823,34822,34819,34812,34730,34723,34721,34719,34718,34717,34715,34654,32840,32839,32831,32830,32829,32827,32825,32824,32823,25075,24935,24934,10881,8364,8362,8361,5189,5054,4166,3084,3035,3002,3001,2959,2957,2956,2620));
|
||||
|
||||
-- Trainer
|
||||
DELETE FROM `creature_trainer` WHERE `CreatureID`=34714;
|
||||
INSERT INTO `creature_trainer` (`CreatureID`, `TrainerID`, `MenuID`, `OptionID`) VALUES
|
||||
(34714, 136, 10569, 0);
|
||||
|
||||
-- Quests
|
||||
UPDATE `quest_poi_points` SET `VerifiedBuild`=46741 WHERE (`QuestID`=14060 AND `Idx1`=1 AND `Idx2`=0) OR (`QuestID`=14060 AND `Idx1`=0 AND `Idx2`=0);
|
||||
|
||||
DELETE FROM `quest_details` WHERE `ID`=14060;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(14060, 1, 1, 0, 0, 0, 0, 0, 0, 46741); -- Easy As Pie
|
||||
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=1 WHERE `ID`=14060;
|
||||
|
||||
UPDATE `creature_queststarter` SET `VerifiedBuild`=46741 WHERE (`id`=34714 AND `quest`=14060);
|
||||
|
||||
UPDATE `creature_questender` SET `VerifiedBuild`=46741 WHERE (`id`=34714 AND `quest`=14060);
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+10;
|
||||
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, 32823, 1, 1638, 5345, '0', 0, 0, 0, 0, -1319.9461669921875, 201.3663177490234375, 59.04747772216796875, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Thunder Bluff - Difficulty: 0) (Auras: )
|
||||
(@CGUID+1, 32823, 1, 1638, 5345, '0', 0, 0, 0, 0, -1282.4375, 204.439239501953125, 58.96425247192382812, 2.042035102844238281, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Thunder Bluff - Difficulty: 0) (Auras: )
|
||||
(@CGUID+2, 32823, 1, 1638, 5345, '0', 0, 0, 0, 0, -1283.7882080078125, 215.9131927490234375, 58.96979904174804687, 2.042035102844238281, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@CGUID+3, 32823, 1, 1638, 5345, '0', 0, 0, 0, 0, -1316.0625, 189.8663177490234375, 59.27079010009765625, 1.710422635078430175, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Thunder Bluff - Difficulty: 0) (Auras: )
|
||||
(@CGUID+4, 34654, 1, 1638, 5345, '0', 0, 0, 0, 0, -1303.18408203125, 204.251739501953125, 58.94807815551757812, 3.40339207649230957, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Feast Hostess (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@CGUID+5, 34678, 1, 1638, 5345, '0', 0, 0, 0, 1, -1293.595458984375, 194.4618072509765625, 59.82789993286132812, 0.907571196556091308, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Dokin Farplain (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@CGUID+6, 34684, 1, 1638, 5345, '0', 0, 0, 0, 0, -1290.921875, 192.7881927490234375, 59.7661590576171875, 1.099557399749755859, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Laha Farplain (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@CGUID+7, 34714, 1, 1638, 5345, '0', 0, 0, 0, 1, -1335.94970703125, 193.4618072509765625, 61.42329025268554687, 6.143558979034423828, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Mahara Goldwheat (Area: Thunder Bluff - Difficulty: 0) (Auras: )
|
||||
(@CGUID+8, 35343, 1, 1638, 5345, '0', 0, 0, 0, 0, -1287.4149169921875, 191.420135498046875, 59.39658355712890625, 5.201081275939941406, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Barrel (Area: Thunder Bluff - Difficulty: 0) (Auras: )
|
||||
(@CGUID+9, 35343, 1, 1638, 5345, '0', 0, 0, 0, 0, -1289.8941650390625, 188.8038177490234375, 59.20885467529296875, 4.310963153839111328, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Barrel (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@CGUID+10, 35343, 1, 1638, 5345, '0', 0, 0, 0, 0, -1289.65283203125, 190.98785400390625, 59.25662612915039062, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Barrel (Area: Thunder Bluff - Difficulty: 0) (Auras: )
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+68;
|
||||
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, 179968, 1, 1638, 5345, '0', 0, 0, -1293.25, 194.859375, 59.06423568725585937, 0.977383077144622802, 0, 0, 0.469470977783203125, 0.882947921752929687, 120, 255, 1, 46741), -- Haystack 01 (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 1, 1638, 5345, '0', 0, 0, -1272.9879150390625, 219.6336822509765625, 59.29188919067382812, 1.535889506340026855, 0, 0, 0.694658279418945312, 0.719339847564697265, 120, 255, 1, 46741), -- Haystack 01 (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 1, 1638, 5345, '0', 0, 0, -1330.4097900390625, 202.50347900390625, 59.38118362426757812, 1.605701684951782226, 0, 0, 0.719339370727539062, 0.694658815860748291, 120, 255, 1, 46741), -- Haystack 01 (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 1, 1638, 5345, '0', 0, 0, -1290.6927490234375, 193.0572967529296875, 59.09027862548828125, 0.977383077144622802, 0, 0, 0.469470977783203125, 0.882947921752929687, 120, 255, 1, 46741), -- Haystack 01 (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 1, 1638, 5345, '0', 0, 0, -1331.298583984375, 183.22222900390625, 60.75667953491210937, 1.745326757431030273, 0, 0, 0.766043663024902343, 0.642788589000701904, 120, 255, 1, 46741), -- Haystack 01 (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 1, 1638, 5345, '0', 0, 0, -1305.265625, 188.361114501953125, 59.32638931274414062, 2.530723094940185546, 0, 0, 0.953716278076171875, 0.300707906484603881, 120, 255, 1, 46741), -- Haystack 01 (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 1, 1638, 5345, '0', 0, 0, -1270.7135009765625, 219.6875, 59.4375, 1.623155713081359863, 0, 0, 0.725374221801757812, 0.688354730606079101, 120, 255, 1, 46741), -- Haystack 01 (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 1, 1638, 5345, '0', 0, 0, -1313.173583984375, 217.076385498046875, 58.15972137451171875, 5.044002056121826171, 0, 0, -0.58070278167724609, 0.814115643501281738, 120, 255, 1, 46741), -- Haystack 01 (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 1, 1638, 5345, '0', 0, 0, -1332.8125, 202.6684112548828125, 59.39925765991210937, 4.625123500823974609, 0, 0, -0.73727703094482421, 0.67559051513671875, 120, 255, 1, 46741), -- Haystack 01 (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 1, 1638, 5345, '0', 0, 0, -1301.4600830078125, 193.359375, 59.16145706176757812, 1.884953022003173828, 0, 0, 0.809016227722167968, 0.587786316871643066, 120, 255, 1, 46741), -- Haystack 01 (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+10, 179968, 1, 1638, 5345, '0', 0, 0, -1336.3472900390625, 193.51910400390625, 60.78462600708007812, 6.265733242034912109, 0, 0, -0.00872611999511718, 0.999961912631988525, 120, 255, 1, 46741), -- Haystack 01 (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+11, 179968, 1, 1638, 5345, '0', 0, 0, -1294.5191650390625, 196.94097900390625, 59.01711654663085937, 0.349065244197845458, 0, 0, 0.173647880554199218, 0.984807789325714111, 120, 255, 1, 46741), -- Haystack 01 (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+12, 179968, 1, 1638, 5345, '0', 0, 0, -1335.5504150390625, 193.4947967529296875, 60.76797103881835937, 6.248279094696044921, 0, 0, -0.01745223999023437, 0.999847710132598876, 120, 255, 1, 46741), -- Haystack 01 (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+13, 179968, 1, 1638, 5345, '0', 0, 0, -1303.048583984375, 192.092010498046875, 59.20486068725585937, 2.652894020080566406, 0, 0, 0.970294952392578125, 0.241925001144409179, 120, 255, 1, 46741), -- Haystack 01 (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+14, 179968, 1, 1638, 5345, '0', 0, 0, -1299.1597900390625, 219.81597900390625, 58.68712615966796875, 4.886923789978027343, 0, 0, -0.64278697967529296, 0.766044974327087402, 120, 255, 1, 46741), -- Haystack 01 (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+15, 179968, 1, 1638, 5345, '0', 0, 0, -1328.65625, 183.7881927490234375, 60.86743927001953125, 1.640606880187988281, 0, 0, 0.731352806091308593, 0.6819993257522583, 120, 255, 1, 46741), -- Haystack 01 (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+16, 179968, 1, 1638, 5345, '0', 0, 0, -1296.09033203125, 220.4270782470703125, 58.75826644897460937, 5.078907966613769531, 0, 0, -0.56640625, 0.824126183986663818, 120, 255, 1, 46741), -- Haystack 01 (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+17, 179968, 1, 1638, 5345, '0', 0, 0, -1293.7222900390625, 194.25347900390625, 59.0800323486328125, 0.977383077144622802, 0, 0, 0.469470977783203125, 0.882947921752929687, 120, 255, 1, 46741), -- Haystack 01 (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+18, 179968, 1, 1638, 5345, '0', 0, 0, -1315.82470703125, 214.642364501953125, 58.56658172607421875, 5.427974700927734375, 0, 0, -0.41469287872314453, 0.909961462020874023, 120, 255, 1, 46741), -- Haystack 01 (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+19, 179968, 1, 1638, 5345, '0', 0, 0, -1288.4617919921875, 192.67535400390625, 59.23349380493164062, 1.570795774459838867, 0, 0, 0.707106590270996093, 0.707106947898864746, 120, 255, 1, 46741), -- Haystack 01 (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+20, 179968, 1, 1638, 5345, '0', 0, 0, -1291.092041015625, 192.3993072509765625, 59.11111068725585937, 0.977383077144622802, 0, 0, 0.469470977783203125, 0.882947921752929687, 120, 255, 1, 46741), -- Haystack 01 (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+21, 179968, 1, 1638, 5345, '0', 0, 0, -1305.7760009765625, 186.1180572509765625, 59.39863967895507812, 6.248279094696044921, 0, 0, -0.01745223999023437, 0.999847710132598876, 120, 255, 1, 46741), -- Haystack 01 (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+22, 180353, 1, 1638, 5345, '0', 0, 0, -1297.53125, 220.09722900390625, 58.73811721801757812, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+23, 180353, 1, 1638, 5345, '0', 0, 0, -1341.8992919921875, 191.5434112548828125, 60.91740798950195312, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+24, 180353, 1, 1638, 5345, '0', 0, 0, -1271.685791015625, 219.720489501953125, 59.36458206176757812, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+25, 180353, 1, 1638, 5345, '0', 0, 0, -1292.107666015625, 193.8090362548828125, 59.04325485229492187, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+26, 180353, 1, 1638, 5345, '0', 0, 0, -1329.94970703125, 183.5, 60.86111831665039062, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+27, 180353, 1, 1638, 5345, '0', 0, 0, -1342.0191650390625, 196.0121612548828125, 60.74286651611328125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+28, 180353, 1, 1638, 5345, '0', 0, 0, -1331.673583984375, 202.6961822509765625, 59.3792877197265625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+29, 180353, 1, 1638, 5345, '0', 0, 0, -1302.4739990234375, 192.8975677490234375, 59.17671585083007812, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+30, 180353, 1, 1638, 5345, '0', 0, 0, -1314.767333984375, 216.21875, 58.3557891845703125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+31, 180353, 1, 1638, 5345, '0', 0, 0, -1305.7864990234375, 187.267364501953125, 59.35844802856445312, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+32, 195164, 1, 1638, 5345, '0', 0, 0, -1302.951416015625, 192.046875, 59.91107940673828125, 2.67034769058227539, 0, 0, 0.972369194030761718, 0.233448356389999389, 120, 255, 1, 46741), -- Pumpkin (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+33, 195164, 1, 1638, 5345, '0', 0, 0, -1305.126708984375, 188.4809112548828125, 60.02998733520507812, 2.67034769058227539, 0, 0, 0.972369194030761718, 0.233448356389999389, 120, 255, 1, 46741), -- Pumpkin (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+34, 195164, 1, 1638, 5345, '0', 0, 0, -1299.0625, 219.7708282470703125, 59.40331268310546875, 4.869470596313476562, 0, 0, -0.64944744110107421, 0.760406434535980224, 120, 255, 1, 46741), -- Pumpkin (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+35, 195164, 1, 1638, 5345, '0', 0, 0, -1288.3524169921875, 192.65625, 59.88541030883789062, 1.553341388702392578, 0, 0, 0.700908660888671875, 0.713251054286956787, 120, 255, 1, 46741), -- Pumpkin (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+36, 195164, 1, 1638, 5345, '0', 0, 0, -1332.87158203125, 202.7395782470703125, 60.0962677001953125, 4.642575740814208984, 0, 0, -0.731353759765625, 0.681998312473297119, 120, 255, 1, 46741), -- Pumpkin (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+37, 195164, 1, 1638, 5345, '0', 0, 0, -1305.8663330078125, 186.0902862548828125, 60.10401153564453125, 6.265733242034912109, 0, 0, -0.00872611999511718, 0.999961912631988525, 120, 255, 1, 46741), -- Pumpkin (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+38, 195164, 1, 1638, 5345, '0', 0, 0, -1270.8489990234375, 219.5416717529296875, 60.14274215698242187, 1.588248729705810546, 0, 0, 0.713250160217285156, 0.700909554958343505, 120, 255, 1, 46741), -- Pumpkin (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+39, 195164, 1, 1638, 5345, '0', 0, 0, -1296.111083984375, 220.3819427490234375, 59.46550750732421875, 5.096362113952636718, 0, 0, -0.55919265747070312, 0.829037725925445556, 120, 255, 1, 46741), -- Pumpkin (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+40, 195164, 1, 1638, 5345, '0', 0, 0, -1294.4566650390625, 196.939239501953125, 59.7273712158203125, 0.506144583225250244, 0, 0, 0.250379562377929687, 0.968147754669189453, 120, 255, 1, 46741), -- Pumpkin (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+41, 195164, 1, 1638, 5345, '0', 0, 0, -1339.248291015625, 194.6458282470703125, 61.59141159057617187, 6.178466320037841796, 0, 0, -0.05233573913574218, 0.998629570007324218, 120, 255, 1, 46741), -- Pumpkin (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+42, 195164, 1, 1638, 5345, '0', 0, 0, -1273.04345703125, 219.703125, 59.98953628540039062, 1.518436193466186523, 0, 0, 0.6883544921875, 0.725374460220336914, 120, 255, 1, 46741), -- Pumpkin (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+43, 195164, 1, 1638, 5345, '0', 0, 0, -1315.9600830078125, 214.6302032470703125, 59.24356460571289062, 5.445427894592285156, 0, 0, -0.40673637390136718, 0.913545548915863037, 120, 255, 1, 46741), -- Pumpkin (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+44, 195164, 1, 1638, 5345, '0', 0, 0, -1331.24658203125, 183.267364501953125, 61.46392059326171875, 1.762782454490661621, 0, 0, 0.771624565124511718, 0.636078238487243652, 120, 255, 1, 46741), -- Pumpkin (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+45, 195164, 1, 1638, 5345, '0', 0, 0, -1328.71875, 183.7465362548828125, 61.57897186279296875, 1.623155713081359863, 0, 0, 0.725374221801757812, 0.688354730606079101, 120, 255, 1, 46741), -- Pumpkin (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+46, 195164, 1, 1638, 5345, '0', 0, 0, -1301.3629150390625, 193.314239501953125, 59.86749267578125, 1.954769015312194824, 0, 0, 0.829037666320800781, 0.559192776679992675, 120, 255, 1, 46741), -- Pumpkin (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+47, 195164, 1, 1638, 5345, '0', 0, 0, -1313.21533203125, 216.9809112548828125, 58.84811782836914062, 5.061456203460693359, 0, 0, -0.57357597351074218, 0.819152355194091796, 120, 255, 1, 46741), -- Pumpkin (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+48, 195164, 1, 1638, 5345, '0', 0, 0, -1330.545166015625, 202.359375, 60.10107421875, 1.570795774459838867, 0, 0, 0.707106590270996093, 0.707106947898864746, 120, 255, 1, 46741), -- Pumpkin (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+49, 195191, 1, 1638, 5345, '0', 0, 0, -1338.8072509765625, 193.314239501953125, 60.67528533935546875, 3.124123096466064453, 0, 0, 0.99996185302734375, 0.008734640665352344, 120, 255, 1, 46741), -- Dwarven Table Simple 05 (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+50, 195192, 1, 1638, 5345, '0', 0, 0, -1338.4427490234375, 194.86285400390625, 61.56208038330078125, 5.777040958404541015, 0, 0, -0.25037956237792968, 0.968147754669189453, 120, 255, 1, 46741), -- Basket of Corn (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+51, 195194, 1, 1638, 5345, '0', 0, 0, -1338.248291015625, 193.9479217529296875, 61.58173370361328125, 3.804818391799926757, 0, 0, -0.94551849365234375, 0.325568377971649169, 120, 255, 1, 46741), -- Small Basket 01 (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+52, 195195, 1, 1638, 5345, '0', 0, 0, -1338.8836669921875, 191.7604217529296875, 61.49615478515625, 3.298687219619750976, 0, 0, -0.99691677093505859, 0.078466430306434631, 120, 255, 1, 46741), -- Cranberry Masher (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+53, 195196, 1, 1638, 5345, '0', 0, 0, -1342.921875, 194.5694427490234375, 60.86281967163085937, 3.804818391799926757, 0, 0, -0.94551849365234375, 0.325568377971649169, 120, 255, 1, 46741), -- Large Basket 03 (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+54, 195197, 1, 1638, 5345, '0', 0, 0, -1340.7535400390625, 190.33160400390625, 60.70974349975585937, 3.9793548583984375, 0, 0, -0.9135446548461914, 0.406738430261611938, 120, 255, 1, 46741), -- Grain Sack 02 (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+55, 195198, 1, 1638, 5345, '0', 0, 0, -1340.8853759765625, 195.6666717529296875, 60.87417984008789062, 1.151916384696960449, 0, 0, 0.544638633728027343, 0.838670849800109863, 120, 255, 1, 46741), -- Crate 01 (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+56, 195200, 1, 1638, 5345, '0', 0, 0, -1339.1910400390625, 198.078125, 60.1246337890625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pilgrim's Bounty Cooking Fire (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+57, 195215, 1, 1638, 5345, '0', 0, 0, -1343.5416259765625, 191.98785400390625, 61.30249786376953125, 0.663223206996917724, 0, 0, 0.325567245483398437, 0.945518851280212402, 120, 255, 1, 46741), -- Sweet Potato (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+58, 195215, 1, 1638, 5345, '0', 0, 0, -1343.232666015625, 192.3385467529296875, 61.25694656372070312, 5.515241622924804687, 0, 0, -0.37460613250732421, 0.927184045314788818, 120, 255, 1, 46741), -- Sweet Potato (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+59, 195215, 1, 1638, 5345, '0', 0, 0, -1342.60595703125, 192.1493072509765625, 61.17882156372070312, 4.764749526977539062, 0, 0, -0.6883544921875, 0.725374460220336914, 120, 255, 1, 46741), -- Sweet Potato (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+60, 195215, 1, 1638, 5345, '0', 0, 0, -1343.6614990234375, 192.4427032470703125, 61.31076431274414062, 2.286378860473632812, 0, 0, 0.909960746765136718, 0.414694398641586303, 120, 255, 1, 46741), -- Sweet Potato (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+61, 195215, 1, 1638, 5345, '0', 0, 0, -1343.28125, 191.8871612548828125, 61.2704010009765625, 3.752462387084960937, 0, 0, -0.95371627807617187, 0.300707906484603881, 120, 255, 1, 46741), -- Sweet Potato (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+62, 195215, 1, 1638, 5345, '0', 0, 0, -1342.9010009765625, 192.5434112548828125, 61.21090316772460937, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Sweet Potato (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+63, 195215, 1, 1638, 5345, '0', 0, 0, -1343.296875, 192.7725677490234375, 61.25880813598632812, 3.665196180343627929, 0, 0, -0.96592521667480468, 0.258821308612823486, 120, 255, 1, 46741), -- Sweet Potato (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+64, 195215, 1, 1638, 5345, '0', 0, 0, -1342.7691650390625, 192.3020782470703125, 61.19965362548828125, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Sweet Potato (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+65, 195664, 1, 1638, 5345, '0', 0, 0, -1319.949951171875, 201.365997314453125, 58.96409988403320312, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+66, 195664, 1, 1638, 5345, '0', 0, 0, -1282.43994140625, 204.438995361328125, 58.88090133666992187, 2.042035102844238281, 0, 0, 0.852640151977539062, 0.522498607635498046, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+67, 195664, 1, 1638, 5345, '0', 0, 0, -1283.7900390625, 215.912994384765625, 58.88650131225585937, 2.042035102844238281, 0, 0, 0.852640151977539062, 0.522498607635498046, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Thunder Bluff - Difficulty: 0)
|
||||
(@OGUID+68, 195664, 1, 1638, 5345, '0', 0, 0, -1316.06005859375, 189.865997314453125, 59.1875, 1.710421562194824218, 0, 0, 0.754709243774414062, 0.656059443950653076, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Thunder Bluff - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+10;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1),
|
||||
(@EVENT, @CGUID+2),
|
||||
(@EVENT, @CGUID+3),
|
||||
(@EVENT, @CGUID+4),
|
||||
(@EVENT, @CGUID+5),
|
||||
(@EVENT, @CGUID+6),
|
||||
(@EVENT, @CGUID+7),
|
||||
(@EVENT, @CGUID+8),
|
||||
(@EVENT, @CGUID+9),
|
||||
(@EVENT, @CGUID+10);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+68;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25),
|
||||
(@EVENT, @OGUID+26),
|
||||
(@EVENT, @OGUID+27),
|
||||
(@EVENT, @OGUID+28),
|
||||
(@EVENT, @OGUID+29),
|
||||
(@EVENT, @OGUID+30),
|
||||
(@EVENT, @OGUID+31),
|
||||
(@EVENT, @OGUID+32),
|
||||
(@EVENT, @OGUID+33),
|
||||
(@EVENT, @OGUID+34),
|
||||
(@EVENT, @OGUID+35),
|
||||
(@EVENT, @OGUID+36),
|
||||
(@EVENT, @OGUID+37),
|
||||
(@EVENT, @OGUID+38),
|
||||
(@EVENT, @OGUID+39),
|
||||
(@EVENT, @OGUID+40),
|
||||
(@EVENT, @OGUID+41),
|
||||
(@EVENT, @OGUID+42),
|
||||
(@EVENT, @OGUID+43),
|
||||
(@EVENT, @OGUID+44),
|
||||
(@EVENT, @OGUID+45),
|
||||
(@EVENT, @OGUID+46),
|
||||
(@EVENT, @OGUID+47),
|
||||
(@EVENT, @OGUID+48),
|
||||
(@EVENT, @OGUID+49),
|
||||
(@EVENT, @OGUID+50),
|
||||
(@EVENT, @OGUID+51),
|
||||
(@EVENT, @OGUID+52),
|
||||
(@EVENT, @OGUID+53),
|
||||
(@EVENT, @OGUID+54),
|
||||
(@EVENT, @OGUID+55),
|
||||
(@EVENT, @OGUID+56),
|
||||
(@EVENT, @OGUID+57),
|
||||
(@EVENT, @OGUID+58),
|
||||
(@EVENT, @OGUID+59),
|
||||
(@EVENT, @OGUID+60),
|
||||
(@EVENT, @OGUID+61),
|
||||
(@EVENT, @OGUID+62),
|
||||
(@EVENT, @OGUID+63),
|
||||
(@EVENT, @OGUID+64),
|
||||
(@EVENT, @OGUID+65),
|
||||
(@EVENT, @OGUID+66),
|
||||
(@EVENT, @OGUID+67),
|
||||
(@EVENT, @OGUID+68);
|
||||
@@ -1,108 +0,0 @@
|
||||
SET @CGUID := 396494;
|
||||
SET @OGUID := 248808;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+2;
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `PhaseGroup`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES
|
||||
(@CGUID+0, 32823, 1, 215, 222, '0', 0, 0, 0, 0, -2313.96533203125, -337.289947509765625, -9.34159278869628906, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Bloodhoof Village - Difficulty: 0) (Auras: )
|
||||
(@CGUID+1, 32823, 1, 215, 222, '0', 0, 0, 0, 0, -2321.0087890625, -327.28472900390625, -9.34159278869628906, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@CGUID+2, 34654, 1, 215, 222, '0', 0, 0, 0, 0, -2316.842041015625, -344.295135498046875, -9.34159278869628906, 3.944444179534912109, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Feast Hostess (Area: Bloodhoof Village - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+41;
|
||||
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, 179968, 1, 215, 222, '0', 0, 0, -2322.060791015625, -334.64410400390625, -9.42492580413818359, 0.645771682262420654, 0, 0, 0.317304611206054687, 0.948323667049407958, 120, 255, 1, 46741), -- Haystack 01 (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 1, 215, 222, '0', 0, 0, -2316.857666015625, -342.18402099609375, -9.42492580413818359, 3.892086982727050781, 0, 0, -0.93041706085205078, 0.366502493619918823, 120, 255, 1, 46741), -- Haystack 01 (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 1, 215, 222, '0', 0, 0, -2320.666748046875, -336.470489501953125, -9.42492580413818359, 0.628316879272460937, 0, 0, 0.309016227722167968, 0.95105677843093872, 120, 255, 1, 46741), -- Haystack 01 (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 1, 215, 222, '0', 0, 0, -2304.42529296875, -336.1632080078125, -9.42492580413818359, 3.368495941162109375, 0, 0, -0.99357128143310546, 0.113208353519439697, 120, 255, 1, 46741), -- Haystack 01 (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 1, 215, 222, '0', 0, 0, -2310.345458984375, -326.977447509765625, -9.42492580413818359, 3.752462387084960937, 0, 0, -0.95371627807617187, 0.300707906484603881, 120, 255, 1, 46741), -- Haystack 01 (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 1, 215, 222, '0', 0, 0, -2309.14404296875, -328.642364501953125, -9.42492580413818359, 3.682650327682495117, 0, 0, -0.96362972259521484, 0.26724100112915039, 120, 255, 1, 46741), -- Haystack 01 (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 1, 215, 222, '0', 0, 0, -2315.208251953125, -343.586822509765625, -9.42492580413818359, 1.274088263511657714, 0, 0, 0.594821929931640625, 0.80385744571685791, 120, 255, 1, 46741), -- Haystack 01 (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 1, 215, 222, '0', 0, 0, -2314.015625, -321.767364501953125, -9.42492580413818359, 3.682650327682495117, 0, 0, -0.96362972259521484, 0.26724100112915039, 120, 255, 1, 46741), -- Haystack 01 (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 1, 215, 222, '0', 0, 0, -2309.795166015625, -342.602447509765625, -9.42492580413818359, 2.181660413742065429, 0, 0, 0.887010574340820312, 0.461749136447906494, 120, 255, 1, 46741), -- Haystack 01 (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 1, 215, 222, '0', 0, 0, -2305.3681640625, -334.295135498046875, -9.42492580413818359, 3.752462387084960937, 0, 0, -0.95371627807617187, 0.300707906484603881, 120, 255, 1, 46741), -- Haystack 01 (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+10, 179968, 1, 215, 222, '0', 0, 0, -2326.163330078125, -329.388885498046875, -9.38439369201660156, 0.628316879272460937, 0, 0, 0.309016227722167968, 0.95105677843093872, 120, 255, 1, 46741), -- Haystack 01 (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+11, 179968, 1, 215, 222, '0', 0, 0, -2308.21875, -341.638885498046875, -9.42492580413818359, 2.216565132141113281, 0, 0, 0.894933700561523437, 0.44619917869567871, 120, 255, 1, 46741), -- Haystack 01 (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+12, 179968, 1, 215, 222, '0', 0, 0, -2324.404541015625, -321.770843505859375, -9.42492580413818359, 5.288348197937011718, 0, 0, -0.4771585464477539, 0.878817260265350341, 120, 255, 1, 46741), -- Haystack 01 (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+13, 179968, 1, 215, 222, '0', 0, 0, -2326.8525390625, -327.046875, -9.42361164093017578, 0.069811686873435974, 0, 0, 0.034898757934570312, 0.999390840530395507, 120, 255, 1, 46741), -- Haystack 01 (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+14, 179968, 1, 215, 222, '0', 0, 0, -2315.692626953125, -320.5538330078125, -9.42492580413818359, 4.293513298034667968, 0, 0, -0.8386697769165039, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+15, 179968, 1, 215, 222, '0', 0, 0, -2322.350830078125, -320.498260498046875, -9.42492580413818359, 5.253442287445068359, 0, 0, -0.49242305755615234, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+16, 180353, 1, 215, 222, '0', 0, 0, -2321.27783203125, -335.40972900390625, -9.42492580413818359, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+17, 180353, 1, 215, 222, '0', 0, 0, -2309.854248046875, -327.888885498046875, -9.42492580413818359, 3.490667104721069335, 0, 0, -0.98480701446533203, 0.173652306199073791, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+18, 180353, 1, 215, 222, '0', 0, 0, -2304.760498046875, -335.109375, -9.42492580413818359, 3.490667104721069335, 0, 0, -0.98480701446533203, 0.173652306199073791, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+19, 180353, 1, 215, 222, '0', 0, 0, -2309.022705078125, -342.00347900390625, -9.42492580413818359, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+20, 180353, 1, 215, 222, '0', 0, 0, -2326.7744140625, -328.328125, -9.38826847076416015, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+21, 180353, 1, 215, 222, '0', 0, 0, -2316.1181640625, -342.8819580078125, -9.42492580413818359, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+22, 180353, 1, 215, 222, '0', 0, 0, -2323.335205078125, -321.107635498046875, -9.42492580413818359, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+23, 180353, 1, 215, 222, '0', 0, 0, -2314.68408203125, -320.838531494140625, -9.42492580413818359, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+24, 195164, 1, 215, 222, '0', 0, 0, -2320.569580078125, -336.515625, -8.74858474731445312, 0.663223206996917724, 0, 0, 0.325567245483398437, 0.945518851280212402, 120, 255, 1, 46741), -- Pumpkin (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+25, 195164, 1, 215, 222, '0', 0, 0, -2322.083251953125, -334.689239501953125, -8.74858474731445312, 0.663223206996917724, 0, 0, 0.325567245483398437, 0.945518851280212402, 120, 255, 1, 46741), -- Pumpkin (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+26, 195164, 1, 215, 222, '0', 0, 0, -2314.109375, -321.795135498046875, -8.74858474731445312, 3.682650327682495117, 0, 0, -0.96362972259521484, 0.26724100112915039, 120, 255, 1, 46741), -- Pumpkin (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+27, 195164, 1, 215, 222, '0', 0, 0, -2304.48779296875, -336.145843505859375, -8.74858474731445312, 3.368495941162109375, 0, 0, -0.99357128143310546, 0.113208353519439697, 120, 255, 1, 46741), -- Pumpkin (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+28, 195164, 1, 215, 222, '0', 0, 0, -2324.54345703125, -321.9132080078125, -8.74858474731445312, 5.305802345275878906, 0, 0, -0.46947097778320312, 0.882947921752929687, 120, 255, 1, 46741), -- Pumpkin (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+29, 195164, 1, 215, 222, '0', 0, 0, -2305.407958984375, -334.388885498046875, -8.74858474731445312, 3.735006093978881835, 0, 0, -0.95630455017089843, 0.292372345924377441, 120, 255, 1, 46741), -- Pumpkin (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+30, 195164, 1, 215, 222, '0', 0, 0, -2326.875, -327.092010498046875, -8.74727058410644531, 0.069811686873435974, 0, 0, 0.034898757934570312, 0.999390840530395507, 120, 255, 1, 46741), -- Pumpkin (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+31, 195164, 1, 215, 222, '0', 0, 0, -2309.84375, -342.532989501953125, -8.74858474731445312, 2.181660413742065429, 0, 0, 0.887010574340820312, 0.461749136447906494, 120, 255, 1, 46741), -- Pumpkin (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+32, 195164, 1, 215, 222, '0', 0, 0, -2310.385498046875, -327.071197509765625, -8.74858474731445312, 3.735006093978881835, 0, 0, -0.95630455017089843, 0.292372345924377441, 120, 255, 1, 46741), -- Pumpkin (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+33, 195164, 1, 215, 222, '0', 0, 0, -2308.079833984375, -341.520843505859375, -8.74858474731445312, 2.286378860473632812, 0, 0, 0.909960746765136718, 0.414694398641586303, 120, 255, 1, 46741), -- Pumpkin (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+34, 195164, 1, 215, 222, '0', 0, 0, -2315.27783203125, -343.517364501953125, -8.74858474731445312, 1.256635904312133789, 0, 0, 0.587784767150878906, 0.809017360210418701, 120, 255, 1, 46741), -- Pumpkin (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+35, 195164, 1, 215, 222, '0', 0, 0, -2316.80908203125, -342.138885498046875, -8.74858474731445312, 3.892086982727050781, 0, 0, -0.93041706085205078, 0.366502493619918823, 120, 255, 1, 46741), -- Pumpkin (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+36, 195164, 1, 215, 222, '0', 0, 0, -2309.20654296875, -328.625, -8.74858474731445312, 3.43830275535583496, 0, 0, -0.98901557922363281, 0.147811368107795715, 120, 255, 1, 46741), -- Pumpkin (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+37, 195164, 1, 215, 222, '0', 0, 0, -2326.06591796875, -329.43402099609375, -8.71288204193115234, 0.663223206996917724, 0, 0, 0.325567245483398437, 0.945518851280212402, 120, 255, 1, 46741), -- Pumpkin (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+38, 195164, 1, 215, 222, '0', 0, 0, -2315.83154296875, -320.696197509765625, -8.74858474731445312, 4.310965538024902343, 0, 0, -0.83388519287109375, 0.55193793773651123, 120, 255, 1, 46741), -- Pumpkin (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+39, 195164, 1, 215, 222, '0', 0, 0, -2322.444580078125, -320.526031494140625, -8.74858474731445312, 5.253442287445068359, 0, 0, -0.49242305755615234, 0.870355963706970214, 120, 255, 1, 46741), -- Pumpkin (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+40, 195664, 1, 215, 222, '0', 0, 0, -2313.969970703125, -337.290008544921875, -9.42492961883544921, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Bloodhoof Village - Difficulty: 0)
|
||||
(@OGUID+41, 195664, 1, 215, 222, '0', 0, 0, -2321.010009765625, -327.285003662109375, -9.42492961883544921, 0, 0, 0, 0, 1, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Bloodhoof Village - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+2;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1),
|
||||
(@EVENT, @CGUID+2);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+41;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25),
|
||||
(@EVENT, @OGUID+26),
|
||||
(@EVENT, @OGUID+27),
|
||||
(@EVENT, @OGUID+28),
|
||||
(@EVENT, @OGUID+29),
|
||||
(@EVENT, @OGUID+30),
|
||||
(@EVENT, @OGUID+31),
|
||||
(@EVENT, @OGUID+32),
|
||||
(@EVENT, @OGUID+33),
|
||||
(@EVENT, @OGUID+34),
|
||||
(@EVENT, @OGUID+35),
|
||||
(@EVENT, @OGUID+36),
|
||||
(@EVENT, @OGUID+37),
|
||||
(@EVENT, @OGUID+38),
|
||||
(@EVENT, @OGUID+39),
|
||||
(@EVENT, @OGUID+40),
|
||||
(@EVENT, @OGUID+41);
|
||||
@@ -1,218 +0,0 @@
|
||||
SET @CGUID := 396497;
|
||||
SET @OGUID := 248850;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature templates
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60 WHERE `entry`=34677; -- Miles Standish
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60 WHERE `entry`=34683; -- Rose Standish
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=10569, `minlevel`=60, `maxlevel`=60 WHERE `entry`=34712; -- Roberta Carter
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=10571, `minlevel`=60, `maxlevel`=60, `npcflag`=3 WHERE `entry`=34768; -- William Mullins
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60, `unit_flags`=2147746560 WHERE `entry`=35341; -- Bountiful Barrel
|
||||
|
||||
-- Gossips
|
||||
DELETE FROM `gossip_menu` WHERE `MenuID`=10571;
|
||||
INSERT INTO `gossip_menu` (`MenuID`, `TextID`, `VerifiedBuild`) VALUES
|
||||
(10571, 14630, 46741); -- 34768 (William Mullins)
|
||||
|
||||
-- Equipments
|
||||
UPDATE `creature_equip_template` SET `VerifiedBuild`=46741 WHERE (`ID`=1 AND `CreatureID` IN (34768,34712,34677,5754,5705,5702,5670,5669,5668,4603,4570)) OR (`ID`=2 AND `CreatureID`=5697);
|
||||
|
||||
-- Scaling
|
||||
DELETE FROM `creature_template_scaling` WHERE `DifficultyID`=0 AND `Entry` IN (34677, 34683, 34712, 34768, 35341);
|
||||
INSERT INTO `creature_template_scaling` (`Entry`, `DifficultyID`, `LevelScalingDeltaMin`, `LevelScalingDeltaMax`, `ContentTuningID`, `VerifiedBuild`) VALUES
|
||||
(34677, 0, 0, 0, 389, 46741),
|
||||
(34683, 0, 0, 0, 389, 46741),
|
||||
(34712, 0, 0, 0, 389, 46741),
|
||||
(34768, 0, 0, 0, 389, 46741),
|
||||
(35341, 0, 0, 0, 389, 46741);
|
||||
|
||||
UPDATE `creature_template_scaling` SET `VerifiedBuild`=46741 WHERE (`DifficultyID`=0 AND `Entry` IN (153285,61905,61829,61753,61366,53591,53517,51384,43359,37574,37543,36213,23103,20725,16030,5754,5705,5702,5697,5674,5670,5669,5668,4603,4570,4075));
|
||||
|
||||
-- Trainer
|
||||
DELETE FROM `creature_trainer` WHERE `CreatureID`=34712;
|
||||
INSERT INTO `creature_trainer` (`CreatureID`, `TrainerID`, `MenuID`, `OptionID`) VALUES
|
||||
(34712, 136, 10569, 0);
|
||||
|
||||
-- Quests
|
||||
UPDATE `quest_poi_points` SET `VerifiedBuild`=46741 WHERE (`QuestID`=14059 AND `Idx1`=2 AND `Idx2`=0) OR (`QuestID`=14059 AND `Idx1`=1 AND `Idx2`=0) OR (`QuestID`=14059 AND `Idx1`=0 AND `Idx2`=0) OR (`QuestID`=14058 AND `Idx1`=2 AND `Idx2`=0) OR (`QuestID`=14058 AND `Idx1`=1 AND `Idx2`=0) OR (`QuestID`=14058 AND `Idx1`=0 AND `Idx2`=0) OR (`QuestID`=14037 AND `Idx1`=2 AND `Idx2`=0) OR (`QuestID`=14037 AND `Idx1`=1 AND `Idx2`=0) OR (`QuestID`=14037 AND `Idx1`=0 AND `Idx2`=0);
|
||||
|
||||
DELETE FROM `quest_details` WHERE `ID` IN (14059 /*We're Out of Cranberry Chutney Again?*/, 14058 /*She Says Potato*/, 14037 /*Spice Bread Stuffing*/);
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(14059, 1, 1, 0, 0, 0, 0, 0, 0, 46741), -- We're Out of Cranberry Chutney Again?
|
||||
(14058, 1, 1, 0, 0, 0, 0, 0, 0, 46741), -- She Says Potato
|
||||
(14037, 1, 1, 0, 0, 0, 0, 0, 0, 46741); -- Spice Bread Stuffing
|
||||
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=1 WHERE `ID` IN (14037, 14058);
|
||||
|
||||
DELETE FROM `creature_queststarter` WHERE (`id` IN (34677, 34768) AND `quest`=14037);
|
||||
INSERT INTO `creature_queststarter` (`id`, `quest`, `VerifiedBuild`) VALUES
|
||||
(34677, 14037, 46741); -- Spice Bread Stuffing offered Miles Standish
|
||||
|
||||
UPDATE `creature_queststarter` SET `VerifiedBuild`=46741 WHERE (`id`=34712 AND `quest`=14059) OR (`id`=34768 AND `quest`=14058);
|
||||
|
||||
UPDATE `creature_questender` SET `VerifiedBuild`=46741 WHERE (`id`=34712 AND `quest`=14059) OR (`id`=34768 AND `quest` IN (14058,14037));
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+11;
|
||||
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, 32823, 0, 14046, 14046, '0', 0, 0, 0, 0, 1786.5260009765625, 257.307281494140625, 59.595458984375, 1.274090290069580078, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Tirisfal Glades - Difficulty: 0) (Auras: )
|
||||
(@CGUID+1, 32823, 0, 14046, 14046, '0', 0, 0, 0, 0, 1827.96875, 254.7256927490234375, 59.84268951416015625, 2.042035102844238281, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@CGUID+2, 32823, 0, 14046, 14046, '0', 0, 0, 0, 0, 1785.795166015625, 222.6788177490234375, 59.59212875366210937, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@CGUID+3, 32823, 0, 14046, 14046, '0', 0, 0, 0, 0, 1827.8836669921875, 220.3229217529296875, 60.71599578857421875, 2.042035102844238281, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@CGUID+4, 34654, 0, 14046, 14046, '0', 0, 0, 0, 0, 1825.876708984375, 244.28472900390625, 60.24924087524414062, 4.97418832778930664, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Feast Hostess (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@CGUID+5, 34677, 0, 14046, 14046, '0', 0, 0, 0, 1, 1804.59375, 259.78472900390625, 61.64423751831054687, 4.904375076293945312, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Miles Standish (Area: Tirisfal Glades - Difficulty: 0) (Auras: )
|
||||
(@CGUID+6, 34683, 0, 14046, 14046, '0', 0, 0, 0, 0, 1806.9427490234375, 260.09375, 61.66677474975585937, 4.729842185974121093, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Rose Standish (Area: Tirisfal Glades - Difficulty: 0) (Auras: )
|
||||
(@CGUID+7, 34712, 0, 14046, 14046, '0', 0, 0, 0, 1, 1820.8160400390625, 266.868072509765625, 60.82830047607421875, 4.572762489318847656, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Roberta Carter (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@CGUID+8, 34768, 0, 14046, 14046, '0', 0, 0, 0, 1, 1786.7882080078125, 247.3819427490234375, 60.4293060302734375, 2.094395160675048828, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- William Mullins (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@CGUID+9, 35341, 0, 14046, 14046, '0', 0, 0, 0, 0, 1813.10595703125, 259.274322509765625, 60.2708587646484375, 1.780235767364501953, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Barrel (Area: Tirisfal Glades - Difficulty: 0) (Auras: )
|
||||
(@CGUID+10, 35341, 0, 14046, 14046, '0', 0, 0, 0, 0, 1809.951416015625, 257.578125, 60.28329086303710937, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Barrel (Area: Tirisfal Glades - Difficulty: 0) (Auras: )
|
||||
(@CGUID+11, 35341, 0, 14046, 14046, '0', 0, 0, 0, 0, 1811.90283203125, 257.81597900390625, 60.01216506958007812, 1.274090290069580078, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Barrel (Area: Tirisfal Glades - Difficulty: 0) (Auras: )
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+62;
|
||||
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, 179968, 0, 14046, 14046, '0', 0, 0, 1806.9635009765625, 262.40972900390625, 65.39959716796875, 4.712389945983886718, 0, 0, -0.70710659027099609, 0.707106947898864746, 120, 255, 1, 46741), -- Haystack 01 (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 0, 14046, 14046, '0', 0, 0, 1808.454833984375, 259.322906494140625, 60.93755340576171875, 3.961898565292358398, 0, 0, -0.91705989837646484, 0.398749500513076782, 120, 255, 1, 46741), -- Haystack 01 (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 0, 14046, 14046, '0', 0, 0, 1803.2725830078125, 259.21875, 60.92121124267578125, 5.445427894592285156, 0, 0, -0.40673637390136718, 0.913545548915863037, 120, 255, 1, 46741), -- Haystack 01 (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 0, 14046, 14046, '0', 0, 0, 1804.63720703125, 259.8975830078125, 60.96956253051757812, 4.712389945983886718, 0, 0, -0.70710659027099609, 0.707106947898864746, 120, 255, 1, 46741), -- Haystack 01 (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 0, 14046, 14046, '0', 0, 0, 1806.9097900390625, 260.020843505859375, 60.95785140991210937, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 0, 14046, 14046, '0', 0, 0, 1804.9010009765625, 262.541656494140625, 65.39959716796875, 1.588248729705810546, 0, 0, 0.713250160217285156, 0.700909554958343505, 120, 255, 1, 46741), -- Haystack 01 (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 0, 14046, 14046, '0', 0, 0, 1781.326416015625, 244.70660400390625, 59.95488739013671875, 1.518436193466186523, 0, 0, 0.6883544921875, 0.725374460220336914, 120, 255, 1, 46741), -- Haystack 01 (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 0, 14046, 14046, '0', 0, 0, 1830.015625, 233.0243072509765625, 60.22722244262695312, 1.605701684951782226, 0, 0, 0.719339370727539062, 0.694658815860748291, 120, 255, 1, 46741), -- Haystack 01 (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 0, 14046, 14046, '0', 0, 0, 1827.611083984375, 233.189239501953125, 60.32691192626953125, 4.625123500823974609, 0, 0, -0.73727703094482421, 0.67559051513671875, 120, 255, 1, 46741), -- Haystack 01 (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 0, 14046, 14046, '0', 0, 0, 1830.1597900390625, 243.9913177490234375, 60.06359100341796875, 4.59021615982055664, 0, 0, -0.74895572662353515, 0.662620067596435546, 120, 255, 1, 46741), -- Haystack 01 (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+10, 179968, 0, 14046, 14046, '0', 0, 0, 1782.0816650390625, 232.90972900390625, 59.88092041015625, 4.764749526977539062, 0, 0, -0.6883544921875, 0.725374460220336914, 120, 255, 1, 46741), -- Haystack 01 (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+11, 179968, 0, 14046, 14046, '0', 0, 0, 1784.25, 233.1163177490234375, 59.85076141357421875, 4.834563255310058593, 0, 0, -0.66261959075927734, 0.748956084251403808, 120, 255, 1, 46741), -- Haystack 01 (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+12, 179968, 0, 14046, 14046, '0', 0, 0, 1783.59375, 244.4149322509765625, 59.88451004028320312, 1.448621988296508789, 0, 0, 0.662619590759277343, 0.748956084251403808, 120, 255, 1, 46741), -- Haystack 01 (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+13, 179968, 0, 14046, 14046, '0', 0, 0, 1820.7742919921875, 266.69964599609375, 60.05088424682617187, 4.625123500823974609, 0, 0, -0.73727703094482421, 0.67559051513671875, 120, 255, 1, 46741), -- Haystack 01 (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+14, 179968, 0, 14046, 14046, '0', 0, 0, 1786.78125, 247.236114501953125, 59.72076416015625, 5.445427894592285156, 0, 0, -0.40673637390136718, 0.913545548915863037, 120, 255, 1, 46741), -- Haystack 01 (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+15, 179968, 0, 14046, 14046, '0', 0, 0, 1828.12158203125, 244.1996612548828125, 60.13411331176757812, 1.500982880592346191, 0, 0, 0.681998252868652343, 0.731353819370269775, 120, 255, 1, 46741), -- Haystack 01 (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+16, 179968, 0, 14046, 14046, '0', 0, 0, 1806.3646240234375, 216.751739501953125, 60.63610076904296875, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+17, 179968, 0, 14046, 14046, '0', 0, 0, 1806.5242919921875, 214.4149322509765625, 65.39959716796875, 1.623155713081359863, 0, 0, 0.725374221801757812, 0.688354730606079101, 120, 255, 1, 46741), -- Haystack 01 (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+18, 179968, 0, 14046, 14046, '0', 0, 0, 1804.25, 214.361114501953125, 65.39959716796875, 1.535889506340026855, 0, 0, 0.694658279418945312, 0.719339847564697265, 120, 255, 1, 46741), -- Haystack 01 (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+19, 179968, 0, 14046, 14046, '0', 0, 0, 1803.9791259765625, 216.888885498046875, 60.62489700317382812, 1.605701684951782226, 0, 0, 0.719339370727539062, 0.694658815860748291, 120, 255, 1, 46741), -- Haystack 01 (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+20, 180353, 0, 14046, 14046, '0', 0, 0, 1805.673583984375, 259.9288330078125, 60.97239303588867187, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+21, 180353, 0, 14046, 14046, '0', 0, 0, 1805.9271240234375, 262.359375, 65.39959716796875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+22, 180353, 0, 14046, 14046, '0', 0, 0, 1823.1822509765625, 269.916656494140625, 60.2144775390625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+23, 180353, 0, 14046, 14046, '0', 0, 0, 1828.751708984375, 233.217010498046875, 60.32651901245117187, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+24, 180353, 0, 14046, 14046, '0', 0, 0, 1783.1978759765625, 233.1684112548828125, 59.84886932373046875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+25, 180353, 0, 14046, 14046, '0', 0, 0, 1829.18408203125, 244.1527862548828125, 60.11936569213867187, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+26, 180353, 0, 14046, 14046, '0', 0, 0, 1782.484375, 244.609375, 59.89130401611328125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+27, 180353, 0, 14046, 14046, '0', 0, 0, 1818.515625, 270.19097900390625, 60.13330841064453125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+28, 180353, 0, 14046, 14046, '0', 0, 0, 1805.123291015625, 216.9184112548828125, 60.62131881713867187, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+29, 180353, 0, 14046, 14046, '0', 0, 0, 1805.5504150390625, 214.4479217529296875, 65.39959716796875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+30, 195164, 0, 14046, 14046, '0', 0, 0, 1804.99658203125, 262.49652099609375, 66.10984039306640625, 1.675513744354248046, 0, 0, 0.743144035339355468, 0.669131457805633544, 120, 255, 1, 46741), -- Pumpkin (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+31, 195164, 0, 14046, 14046, '0', 0, 0, 1808.375, 259.289947509765625, 61.63667678833007812, 4.904376029968261718, 0, 0, -0.636077880859375, 0.771624863147735595, 120, 255, 1, 46741), -- Pumpkin (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+32, 195164, 0, 14046, 14046, '0', 0, 0, 1807.060791015625, 262.364593505859375, 66.10984039306640625, 4.607671737670898437, 0, 0, -0.74314403533935546, 0.669131457805633544, 120, 255, 1, 46741), -- Pumpkin (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+33, 195164, 0, 14046, 14046, '0', 0, 0, 1803.310791015625, 259.16839599609375, 61.6376495361328125, 4.764749526977539062, 0, 0, -0.6883544921875, 0.725374460220336914, 120, 255, 1, 46741), -- Pumpkin (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+34, 195164, 0, 14046, 14046, '0', 0, 0, 1827.5538330078125, 233.2604217529296875, 61.03870391845703125, 4.642575740814208984, 0, 0, -0.731353759765625, 0.681998312473297119, 120, 255, 1, 46741), -- Pumpkin (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+35, 195164, 0, 14046, 14046, '0', 0, 0, 1782.0416259765625, 232.814239501953125, 60.59503936767578125, 4.782202720642089843, 0, 0, -0.68199825286865234, 0.731353819370269775, 120, 255, 1, 46741), -- Pumpkin (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+36, 195164, 0, 14046, 14046, '0', 0, 0, 1783.5728759765625, 244.3697967529296875, 60.59868240356445312, 1.448621988296508789, 0, 0, 0.662619590759277343, 0.748956084251403808, 120, 255, 1, 46741), -- Pumpkin (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+37, 195164, 0, 14046, 14046, '0', 0, 0, 1819.095458984375, 267.989593505859375, 61.02001190185546875, 6.178466320037841796, 0, 0, -0.05233573913574218, 0.998629570007324218, 120, 255, 1, 46741), -- Pumpkin (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+38, 195164, 0, 14046, 14046, '0', 0, 0, 1830.0972900390625, 243.9496612548828125, 60.77983474731445312, 4.625123500823974609, 0, 0, -0.73727703094482421, 0.67559051513671875, 120, 255, 1, 46741), -- Pumpkin (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+39, 195164, 0, 14046, 14046, '0', 0, 0, 1821.6754150390625, 266.883697509765625, 60.09093093872070312, 6.178466320037841796, 0, 0, -0.05233573913574218, 0.998629570007324218, 120, 255, 1, 46741), -- Pumpkin (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+40, 195164, 0, 14046, 14046, '0', 0, 0, 1829.8802490234375, 232.8802032470703125, 60.94774627685546875, 1.570795774459838867, 0, 0, 0.707106590270996093, 0.707106947898864746, 120, 255, 1, 46741), -- Pumpkin (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+41, 195164, 0, 14046, 14046, '0', 0, 0, 1784.1129150390625, 233.1041717529296875, 60.5592041015625, 4.904376029968261718, 0, 0, -0.636077880859375, 0.771624863147735595, 120, 255, 1, 46741), -- Pumpkin (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+42, 195164, 0, 14046, 14046, '0', 0, 0, 1828.173583984375, 244.2447967529296875, 60.84135818481445312, 1.535889506340026855, 0, 0, 0.694658279418945312, 0.719339847564697265, 120, 255, 1, 46741), -- Pumpkin (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+43, 195164, 0, 14046, 14046, '0', 0, 0, 1781.423583984375, 244.6614532470703125, 60.6585693359375, 1.553341388702392578, 0, 0, 0.700908660888671875, 0.713251054286956787, 120, 255, 1, 46741), -- Pumpkin (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+44, 195164, 0, 14046, 14046, '0', 0, 0, 1803.888916015625, 216.861114501953125, 61.33761978149414062, 1.588248729705810546, 0, 0, 0.713250160217285156, 0.700909554958343505, 120, 255, 1, 46741), -- Pumpkin (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+45, 195164, 0, 14046, 14046, '0', 0, 0, 1804.1927490234375, 214.4305572509765625, 66.10984039306640625, 1.518436193466186523, 0, 0, 0.6883544921875, 0.725374460220336914, 120, 255, 1, 46741), -- Pumpkin (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+46, 195164, 0, 14046, 14046, '0', 0, 0, 1806.5035400390625, 216.8715362548828125, 61.33487319946289062, 4.642575740814208984, 0, 0, -0.731353759765625, 0.681998312473297119, 120, 255, 1, 46741), -- Pumpkin (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+47, 195164, 0, 14046, 14046, '0', 0, 0, 1806.388916015625, 214.26910400390625, 66.10984039306640625, 1.588248729705810546, 0, 0, 0.713250160217285156, 0.700909554958343505, 120, 255, 1, 46741), -- Pumpkin (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+48, 195191, 0, 14046, 14046, '0', 0, 0, 1820.732666015625, 268.411468505859375, 60.13565444946289062, 4.642575740814208984, 0, 0, -0.731353759765625, 0.681998312473297119, 120, 255, 1, 46741), -- Dwarven Table Simple 05 (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+49, 195192, 0, 14046, 14046, '0', 0, 0, 1819.123291015625, 269.217010498046875, 61.04339599609375, 5.777040958404541015, 0, 0, -0.25037956237792968, 0.968147754669189453, 120, 255, 1, 46741), -- Basket of Corn (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+50, 195194, 0, 14046, 14046, '0', 0, 0, 1821.9461669921875, 267.869781494140625, 61.04545974731445312, 3.804818391799926757, 0, 0, -0.94551849365234375, 0.325568377971649169, 120, 255, 1, 46741), -- Small Basket 01 (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+51, 195195, 0, 14046, 14046, '0', 0, 0, 1822.298583984375, 268.651031494140625, 60.97147750854492187, 3.298687219619750976, 0, 0, -0.99691677093505859, 0.078466430306434631, 120, 255, 1, 46741), -- Cranberry Masher (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+52, 195196, 0, 14046, 14046, '0', 0, 0, 1821.986083984375, 271.258697509765625, 60.19820785522460937, 3.804818391799926757, 0, 0, -0.94551849365234375, 0.325568377971649169, 120, 255, 1, 46741), -- Large Basket 03 (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+53, 195197, 0, 14046, 14046, '0', 0, 0, 1817.75, 268.765625, 60.27058792114257812, 3.9793548583984375, 0, 0, -0.9135446548461914, 0.406738430261611938, 120, 255, 1, 46741), -- Grain Sack 02 (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+54, 195198, 0, 14046, 14046, '0', 0, 0, 1819.9114990234375, 270.765625, 60.15500259399414062, 5.811946868896484375, 0, 0, -0.2334451675415039, 0.972369968891143798, 120, 255, 1, 46741), -- Crate 01 (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+55, 195200, 0, 14046, 14046, '0', 0, 0, 1824.7725830078125, 268.177093505859375, 60.24002456665039062, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pilgrim's Bounty Cooking Fire (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+56, 195212, 0, 14046, 14046, '0', 0, 0, 1818.5660400390625, 273.307281494140625, 60.29869842529296875, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Pumpkin (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+57, 195212, 0, 14046, 14046, '0', 0, 0, 1818.0052490234375, 271.72222900390625, 60.1640167236328125, 2.949595451354980468, 0, 0, 0.995395660400390625, 0.095851235091686248, 120, 255, 1, 46741), -- Pumpkin (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+58, 195212, 0, 14046, 14046, '0', 0, 0, 1815.517333984375, 271.482635498046875, 60.22672653198242187, 1.937312245368957519, 0, 0, 0.824125289916992187, 0.566407561302185058, 120, 255, 1, 46741), -- Pumpkin (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+59, 195664, 0, 14046, 14046, '0', 0, 0, 1786.530029296875, 257.3070068359375, 59.5121002197265625, 1.274088263511657714, 0, 0, 0.594821929931640625, 0.80385744571685791, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+60, 195664, 0, 14046, 14046, '0', 0, 0, 1827.969970703125, 254.7259979248046875, 59.7593994140625, 2.042035102844238281, 0, 0, 0.852640151977539062, 0.522498607635498046, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+61, 195664, 0, 14046, 14046, '0', 0, 0, 1827.8800048828125, 220.322998046875, 60.63270187377929687, 2.042035102844238281, 0, 0, 0.852640151977539062, 0.522498607635498046, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Tirisfal Glades - Difficulty: 0)
|
||||
(@OGUID+62, 195664, 0, 14046, 14046, '0', 0, 0, 1785.800048828125, 222.6790008544921875, 59.50880050659179687, 0, 0, 0, 0, 1, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Tirisfal Glades - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+11;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1),
|
||||
(@EVENT, @CGUID+2),
|
||||
(@EVENT, @CGUID+3),
|
||||
(@EVENT, @CGUID+4),
|
||||
(@EVENT, @CGUID+5),
|
||||
(@EVENT, @CGUID+6),
|
||||
(@EVENT, @CGUID+7),
|
||||
(@EVENT, @CGUID+8),
|
||||
(@EVENT, @CGUID+9),
|
||||
(@EVENT, @CGUID+10),
|
||||
(@EVENT, @CGUID+11);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+62;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25),
|
||||
(@EVENT, @OGUID+26),
|
||||
(@EVENT, @OGUID+27),
|
||||
(@EVENT, @OGUID+28),
|
||||
(@EVENT, @OGUID+29),
|
||||
(@EVENT, @OGUID+30),
|
||||
(@EVENT, @OGUID+31),
|
||||
(@EVENT, @OGUID+32),
|
||||
(@EVENT, @OGUID+33),
|
||||
(@EVENT, @OGUID+34),
|
||||
(@EVENT, @OGUID+35),
|
||||
(@EVENT, @OGUID+36),
|
||||
(@EVENT, @OGUID+37),
|
||||
(@EVENT, @OGUID+38),
|
||||
(@EVENT, @OGUID+39),
|
||||
(@EVENT, @OGUID+40),
|
||||
(@EVENT, @OGUID+41),
|
||||
(@EVENT, @OGUID+42),
|
||||
(@EVENT, @OGUID+43),
|
||||
(@EVENT, @OGUID+44),
|
||||
(@EVENT, @OGUID+45),
|
||||
(@EVENT, @OGUID+46),
|
||||
(@EVENT, @OGUID+47),
|
||||
(@EVENT, @OGUID+48),
|
||||
(@EVENT, @OGUID+49),
|
||||
(@EVENT, @OGUID+50),
|
||||
(@EVENT, @OGUID+51),
|
||||
(@EVENT, @OGUID+52),
|
||||
(@EVENT, @OGUID+53),
|
||||
(@EVENT, @OGUID+54),
|
||||
(@EVENT, @OGUID+55),
|
||||
(@EVENT, @OGUID+56),
|
||||
(@EVENT, @OGUID+57),
|
||||
(@EVENT, @OGUID+58),
|
||||
(@EVENT, @OGUID+59),
|
||||
(@EVENT, @OGUID+60),
|
||||
(@EVENT, @OGUID+61),
|
||||
(@EVENT, @OGUID+62);
|
||||
@@ -1,112 +0,0 @@
|
||||
SET @CGUID := 396509;
|
||||
SET @OGUID := 248913;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+3;
|
||||
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, 32823, 0, 85, 159, '0', 0, 0, 0, 0, 2293.982666015625, 361.97222900390625, 34.36455154418945312, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Brill - Difficulty: 0) (Auras: )
|
||||
(@CGUID+1, 32823, 0, 85, 159, '0', 0, 0, 0, 0, 2292.44970703125, 349.951385498046875, 33.85086441040039062, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Brill - Difficulty: 0) (Auras: )
|
||||
(@CGUID+2, 32823, 0, 85, 159, '0', 0, 0, 0, 0, 2294.838623046875, 375.8819580078125, 34.56729888916015625, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Brill - Difficulty: 0)
|
||||
(@CGUID+3, 34654, 0, 85, 159, '0', 0, 0, 0, 0, 2287.913330078125, 382.56597900390625, 34.3078460693359375, 2.827433347702026367, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Feast Hostess (Area: Brill - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+42;
|
||||
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, 179968, 0, 85, 159, '0', 0, 0, 2288.4150390625, 359.59027099609375, 33.86261367797851562, 6.230826377868652343, 0, 0, -0.02617645263671875, 0.999657332897186279, 120, 255, 1, 46741), -- Haystack 01 (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 0, 85, 159, '0', 0, 0, 2288.28125, 357.52777099609375, 33.86959457397460937, 6.178466320037841796, 0, 0, -0.05233573913574218, 0.998629570007324218, 120, 255, 1, 46741), -- Haystack 01 (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 0, 85, 159, '0', 0, 0, 2301.053955078125, 358.5694580078125, 34.22692489624023437, 6.195919513702392578, 0, 0, -0.04361915588378906, 0.999048233032226562, 120, 255, 1, 46741), -- Haystack 01 (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 0, 85, 159, '0', 0, 0, 2288.944580078125, 369.154510498046875, 34.29419708251953125, 6.195919513702392578, 0, 0, -0.04361915588378906, 0.999048233032226562, 120, 255, 1, 46741), -- Haystack 01 (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 0, 85, 159, '0', 0, 0, 2300.119873046875, 347.177093505859375, 34.94915008544921875, 3.089183330535888671, 0, 0, 0.99965667724609375, 0.026201646775007247, 120, 255, 1, 46741), -- Haystack 01 (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 0, 85, 159, '0', 0, 0, 2300.81591796875, 356.142364501953125, 34.36153411865234375, 6.195919513702392578, 0, 0, -0.04361915588378906, 0.999048233032226562, 120, 255, 1, 46741), -- Haystack 01 (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 0, 85, 159, '0', 0, 0, 2289.182373046875, 371.58160400390625, 34.24504470825195312, 6.195919513702392578, 0, 0, -0.04361915588378906, 0.999048233032226562, 120, 255, 1, 46741), -- Haystack 01 (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 0, 85, 159, '0', 0, 0, 2298.78466796875, 344.916656494140625, 34.8040618896484375, 2.216565132141113281, 0, 0, 0.894933700561523437, 0.44619917869567871, 120, 255, 1, 46741), -- Haystack 01 (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 0, 85, 159, '0', 0, 0, 2299.911376953125, 383.348968505859375, 34.33384323120117187, 3.9793548583984375, 0, 0, -0.9135446548461914, 0.406738430261611938, 120, 255, 1, 46741), -- Haystack 01 (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 0, 85, 159, '0', 0, 0, 2291.901123046875, 383.59375, 34.67378616333007812, 5.148722648620605468, 0, 0, -0.53729915618896484, 0.843391716480255126, 120, 255, 1, 46741), -- Haystack 01 (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+10, 179968, 0, 85, 159, '0', 0, 0, 2301.741455078125, 371.81597900390625, 34.18433761596679687, 6.195919513702392578, 0, 0, -0.04361915588378906, 0.999048233032226562, 120, 255, 1, 46741), -- Haystack 01 (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+11, 179968, 0, 85, 159, '0', 0, 0, 2301.6806640625, 380.69097900390625, 34.23750686645507812, 3.508116960525512695, 0, 0, -0.98325443267822265, 0.182238012552261352, 120, 255, 1, 46741), -- Haystack 01 (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+12, 179968, 0, 85, 159, '0', 0, 0, 2289.984375, 381.458343505859375, 34.46272659301757812, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Haystack 01 (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+13, 179968, 0, 85, 159, '0', 0, 0, 2288.895751953125, 345.3975830078125, 33.69190597534179687, 1.186823248863220214, 0, 0, 0.559192657470703125, 0.829037725925445556, 120, 255, 1, 46741), -- Haystack 01 (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+14, 179968, 0, 85, 159, '0', 0, 0, 2301.50341796875, 369.388885498046875, 34.13194656372070312, 6.195919513702392578, 0, 0, -0.04361915588378906, 0.999048233032226562, 120, 255, 1, 46741), -- Haystack 01 (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+15, 179968, 0, 85, 159, '0', 0, 0, 2287.16845703125, 347.572906494140625, 33.71104049682617187, 0.139624491333961486, 0, 0, 0.06975555419921875, 0.997564136981964111, 120, 255, 1, 46741), -- Haystack 01 (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+16, 180353, 0, 85, 159, '0', 0, 0, 2288.41845703125, 358.6632080078125, 33.8912811279296875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+17, 180353, 0, 85, 159, '0', 0, 0, 2287.704833984375, 346.008697509765625, 33.66175079345703125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+18, 180353, 0, 85, 159, '0', 0, 0, 2299.8212890625, 345.776031494140625, 35.00998306274414062, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+19, 180353, 0, 85, 159, '0', 0, 0, 2301.07470703125, 382.375, 34.26987075805664062, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+20, 180353, 0, 85, 159, '0', 0, 0, 2300.986083984375, 357.49652099609375, 34.297515869140625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+21, 180353, 0, 85, 159, '0', 0, 0, 2301.673583984375, 370.743072509765625, 34.1649322509765625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+22, 180353, 0, 85, 159, '0', 0, 0, 2289.114501953125, 370.5069580078125, 34.24508285522460937, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+23, 180353, 0, 85, 159, '0', 0, 0, 2290.685791015625, 382.68402099609375, 34.5560760498046875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+24, 195164, 0, 85, 159, '0', 0, 0, 2288.421875, 357.645843505859375, 34.57043838500976562, 6.108653545379638671, 0, 0, -0.08715534210205078, 0.996194720268249511, 120, 255, 1, 46741), -- Pumpkin (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+25, 195164, 0, 85, 159, '0', 0, 0, 2288.364501953125, 359.65972900390625, 34.55441665649414062, 1.692969322204589843, 0, 0, 0.748955726623535156, 0.662620067596435546, 120, 255, 1, 46741), -- Pumpkin (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+26, 195164, 0, 85, 159, '0', 0, 0, 2301.619873046875, 380.70660400390625, 34.9311981201171875, 3.508116960525512695, 0, 0, -0.98325443267822265, 0.182238012552261352, 120, 255, 1, 46741), -- Pumpkin (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+27, 195164, 0, 85, 159, '0', 0, 0, 2290.083251953125, 381.4132080078125, 35.16243362426757812, 5.323255538940429687, 0, 0, -0.46174812316894531, 0.887011110782623291, 120, 255, 1, 46741), -- Pumpkin (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+28, 195164, 0, 85, 159, '0', 0, 0, 2289.23095703125, 371.626739501953125, 34.93951797485351562, 3.52557229995727539, 0, 0, -0.98162651062011718, 0.190812408924102783, 120, 255, 1, 46741), -- Pumpkin (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+29, 195164, 0, 85, 159, '0', 0, 0, 2288.994873046875, 345.352447509765625, 34.38866424560546875, 3.926995515823364257, 0, 0, -0.92387866973876953, 0.38268551230430603, 120, 255, 1, 46741), -- Pumpkin (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+30, 195164, 0, 85, 159, '0', 0, 0, 2301.435791015625, 369.458343505859375, 34.8280181884765625, 2.530723094940185546, 0, 0, 0.953716278076171875, 0.300707906484603881, 120, 255, 1, 46741), -- Pumpkin (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+31, 195164, 0, 85, 159, '0', 0, 0, 2300.02783203125, 347.149322509765625, 35.63222885131835937, 0.890116631984710693, 0, 0, 0.430510520935058593, 0.902585566043853759, 120, 255, 1, 46741), -- Pumpkin (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+32, 195164, 0, 85, 159, '0', 0, 0, 2298.647705078125, 344.774322509765625, 35.46854019165039062, 2.199114561080932617, 0, 0, 0.8910064697265625, 0.453990638256072998, 120, 255, 1, 46741), -- Pumpkin (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+33, 195164, 0, 85, 159, '0', 0, 0, 2287.1494140625, 347.52777099609375, 34.40044021606445312, 5.93412017822265625, 0, 0, -0.17364788055419921, 0.984807789325714111, 120, 255, 1, 46741), -- Pumpkin (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+34, 195164, 0, 85, 159, '0', 0, 0, 2291.882080078125, 383.548614501953125, 35.36870956420898437, 0.767943859100341796, 0, 0, 0.374606132507324218, 0.927184045314788818, 120, 255, 1, 46741), -- Pumpkin (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+35, 195164, 0, 85, 159, '0', 0, 0, 2288.876708984375, 369.223968505859375, 34.9853515625, 6.178466320037841796, 0, 0, -0.05233573913574218, 0.998629570007324218, 120, 255, 1, 46741), -- Pumpkin (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+36, 195164, 0, 85, 159, '0', 0, 0, 2301.1025390625, 358.614593505859375, 34.91568756103515625, 6.195919513702392578, 0, 0, -0.04361915588378906, 0.999048233032226562, 120, 255, 1, 46741), -- Pumpkin (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+37, 195164, 0, 85, 159, '0', 0, 0, 2300.748291015625, 356.211822509765625, 35.05194091796875, 0.802850961685180664, 0, 0, 0.390730857849121093, 0.920504987239837646, 120, 255, 1, 46741), -- Pumpkin (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+38, 195164, 0, 85, 159, '0', 0, 0, 2301.7900390625, 371.861114501953125, 34.87445068359375, 6.195919513702392578, 0, 0, -0.04361915588378906, 0.999048233032226562, 120, 255, 1, 46741), -- Pumpkin (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+39, 195164, 0, 85, 159, '0', 0, 0, 2299.869873046875, 383.255218505859375, 35.0262298583984375, 1.239183306694030761, 0, 0, 0.580702781677246093, 0.814115643501281738, 120, 255, 1, 46741), -- Pumpkin (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+40, 195664, 0, 85, 159, '0', 0, 0, 2294.90283203125, 375.9444580078125, 34.48655319213867187, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+41, 195664, 0, 85, 159, '0', 0, 0, 2292.44970703125, 349.951385498046875, 33.7675323486328125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Brill - Difficulty: 0)
|
||||
(@OGUID+42, 195664, 0, 85, 159, '0', 0, 0, 2293.982666015625, 361.97222900390625, 34.281219482421875, 0, 0, 0, 0, 1, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Brill - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+3;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1),
|
||||
(@EVENT, @CGUID+2),
|
||||
(@EVENT, @CGUID+3);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+42;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25),
|
||||
(@EVENT, @OGUID+26),
|
||||
(@EVENT, @OGUID+27),
|
||||
(@EVENT, @OGUID+28),
|
||||
(@EVENT, @OGUID+29),
|
||||
(@EVENT, @OGUID+30),
|
||||
(@EVENT, @OGUID+31),
|
||||
(@EVENT, @OGUID+32),
|
||||
(@EVENT, @OGUID+33),
|
||||
(@EVENT, @OGUID+34),
|
||||
(@EVENT, @OGUID+35),
|
||||
(@EVENT, @OGUID+36),
|
||||
(@EVENT, @OGUID+37),
|
||||
(@EVENT, @OGUID+38),
|
||||
(@EVENT, @OGUID+39),
|
||||
(@EVENT, @OGUID+40),
|
||||
(@EVENT, @OGUID+41),
|
||||
(@EVENT, @OGUID+42);
|
||||
@@ -1,154 +0,0 @@
|
||||
SET @CGUID := 396513;
|
||||
SET @OGUID := 248956;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature templates
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=10569, `minlevel`=60, `maxlevel`=60 WHERE `entry`=34786; -- Alice Rigsdale
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60 WHERE `entry`=34787; -- John Rigsdale
|
||||
|
||||
-- Equipments
|
||||
UPDATE `creature_equip_template` SET `VerifiedBuild`=46741 WHERE (`ID`=1 AND `CreatureID` IN (50484,34786,19882,18951,16221,16192,15970));
|
||||
|
||||
-- Scaling
|
||||
DELETE FROM `creature_template_scaling` WHERE `DifficultyID`=0 AND `Entry` IN (34786, 34787);
|
||||
INSERT INTO `creature_template_scaling` (`Entry`, `DifficultyID`, `LevelScalingDeltaMin`, `LevelScalingDeltaMax`, `ContentTuningID`, `VerifiedBuild`) VALUES
|
||||
(34786, 0, 0, 0, 389, 46741),
|
||||
(34787, 0, 0, 0, 389, 46741);
|
||||
|
||||
UPDATE `creature_template_scaling` SET `VerifiedBuild`=46741 WHERE (`DifficultyID`=0 AND `Entry` IN (118514,118510,50484,27946,19882,19169,18951,16221,16192,15971,15970,15649,13321));
|
||||
|
||||
-- Trainer
|
||||
DELETE FROM `creature_trainer` WHERE `CreatureID`=34786;
|
||||
INSERT INTO `creature_trainer` (`CreatureID`, `TrainerID`, `MenuID`, `OptionID`) VALUES
|
||||
(34786, 136, 10569, 0);
|
||||
|
||||
-- Old creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN 138374 AND 138377;
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN 138398 AND 138401;
|
||||
DELETE FROM `game_event_creature` WHERE `guid` BETWEEN 138374 AND 138377;
|
||||
DELETE FROM `game_event_creature` WHERE `guid` BETWEEN 138398 AND 138401;
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+6;
|
||||
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, 32823, 530, 3430, 3470, '0', 0, 0, 0, 0, 9296.4033203125, -7226.96337890625, 16.6186065673828125, 4.729842185974121093, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Stillwhisper Pond - Difficulty: 0) (Auras: )
|
||||
(@CGUID+1, 32823, 530, 3430, 3470, '0', 0, 0, 0, 0, 9295.8486328125, -7211.7119140625, 16.3680877685546875, 2.042035102844238281, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Stillwhisper Pond - Difficulty: 0) (Auras: )
|
||||
(@CGUID+2, 32823, 530, 3430, 3470, '0', 0, 0, 0, 0, 9284.7724609375, -7226.8818359375, 16.1937103271484375, 2.042035102844238281, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@CGUID+3, 32823, 530, 3430, 3470, '0', 0, 0, 0, 0, 9280.703125, -7211.20849609375, 16.18792915344238281, 1.588249564170837402, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@CGUID+4, 34654, 530, 3430, 3470, '0', 0, 0, 0, 0, 9291.8466796875, -7219.40966796875, 16.43518829345703125, 5.969026088714599609, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Feast Hostess (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@CGUID+5, 34786, 530, 3430, 3470, '0', 0, 0, 0, 1, 9305.00390625, -7249.3974609375, 14.94988441467285156, 6.2657318115234375, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Alice Rigsdale (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@CGUID+6, 34787, 530, 3430, 3470, '0', 0, 0, 0, 0, 9304.75390625, -7259.36962890625, 15.04354286193847656, 6.126105785369873046, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- John Rigsdale (Area: Stillwhisper Pond - Difficulty: 0) (Auras: )
|
||||
|
||||
-- Old gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN 76560 AND 76646;
|
||||
DELETE FROM `game_event_gameobject` WHERE `guid` BETWEEN 76560 AND 76646;
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+45;
|
||||
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, 179968, 530, 3430, 3470, '0', 0, 0, 9305.0068359375, -7212.95166015625, 15.99479198455810546, 6.213373661041259765, 0, 0, -0.03489875793457031, 0.999390840530395507, 120, 255, 1, 46741), -- Haystack 01 (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 530, 3430, 3470, '0', 0, 0, 9305.26953125, -7210.56787109375, 15.97048664093017578, 3.071766138076782226, 0, 0, 0.999390602111816406, 0.034906134009361267, 120, 255, 1, 46741), -- Haystack 01 (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 530, 3430, 3470, '0', 0, 0, 9294.703125, -7203.7412109375, 16.54340362548828125, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 530, 3430, 3470, '0', 0, 0, 9289.634765625, -7236.01220703125, 17.17300033569335937, 1.413715124130249023, 0, 0, 0.649447441101074218, 0.760406434535980224, 120, 255, 1, 46741), -- Haystack 01 (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 530, 3430, 3470, '0', 0, 0, 9304.60546875, -7259.4443359375, 14.34722232818603515, 3.124123096466064453, 0, 0, 0.99996185302734375, 0.008734640665352344, 120, 255, 1, 46741), -- Haystack 01 (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 530, 3430, 3470, '0', 0, 0, 9304.48828125, -7261.2744140625, 14.31076431274414062, 3.124123096466064453, 0, 0, 0.99996185302734375, 0.008734640665352344, 120, 255, 1, 46741), -- Haystack 01 (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 530, 3430, 3470, '0', 0, 0, 9303.0126953125, -7234.57470703125, 15.75159931182861328, 2.967041015625, 0, 0, 0.996193885803222656, 0.087165042757987976, 120, 255, 1, 46741), -- Haystack 01 (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 530, 3430, 3470, '0', 0, 0, 9305.0673828125, -7249.5, 14.25955581665039062, 3.124123096466064453, 0, 0, 0.99996185302734375, 0.008734640665352344, 120, 255, 1, 46741), -- Haystack 01 (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 530, 3430, 3470, '0', 0, 0, 9297.099609375, -7203.484375, 16.41493034362792968, 4.677483558654785156, 0, 0, -0.71933937072753906, 0.694658815860748291, 120, 255, 1, 46741), -- Haystack 01 (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 530, 3430, 3470, '0', 0, 0, 9276.224609375, -7217.671875, 15.88194465637207031, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+10, 179968, 530, 3430, 3470, '0', 0, 0, 9276.4111328125, -7221.0556640625, 15.85069465637207031, 0.069811686873435974, 0, 0, 0.034898757934570312, 0.999390840530395507, 120, 255, 1, 46741), -- Haystack 01 (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+11, 179968, 530, 3430, 3470, '0', 0, 0, 9287.59765625, -7235.8037109375, 17.13194465637207031, 1.361356139183044433, 0, 0, 0.629320144653320312, 0.77714616060256958, 120, 255, 1, 46741), -- Haystack 01 (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+12, 179968, 530, 3430, 3470, '0', 0, 0, 9303.482421875, -7232.4443359375, 15.7602996826171875, 2.844882726669311523, 0, 0, 0.989015579223632812, 0.147811368107795715, 120, 255, 1, 46741), -- Haystack 01 (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+13, 180353, 530, 3430, 3470, '0', 0, 0, 9305.0126953125, -7211.8505859375, 15.98958301544189453, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+14, 180353, 530, 3430, 3470, '0', 0, 0, 9301.486328125, -7251.3681640625, 15.19187641143798828, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+15, 180353, 530, 3430, 3470, '0', 0, 0, 9303.056640625, -7233.4443359375, 15.78819465637207031, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+16, 180353, 530, 3430, 3470, '0', 0, 0, 9304.5849609375, -7258.23095703125, 14.35193252563476562, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+17, 180353, 530, 3430, 3470, '0', 0, 0, 9301.3720703125, -7247.44091796875, 15.43840694427490234, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+18, 180353, 530, 3430, 3470, '0', 0, 0, 9295.822265625, -7203.51416015625, 16.49262237548828125, 0.174532130360603332, 0, 0, 0.087155342102050781, 0.996194720268249511, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+19, 180353, 530, 3430, 3470, '0', 0, 0, 9276.0595703125, -7219.19775390625, 15.84511280059814453, 0.296705186367034912, 0, 0, 0.147809028625488281, 0.989015936851501464, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+20, 180353, 530, 3430, 3470, '0', 0, 0, 9288.66015625, -7235.8505859375, 17.15571022033691406, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+21, 195164, 530, 3430, 3470, '0', 0, 0, 9305.1455078125, -7212.83154296875, 16.65938758850097656, 6.178466320037841796, 0, 0, -0.05233573913574218, 0.998629570007324218, 120, 255, 1, 46741), -- Pumpkin (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+22, 195164, 530, 3430, 3470, '0', 0, 0, 9305.1806640625, -7210.595703125, 16.65576171875, 3.071766138076782226, 0, 0, 0.999390602111816406, 0.034906134009361267, 120, 255, 1, 46741), -- Pumpkin (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+23, 195164, 530, 3430, 3470, '0', 0, 0, 9303.58203125, -7232.48974609375, 16.42238807678222656, 1.588248729705810546, 0, 0, 0.713250160217285156, 0.700909554958343505, 120, 255, 1, 46741), -- Pumpkin (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+24, 195164, 530, 3430, 3470, '0', 0, 0, 9304.6650390625, -7262.15966796875, 14.31762218475341796, 2.007128477096557617, 0, 0, 0.84339141845703125, 0.537299633026123046, 120, 255, 1, 46741), -- Pumpkin (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+25, 195164, 530, 3430, 3470, '0', 0, 0, 9296.9931640625, -7203.6494140625, 17.09404945373535156, 4.694936752319335937, 0, 0, -0.71325016021728515, 0.700909554958343505, 120, 255, 1, 46741), -- Pumpkin (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+26, 195164, 530, 3430, 3470, '0', 0, 0, 9287.6484375, -7235.7587890625, 17.80996131896972656, 1.361356139183044433, 0, 0, 0.629320144653320312, 0.77714616060256958, 120, 255, 1, 46741), -- Pumpkin (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+27, 195164, 530, 3430, 3470, '0', 0, 0, 9276.09765625, -7217.72412109375, 16.55504226684570312, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+28, 195164, 530, 3430, 3470, '0', 0, 0, 9302.9599609375, -7248.02783203125, 15.27427005767822265, 6.178466320037841796, 0, 0, -0.05233573913574218, 0.998629570007324218, 120, 255, 1, 46741), -- Pumpkin (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+29, 195164, 530, 3430, 3470, '0', 0, 0, 9304.4892578125, -7261.16845703125, 15.00296878814697265, 3.141592741012573242, 0, 0, -1, 0, 120, 255, 1, 46741), -- Pumpkin (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+30, 195164, 530, 3430, 3470, '0', 0, 0, 9303.107421875, -7234.61962890625, 16.4102325439453125, 2.775068521499633789, 0, 0, 0.983254432678222656, 0.182238012552261352, 120, 255, 1, 46741), -- Pumpkin (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+31, 195164, 530, 3430, 3470, '0', 0, 0, 9294.634765625, -7203.6806640625, 17.23141288757324218, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Pumpkin (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+32, 195164, 530, 3430, 3470, '0', 0, 0, 9289.572265625, -7236.0537109375, 17.85575103759765625, 1.413715124130249023, 0, 0, 0.649447441101074218, 0.760406434535980224, 120, 255, 1, 46741), -- Pumpkin (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+33, 195164, 530, 3430, 3470, '0', 0, 0, 9276.400390625, -7221.158203125, 16.53277015686035156, 0.087265998125076293, 0, 0, 0.043619155883789062, 0.999048233032226562, 120, 255, 1, 46741), -- Pumpkin (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+34, 195191, 530, 3430, 3470, '0', 0, 0, 9303.4970703125, -7249.4912109375, 14.3873138427734375, 3.176533222198486328, 0, 0, -0.999847412109375, 0.017469281330704689, 120, 255, 1, 46741), -- Dwarven Table Simple 05 (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+35, 195192, 530, 3430, 3470, '0', 0, 0, 9303.765625, -7247.81103515625, 15.29548168182373046, 5.777040958404541015, 0, 0, -0.25037956237792968, 0.968147754669189453, 120, 255, 1, 46741), -- Basket of Corn (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+36, 195194, 530, 3430, 3470, '0', 0, 0, 9303.9619140625, -7248.7255859375, 15.29372692108154296, 3.804818391799926757, 0, 0, -0.94551849365234375, 0.325568377971649169, 120, 255, 1, 46741), -- Small Basket 01 (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+37, 195195, 530, 3430, 3470, '0', 0, 0, 9303.9921875, -7250.970703125, 15.21642208099365234, 3.298687219619750976, 0, 0, -0.99691677093505859, 0.078466430306434631, 120, 255, 1, 46741), -- Cranberry Masher (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+38, 195196, 530, 3430, 3470, '0', 0, 0, 9303.05078125, -7246.0244140625, 15.05563735961914062, 3.804818391799926757, 0, 0, -0.94551849365234375, 0.325568377971649169, 120, 255, 1, 46741), -- Large Basket 03 (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+39, 195197, 530, 3430, 3470, '0', 0, 0, 9304.3134765625, -7246.58837890625, 14.63839435577392578, 3.9793548583984375, 0, 0, -0.9135446548461914, 0.406738430261611938, 120, 255, 1, 46741), -- Grain Sack 02 (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+40, 195198, 530, 3430, 3470, '0', 0, 0, 9305.7646484375, -7247.140625, 14.36336231231689453, 5.811946868896484375, 0, 0, -0.2334451675415039, 0.972369968891143798, 120, 255, 1, 46741), -- Crate 01 (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+41, 195200, 530, 3430, 3470, '0', 0, 0, 9303.623046875, -7252.99462890625, 14.25869560241699218, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pilgrim's Bounty Cooking Fire (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+42, 195664, 530, 3430, 3470, '0', 0, 0, 9296.4033203125, -7226.96337890625, 16.53528213500976562, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+43, 195664, 530, 3430, 3470, '0', 0, 0, 9295.8486328125, -7211.7119140625, 16.28475379943847656, 2.042035102844238281, 0, 0, 0.852640151977539062, 0.522498607635498046, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+44, 195664, 530, 3430, 3470, '0', 0, 0, 9280.703125, -7211.20849609375, 16.10459518432617187, 1.588248729705810546, 0, 0, 0.713250160217285156, 0.700909554958343505, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
(@OGUID+45, 195664, 530, 3430, 3470, '0', 0, 0, 9284.7705078125, -7226.8818359375, 16.11033821105957031, 2.042035102844238281, 0, 0, 0.852640151977539062, 0.522498607635498046, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Stillwhisper Pond - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+6;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1),
|
||||
(@EVENT, @CGUID+2),
|
||||
(@EVENT, @CGUID+3),
|
||||
(@EVENT, @CGUID+4),
|
||||
(@EVENT, @CGUID+5),
|
||||
(@EVENT, @CGUID+6);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+45;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25),
|
||||
(@EVENT, @OGUID+26),
|
||||
(@EVENT, @OGUID+27),
|
||||
(@EVENT, @OGUID+28),
|
||||
(@EVENT, @OGUID+29),
|
||||
(@EVENT, @OGUID+30),
|
||||
(@EVENT, @OGUID+31),
|
||||
(@EVENT, @OGUID+32),
|
||||
(@EVENT, @OGUID+33),
|
||||
(@EVENT, @OGUID+34),
|
||||
(@EVENT, @OGUID+35),
|
||||
(@EVENT, @OGUID+36),
|
||||
(@EVENT, @OGUID+37),
|
||||
(@EVENT, @OGUID+38),
|
||||
(@EVENT, @OGUID+39),
|
||||
(@EVENT, @OGUID+40),
|
||||
(@EVENT, @OGUID+41),
|
||||
(@EVENT, @OGUID+42),
|
||||
(@EVENT, @OGUID+43),
|
||||
(@EVENT, @OGUID+44),
|
||||
(@EVENT, @OGUID+45);
|
||||
@@ -1,112 +0,0 @@
|
||||
SET @CGUID := 396520;
|
||||
SET @OGUID := 249002;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+3;
|
||||
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, 32823, 530, 3430, 3665, '0', 0, 0, 0, 0, 9499.5087890625, -6777.47216796875, 16.57567787170410156, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Falconwing Square - Difficulty: 0) (Auras: )
|
||||
(@CGUID+1, 32823, 530, 3430, 3665, '0', 0, 0, 0, 0, 9488.8203125, -6775.6875, 16.57689857482910156, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Falconwing Square - Difficulty: 0)
|
||||
(@CGUID+2, 32823, 530, 3430, 3665, '0', 0, 0, 0, 0, 9509.5908203125, -6778.6025390625, 16.57607078552246093, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Falconwing Square - Difficulty: 0)
|
||||
(@CGUID+3, 34654, 530, 3430, 3665, '0', 0, 0, 0, 0, 9485.875, -6782.515625, 16.57613563537597656, 4.502949237823486328, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Feast Hostess (Area: Falconwing Square - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+42;
|
||||
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, 179968, 530, 3430, 3665, '0', 0, 0, 9495.951171875, -6781.64599609375, 16.49193763732910156, 1.518436193466186523, 0, 0, 0.6883544921875, 0.725374460220336914, 120, 255, 1, 46741), -- Haystack 01 (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 530, 3430, 3665, '0', 0, 0, 9503.7890625, -6783.171875, 16.491790771484375, 1.535889506340026855, 0, 0, 0.694658279418945312, 0.719339847564697265, 120, 255, 1, 46741), -- Haystack 01 (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 530, 3430, 3665, '0', 0, 0, 9493.3037109375, -6781.40283203125, 16.49275779724121093, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 530, 3430, 3665, '0', 0, 0, 9505.95703125, -6783.4150390625, 16.49179458618164062, 1.500982880592346191, 0, 0, 0.681998252868652343, 0.731353819370269775, 120, 255, 1, 46741), -- Haystack 01 (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 530, 3430, 3665, '0', 0, 0, 9494.658203125, -6770.88916015625, 16.4935760498046875, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 530, 3430, 3665, '0', 0, 0, 9516.9052734375, -6782.64404296875, 16.49261665344238281, 3.071766138076782226, 0, 0, 0.999390602111816406, 0.034906134009361267, 120, 255, 1, 46741), -- Haystack 01 (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 530, 3430, 3665, '0', 0, 0, 9516.8798828125, -6775.3994140625, 16.49353981018066406, 3.106652259826660156, 0, 0, 0.999847412109375, 0.017469281330704689, 120, 255, 1, 46741), -- Haystack 01 (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 530, 3430, 3665, '0', 0, 0, 9484.80078125, -6779.5556640625, 16.49356269836425781, 6.265733242034912109, 0, 0, -0.00872611999511718, 0.999961912631988525, 120, 255, 1, 46741), -- Haystack 01 (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 530, 3430, 3665, '0', 0, 0, 9504.6220703125, -6772.3125, 16.49357795715332031, 4.59021615982055664, 0, 0, -0.74895572662353515, 0.662620067596435546, 120, 255, 1, 46741), -- Haystack 01 (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 530, 3430, 3665, '0', 0, 0, 9486.2041015625, -6771.05224609375, 16.49356460571289062, 4.694936752319335937, 0, 0, -0.71325016021728515, 0.700909554958343505, 120, 255, 1, 46741), -- Haystack 01 (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+10, 179968, 530, 3430, 3665, '0', 0, 0, 9496.580078125, -6771.19287109375, 16.49357795715332031, 4.59021615982055664, 0, 0, -0.74895572662353515, 0.662620067596435546, 120, 255, 1, 46741), -- Haystack 01 (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+11, 179968, 530, 3430, 3665, '0', 0, 0, 9515.560546875, -6783.71728515625, 16.49218177795410156, 1.535889506340026855, 0, 0, 0.694658279418945312, 0.719339847564697265, 120, 255, 1, 46741), -- Haystack 01 (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+12, 179968, 530, 3430, 3665, '0', 0, 0, 9484.87890625, -6772.55712890625, 16.49356460571289062, 6.248279094696044921, 0, 0, -0.01745223999023437, 0.999847710132598876, 120, 255, 1, 46741), -- Haystack 01 (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+13, 179968, 530, 3430, 3665, '0', 0, 0, 9507, -6772.55712890625, 16.49357795715332031, 4.59021615982055664, 0, 0, -0.74895572662353515, 0.662620067596435546, 120, 255, 1, 46741), -- Haystack 01 (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+14, 179968, 530, 3430, 3665, '0', 0, 0, 9515.48828125, -6774.171875, 16.49357795715332031, 4.59021615982055664, 0, 0, -0.74895572662353515, 0.662620067596435546, 120, 255, 1, 46741), -- Haystack 01 (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+15, 179968, 530, 3430, 3665, '0', 0, 0, 9486.443359375, -6780.5625, 16.49340057373046875, 1.500982880592346191, 0, 0, 0.681998252868652343, 0.731353819370269775, 120, 255, 1, 46741), -- Haystack 01 (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+16, 180353, 530, 3430, 3665, '0', 0, 0, 9494.7548828125, -6781.15283203125, 16.49226951599121093, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+17, 180353, 530, 3430, 3665, '0', 0, 0, 9504.78125, -6783.25, 16.491790771484375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+18, 180353, 530, 3430, 3665, '0', 0, 0, 9516.8115234375, -6783.82275390625, 16.49230003356933593, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+19, 180353, 530, 3430, 3665, '0', 0, 0, 9505.7255859375, -6772.408203125, 16.49357795715332031, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+20, 180353, 530, 3430, 3665, '0', 0, 0, 9495.66015625, -6771.048828125, 16.49357795715332031, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+21, 180353, 530, 3430, 3665, '0', 0, 0, 9516.505859375, -6774.30029296875, 16.49357795715332031, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+22, 180353, 530, 3430, 3665, '0', 0, 0, 9484.8955078125, -6780.611328125, 16.49337577819824218, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+23, 180353, 530, 3430, 3665, '0', 0, 0, 9485.0419921875, -6771.19287109375, 16.49356460571289062, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+24, 195164, 530, 3430, 3665, '0', 0, 0, 9503.6513671875, -6783.314453125, 16.491790771484375, 1.500982880592346191, 0, 0, 0.681998252868652343, 0.731353819370269775, 120, 255, 1, 46741), -- Pumpkin (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+25, 195164, 530, 3430, 3665, '0', 0, 0, 9496.091796875, -6781.52783203125, 16.49193763732910156, 1.553341388702392578, 0, 0, 0.700908660888671875, 0.713251054286956787, 120, 255, 1, 46741), -- Pumpkin (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+26, 195164, 530, 3430, 3665, '0', 0, 0, 9505.865234375, -6783.44287109375, 16.49179458618164062, 1.466075778007507324, 0, 0, 0.669130325317382812, 0.74314504861831665, 120, 255, 1, 46741), -- Pumpkin (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+27, 195164, 530, 3430, 3665, '0', 0, 0, 9493.25390625, -6781.33349609375, 16.49278831481933593, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+28, 195164, 530, 3430, 3665, '0', 0, 0, 9506.86328125, -6772.69970703125, 16.49357795715332031, 4.625123500823974609, 0, 0, -0.73727703094482421, 0.67559051513671875, 120, 255, 1, 46741), -- Pumpkin (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+29, 195164, 530, 3430, 3665, '0', 0, 0, 9484.9755859375, -6772.6025390625, 16.49356460571289062, 6.265733242034912109, 0, 0, -0.00872611999511718, 0.999961912631988525, 120, 255, 1, 46741), -- Pumpkin (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+30, 195164, 530, 3430, 3665, '0', 0, 0, 9504.529296875, -6772.34033203125, 16.49355125427246093, 4.607671737670898437, 0, 0, -0.74314403533935546, 0.669131457805633544, 120, 255, 1, 46741), -- Pumpkin (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+31, 195164, 530, 3430, 3665, '0', 0, 0, 9486.3759765625, -6780.4931640625, 16.49343109130859375, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Pumpkin (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+32, 195164, 530, 3430, 3665, '0', 0, 0, 9516.7431640625, -6775.54150390625, 16.49356460571289062, 3.071766138076782226, 0, 0, 0.999390602111816406, 0.034906134009361267, 120, 255, 1, 46741), -- Pumpkin (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+33, 195164, 530, 3430, 3665, '0', 0, 0, 9515.3955078125, -6774.19970703125, 16.49357795715332031, 4.59021615982055664, 0, 0, -0.74895572662353515, 0.662620067596435546, 120, 255, 1, 46741), -- Pumpkin (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+34, 195164, 530, 3430, 3665, '0', 0, 0, 9516.814453125, -6782.671875, 16.49260330200195312, 3.054326534271240234, 0, 0, 0.999048233032226562, 0.043619260191917419, 120, 255, 1, 46741), -- Pumpkin (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+35, 195164, 530, 3430, 3665, '0', 0, 0, 9515.423828125, -6783.859375, 16.49214553833007812, 1.518436193466186523, 0, 0, 0.6883544921875, 0.725374460220336914, 120, 255, 1, 46741), -- Pumpkin (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+36, 195164, 530, 3430, 3665, '0', 0, 0, 9486.1845703125, -6771.09716796875, 16.49356460571289062, 4.694936752319335937, 0, 0, -0.71325016021728515, 0.700909554958343505, 120, 255, 1, 46741), -- Pumpkin (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+37, 195164, 530, 3430, 3665, '0', 0, 0, 9484.8486328125, -6779.51025390625, 16.49356269836425781, 6.248279094696044921, 0, 0, -0.01745223999023437, 0.999847710132598876, 120, 255, 1, 46741), -- Pumpkin (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+38, 195164, 530, 3430, 3665, '0', 0, 0, 9496.51953125, -6771.17724609375, 16.49357795715332031, 4.59021615982055664, 0, 0, -0.74895572662353515, 0.662620067596435546, 120, 255, 1, 46741), -- Pumpkin (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+39, 195164, 530, 3430, 3665, '0', 0, 0, 9494.6162109375, -6770.98291015625, 16.4935760498046875, 4.223697185516357421, 0, 0, -0.85716724395751953, 0.515038192272186279, 120, 255, 1, 46741), -- Pumpkin (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+40, 195664, 530, 3430, 3665, '0', 0, 0, 9499.509765625, -6777.47021484375, 16.49230003356933593, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+41, 195664, 530, 3430, 3665, '0', 0, 0, 9488.8203125, -6775.68994140625, 16.49360084533691406, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Falconwing Square - Difficulty: 0)
|
||||
(@OGUID+42, 195664, 530, 3430, 3665, '0', 0, 0, 9509.58984375, -6778.60009765625, 16.49270057678222656, 0, 0, 0, 0, 1, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Falconwing Square - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+3;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1),
|
||||
(@EVENT, @CGUID+2),
|
||||
(@EVENT, @CGUID+3);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+42;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25),
|
||||
(@EVENT, @OGUID+26),
|
||||
(@EVENT, @OGUID+27),
|
||||
(@EVENT, @OGUID+28),
|
||||
(@EVENT, @OGUID+29),
|
||||
(@EVENT, @OGUID+30),
|
||||
(@EVENT, @OGUID+31),
|
||||
(@EVENT, @OGUID+32),
|
||||
(@EVENT, @OGUID+33),
|
||||
(@EVENT, @OGUID+34),
|
||||
(@EVENT, @OGUID+35),
|
||||
(@EVENT, @OGUID+36),
|
||||
(@EVENT, @OGUID+37),
|
||||
(@EVENT, @OGUID+38),
|
||||
(@EVENT, @OGUID+39),
|
||||
(@EVENT, @OGUID+40),
|
||||
(@EVENT, @OGUID+41),
|
||||
(@EVENT, @OGUID+42);
|
||||
@@ -1,74 +0,0 @@
|
||||
SET @CGUID := 396524;
|
||||
SET @OGUID := 249045;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+1;
|
||||
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, 32823, 530, 3525, 3584, '0', 0, 0, 0, 0, -2037.1319580078125, -11902.91015625, 46.08014678955078125, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Blood Watch - Difficulty: 0) (Auras: )
|
||||
(@CGUID+1, 34653, 530, 3525, 3584, '0', 0, 0, 0, 0, -2034.6302490234375, -11895.7919921875, 46.21881866455078125, 0.994837641716003417, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Table Hostess (Area: Blood Watch - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+25;
|
||||
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, 179968, 530, 3525, 3584, '0', 0, 0, -2030.9097900390625, -11902.107421875, 46.33854293823242187, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: Blood Watch - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 530, 3525, 3584, '0', 0, 0, -2034.90283203125, -11897.451171875, 45.978515625, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Blood Watch - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 530, 3525, 3584, '0', 0, 0, -2033.373291015625, -11897.857421875, 45.92424392700195312, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Haystack 01 (Area: Blood Watch - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 530, 3525, 3584, '0', 0, 0, -2040.38720703125, -11899.0517578125, 46.5243072509765625, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 46741), -- Haystack 01 (Area: Blood Watch - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 530, 3525, 3584, '0', 0, 0, -2035.3785400390625, -11908.451171875, 45.76068878173828125, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Blood Watch - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 530, 3525, 3584, '0', 0, 0, -2040.8228759765625, -11905.2744140625, 46.63888931274414062, 3.403396368026733398, 0, 0, -0.99144458770751953, 0.130528271198272705, 120, 255, 1, 46741), -- Haystack 01 (Area: Blood Watch - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 530, 3525, 3584, '0', 0, 0, -2031.07470703125, -11903.669921875, 46.42013931274414062, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: Blood Watch - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 530, 3525, 3584, '0', 0, 0, -2033.7379150390625, -11907.9658203125, 45.84375, 1.989672422409057617, 0, 0, 0.838669776916503906, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: Blood Watch - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 530, 3525, 3584, '0', 0, 0, -2039.7760009765625, -11906.7744140625, 46.37847137451171875, 1.029743075370788574, 0, 0, 0.492423057556152343, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: Blood Watch - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 530, 3525, 3584, '0', 0, 0, -2041.467041015625, -11900.396484375, 46.59722137451171875, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Haystack 01 (Area: Blood Watch - Difficulty: 0)
|
||||
(@OGUID+10, 180353, 530, 3525, 3584, '0', 0, 0, -2034.1146240234375, -11897.6025390625, 45.95160293579101562, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Blood Watch - Difficulty: 0)
|
||||
(@OGUID+11, 180353, 530, 3525, 3584, '0', 0, 0, -2034.5416259765625, -11908.330078125, 45.80382156372070312, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Blood Watch - Difficulty: 0)
|
||||
(@OGUID+12, 180353, 530, 3525, 3584, '0', 0, 0, -2041.138916015625, -11899.5595703125, 46.56076431274414062, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Blood Watch - Difficulty: 0)
|
||||
(@OGUID+13, 180353, 530, 3525, 3584, '0', 0, 0, -2040.4444580078125, -11906.1982421875, 46.51041793823242187, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Blood Watch - Difficulty: 0)
|
||||
(@OGUID+14, 180353, 530, 3525, 3584, '0', 0, 0, -2030.921875, -11902.892578125, 46.39583206176757812, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Blood Watch - Difficulty: 0)
|
||||
(@OGUID+15, 195164, 530, 3525, 3584, '0', 0, 0, -2034.9444580078125, -11897.544921875, 46.62501907348632812, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Blood Watch - Difficulty: 0)
|
||||
(@OGUID+16, 195164, 530, 3525, 3584, '0', 0, 0, -2033.435791015625, -11897.8408203125, 46.574005126953125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Blood Watch - Difficulty: 0)
|
||||
(@OGUID+17, 195164, 530, 3525, 3584, '0', 0, 0, -2035.4271240234375, -11908.3837890625, 46.40788650512695312, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Blood Watch - Difficulty: 0)
|
||||
(@OGUID+18, 195164, 530, 3525, 3584, '0', 0, 0, -2040.7742919921875, -11905.228515625, 47.29101943969726562, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Blood Watch - Difficulty: 0)
|
||||
(@OGUID+19, 195164, 530, 3525, 3584, '0', 0, 0, -2033.5989990234375, -11907.84765625, 46.50245285034179687, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Blood Watch - Difficulty: 0)
|
||||
(@OGUID+20, 195164, 530, 3525, 3584, '0', 0, 0, -2040.4097900390625, -11899.09765625, 47.17122650146484375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Blood Watch - Difficulty: 0)
|
||||
(@OGUID+21, 195164, 530, 3525, 3584, '0', 0, 0, -2031.2135009765625, -11903.8134765625, 47.04970169067382812, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Blood Watch - Difficulty: 0)
|
||||
(@OGUID+22, 195164, 530, 3525, 3584, '0', 0, 0, -2031.0035400390625, -11902.1357421875, 46.97157669067382812, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Blood Watch - Difficulty: 0)
|
||||
(@OGUID+23, 195164, 530, 3525, 3584, '0', 0, 0, -2039.845458984375, -11906.705078125, 47.05317306518554687, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Blood Watch - Difficulty: 0)
|
||||
(@OGUID+24, 195164, 530, 3525, 3584, '0', 0, 0, -2041.3697509765625, -11900.44140625, 47.24414443969726562, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Blood Watch - Difficulty: 0)
|
||||
(@OGUID+25, 195664, 530, 3525, 3584, '0', 0, 0, -2037.1319580078125, -11902.91015625, 45.99681472778320312, 0, 0, 0, 0, 1, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Blood Watch - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+1;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+25;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25);
|
||||
@@ -1,74 +0,0 @@
|
||||
SET @CGUID := 396526;
|
||||
SET @OGUID := 249071;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+1;
|
||||
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, 32823, 1, 148, 4659, '0', 0, 0, 0, 0, 7418.27978515625, -252.77099609375, 7.754663467407226562, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Lor'danel - Difficulty: 0)
|
||||
(@CGUID+1, 34653, 1, 148, 4659, '0', 0, 0, 0, 0, 7414.68994140625, -258.6820068359375, 7.745133399963378906, 4.15388345718383789, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Table Hostess (Area: Lor'danel - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+25;
|
||||
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, 179968, 1, 148, 4659, '0', 0, 0, 7415.02978515625, -248.912994384765625, 7.664770126342773437, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 46741), -- Haystack 01 (Area: Lor'danel - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 1, 148, 4659, '0', 0, 0, 7422.0400390625, -247.716995239257812, 7.658820152282714843, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Haystack 01 (Area: Lor'danel - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 1, 148, 4659, '0', 0, 0, 7424.5, -251.968994140625, 7.652239799499511718, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: Lor'danel - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 1, 148, 4659, '0', 0, 0, 7420.509765625, -247.313003540039062, 7.663909912109375, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Lor'danel - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 1, 148, 4659, '0', 0, 0, 7424.33984375, -253.531005859375, 7.652919769287109375, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: Lor'danel - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 1, 148, 4659, '0', 0, 0, 7415.64013671875, -256.634002685546875, 7.665150165557861328, 1.029743075370788574, 0, 0, 0.492423057556152343, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: Lor'danel - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 1, 148, 4659, '0', 0, 0, 7421.68017578125, -257.82598876953125, 7.661129951477050781, 1.989672422409057617, 0, 0, 0.838669776916503906, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: Lor'danel - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 1, 148, 4659, '0', 0, 0, 7414.58984375, -255.134994506835937, 7.662459850311279296, 3.403396368026733398, 0, 0, -0.99144458770751953, 0.130528271198272705, 120, 255, 1, 46741), -- Haystack 01 (Area: Lor'danel - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 1, 148, 4659, '0', 0, 0, 7420.02978515625, -258.31298828125, 7.666049957275390625, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Lor'danel - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 1, 148, 4659, '0', 0, 0, 7413.9501953125, -250.2550048828125, 7.661439895629882812, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Haystack 01 (Area: Lor'danel - Difficulty: 0)
|
||||
(@OGUID+10, 180353, 1, 148, 4659, '0', 0, 0, 7421.2998046875, -247.462005615234375, 7.661300182342529296, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Lor'danel - Difficulty: 0)
|
||||
(@OGUID+11, 180353, 1, 148, 4659, '0', 0, 0, 7424.490234375, -252.753005981445312, 7.652450084686279296, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Lor'danel - Difficulty: 0)
|
||||
(@OGUID+12, 180353, 1, 148, 4659, '0', 0, 0, 7414.97021484375, -256.058990478515625, 7.663310050964355468, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Lor'danel - Difficulty: 0)
|
||||
(@OGUID+13, 180353, 1, 148, 4659, '0', 0, 0, 7414.27001953125, -249.417999267578125, 7.662479877471923828, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Lor'danel - Difficulty: 0)
|
||||
(@OGUID+14, 180353, 1, 148, 4659, '0', 0, 0, 7420.8701171875, -258.191009521484375, 7.663509845733642578, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Lor'danel - Difficulty: 0)
|
||||
(@OGUID+15, 195164, 1, 148, 4659, '0', 0, 0, 7421.97998046875, -247.701004028320312, 8.309029579162597656, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Lor'danel - Difficulty: 0)
|
||||
(@OGUID+16, 195164, 1, 148, 4659, '0', 0, 0, 7421.81005859375, -257.7080078125, 8.310740470886230468, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Lor'danel - Difficulty: 0)
|
||||
(@OGUID+17, 195164, 1, 148, 4659, '0', 0, 0, 7420.47021484375, -247.406005859375, 8.3139495849609375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Lor'danel - Difficulty: 0)
|
||||
(@OGUID+18, 195164, 1, 148, 4659, '0', 0, 0, 7419.990234375, -258.243011474609375, 8.316220283508300781, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Lor'danel - Difficulty: 0)
|
||||
(@OGUID+19, 195164, 1, 148, 4659, '0', 0, 0, 7414.64013671875, -255.089996337890625, 8.312640190124511718, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Lor'danel - Difficulty: 0)
|
||||
(@OGUID+20, 195164, 1, 148, 4659, '0', 0, 0, 7415.56982421875, -256.563995361328125, 8.314990043640136718, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Lor'danel - Difficulty: 0)
|
||||
(@OGUID+21, 195164, 1, 148, 4659, '0', 0, 0, 7424.41015625, -251.996994018554687, 8.302559852600097656, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Lor'danel - Difficulty: 0)
|
||||
(@OGUID+22, 195164, 1, 148, 4659, '0', 0, 0, 7415, -248.957992553710937, 8.314729690551757812, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Lor'danel - Difficulty: 0)
|
||||
(@OGUID+23, 195164, 1, 148, 4659, '0', 0, 0, 7414.0400390625, -250.300003051757812, 8.31175994873046875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Lor'danel - Difficulty: 0)
|
||||
(@OGUID+24, 195164, 1, 148, 4659, '0', 0, 0, 7424.2001953125, -253.673995971679687, 8.303370475769042968, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Lor'danel - Difficulty: 0)
|
||||
(@OGUID+25, 195664, 1, 148, 4659, '0', 0, 0, 7418.27978515625, -252.77099609375, 7.671339988708496093, 0, 0, 0, 0, 1, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Lor'danel - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+1;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+25;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25);
|
||||
@@ -1,90 +0,0 @@
|
||||
SET @CGUID := 396528;
|
||||
SET @OGUID := 249097;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+3;
|
||||
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, 32823, 1, 618, 2255, '0', 0, 0, 0, 0, 6809.16650390625, -4595.330078125, 710.62908935546875, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Everlook - Difficulty: 0)
|
||||
(@CGUID+1, 32823, 1, 618, 2255, '0', 0, 0, 0, 0, 6780.05029296875, -4730.62841796875, 702.353759765625, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Everlook - Difficulty: 0)
|
||||
(@CGUID+2, 34653, 1, 618, 2255, '0', 0, 0, 0, 0, 6787.0322265625, -4731.72216796875, 702.35589599609375, 5.323254108428955078, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table Hostess (Area: Everlook - Difficulty: 0)
|
||||
(@CGUID+3, 34654, 1, 618, 2255, '0', 0, 0, 0, 0, 6804.53662109375, -4599.6005859375, 710.8663330078125, 4.904375076293945312, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Feast Hostess (Area: Everlook - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+31;
|
||||
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, 179968, 1, 618, 2255, '0', 0, 0, 6806.6337890625, -4597.30224609375, 710.83160400390625, 0.558503925800323486, 0, 0, 0.275636672973632812, 0.961261868476867675, 120, 255, 1, 46741), -- Haystack 01 (Area: Everlook - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 1, 618, 2255, '0', 0, 0, 6814, -4595.23095703125, 710.669189453125, 3.159062385559082031, 0, 0, -0.99996185302734375, 0.008734640665352344, 120, 255, 1, 46741), -- Haystack 01 (Area: Everlook - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 1, 618, 2255, '0', 0, 0, 6811.1181640625, -4598.91650390625, 710.669189453125, 1.954769015312194824, 0, 0, 0.829037666320800781, 0.559192776679992675, 120, 255, 1, 46741), -- Haystack 01 (Area: Everlook - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 1, 618, 2255, '0', 0, 0, 6811.41162109375, -4591.29150390625, 710.669189453125, 4.258606910705566406, 0, 0, -0.84804725646972656, 0.529920578002929687, 120, 255, 1, 46741), -- Haystack 01 (Area: Everlook - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 1, 618, 2255, '0', 0, 0, 6806.5556640625, -4592.578125, 710.72052001953125, 5.585053920745849609, 0, 0, -0.34202003479003906, 0.939692676067352294, 120, 255, 1, 46741), -- Haystack 01 (Area: Everlook - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 1, 618, 2255, '0', 0, 0, 6777.23095703125, -4727.703125, 702.3990478515625, 5.637413978576660156, 0, 0, -0.31730461120605468, 0.948323667049407958, 120, 255, 1, 46741), -- Haystack 01 (Area: Everlook - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 1, 618, 2255, '0', 0, 0, 6782.515625, -4726.517578125, 702.30340576171875, 4.241150379180908203, 0, 0, -0.85264015197753906, 0.522498607635498046, 120, 255, 1, 46741), -- Haystack 01 (Area: Everlook - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 1, 618, 2255, '0', 0, 0, 6782.11474609375, -4734.51220703125, 702.49652099609375, 1.85004889965057373, 0, 0, 0.798635482788085937, 0.60181504487991333, 120, 255, 1, 46741), -- Haystack 01 (Area: Everlook - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 1, 618, 2255, '0', 0, 0, 6785.236328125, -4730.8837890625, 702.29150390625, 3.089183330535888671, 0, 0, 0.99965667724609375, 0.026201646775007247, 120, 255, 1, 46741), -- Haystack 01 (Area: Everlook - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 1, 618, 2255, '0', 0, 0, 6777.79345703125, -4732.83349609375, 702.66839599609375, 0.610863447189331054, 0, 0, 0.3007049560546875, 0.953717231750488281, 120, 255, 1, 46741), -- Haystack 01 (Area: Everlook - Difficulty: 0)
|
||||
(@OGUID+10, 180353, 1, 618, 2255, '0', 0, 0, 6815.26220703125, -4595.16162109375, 710.669189453125, 3.263772249221801757, 0, 0, -0.99813461303710937, 0.061051756143569946, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Everlook - Difficulty: 0)
|
||||
(@OGUID+11, 180353, 1, 618, 2255, '0', 0, 0, 6805.609375, -4591.73095703125, 710.76910400390625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Everlook - Difficulty: 0)
|
||||
(@OGUID+12, 180353, 1, 618, 2255, '0', 0, 0, 6811.68212890625, -4590.251953125, 710.60302734375, 3.490667104721069335, 0, 0, -0.98480701446533203, 0.173652306199073791, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Everlook - Difficulty: 0)
|
||||
(@OGUID+13, 180353, 1, 618, 2255, '0', 0, 0, 6811.56591796875, -4600.0068359375, 710.669189453125, 3.490667104721069335, 0, 0, -0.98480701446533203, 0.173652306199073791, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Everlook - Difficulty: 0)
|
||||
(@OGUID+14, 180353, 1, 618, 2255, '0', 0, 0, 6805.71337890625, -4597.70166015625, 710.8819580078125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Everlook - Difficulty: 0)
|
||||
(@OGUID+15, 180353, 1, 618, 2255, '0', 0, 0, 6776.46875, -4726.91650390625, 702.48956298828125, 0.069811686873435974, 0, 0, 0.034898757934570312, 0.999390840530395507, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Everlook - Difficulty: 0)
|
||||
(@OGUID+16, 180353, 1, 618, 2255, '0', 0, 0, 6782.9912109375, -4725.6962890625, 702.28759765625, 3.490667104721069335, 0, 0, -0.98480701446533203, 0.173652306199073791, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Everlook - Difficulty: 0)
|
||||
(@OGUID+17, 180353, 1, 618, 2255, '0', 0, 0, 6786.13525390625, -4730.93212890625, 702.28125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Everlook - Difficulty: 0)
|
||||
(@OGUID+18, 180353, 1, 618, 2255, '0', 0, 0, 6782.56103515625, -4735.84716796875, 702.3612060546875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Everlook - Difficulty: 0)
|
||||
(@OGUID+19, 180353, 1, 618, 2255, '0', 0, 0, 6776.90283203125, -4733.5380859375, 702.7430419921875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Everlook - Difficulty: 0)
|
||||
(@OGUID+20, 195164, 1, 618, 2255, '0', 0, 0, 6813.861328125, -4595.37353515625, 711.38812255859375, 3.141592741012573242, 0, 0, -1, 0, 120, 255, 1, 46741), -- Pumpkin (Area: Everlook - Difficulty: 0)
|
||||
(@OGUID+21, 195164, 1, 618, 2255, '0', 0, 0, 6811.31787109375, -4591.3193359375, 711.38812255859375, 4.276057243347167968, 0, 0, -0.84339141845703125, 0.537299633026123046, 120, 255, 1, 46741), -- Pumpkin (Area: Everlook - Difficulty: 0)
|
||||
(@OGUID+22, 195164, 1, 618, 2255, '0', 0, 0, 6811.07666015625, -4599.01025390625, 711.38812255859375, 1.937312245368957519, 0, 0, 0.824125289916992187, 0.566407561302185058, 120, 255, 1, 46741), -- Pumpkin (Area: Everlook - Difficulty: 0)
|
||||
(@OGUID+23, 195164, 1, 618, 2255, '0', 0, 0, 6806.49462890625, -4597.4443359375, 711.56622314453125, 0.575957298278808593, 0, 0, 0.284014701843261718, 0.958819925785064697, 120, 255, 1, 46741), -- Pumpkin (Area: Everlook - Difficulty: 0)
|
||||
(@OGUID+24, 195164, 1, 618, 2255, '0', 0, 0, 6806.4619140625, -4592.60595703125, 711.44122314453125, 5.602506637573242187, 0, 0, -0.33380699157714843, 0.942641437053680419, 120, 255, 1, 46741), -- Pumpkin (Area: Everlook - Difficulty: 0)
|
||||
(@OGUID+25, 195164, 1, 618, 2255, '0', 0, 0, 6782.4912109375, -4726.5625, 702.98785400390625, 4.241150379180908203, 0, 0, -0.85264015197753906, 0.522498607635498046, 120, 255, 1, 46741), -- Pumpkin (Area: Everlook - Difficulty: 0)
|
||||
(@OGUID+26, 195164, 1, 618, 2255, '0', 0, 0, 6777.328125, -4727.74853515625, 703.0811767578125, 5.637413978576660156, 0, 0, -0.31730461120605468, 0.948323667049407958, 120, 255, 1, 46741), -- Pumpkin (Area: Everlook - Difficulty: 0)
|
||||
(@OGUID+27, 195164, 1, 618, 2255, '0', 0, 0, 6777.72412109375, -4732.76416015625, 703.35028076171875, 0.610863447189331054, 0, 0, 0.3007049560546875, 0.953717231750488281, 120, 255, 1, 46741), -- Pumpkin (Area: Everlook - Difficulty: 0)
|
||||
(@OGUID+28, 195164, 1, 618, 2255, '0', 0, 0, 6785.1875, -4730.814453125, 702.97540283203125, 3.141592741012573242, 0, 0, -1, 0, 120, 255, 1, 46741), -- Pumpkin (Area: Everlook - Difficulty: 0)
|
||||
(@OGUID+29, 195164, 1, 618, 2255, '0', 0, 0, 6782.2119140625, -4734.55712890625, 703.16973876953125, 1.884953022003173828, 0, 0, 0.809016227722167968, 0.587786316871643066, 120, 255, 1, 46741), -- Pumpkin (Area: Everlook - Difficulty: 0)
|
||||
(@OGUID+30, 195664, 1, 618, 2255, '0', 0, 0, 6809.169921875, -4595.330078125, 710.5460205078125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Everlook - Difficulty: 0)
|
||||
(@OGUID+31, 195664, 1, 618, 2255, '0', 0, 0, 6780.05029296875, -4730.62841796875, 702.27044677734375, 0, 0, 0, 0, 1, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Everlook - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+3;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1),
|
||||
(@EVENT, @CGUID+2),
|
||||
(@EVENT, @CGUID+3);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+31;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25),
|
||||
(@EVENT, @OGUID+26),
|
||||
(@EVENT, @OGUID+27),
|
||||
(@EVENT, @OGUID+28),
|
||||
(@EVENT, @OGUID+29),
|
||||
(@EVENT, @OGUID+30),
|
||||
(@EVENT, @OGUID+31);
|
||||
@@ -1,134 +0,0 @@
|
||||
SET @CGUID := 396532;
|
||||
SET @OGUID := 249129;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+3;
|
||||
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
|
||||
-- Astranaar
|
||||
(@CGUID+0, 32823, 1, 331, 415, '0', 0, 0, 0, 0, 2750.56005859375, -437.07501220703125, 111.5633392333984375, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Astranaar - Difficulty: 0) (Auras: )
|
||||
(@CGUID+1, 34653, 1, 331, 415, '0', 0, 0, 0, 0, 2759.2099609375, -438.204986572265625, 111.5443344116210937, 5.689773082733154296, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table Hostess (Area: Astranaar - Difficulty: 0)
|
||||
-- Splintertree Post
|
||||
(@CGUID+2, 32823, 1, 331, 431, '0', 0, 0, 0, 0, 2345.969970703125, -2561.659912109375, 103.1763381958007812, 5.358160972595214843, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Splintertree Post - Difficulty: 0)
|
||||
(@CGUID+3, 34654, 1, 331, 431, '0', 0, 0, 0, 0, 2340.929931640625, -2555.989990234375, 103.1763381958007812, 3.752457857131958007, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Feast Hostess (Area: Splintertree Post - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+51;
|
||||
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
|
||||
-- Astranaar
|
||||
(@OGUID+0, 179968, 1, 331, 415, '0', 0, 0, 2748.139892578125, -441.2760009765625, 111.4789962768554687, 1.029743075370788574, 0, 0, 0.492423057556152343, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: Astranaar - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 1, 331, 415, '0', 0, 0, 2752.570068359375, -431.605987548828125, 111.4800033569335937, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Astranaar - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 1, 331, 415, '0', 0, 0, 2757.1298828125, -438.269012451171875, 111.4670028686523437, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: Astranaar - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 1, 331, 415, '0', 0, 0, 2747.820068359375, -432.75201416015625, 111.4690017700195312, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 46741), -- Haystack 01 (Area: Astranaar - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 1, 331, 415, '0', 0, 0, 2754.35009765625, -442.29998779296875, 111.4710006713867187, 1.989672422409057617, 0, 0, 0.838669776916503906, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: Astranaar - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 1, 331, 415, '0', 0, 0, 2757.10009765625, -435.9110107421875, 111.4690017700195312, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: Astranaar - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 1, 331, 415, '0', 0, 0, 2745.89990234375, -434.886993408203125, 111.464996337890625, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Haystack 01 (Area: Astranaar - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 1, 331, 415, '0', 0, 0, 2746.8701171875, -439.438995361328125, 111.4729995727539062, 3.403396368026733398, 0, 0, -0.99144458770751953, 0.130528271198272705, 120, 255, 1, 46741), -- Haystack 01 (Area: Astranaar - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 1, 331, 415, '0', 0, 0, 2751.699951171875, -442.7449951171875, 111.477996826171875, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Astranaar - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 1, 331, 415, '0', 0, 0, 2754.590087890625, -432.24700927734375, 111.4789962768554687, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Haystack 01 (Area: Astranaar - Difficulty: 0)
|
||||
(@OGUID+10, 180353, 1, 331, 415, '0', 0, 0, 2747.25, -440.363006591796875, 111.4749984741210937, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Astranaar - Difficulty: 0)
|
||||
(@OGUID+11, 180353, 1, 331, 415, '0', 0, 0, 2746.60009765625, -433.6610107421875, 111.46600341796875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Astranaar - Difficulty: 0)
|
||||
(@OGUID+12, 180353, 1, 331, 415, '0', 0, 0, 2757.169921875, -437.0260009765625, 111.4680023193359375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Astranaar - Difficulty: 0)
|
||||
(@OGUID+13, 180353, 1, 331, 415, '0', 0, 0, 2753.580078125, -431.7659912109375, 111.483001708984375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Astranaar - Difficulty: 0)
|
||||
(@OGUID+14, 180353, 1, 331, 415, '0', 0, 0, 2753.14990234375, -442.4949951171875, 111.4739990234375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Astranaar - Difficulty: 0)
|
||||
(@OGUID+15, 195164, 1, 331, 415, '0', 0, 0, 2757.010009765625, -435.938995361328125, 112.0970001220703125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Astranaar - Difficulty: 0)
|
||||
(@OGUID+16, 195164, 1, 331, 415, '0', 0, 0, 2748.070068359375, -441.207000732421875, 112.1060028076171875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Astranaar - Difficulty: 0)
|
||||
(@OGUID+17, 195164, 1, 331, 415, '0', 0, 0, 2746.919921875, -439.394012451171875, 112.1009979248046875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Astranaar - Difficulty: 0)
|
||||
(@OGUID+18, 195164, 1, 331, 415, '0', 0, 0, 2747.800048828125, -432.7969970703125, 112.0970001220703125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Astranaar - Difficulty: 0)
|
||||
(@OGUID+19, 195164, 1, 331, 415, '0', 0, 0, 2756.989990234375, -438.4110107421875, 112.095001220703125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Astranaar - Difficulty: 0)
|
||||
(@OGUID+20, 195164, 1, 331, 415, '0', 0, 0, 2754.52001953125, -432.230987548828125, 112.1070022583007812, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Astranaar - Difficulty: 0)
|
||||
(@OGUID+21, 195164, 1, 331, 415, '0', 0, 0, 2751.64990234375, -442.67498779296875, 112.1060028076171875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Astranaar - Difficulty: 0)
|
||||
(@OGUID+22, 195164, 1, 331, 415, '0', 0, 0, 2754.489990234375, -442.1820068359375, 112.0979995727539062, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Astranaar - Difficulty: 0)
|
||||
(@OGUID+23, 195164, 1, 331, 415, '0', 0, 0, 2746, -434.9320068359375, 112.0940017700195312, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Astranaar - Difficulty: 0)
|
||||
(@OGUID+24, 195164, 1, 331, 415, '0', 0, 0, 2752.530029296875, -431.70001220703125, 112.108001708984375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Astranaar - Difficulty: 0)
|
||||
(@OGUID+25, 195664, 1, 331, 415, '0', 0, 0, 2750.56005859375, -437.07501220703125, 111.4800033569335937, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Astranaar - Difficulty: 0)
|
||||
-- Splintertree Post
|
||||
(@OGUID+26, 179968, 1, 331, 431, '0', 0, 0, 2352.18994140625, -2560.860107421875, 103.0930023193359375, 4.799657344818115234, 0, 0, -0.67558956146240234, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Splintertree Post - Difficulty: 0)
|
||||
(@OGUID+27, 179968, 1, 331, 431, '0', 0, 0, 2342.7099609375, -2557.800048828125, 103.0930023193359375, 4.066620349884033203, 0, 0, -0.89493370056152343, 0.44619917869567871, 120, 255, 1, 46741), -- Haystack 01 (Area: Splintertree Post - Difficulty: 0)
|
||||
(@OGUID+28, 179968, 1, 331, 431, '0', 0, 0, 2349.72998046875, -2556.610107421875, 103.0930023193359375, 5.93412017822265625, 0, 0, -0.17364788055419921, 0.984807789325714111, 120, 255, 1, 46741), -- Haystack 01 (Area: Splintertree Post - Difficulty: 0)
|
||||
(@OGUID+29, 179968, 1, 331, 431, '0', 0, 0, 2343.320068359375, -2565.52001953125, 103.0930023193359375, 5.35816192626953125, 0, 0, -0.446197509765625, 0.894934535026550292, 120, 255, 1, 46741), -- Haystack 01 (Area: Splintertree Post - Difficulty: 0)
|
||||
(@OGUID+30, 179968, 1, 331, 431, '0', 0, 0, 2349.360107421875, -2566.719970703125, 103.0930023193359375, 0.506144583225250244, 0, 0, 0.250379562377929687, 0.968147754669189453, 120, 255, 1, 46741), -- Haystack 01 (Area: Splintertree Post - Difficulty: 0)
|
||||
(@OGUID+31, 179968, 1, 331, 431, '0', 0, 0, 2341.6298828125, -2559.139892578125, 103.0930023193359375, 4.014260292053222656, 0, 0, -0.90630722045898437, 0.422619491815567016, 120, 255, 1, 46741), -- Haystack 01 (Area: Splintertree Post - Difficulty: 0)
|
||||
(@OGUID+32, 179968, 1, 331, 431, '0', 0, 0, 2347.550048828125, -2567.35009765625, 103.0930023193359375, 0.366517573595046997, 0, 0, 0.182234764099121093, 0.98325502872467041, 120, 255, 1, 46741), -- Haystack 01 (Area: Splintertree Post - Difficulty: 0)
|
||||
(@OGUID+33, 179968, 1, 331, 431, '0', 0, 0, 2348.199951171875, -2556.199951171875, 103.0930023193359375, 2.897245407104492187, 0, 0, 0.99254608154296875, 0.121869951486587524, 120, 255, 1, 46741), -- Haystack 01 (Area: Splintertree Post - Difficulty: 0)
|
||||
(@OGUID+34, 179968, 1, 331, 431, '0', 0, 0, 2342.280029296875, -2564.02001953125, 103.0930023193359375, 5.35816192626953125, 0, 0, -0.446197509765625, 0.894934535026550292, 120, 255, 1, 46741), -- Haystack 01 (Area: Splintertree Post - Difficulty: 0)
|
||||
(@OGUID+35, 179968, 1, 331, 431, '0', 0, 0, 2352.030029296875, -2562.419921875, 103.0930023193359375, 4.747295856475830078, 0, 0, -0.69465827941894531, 0.719339847564697265, 120, 255, 1, 46741), -- Haystack 01 (Area: Splintertree Post - Difficulty: 0)
|
||||
(@OGUID+36, 180353, 1, 331, 431, '0', 0, 0, 2342.659912109375, -2564.949951171875, 103.0930023193359375, 5.35816192626953125, 0, 0, -0.446197509765625, 0.894934535026550292, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Splintertree Post - Difficulty: 0)
|
||||
(@OGUID+37, 180353, 1, 331, 431, '0', 0, 0, 2348.56005859375, -2567.080078125, 103.0930023193359375, 5.35816192626953125, 0, 0, -0.446197509765625, 0.894934535026550292, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Splintertree Post - Difficulty: 0)
|
||||
(@OGUID+38, 180353, 1, 331, 431, '0', 0, 0, 2341.9599609375, -2558.31005859375, 103.0930023193359375, 5.35816192626953125, 0, 0, -0.446197509765625, 0.894934535026550292, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Splintertree Post - Difficulty: 0)
|
||||
(@OGUID+39, 180353, 1, 331, 431, '0', 0, 0, 2352.179931640625, -2561.639892578125, 103.0930023193359375, 5.35816192626953125, 0, 0, -0.446197509765625, 0.894934535026550292, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Splintertree Post - Difficulty: 0)
|
||||
(@OGUID+40, 180353, 1, 331, 431, '0', 0, 0, 2348.989990234375, -2556.35009765625, 103.0930023193359375, 5.35816192626953125, 0, 0, -0.446197509765625, 0.894934535026550292, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Splintertree Post - Difficulty: 0)
|
||||
(@OGUID+41, 195164, 1, 331, 431, '0', 0, 0, 2349.5, -2566.60009765625, 103.7350006103515625, 5.35816192626953125, 0, 0, -0.446197509765625, 0.894934535026550292, 120, 255, 1, 46741), -- Pumpkin (Area: Splintertree Post - Difficulty: 0)
|
||||
(@OGUID+42, 195164, 1, 331, 431, '0', 0, 0, 2342.68994140625, -2557.85009765625, 103.7350006103515625, 5.35816192626953125, 0, 0, -0.446197509765625, 0.894934535026550292, 120, 255, 1, 46741), -- Pumpkin (Area: Splintertree Post - Difficulty: 0)
|
||||
(@OGUID+43, 195164, 1, 331, 431, '0', 0, 0, 2348.159912109375, -2556.300048828125, 103.7350006103515625, 5.35816192626953125, 0, 0, -0.446197509765625, 0.894934535026550292, 120, 255, 1, 46741), -- Pumpkin (Area: Splintertree Post - Difficulty: 0)
|
||||
(@OGUID+44, 195164, 1, 331, 431, '0', 0, 0, 2347.669921875, -2567.1298828125, 103.7350006103515625, 5.35816192626953125, 0, 0, -0.446197509765625, 0.894934535026550292, 120, 255, 1, 46741), -- Pumpkin (Area: Splintertree Post - Difficulty: 0)
|
||||
(@OGUID+45, 195164, 1, 331, 431, '0', 0, 0, 2341.72998046875, -2559.18994140625, 103.7350006103515625, 5.35816192626953125, 0, 0, -0.446197509765625, 0.894934535026550292, 120, 255, 1, 46741), -- Pumpkin (Area: Splintertree Post - Difficulty: 0)
|
||||
(@OGUID+46, 195164, 1, 331, 431, '0', 0, 0, 2352.10009765625, -2560.889892578125, 103.7350006103515625, 5.35816192626953125, 0, 0, -0.446197509765625, 0.894934535026550292, 120, 255, 1, 46741), -- Pumpkin (Area: Splintertree Post - Difficulty: 0)
|
||||
(@OGUID+47, 195164, 1, 331, 431, '0', 0, 0, 2343.260009765625, -2565.449951171875, 103.7350006103515625, 5.35816192626953125, 0, 0, -0.446197509765625, 0.894934535026550292, 120, 255, 1, 46741), -- Pumpkin (Area: Splintertree Post - Difficulty: 0)
|
||||
(@OGUID+48, 195164, 1, 331, 431, '0', 0, 0, 2342.330078125, -2563.97998046875, 103.7350006103515625, 5.35816192626953125, 0, 0, -0.446197509765625, 0.894934535026550292, 120, 255, 1, 46741), -- Pumpkin (Area: Splintertree Post - Difficulty: 0)
|
||||
(@OGUID+49, 195164, 1, 331, 431, '0', 0, 0, 2351.889892578125, -2562.56005859375, 103.7350006103515625, 5.35816192626953125, 0, 0, -0.446197509765625, 0.894934535026550292, 120, 255, 1, 46741), -- Pumpkin (Area: Splintertree Post - Difficulty: 0)
|
||||
(@OGUID+50, 195164, 1, 331, 431, '0', 0, 0, 2349.669921875, -2556.590087890625, 103.7350006103515625, 5.35816192626953125, 0, 0, -0.446197509765625, 0.894934535026550292, 120, 255, 1, 46741), -- Pumpkin (Area: Splintertree Post - Difficulty: 0)
|
||||
(@OGUID+51, 195664, 1, 331, 431, '0', 0, 0, 2345.969970703125, -2561.659912109375, 103.0930023193359375, 0, 0, 0, 0, 1, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Splintertree Post - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+3;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1),
|
||||
(@EVENT, @CGUID+2),
|
||||
(@EVENT, @CGUID+3);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+51;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25),
|
||||
(@EVENT, @OGUID+26),
|
||||
(@EVENT, @OGUID+27),
|
||||
(@EVENT, @OGUID+28),
|
||||
(@EVENT, @OGUID+29),
|
||||
(@EVENT, @OGUID+30),
|
||||
(@EVENT, @OGUID+31),
|
||||
(@EVENT, @OGUID+32),
|
||||
(@EVENT, @OGUID+33),
|
||||
(@EVENT, @OGUID+34),
|
||||
(@EVENT, @OGUID+35),
|
||||
(@EVENT, @OGUID+36),
|
||||
(@EVENT, @OGUID+37),
|
||||
(@EVENT, @OGUID+38),
|
||||
(@EVENT, @OGUID+39),
|
||||
(@EVENT, @OGUID+40),
|
||||
(@EVENT, @OGUID+41),
|
||||
(@EVENT, @OGUID+42),
|
||||
(@EVENT, @OGUID+43),
|
||||
(@EVENT, @OGUID+44),
|
||||
(@EVENT, @OGUID+45),
|
||||
(@EVENT, @OGUID+46),
|
||||
(@EVENT, @OGUID+47),
|
||||
(@EVENT, @OGUID+48),
|
||||
(@EVENT, @OGUID+49),
|
||||
(@EVENT, @OGUID+50),
|
||||
(@EVENT, @OGUID+51);
|
||||
@@ -1,134 +0,0 @@
|
||||
SET @CGUID := 396536;
|
||||
SET @OGUID := 249181;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+3;
|
||||
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
|
||||
-- Windshear Hold
|
||||
(@CGUID+0, 32823, 1, 406, 5073, '0', 0, 0, 0, 0, 1168.1300048828125, 419.428985595703125, 79.3379364013671875, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Fallowmere Inn - Difficulty: 0)
|
||||
(@CGUID+1, 34653, 1, 406, 5073, '0', 0, 0, 0, 0, 1175.260009765625, 418.087005615234375, 79.34423828125, 5.8817596435546875, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table Hostess (Area: Fallowmere Inn - Difficulty: 0)
|
||||
-- Sun Rock Retreat
|
||||
(@CGUID+2, 32823, 1, 406, 460, '0', 0, 0, 0, 0, 962.79168701171875, 987.28125, 105.626739501953125, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Sun Rock Retreat - Difficulty: 0) (Auras: )
|
||||
(@CGUID+3, 34654, 1, 406, 460, '0', 0, 0, 0, 0, 957.3507080078125, 990.37847900390625, 105.9909286499023437, 3.351032257080078125, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Feast Hostess (Area: Sun Rock Retreat - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+51;
|
||||
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
|
||||
-- Windshear Hold
|
||||
(@OGUID+0, 179968, 1, 406, 5073, '0', 0, 0, 1165.47998046875, 415.563995361328125, 79.24120330810546875, 1.029743075370788574, 0, 0, 0.492423057556152343, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: Fallowmere Inn - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 1, 406, 5073, '0', 0, 0, 1171.8900146484375, 424.480987548828125, 79.25099945068359375, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Haystack 01 (Area: Fallowmere Inn - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 1, 406, 5073, '0', 0, 0, 1164.4300537109375, 417.063995361328125, 79.2429962158203125, 3.403396368026733398, 0, 0, -0.99144458770751953, 0.130528271198272705, 120, 255, 1, 46741), -- Haystack 01 (Area: Fallowmere Inn - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 1, 406, 5073, '0', 0, 0, 1164.8699951171875, 423.2860107421875, 79.26000213623046875, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 46741), -- Haystack 01 (Area: Fallowmere Inn - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 1, 406, 5073, '0', 0, 0, 1170.3499755859375, 424.886993408203125, 79.25250244140625, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Fallowmere Inn - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 1, 406, 5073, '0', 0, 0, 1163.7900390625, 421.9429931640625, 79.25479888916015625, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Haystack 01 (Area: Fallowmere Inn - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 1, 406, 5073, '0', 0, 0, 1174.1800537109375, 418.667999267578125, 79.26180267333984375, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: Fallowmere Inn - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 1, 406, 5073, '0', 0, 0, 1174.3499755859375, 420.230987548828125, 79.2574005126953125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: Fallowmere Inn - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 1, 406, 5073, '0', 0, 0, 1169.8800048828125, 413.886993408203125, 79.243896484375, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Fallowmere Inn - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 1, 406, 5073, '0', 0, 0, 1171.52001953125, 414.37298583984375, 79.24749755859375, 1.989672422409057617, 0, 0, 0.838669776916503906, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: Fallowmere Inn - Difficulty: 0)
|
||||
(@OGUID+10, 180353, 1, 406, 5073, '0', 0, 0, 1170.719970703125, 414.009002685546875, 79.24539947509765625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Fallowmere Inn - Difficulty: 0)
|
||||
(@OGUID+11, 180353, 1, 406, 5073, '0', 0, 0, 1171.1400146484375, 424.738006591796875, 79.25150299072265625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Fallowmere Inn - Difficulty: 0)
|
||||
(@OGUID+12, 180353, 1, 406, 5073, '0', 0, 0, 1174.3399658203125, 419.446014404296875, 79.25930023193359375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Fallowmere Inn - Difficulty: 0)
|
||||
(@OGUID+13, 180353, 1, 406, 5073, '0', 0, 0, 1164.8199462890625, 416.1409912109375, 79.24140167236328125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Fallowmere Inn - Difficulty: 0)
|
||||
(@OGUID+14, 180353, 1, 406, 5073, '0', 0, 0, 1164.1199951171875, 422.779998779296875, 79.2574005126953125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Fallowmere Inn - Difficulty: 0)
|
||||
(@OGUID+15, 195164, 1, 406, 5073, '0', 0, 0, 1171.8199462890625, 424.49798583984375, 79.91480255126953125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Fallowmere Inn - Difficulty: 0)
|
||||
(@OGUID+16, 195164, 1, 406, 5073, '0', 0, 0, 1164.8499755859375, 423.240997314453125, 79.9235992431640625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Fallowmere Inn - Difficulty: 0)
|
||||
(@OGUID+17, 195164, 1, 406, 5073, '0', 0, 0, 1171.6600341796875, 414.490997314453125, 79.9116973876953125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Fallowmere Inn - Difficulty: 0)
|
||||
(@OGUID+18, 195164, 1, 406, 5073, '0', 0, 0, 1174.25, 420.2030029296875, 79.9214019775390625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Fallowmere Inn - Difficulty: 0)
|
||||
(@OGUID+19, 195164, 1, 406, 5073, '0', 0, 0, 1169.8299560546875, 413.957000732421875, 79.90779876708984375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Fallowmere Inn - Difficulty: 0)
|
||||
(@OGUID+20, 195164, 1, 406, 5073, '0', 0, 0, 1165.4100341796875, 415.634002685546875, 79.90489959716796875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Fallowmere Inn - Difficulty: 0)
|
||||
(@OGUID+21, 195164, 1, 406, 5073, '0', 0, 0, 1174.050048828125, 418.5260009765625, 79.92559814453125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Fallowmere Inn - Difficulty: 0)
|
||||
(@OGUID+22, 195164, 1, 406, 5073, '0', 0, 0, 1164.47998046875, 417.1090087890625, 79.90689849853515625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Fallowmere Inn - Difficulty: 0)
|
||||
(@OGUID+23, 195164, 1, 406, 5073, '0', 0, 0, 1163.8900146484375, 421.89801025390625, 79.91860198974609375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Fallowmere Inn - Difficulty: 0)
|
||||
(@OGUID+24, 195164, 1, 406, 5073, '0', 0, 0, 1170.3199462890625, 424.792999267578125, 79.91649627685546875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Fallowmere Inn - Difficulty: 0)
|
||||
(@OGUID+25, 195664, 1, 406, 5073, '0', 0, 0, 1168.1300048828125, 419.428985595703125, 79.25460052490234375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Fallowmere Inn - Difficulty: 0)
|
||||
-- Sun Rock Retreat
|
||||
(@OGUID+26, 179968, 1, 406, 460, '0', 0, 0, 964.54339599609375, 981.73956298828125, 105.411773681640625, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Sun Rock Retreat - Difficulty: 0)
|
||||
(@OGUID+27, 179968, 1, 406, 460, '0', 0, 0, 960.14581298828125, 983.41668701171875, 105.8663177490234375, 1.029743075370788574, 0, 0, 0.492423057556152343, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: Sun Rock Retreat - Difficulty: 0)
|
||||
(@OGUID+28, 179968, 1, 406, 460, '0', 0, 0, 959.09893798828125, 984.91668701171875, 105.958343505859375, 3.403396368026733398, 0, 0, -0.99144458770751953, 0.130528271198272705, 120, 255, 1, 46741), -- Haystack 01 (Area: Sun Rock Retreat - Difficulty: 0)
|
||||
(@OGUID+29, 179968, 1, 406, 460, '0', 0, 0, 966.18402099609375, 982.2257080078125, 105.1106033325195312, 1.989672422409057617, 0, 0, 0.838669776916503906, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: Sun Rock Retreat - Difficulty: 0)
|
||||
(@OGUID+30, 179968, 1, 406, 460, '0', 0, 0, 968.84722900390625, 986.52081298828125, 104.9236221313476562, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: Sun Rock Retreat - Difficulty: 0)
|
||||
(@OGUID+31, 179968, 1, 406, 460, '0', 0, 0, 966.54864501953125, 992.33331298828125, 105.0612716674804687, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Haystack 01 (Area: Sun Rock Retreat - Difficulty: 0)
|
||||
(@OGUID+32, 179968, 1, 406, 460, '0', 0, 0, 965.01910400390625, 992.73956298828125, 105.1473007202148437, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Sun Rock Retreat - Difficulty: 0)
|
||||
(@OGUID+33, 179968, 1, 406, 460, '0', 0, 0, 958.45489501953125, 989.795166015625, 105.8993072509765625, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Haystack 01 (Area: Sun Rock Retreat - Difficulty: 0)
|
||||
(@OGUID+34, 179968, 1, 406, 460, '0', 0, 0, 959.53472900390625, 991.138916015625, 105.7239608764648437, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 46741), -- Haystack 01 (Area: Sun Rock Retreat - Difficulty: 0)
|
||||
(@OGUID+35, 179968, 1, 406, 460, '0', 0, 0, 969.01214599609375, 988.08331298828125, 104.939239501953125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: Sun Rock Retreat - Difficulty: 0)
|
||||
(@OGUID+36, 180353, 1, 406, 460, '0', 0, 0, 959.47918701171875, 983.9930419921875, 105.927093505859375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Sun Rock Retreat - Difficulty: 0)
|
||||
(@OGUID+37, 180353, 1, 406, 460, '0', 0, 0, 969, 987.29864501953125, 104.9236526489257812, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Sun Rock Retreat - Difficulty: 0)
|
||||
(@OGUID+38, 180353, 1, 406, 460, '0', 0, 0, 965.80731201171875, 992.59027099609375, 105.095489501953125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Sun Rock Retreat - Difficulty: 0)
|
||||
(@OGUID+39, 180353, 1, 406, 460, '0', 0, 0, 958.78302001953125, 990.6319580078125, 105.8298721313476562, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Sun Rock Retreat - Difficulty: 0)
|
||||
(@OGUID+40, 180353, 1, 406, 460, '0', 0, 0, 965.38018798828125, 981.86114501953125, 105.2673721313476562, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Sun Rock Retreat - Difficulty: 0)
|
||||
(@OGUID+41, 195164, 1, 406, 460, '0', 0, 0, 960.076416015625, 983.48614501953125, 106.5899887084960937, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Sun Rock Retreat - Difficulty: 0)
|
||||
(@OGUID+42, 195164, 1, 406, 460, '0', 0, 0, 959.1475830078125, 984.9617919921875, 106.66986083984375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Sun Rock Retreat - Difficulty: 0)
|
||||
(@OGUID+43, 195164, 1, 406, 460, '0', 0, 0, 964.49481201171875, 981.80902099609375, 106.1316375732421875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Sun Rock Retreat - Difficulty: 0)
|
||||
(@OGUID+44, 195164, 1, 406, 460, '0', 0, 0, 964.97918701171875, 992.64581298828125, 105.867767333984375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Sun Rock Retreat - Difficulty: 0)
|
||||
(@OGUID+45, 195164, 1, 406, 460, '0', 0, 0, 959.51214599609375, 991.09375, 106.4424209594726562, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Sun Rock Retreat - Difficulty: 0)
|
||||
(@OGUID+46, 195164, 1, 406, 460, '0', 0, 0, 966.32293701171875, 982.34375, 105.79705810546875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Sun Rock Retreat - Difficulty: 0)
|
||||
(@OGUID+47, 195164, 1, 406, 460, '0', 0, 0, 958.55206298828125, 989.75, 106.60736083984375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Sun Rock Retreat - Difficulty: 0)
|
||||
(@OGUID+48, 195164, 1, 406, 460, '0', 0, 0, 966.48614501953125, 992.3507080078125, 105.7791213989257812, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Sun Rock Retreat - Difficulty: 0)
|
||||
(@OGUID+49, 195164, 1, 406, 460, '0', 0, 0, 968.70831298828125, 986.37847900390625, 105.6455535888671875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Sun Rock Retreat - Difficulty: 0)
|
||||
(@OGUID+50, 195164, 1, 406, 460, '0', 0, 0, 968.91839599609375, 988.0555419921875, 105.6576919555664062, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Sun Rock Retreat - Difficulty: 0)
|
||||
(@OGUID+51, 195664, 1, 406, 460, '0', 0, 0, 962.7919921875, 987.281005859375, 105.542999267578125, 0, 0, 0, 0, 1, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Sun Rock Retreat - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+3;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1),
|
||||
(@EVENT, @CGUID+2),
|
||||
(@EVENT, @CGUID+3);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+51;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25),
|
||||
(@EVENT, @OGUID+26),
|
||||
(@EVENT, @OGUID+27),
|
||||
(@EVENT, @OGUID+28),
|
||||
(@EVENT, @OGUID+29),
|
||||
(@EVENT, @OGUID+30),
|
||||
(@EVENT, @OGUID+31),
|
||||
(@EVENT, @OGUID+32),
|
||||
(@EVENT, @OGUID+33),
|
||||
(@EVENT, @OGUID+34),
|
||||
(@EVENT, @OGUID+35),
|
||||
(@EVENT, @OGUID+36),
|
||||
(@EVENT, @OGUID+37),
|
||||
(@EVENT, @OGUID+38),
|
||||
(@EVENT, @OGUID+39),
|
||||
(@EVENT, @OGUID+40),
|
||||
(@EVENT, @OGUID+41),
|
||||
(@EVENT, @OGUID+42),
|
||||
(@EVENT, @OGUID+43),
|
||||
(@EVENT, @OGUID+44),
|
||||
(@EVENT, @OGUID+45),
|
||||
(@EVENT, @OGUID+46),
|
||||
(@EVENT, @OGUID+47),
|
||||
(@EVENT, @OGUID+48),
|
||||
(@EVENT, @OGUID+49),
|
||||
(@EVENT, @OGUID+50),
|
||||
(@EVENT, @OGUID+51);
|
||||
@@ -1,184 +0,0 @@
|
||||
SET @CGUID := 396540;
|
||||
SET @OGUID := 249233;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+6;
|
||||
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
|
||||
-- The Crossroads
|
||||
(@CGUID+0, 32823, 1, 17, 380, '0', 0, 0, 0, 0, -382.864593505859375, -2597.588623046875, 95.77704620361328125, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: The Crossroads - Difficulty: 0) (Auras: )
|
||||
(@CGUID+1, 32823, 1, 17, 380, '0', 0, 0, 0, 0, -375.822906494140625, -2607.59375, 95.74503326416015625, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: The Crossroads - Difficulty: 0)
|
||||
(@CGUID+2, 34654, 1, 17, 380, '0', 0, 0, 0, 0, -387.576385498046875, -2590.7275390625, 95.756805419921875, 2.129301786422729492, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Feast Hostess (Area: The Crossroads - Difficulty: 0)
|
||||
-- Ratchet
|
||||
(@CGUID+3, 32823, 1, 17, 392, '0', 0, 0, 0, 0, -970.40972900390625, -3708.798583984375, 5.289239406585693359, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Ratchet - Difficulty: 0)
|
||||
(@CGUID+4, 32823, 1, 17, 392, '0', 0, 0, 0, 0, -971.31427001953125, -3724.51220703125, 6.115543365478515625, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Ratchet - Difficulty: 0)
|
||||
(@CGUID+5, 34653, 1, 17, 392, '0', 0, 0, 0, 0, -976.23614501953125, -3718.045166015625, 5.943660259246826171, 1.797689080238342285, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table Hostess (Area: Ratchet - Difficulty: 0)
|
||||
(@CGUID+6, 34654, 1, 17, 392, '0', 0, 0, 0, 0, -975.0399169921875, -3713.069580078125, 5.638696670532226562, 4.904375076293945312, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Feast Hostess (Area: Ratchet - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+73;
|
||||
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
|
||||
-- The Crossroads
|
||||
(@OGUID+0, 179968, 1, 17, 380, '0', 0, 0, -388.708343505859375, -2597.350830078125, 95.71353912353515625, 0.069811686873435974, 0, 0, 0.034898757934570312, 0.999390840530395507, 120, 255, 1, 46741), -- Haystack 01 (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 1, 17, 380, '0', 0, 0, -382.524322509765625, -2606.7744140625, 95.8680572509765625, 0.628316879272460937, 0, 0, 0.309016227722167968, 0.95105677843093872, 120, 255, 1, 46741), -- Haystack 01 (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 1, 17, 380, '0', 0, 0, -388.020843505859375, -2599.692626953125, 95.8993072509765625, 0.628316879272460937, 0, 0, 0.309016227722167968, 0.95105677843093872, 120, 255, 1, 46741), -- Haystack 01 (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 1, 17, 380, '0', 0, 0, -383.916656494140625, -2604.947998046875, 96.01041412353515625, 0.645771682262420654, 0, 0, 0.317304611206054687, 0.948323667049407958, 120, 255, 1, 46741), -- Haystack 01 (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 1, 17, 380, '0', 0, 0, -384.208343505859375, -2590.802001953125, 95.67534637451171875, 5.253442287445068359, 0, 0, -0.49242305755615234, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 1, 17, 380, '0', 0, 0, -372.201385498046875, -2597.28125, 96.22916412353515625, 3.752462387084960937, 0, 0, -0.95371627807617187, 0.300707906484603881, 120, 255, 1, 46741), -- Haystack 01 (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 1, 17, 380, '0', 0, 0, -370.076385498046875, -2611.942626953125, 96.15451812744140625, 2.216565132141113281, 0, 0, 0.894933700561523437, 0.44619917869567871, 120, 255, 1, 46741), -- Haystack 01 (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 1, 17, 380, '0', 0, 0, -377.548614501953125, -2590.857666015625, 96.111114501953125, 4.293513298034667968, 0, 0, -0.8386697769165039, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 1, 17, 380, '0', 0, 0, -366.28125, -2606.467041015625, 95.7118072509765625, 3.368495941162109375, 0, 0, -0.99357128143310546, 0.113208353519439697, 120, 255, 1, 46741), -- Haystack 01 (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 1, 17, 380, '0', 0, 0, -386.260406494140625, -2592.07470703125, 95.67534637451171875, 5.288348197937011718, 0, 0, -0.4771585464477539, 0.878817260265350341, 120, 255, 1, 46741), -- Haystack 01 (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+10, 179968, 1, 17, 380, '0', 0, 0, -367.2257080078125, -2604.598876953125, 95.66146087646484375, 3.752462387084960937, 0, 0, -0.95371627807617187, 0.300707906484603881, 120, 255, 1, 46741), -- Haystack 01 (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+11, 179968, 1, 17, 380, '0', 0, 0, -371, -2598.9462890625, 95.98784637451171875, 3.682650327682495117, 0, 0, -0.96362972259521484, 0.26724100112915039, 120, 255, 1, 46741), -- Haystack 01 (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+12, 179968, 1, 17, 380, '0', 0, 0, -375.87152099609375, -2592.0712890625, 96.3055572509765625, 3.682650327682495117, 0, 0, -0.96362972259521484, 0.26724100112915039, 120, 255, 1, 46741), -- Haystack 01 (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+13, 179968, 1, 17, 380, '0', 0, 0, -378.71527099609375, -2612.48779296875, 95.68360137939453125, 3.892086982727050781, 0, 0, -0.93041706085205078, 0.366502493619918823, 120, 255, 1, 46741), -- Haystack 01 (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+14, 179968, 1, 17, 380, '0', 0, 0, -371.65277099609375, -2612.90625, 96.15103912353515625, 2.181660413742065429, 0, 0, 0.887010574340820312, 0.461749136447906494, 120, 255, 1, 46741), -- Haystack 01 (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+15, 179968, 1, 17, 380, '0', 0, 0, -377.06597900390625, -2613.890625, 95.765625, 1.274088263511657714, 0, 0, 0.594821929931640625, 0.80385744571685791, 120, 255, 1, 46741), -- Haystack 01 (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+16, 180353, 1, 17, 380, '0', 0, 0, -383.135406494140625, -2605.713623046875, 95.7140960693359375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+17, 180353, 1, 17, 380, '0', 0, 0, -388.6319580078125, -2598.632080078125, 95.5890960693359375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+18, 180353, 1, 17, 380, '0', 0, 0, -371.711822509765625, -2598.192626953125, 95.88423919677734375, 3.490667104721069335, 0, 0, -0.98480701446533203, 0.173652306199073791, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+19, 180353, 1, 17, 380, '0', 0, 0, -377.9757080078125, -2613.185791015625, 95.5127105712890625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+20, 180353, 1, 17, 380, '0', 0, 0, -385.19097900390625, -2591.411376953125, 95.46930694580078125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+21, 180353, 1, 17, 380, '0', 0, 0, -366.618072509765625, -2605.413330078125, 95.48319244384765625, 3.490667104721069335, 0, 0, -0.98480701446533203, 0.173652306199073791, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+22, 180353, 1, 17, 380, '0', 0, 0, -370.87847900390625, -2612.307373046875, 95.97104644775390625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+23, 180353, 1, 17, 380, '0', 0, 0, -376.541656494140625, -2591.142333984375, 96.0196533203125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+24, 195164, 1, 17, 380, '0', 0, 0, -383.94097900390625, -2604.9931640625, 96.71381378173828125, 0.663223206996917724, 0, 0, 0.325567245483398437, 0.945518851280212402, 120, 255, 1, 46741), -- Pumpkin (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+25, 195164, 1, 17, 380, '0', 0, 0, -377.6875, -2591, 96.80062103271484375, 4.310965538024902343, 0, 0, -0.83388519287109375, 0.55193793773651123, 120, 255, 1, 46741), -- Pumpkin (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+26, 195164, 1, 17, 380, '0', 0, 0, -382.427093505859375, -2606.819580078125, 96.56624603271484375, 0.663223206996917724, 0, 0, 0.325567245483398437, 0.945518851280212402, 120, 255, 1, 46741), -- Pumpkin (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+27, 195164, 1, 17, 380, '0', 0, 0, -378.666656494140625, -2612.442626953125, 96.38394927978515625, 3.892086982727050781, 0, 0, -0.93041706085205078, 0.366502493619918823, 120, 255, 1, 46741), -- Pumpkin (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+28, 195164, 1, 17, 380, '0', 0, 0, -371.0625, -2598.928955078125, 96.6929779052734375, 3.43830275535583496, 0, 0, -0.98901557922363281, 0.147811368107795715, 120, 255, 1, 46741), -- Pumpkin (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+29, 195164, 1, 17, 380, '0', 0, 0, -366.34375, -2606.44970703125, 96.4134674072265625, 3.368495941162109375, 0, 0, -0.99357128143310546, 0.113208353519439697, 120, 255, 1, 46741), -- Pumpkin (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+30, 195164, 1, 17, 380, '0', 0, 0, -386.399322509765625, -2592.217041015625, 96.37700653076171875, 5.305802345275878906, 0, 0, -0.46947097778320312, 0.882947921752929687, 120, 255, 1, 46741), -- Pumpkin (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+31, 195164, 1, 17, 380, '0', 0, 0, -388.732635498046875, -2597.395751953125, 96.41693878173828125, 0.069811686873435974, 0, 0, 0.034898757934570312, 0.999390840530395507, 120, 255, 1, 46741), -- Pumpkin (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+32, 195164, 1, 17, 380, '0', 0, 0, -375.96527099609375, -2592.098876953125, 96.99853515625, 3.682650327682495117, 0, 0, -0.96362972259521484, 0.26724100112915039, 120, 255, 1, 46741), -- Pumpkin (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+33, 195164, 1, 17, 380, '0', 0, 0, -377.135406494140625, -2613.8212890625, 96.46381378173828125, 1.256635904312133789, 0, 0, 0.587784767150878906, 0.809017360210418701, 120, 255, 1, 46741), -- Pumpkin (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+34, 195164, 1, 17, 380, '0', 0, 0, -384.302093505859375, -2590.829833984375, 96.37700653076171875, 5.253442287445068359, 0, 0, -0.49242305755615234, 0.870355963706970214, 120, 255, 1, 46741), -- Pumpkin (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+35, 195164, 1, 17, 380, '0', 0, 0, -367.263885498046875, -2604.692626953125, 96.36312103271484375, 3.735006093978881835, 0, 0, -0.95630455017089843, 0.292372345924377441, 120, 255, 1, 46741), -- Pumpkin (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+36, 195164, 1, 17, 380, '0', 0, 0, -387.923614501953125, -2599.73779296875, 96.60617828369140625, 0.663223206996917724, 0, 0, 0.325567245483398437, 0.945518851280212402, 120, 255, 1, 46741), -- Pumpkin (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+37, 195164, 1, 17, 380, '0', 0, 0, -371.701385498046875, -2612.8369140625, 96.84575653076171875, 2.181660413742065429, 0, 0, 0.887010574340820312, 0.461749136447906494, 120, 255, 1, 46741), -- Pumpkin (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+38, 195164, 1, 17, 380, '0', 0, 0, -369.9375, -2611.82470703125, 96.8509674072265625, 2.286378860473632812, 0, 0, 0.909960746765136718, 0.414694398641586303, 120, 255, 1, 46741), -- Pumpkin (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+39, 195164, 1, 17, 380, '0', 0, 0, -372.243072509765625, -2597.375, 96.91693878173828125, 3.735006093978881835, 0, 0, -0.95630455017089843, 0.292372345924377441, 120, 255, 1, 46741), -- Pumpkin (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+40, 195664, 1, 17, 380, '0', 0, 0, -382.864990234375, -2597.590087890625, 95.69370269775390625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: The Crossroads - Difficulty: 0)
|
||||
(@OGUID+41, 195664, 1, 17, 380, '0', 0, 0, -375.822998046875, -2607.590087890625, 95.6616973876953125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: The Crossroads - Difficulty: 0)
|
||||
-- Ratchet
|
||||
(@OGUID+42, 179968, 1, 17, 392, '0', 0, 0, -972.94268798828125, -3710.770751953125, 5.490809917449951171, 0.558503925800323486, 0, 0, 0.275636672973632812, 0.961261868476867675, 120, 255, 1, 46741), -- Haystack 01 (Area: Ratchet - Difficulty: 0)
|
||||
(@OGUID+43, 179968, 1, 17, 392, '0', 0, 0, -968.45831298828125, -3712.385498046875, 5.467013835906982421, 1.954769015312194824, 0, 0, 0.829037666320800781, 0.559192776679992675, 120, 255, 1, 46741), -- Haystack 01 (Area: Ratchet - Difficulty: 0)
|
||||
(@OGUID+44, 179968, 1, 17, 392, '0', 0, 0, -968.84893798828125, -3720.401123046875, 5.98310708999633789, 4.241150379180908203, 0, 0, -0.85264015197753906, 0.522498607635498046, 120, 255, 1, 46741), -- Haystack 01 (Area: Ratchet - Difficulty: 0)
|
||||
(@OGUID+45, 179968, 1, 17, 392, '0', 0, 0, -965.576416015625, -3708.69970703125, 5.128471851348876953, 3.159062385559082031, 0, 0, -0.99996185302734375, 0.008734640665352344, 120, 255, 1, 46741), -- Haystack 01 (Area: Ratchet - Difficulty: 0)
|
||||
(@OGUID+46, 179968, 1, 17, 392, '0', 0, 0, -973.5711669921875, -3726.717041015625, 6.526041984558105468, 0.610863447189331054, 0, 0, 0.3007049560546875, 0.953717231750488281, 120, 255, 1, 46741), -- Haystack 01 (Area: Ratchet - Difficulty: 0)
|
||||
(@OGUID+47, 179968, 1, 17, 392, '0', 0, 0, -969.25, -3728.395751953125, 6.489583015441894531, 1.85004889965057373, 0, 0, 0.798635482788085937, 0.60181504487991333, 120, 255, 1, 46741), -- Haystack 01 (Area: Ratchet - Difficulty: 0)
|
||||
(@OGUID+48, 179968, 1, 17, 392, '0', 0, 0, -973.02081298828125, -3706.046875, 5.171875, 5.585053920745849609, 0, 0, -0.34202003479003906, 0.939692676067352294, 120, 255, 1, 46741), -- Haystack 01 (Area: Ratchet - Difficulty: 0)
|
||||
(@OGUID+49, 179968, 1, 17, 392, '0', 0, 0, -968.1649169921875, -3704.760498046875, 5.230903148651123046, 4.258606910705566406, 0, 0, -0.84804725646972656, 0.529920578002929687, 120, 255, 1, 46741), -- Haystack 01 (Area: Ratchet - Difficulty: 0)
|
||||
(@OGUID+50, 179968, 1, 17, 392, '0', 0, 0, -974.1336669921875, -3721.5869140625, 6.223958015441894531, 5.637413978576660156, 0, 0, -0.31730461120605468, 0.948323667049407958, 120, 255, 1, 46741), -- Haystack 01 (Area: Ratchet - Difficulty: 0)
|
||||
(@OGUID+51, 179968, 1, 17, 392, '0', 0, 0, -966.12847900390625, -3724.767333984375, 6.00868082046508789, 3.089183330535888671, 0, 0, 0.99965667724609375, 0.026201646775007247, 120, 255, 1, 46741), -- Haystack 01 (Area: Ratchet - Difficulty: 0)
|
||||
(@OGUID+52, 180353, 1, 17, 392, '0', 0, 0, -968.01043701171875, -3713.475830078125, 5.502905845642089843, 3.490667104721069335, 0, 0, -0.98480701446533203, 0.173652306199073791, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Ratchet - Difficulty: 0)
|
||||
(@OGUID+53, 180353, 1, 17, 392, '0', 0, 0, -968.373291015625, -3719.579833984375, 5.895988941192626953, 3.490667104721069335, 0, 0, -0.98480701446533203, 0.173652306199073791, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Ratchet - Difficulty: 0)
|
||||
(@OGUID+54, 180353, 1, 17, 392, '0', 0, 0, -973.86285400390625, -3711.170166015625, 5.46749114990234375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Ratchet - Difficulty: 0)
|
||||
(@OGUID+55, 180353, 1, 17, 392, '0', 0, 0, -964.31427001953125, -3708.630126953125, 5.185822010040283203, 3.263772249221801757, 0, 0, -0.99813461303710937, 0.061051756143569946, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Ratchet - Difficulty: 0)
|
||||
(@OGUID+56, 180353, 1, 17, 392, '0', 0, 0, -973.967041015625, -3705.19970703125, 5.312120914459228515, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Ratchet - Difficulty: 0)
|
||||
(@OGUID+57, 180353, 1, 17, 392, '0', 0, 0, -974.4617919921875, -3727.421875, 6.358452796936035156, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Ratchet - Difficulty: 0)
|
||||
(@OGUID+58, 180353, 1, 17, 392, '0', 0, 0, -968.8038330078125, -3729.73095703125, 6.456596851348876953, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Ratchet - Difficulty: 0)
|
||||
(@OGUID+59, 180353, 1, 17, 392, '0', 0, 0, -965.22918701171875, -3724.81591796875, 5.946554183959960937, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Ratchet - Difficulty: 0)
|
||||
(@OGUID+60, 180353, 1, 17, 392, '0', 0, 0, -974.89581298828125, -3720.80029296875, 6.163195133209228515, 0.069811686873435974, 0, 0, 0.034898757934570312, 0.999390840530395507, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Ratchet - Difficulty: 0)
|
||||
(@OGUID+61, 180353, 1, 17, 392, '0', 0, 0, -967.89410400390625, -3703.720458984375, 5.349818229675292968, 3.490667104721069335, 0, 0, -0.98480701446533203, 0.173652306199073791, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Ratchet - Difficulty: 0)
|
||||
(@OGUID+62, 195164, 1, 17, 392, '0', 0, 0, -968.5, -3712.479248046875, 6.180469989776611328, 1.937312245368957519, 0, 0, 0.824125289916992187, 0.566407561302185058, 120, 255, 1, 46741), -- Pumpkin (Area: Ratchet - Difficulty: 0)
|
||||
(@OGUID+63, 195164, 1, 17, 392, '0', 0, 0, -973.11456298828125, -3706.07470703125, 5.880798816680908203, 5.602506637573242187, 0, 0, -0.33380699157714843, 0.942641437053680419, 120, 255, 1, 46741), -- Pumpkin (Area: Ratchet - Difficulty: 0)
|
||||
(@OGUID+64, 195164, 1, 17, 392, '0', 0, 0, -966.17706298828125, -3724.697998046875, 6.707069873809814453, 3.141592741012573242, 0, 0, -1, 0, 120, 255, 1, 46741), -- Pumpkin (Area: Ratchet - Difficulty: 0)
|
||||
(@OGUID+65, 195164, 1, 17, 392, '0', 0, 0, -965.71527099609375, -3708.842041015625, 5.82867288589477539, 3.141592741012573242, 0, 0, -1, 0, 120, 255, 1, 46741), -- Pumpkin (Area: Ratchet - Difficulty: 0)
|
||||
(@OGUID+66, 195164, 1, 17, 392, '0', 0, 0, -973.640625, -3726.647705078125, 7.219224929809570312, 0.610863447189331054, 0, 0, 0.3007049560546875, 0.953717231750488281, 120, 255, 1, 46741), -- Pumpkin (Area: Ratchet - Difficulty: 0)
|
||||
(@OGUID+67, 195164, 1, 17, 392, '0', 0, 0, -968.2586669921875, -3704.788330078125, 5.936355113983154296, 4.276057243347167968, 0, 0, -0.84339141845703125, 0.537299633026123046, 120, 255, 1, 46741), -- Pumpkin (Area: Ratchet - Difficulty: 0)
|
||||
(@OGUID+68, 195164, 1, 17, 392, '0', 0, 0, -973.08160400390625, -3710.913330078125, 6.200242996215820312, 0.575957298278808593, 0, 0, 0.284014701843261718, 0.958819925785064697, 120, 255, 1, 46741), -- Pumpkin (Area: Ratchet - Difficulty: 0)
|
||||
(@OGUID+69, 195164, 1, 17, 392, '0', 0, 0, -969.15277099609375, -3728.44091796875, 7.184504032135009765, 1.884953022003173828, 0, 0, 0.809016227722167968, 0.587786316871643066, 120, 255, 1, 46741), -- Pumpkin (Area: Ratchet - Difficulty: 0)
|
||||
(@OGUID+70, 195164, 1, 17, 392, '0', 0, 0, -968.873291015625, -3720.4462890625, 6.689709186553955078, 4.241150379180908203, 0, 0, -0.85264015197753906, 0.522498607635498046, 120, 255, 1, 46741), -- Pumpkin (Area: Ratchet - Difficulty: 0)
|
||||
(@OGUID+71, 195164, 1, 17, 392, '0', 0, 0, -974.03643798828125, -3721.632080078125, 6.929293155670166015, 5.637413978576660156, 0, 0, -0.31730461120605468, 0.948323667049407958, 120, 255, 1, 46741), -- Pumpkin (Area: Ratchet - Difficulty: 0)
|
||||
(@OGUID+72, 195664, 1, 17, 392, '0', 0, 0, -971.31427001953125, -3724.51220703125, 6.03220987319946289, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Ratchet - Difficulty: 0)
|
||||
(@OGUID+73, 195664, 1, 17, 392, '0', 0, 0, -970.40972900390625, -3708.798583984375, 5.205905914306640625, 0, 0, 0, 0, 1, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Ratchet - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+6;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1),
|
||||
(@EVENT, @CGUID+2),
|
||||
(@EVENT, @CGUID+3),
|
||||
(@EVENT, @CGUID+4),
|
||||
(@EVENT, @CGUID+5),
|
||||
(@EVENT, @CGUID+6);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+73;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25),
|
||||
(@EVENT, @OGUID+26),
|
||||
(@EVENT, @OGUID+27),
|
||||
(@EVENT, @OGUID+28),
|
||||
(@EVENT, @OGUID+29),
|
||||
(@EVENT, @OGUID+30),
|
||||
(@EVENT, @OGUID+31),
|
||||
(@EVENT, @OGUID+32),
|
||||
(@EVENT, @OGUID+33),
|
||||
(@EVENT, @OGUID+34),
|
||||
(@EVENT, @OGUID+35),
|
||||
(@EVENT, @OGUID+36),
|
||||
(@EVENT, @OGUID+37),
|
||||
(@EVENT, @OGUID+38),
|
||||
(@EVENT, @OGUID+39),
|
||||
(@EVENT, @OGUID+40),
|
||||
(@EVENT, @OGUID+41),
|
||||
(@EVENT, @OGUID+42),
|
||||
(@EVENT, @OGUID+43),
|
||||
(@EVENT, @OGUID+44),
|
||||
(@EVENT, @OGUID+45),
|
||||
(@EVENT, @OGUID+46),
|
||||
(@EVENT, @OGUID+47),
|
||||
(@EVENT, @OGUID+48),
|
||||
(@EVENT, @OGUID+49),
|
||||
(@EVENT, @OGUID+50),
|
||||
(@EVENT, @OGUID+51),
|
||||
(@EVENT, @OGUID+52),
|
||||
(@EVENT, @OGUID+53),
|
||||
(@EVENT, @OGUID+54),
|
||||
(@EVENT, @OGUID+55),
|
||||
(@EVENT, @OGUID+56),
|
||||
(@EVENT, @OGUID+57),
|
||||
(@EVENT, @OGUID+58),
|
||||
(@EVENT, @OGUID+59),
|
||||
(@EVENT, @OGUID+60),
|
||||
(@EVENT, @OGUID+61),
|
||||
(@EVENT, @OGUID+62),
|
||||
(@EVENT, @OGUID+63),
|
||||
(@EVENT, @OGUID+64),
|
||||
(@EVENT, @OGUID+65),
|
||||
(@EVENT, @OGUID+66),
|
||||
(@EVENT, @OGUID+67),
|
||||
(@EVENT, @OGUID+68),
|
||||
(@EVENT, @OGUID+69),
|
||||
(@EVENT, @OGUID+70),
|
||||
(@EVENT, @OGUID+71),
|
||||
(@EVENT, @OGUID+72),
|
||||
(@EVENT, @OGUID+73);
|
||||
@@ -1,124 +0,0 @@
|
||||
SET @CGUID := 396547;
|
||||
SET @OGUID := 249307;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+3;
|
||||
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
|
||||
-- Nijel's Point
|
||||
(@CGUID+0, 32823, 1, 405, 608, '0', 0, 0, 0, 0, 189.3246612548828125, 1302.40625, 190.2981719970703125, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Nijel's Point - Difficulty: 0) (Auras: )
|
||||
(@CGUID+1, 34653, 1, 405, 608, '0', 0, 0, 0, 0, 180.203125, 1303.8663330078125, 189.9722137451171875, 2.600540637969970703, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table Hostess (Area: Nijel's Point - Difficulty: 0)
|
||||
-- Shadowprey Village
|
||||
(@CGUID+2, 32823, 1, 405, 2408, '0', 0, 0, 0, 0, -1709.9478759765625, 3091.11279296875, 33.81567764282226562, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Shadowprey Village - Difficulty: 0)
|
||||
(@CGUID+3, 34654, 1, 405, 2408, '0', 0, 0, 0, 0, -1707.859375, 3098.8671875, 33.56597137451171875, 2.513274192810058593, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Feast Hostess (Area: Shadowprey Village - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+46;
|
||||
INSERT INTO `gameobject` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `PhaseGroup`, `position_x`, `position_y`, `position_z`, `orientation`, `rotation0`, `rotation1`, `rotation2`, `rotation3`, `spawntimesecs`, `animprogress`, `state`, `VerifiedBuild`) VALUES
|
||||
-- Nijel's Point
|
||||
(@OGUID+0, 179968, 1, 405, 608, '0', 0, 0, 182.4583282470703125, 1301.875, 189.9530181884765625, 0.069811686873435974, 0, 0, 0.034898757934570312, 0.999390840530395507, 120, 255, 1, 46741), -- Haystack 01 (Area: Nijel's Point - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 1, 405, 608, '0', 0, 0, 182.3489532470703125, 1303.920166015625, 189.9664154052734375, 3.124123096466064453, 0, 0, 0.99996185302734375, 0.008734640665352344, 120, 255, 1, 46741), -- Haystack 01 (Area: Nijel's Point - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 1, 405, 608, '0', 0, 0, 196.8715362548828125, 1302.85595703125, 190.37847900390625, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: Nijel's Point - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 1, 405, 608, '0', 0, 0, 195.2881927490234375, 1297.44970703125, 190.9243927001953125, 2.286378860473632812, 0, 0, 0.909960746765136718, 0.414694398641586303, 120, 255, 1, 46741), -- Haystack 01 (Area: Nijel's Point - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 1, 405, 608, '0', 0, 0, 193.5555572509765625, 1296.185791015625, 190.8506927490234375, 2.094393253326416015, 0, 0, 0.866024971008300781, 0.50000077486038208, 120, 255, 1, 46741), -- Haystack 01 (Area: Nijel's Point - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 1, 405, 608, '0', 0, 0, 186.84375, 1296.2396240234375, 190.3350677490234375, 1.378809213638305664, 0, 0, 0.636077880859375, 0.771624863147735595, 120, 255, 1, 46741), -- Haystack 01 (Area: Nijel's Point - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 1, 405, 608, '0', 0, 0, 197.0364532470703125, 1304.41845703125, 190.3156280517578125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: Nijel's Point - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 1, 405, 608, '0', 0, 0, 185.345489501953125, 1297.2882080078125, 190.2118072509765625, 3.752462387084960937, 0, 0, -0.95371627807617187, 0.300707906484603881, 120, 255, 1, 46741), -- Haystack 01 (Area: Nijel's Point - Difficulty: 0)
|
||||
(@OGUID+8, 180353, 1, 405, 608, '0', 0, 0, 182.5520782470703125, 1302.7691650390625, 189.9608917236328125, 0.261798173189163208, 0, 0, 0.130525588989257812, 0.991444945335388183, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Nijel's Point - Difficulty: 0)
|
||||
(@OGUID+9, 180353, 1, 405, 608, '0', 0, 0, 186.017364501953125, 1296.5504150390625, 190.28125, 0.349065244197845458, 0, 0, 0.173647880554199218, 0.984807789325714111, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Nijel's Point - Difficulty: 0)
|
||||
(@OGUID+10, 180353, 1, 405, 608, '0', 0, 0, 194.626739501953125, 1296.8646240234375, 190.9166717529296875, 0.296705186367034912, 0, 0, 0.147809028625488281, 0.989015936851501464, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Nijel's Point - Difficulty: 0)
|
||||
(@OGUID+11, 180353, 1, 405, 608, '0', 0, 0, 197.0243072509765625, 1303.6336669921875, 190.34063720703125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Nijel's Point - Difficulty: 0)
|
||||
(@OGUID+12, 195164, 1, 405, 608, '0', 0, 0, 182.37847900390625, 1303.8785400390625, 190.6326446533203125, 1.047197580337524414, 0, 0, 0.5, 0.866025388240814208, 120, 255, 1, 46741), -- Pumpkin (Area: Nijel's Point - Difficulty: 0)
|
||||
(@OGUID+13, 195164, 1, 405, 608, '0', 0, 0, 182.564239501953125, 1301.857666015625, 190.624359130859375, 0.261798173189163208, 0, 0, 0.130525588989257812, 0.991444945335388183, 120, 255, 1, 46741), -- Pumpkin (Area: Nijel's Point - Difficulty: 0)
|
||||
(@OGUID+14, 195164, 1, 405, 608, '0', 0, 0, 185.375, 1297.3472900390625, 190.877838134765625, 0.349065244197845458, 0, 0, 0.173647880554199218, 0.984807789325714111, 120, 255, 1, 46741), -- Pumpkin (Area: Nijel's Point - Difficulty: 0)
|
||||
(@OGUID+15, 195164, 1, 405, 608, '0', 0, 0, 186.7552032470703125, 1296.28125, 190.9958953857421875, 0.349065244197845458, 0, 0, 0.173647880554199218, 0.984807789325714111, 120, 255, 1, 46741), -- Pumpkin (Area: Nijel's Point - Difficulty: 0)
|
||||
(@OGUID+16, 195164, 1, 405, 608, '0', 0, 0, 196.9427032470703125, 1304.390625, 190.9824981689453125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Nijel's Point - Difficulty: 0)
|
||||
(@OGUID+17, 195164, 1, 405, 608, '0', 0, 0, 193.4895782470703125, 1296.2379150390625, 191.5045928955078125, 0.296705186367034912, 0, 0, 0.147809028625488281, 0.989015936851501464, 120, 255, 1, 46741), -- Pumpkin (Area: Nijel's Point - Difficulty: 0)
|
||||
(@OGUID+18, 195164, 1, 405, 608, '0', 0, 0, 195.3854217529296875, 1297.6024169921875, 191.5827178955078125, 0.296705186367034912, 0, 0, 0.147809028625488281, 0.989015936851501464, 120, 255, 1, 46741), -- Pumpkin (Area: Nijel's Point - Difficulty: 0)
|
||||
(@OGUID+19, 195164, 1, 405, 608, '0', 0, 0, 196.732635498046875, 1302.7135009765625, 191.0566558837890625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Nijel's Point - Difficulty: 0)
|
||||
(@OGUID+20, 195664, 1, 405, 608, '0', 0, 0, 189.3246612548828125, 1302.40625, 190.21484375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Nijel's Point - Difficulty: 0)
|
||||
-- Shadowprey Village
|
||||
(@OGUID+21, 179968, 1, 405, 2408, '0', 0, 0, -1712.592041015625, 3087.248291015625, 34.20486068725585937, 1.029743075370788574, 0, 0, 0.492423057556152343, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: Shadowprey Village - Difficulty: 0)
|
||||
(@OGUID+22, 179968, 1, 405, 2408, '0', 0, 0, -1707.71875, 3096.5712890625, 33.73821258544921875, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Shadowprey Village - Difficulty: 0)
|
||||
(@OGUID+23, 179968, 1, 405, 2408, '0', 0, 0, -1703.7257080078125, 3091.9150390625, 33.4827880859375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: Shadowprey Village - Difficulty: 0)
|
||||
(@OGUID+24, 179968, 1, 405, 2408, '0', 0, 0, -1706.5538330078125, 3086.057373046875, 33.84766769409179687, 1.989672422409057617, 0, 0, 0.838669776916503906, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: Shadowprey Village - Difficulty: 0)
|
||||
(@OGUID+25, 179968, 1, 405, 2408, '0', 0, 0, -1713.638916015625, 3088.748291015625, 34.17534637451171875, 3.403396368026733398, 0, 0, -0.99144458770751953, 0.130528271198272705, 120, 255, 1, 46741), -- Haystack 01 (Area: Shadowprey Village - Difficulty: 0)
|
||||
(@OGUID+26, 179968, 1, 405, 2408, '0', 0, 0, -1714.282958984375, 3093.626708984375, 34.05902862548828125, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Haystack 01 (Area: Shadowprey Village - Difficulty: 0)
|
||||
(@OGUID+27, 179968, 1, 405, 2408, '0', 0, 0, -1708.1944580078125, 3085.5712890625, 34.0086822509765625, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Shadowprey Village - Difficulty: 0)
|
||||
(@OGUID+28, 179968, 1, 405, 2408, '0', 0, 0, -1713.203125, 3094.970458984375, 34.00173568725585937, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 46741), -- Haystack 01 (Area: Shadowprey Village - Difficulty: 0)
|
||||
(@OGUID+29, 179968, 1, 405, 2408, '0', 0, 0, -1703.890625, 3090.3525390625, 33.47401046752929687, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: Shadowprey Village - Difficulty: 0)
|
||||
(@OGUID+30, 179968, 1, 405, 2408, '0', 0, 0, -1706.189208984375, 3096.1650390625, 33.57986068725585937, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Haystack 01 (Area: Shadowprey Village - Difficulty: 0)
|
||||
(@OGUID+31, 180353, 1, 405, 2408, '0', 0, 0, -1707.357666015625, 3085.692626953125, 33.9375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Shadowprey Village - Difficulty: 0)
|
||||
(@OGUID+32, 180353, 1, 405, 2408, '0', 0, 0, -1713.2603759765625, 3087.82470703125, 34.1875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Shadowprey Village - Difficulty: 0)
|
||||
(@OGUID+33, 180353, 1, 405, 2408, '0', 0, 0, -1713.954833984375, 3094.463623046875, 34.02083206176757812, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Shadowprey Village - Difficulty: 0)
|
||||
(@OGUID+34, 180353, 1, 405, 2408, '0', 0, 0, -1703.7379150390625, 3091.130126953125, 33.47048568725585937, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Shadowprey Village - Difficulty: 0)
|
||||
(@OGUID+35, 180353, 1, 405, 2408, '0', 0, 0, -1706.9305419921875, 3096.421875, 33.65277862548828125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Shadowprey Village - Difficulty: 0)
|
||||
(@OGUID+36, 195164, 1, 405, 2408, '0', 0, 0, -1706.4149169921875, 3086.17529296875, 34.50072097778320312, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Shadowprey Village - Difficulty: 0)
|
||||
(@OGUID+37, 195164, 1, 405, 2408, '0', 0, 0, -1707.7603759765625, 3096.4775390625, 34.43422698974609375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Shadowprey Village - Difficulty: 0)
|
||||
(@OGUID+38, 195164, 1, 405, 2408, '0', 0, 0, -1714.185791015625, 3093.58154296875, 34.73978424072265625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Shadowprey Village - Difficulty: 0)
|
||||
(@OGUID+39, 195164, 1, 405, 2408, '0', 0, 0, -1713.59033203125, 3088.79345703125, 34.852630615234375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Shadowprey Village - Difficulty: 0)
|
||||
(@OGUID+40, 195164, 1, 405, 2408, '0', 0, 0, -1706.251708984375, 3096.182373046875, 34.26513290405273437, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Shadowprey Village - Difficulty: 0)
|
||||
(@OGUID+41, 195164, 1, 405, 2408, '0', 0, 0, -1704.029541015625, 3090.210205078125, 34.17554855346679687, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Shadowprey Village - Difficulty: 0)
|
||||
(@OGUID+42, 195164, 1, 405, 2408, '0', 0, 0, -1703.8194580078125, 3091.88720703125, 34.179168701171875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Shadowprey Village - Difficulty: 0)
|
||||
(@OGUID+43, 195164, 1, 405, 2408, '0', 0, 0, -1708.2430419921875, 3085.640625, 34.69117355346679687, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Shadowprey Village - Difficulty: 0)
|
||||
(@OGUID+44, 195164, 1, 405, 2408, '0', 0, 0, -1713.2257080078125, 3094.92529296875, 34.68249130249023437, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Shadowprey Village - Difficulty: 0)
|
||||
(@OGUID+45, 195164, 1, 405, 2408, '0', 0, 0, -1712.6614990234375, 3087.317626953125, 34.87520217895507812, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Shadowprey Village - Difficulty: 0)
|
||||
(@OGUID+46, 195664, 1, 405, 2408, '0', 0, 0, -1709.949951171875, 3091.110107421875, 33.7322998046875, 0, 0, 0, 0, 1, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Shadowprey Village - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+3;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1),
|
||||
(@EVENT, @CGUID+2),
|
||||
(@EVENT, @CGUID+3);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+46;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25),
|
||||
(@EVENT, @OGUID+26),
|
||||
(@EVENT, @OGUID+27),
|
||||
(@EVENT, @OGUID+28),
|
||||
(@EVENT, @OGUID+29),
|
||||
(@EVENT, @OGUID+30),
|
||||
(@EVENT, @OGUID+31),
|
||||
(@EVENT, @OGUID+32),
|
||||
(@EVENT, @OGUID+33),
|
||||
(@EVENT, @OGUID+34),
|
||||
(@EVENT, @OGUID+35),
|
||||
(@EVENT, @OGUID+36),
|
||||
(@EVENT, @OGUID+37),
|
||||
(@EVENT, @OGUID+38),
|
||||
(@EVENT, @OGUID+39),
|
||||
(@EVENT, @OGUID+40),
|
||||
(@EVENT, @OGUID+41),
|
||||
(@EVENT, @OGUID+42),
|
||||
(@EVENT, @OGUID+43),
|
||||
(@EVENT, @OGUID+44),
|
||||
(@EVENT, @OGUID+45),
|
||||
(@EVENT, @OGUID+46);
|
||||
@@ -1,134 +0,0 @@
|
||||
SET @CGUID := 396551;
|
||||
SET @OGUID := 249354;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+3;
|
||||
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
|
||||
-- Feathermoon Stronghold
|
||||
(@CGUID+0, 32823, 1, 357, 5072, '0', 0, 0, 0, 0, -4467.9599609375, 2181.43994140625, 17.97573471069335937, 5.864306449890136718, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Feathermoon Stronghold - Difficulty: 0) (Auras: )
|
||||
(@CGUID+1, 34653, 1, 357, 5072, '0', 0, 0, 0, 0, -4461.18994140625, 2176.85009765625, 17.97493362426757812, 5.515240192413330078, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table Hostess (Area: Feathermoon Stronghold - Difficulty: 0)
|
||||
-- Camp Mojache
|
||||
(@CGUID+2, 32823, 1, 357, 1099, '0', 0, 0, 0, 0, -4375.6962890625, 237.37847900390625, 25.49667167663574218, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Camp Mojache - Difficulty: 0) (Auras: )
|
||||
(@CGUID+3, 34654, 1, 357, 1099, '0', 0, 0, 0, 0, -4381.3837890625, 240.4479217529296875, 25.58231353759765625, 3.996803998947143554, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Feast Hostess (Area: Camp Mojache - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+51;
|
||||
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
|
||||
-- Feathermoon Stronghold
|
||||
(@OGUID+0, 179968, 1, 357, 5072, '0', 0, 0, -4469.52001953125, 2186.239990234375, 17.91139984130859375, 1.658061861991882324, 0, 0, 0.737277030944824218, 0.67559051513671875, 120, 255, 1, 46741), -- Haystack 01 (Area: Feathermoon Stronghold - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 1, 357, 5072, '0', 0, 0, -4472.27001953125, 2180.639892578125, 17.90679931640625, 2.984498262405395507, 0, 0, 0.996916770935058593, 0.078466430306434631, 120, 255, 1, 46741), -- Haystack 01 (Area: Feathermoon Stronghold - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 1, 357, 5072, '0', 0, 0, -4471.85986328125, 2178.85009765625, 17.88450050354003906, 0.610863447189331054, 0, 0, 0.3007049560546875, 0.953717231750488281, 120, 255, 1, 46741), -- Haystack 01 (Area: Feathermoon Stronghold - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 1, 357, 5072, '0', 0, 0, -4471.02001953125, 2185.39990234375, 17.91650009155273437, 5.672322273254394531, 0, 0, -0.3007049560546875, 0.953717231750488281, 120, 255, 1, 46741), -- Haystack 01 (Area: Feathermoon Stronghold - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 1, 357, 5072, '0', 0, 0, -4466.72021484375, 2175.47998046875, 17.89159965515136718, 1.570795774459838867, 0, 0, 0.707106590270996093, 0.707106947898864746, 120, 255, 1, 46741), -- Haystack 01 (Area: Feathermoon Stronghold - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 1, 357, 5072, '0', 0, 0, -4468.419921875, 2175.639892578125, 17.89159965515136718, 1.064649581909179687, 0, 0, 0.507537841796875, 0.861629426479339599, 120, 255, 1, 46741), -- Haystack 01 (Area: Feathermoon Stronghold - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 1, 357, 5072, '0', 0, 0, -4462.56982421875, 2184.699951171875, 17.89170074462890625, 3.735006093978881835, 0, 0, -0.95630455017089843, 0.292372345924377441, 120, 255, 1, 46741), -- Haystack 01 (Area: Feathermoon Stronghold - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 1, 357, 5072, '0', 0, 0, -4461.89013671875, 2179.840087890625, 17.89159965515136718, 5.864306926727294921, 0, 0, -0.20791149139404296, 0.978147625923156738, 120, 255, 1, 46741), -- Haystack 01 (Area: Feathermoon Stronghold - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 1, 357, 5072, '0', 0, 0, -4462.6298828125, 2178.449951171875, 17.89159965515136718, 2.391098499298095703, 0, 0, 0.930417060852050781, 0.366502493619918823, 120, 255, 1, 46741), -- Haystack 01 (Area: Feathermoon Stronghold - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 1, 357, 5072, '0', 0, 0, -4463.830078125, 2185.659912109375, 17.89229965209960937, 4.310965538024902343, 0, 0, -0.83388519287109375, 0.55193793773651123, 120, 255, 1, 46741), -- Haystack 01 (Area: Feathermoon Stronghold - Difficulty: 0)
|
||||
(@OGUID+10, 180353, 1, 357, 5072, '0', 0, 0, -4472.259765625, 2179.639892578125, 17.89760017395019531, 5.864306926727294921, 0, 0, -0.20791149139404296, 0.978147625923156738, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Feathermoon Stronghold - Difficulty: 0)
|
||||
(@OGUID+11, 180353, 1, 357, 5072, '0', 0, 0, -4470.39990234375, 2186.050048828125, 17.91670036315917968, 5.864306926727294921, 0, 0, -0.20791149139404296, 0.978147625923156738, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Feathermoon Stronghold - Difficulty: 0)
|
||||
(@OGUID+12, 180353, 1, 357, 5072, '0', 0, 0, -4463.16015625, 2185.219970703125, 17.89200019836425781, 5.864306926727294921, 0, 0, -0.20791149139404296, 0.978147625923156738, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Feathermoon Stronghold - Difficulty: 0)
|
||||
(@OGUID+13, 180353, 1, 357, 5072, '0', 0, 0, -4462.2001953125, 2179.110107421875, 17.89159965515136718, 5.864306926727294921, 0, 0, -0.20791149139404296, 0.978147625923156738, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Feathermoon Stronghold - Difficulty: 0)
|
||||
(@OGUID+14, 180353, 1, 357, 5072, '0', 0, 0, -4467.60009765625, 2175.43994140625, 17.89159965515136718, 5.864306926727294921, 0, 0, -0.20791149139404296, 0.978147625923156738, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Feathermoon Stronghold - Difficulty: 0)
|
||||
(@OGUID+15, 195164, 1, 357, 5072, '0', 0, 0, -4472.2001953125, 2180.659912109375, 18.50200080871582031, 5.864306926727294921, 0, 0, -0.20791149139404296, 0.978147625923156738, 120, 255, 1, 46741), -- Pumpkin (Area: Feathermoon Stronghold - Difficulty: 0)
|
||||
(@OGUID+16, 195164, 1, 357, 5072, '0', 0, 0, -4470.9501953125, 2185.320068359375, 18.51149940490722656, 5.864306926727294921, 0, 0, -0.20791149139404296, 0.978147625923156738, 120, 255, 1, 46741), -- Pumpkin (Area: Feathermoon Stronghold - Difficulty: 0)
|
||||
(@OGUID+17, 195164, 1, 357, 5072, '0', 0, 0, -4462.6201171875, 2184.739990234375, 18.48760032653808593, 5.864306926727294921, 0, 0, -0.20791149139404296, 0.978147625923156738, 120, 255, 1, 46741), -- Pumpkin (Area: Feathermoon Stronghold - Difficulty: 0)
|
||||
(@OGUID+18, 195164, 1, 357, 5072, '0', 0, 0, -4471.89990234375, 2178.93994140625, 18.48040008544921875, 5.864306926727294921, 0, 0, -0.20791149139404296, 0.978147625923156738, 120, 255, 1, 46741), -- Pumpkin (Area: Feathermoon Stronghold - Difficulty: 0)
|
||||
(@OGUID+19, 195164, 1, 357, 5072, '0', 0, 0, -4461.990234375, 2179.840087890625, 18.48740005493164062, 5.864306926727294921, 0, 0, -0.20791149139404296, 0.978147625923156738, 120, 255, 1, 46741), -- Pumpkin (Area: Feathermoon Stronghold - Difficulty: 0)
|
||||
(@OGUID+20, 195164, 1, 357, 5072, '0', 0, 0, -4469.56005859375, 2186.199951171875, 18.50729942321777343, 5.864306926727294921, 0, 0, -0.20791149139404296, 0.978147625923156738, 120, 255, 1, 46741), -- Pumpkin (Area: Feathermoon Stronghold - Difficulty: 0)
|
||||
(@OGUID+21, 195164, 1, 357, 5072, '0', 0, 0, -4466.5498046875, 2175.530029296875, 18.48740005493164062, 5.864306926727294921, 0, 0, -0.20791149139404296, 0.978147625923156738, 120, 255, 1, 46741), -- Pumpkin (Area: Feathermoon Stronghold - Difficulty: 0)
|
||||
(@OGUID+22, 195164, 1, 357, 5072, '0', 0, 0, -4468.43994140625, 2175.72998046875, 18.48740005493164062, 5.864306926727294921, 0, 0, -0.20791149139404296, 0.978147625923156738, 120, 255, 1, 46741), -- Pumpkin (Area: Feathermoon Stronghold - Difficulty: 0)
|
||||
(@OGUID+23, 195164, 1, 357, 5072, '0', 0, 0, -4462.81005859375, 2178.3701171875, 18.48740005493164062, 5.864306926727294921, 0, 0, -0.20791149139404296, 0.978147625923156738, 120, 255, 1, 46741), -- Pumpkin (Area: Feathermoon Stronghold - Difficulty: 0)
|
||||
(@OGUID+24, 195164, 1, 357, 5072, '0', 0, 0, -4463.91015625, 2185.580078125, 18.48810005187988281, 5.864306926727294921, 0, 0, -0.20791149139404296, 0.978147625923156738, 120, 255, 1, 46741), -- Pumpkin (Area: Feathermoon Stronghold - Difficulty: 0)
|
||||
(@OGUID+25, 195664, 1, 357, 5072, '0', 0, 0, -4467.9599609375, 2181.43994140625, 17.89240074157714843, 5.864306926727294921, 0, 0, -0.20791149139404296, 0.978147625923156738, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Feathermoon Stronghold - Difficulty: 0)
|
||||
-- Camp Mojache
|
||||
(@OGUID+26, 179968, 1, 357, 1099, '0', 0, 0, -4379.38720703125, 235.013885498046875, 25.41333770751953125, 3.403396368026733398, 0, 0, -0.99144458770751953, 0.130528271198272705, 120, 255, 1, 46741), -- Haystack 01 (Area: Camp Mojache - Difficulty: 0)
|
||||
(@OGUID+27, 179968, 1, 357, 1099, '0', 0, 0, -4378.95166015625, 241.236114501953125, 25.41333770751953125, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 46741), -- Haystack 01 (Area: Camp Mojache - Difficulty: 0)
|
||||
(@OGUID+28, 179968, 1, 357, 1099, '0', 0, 0, -4380.03125, 239.892364501953125, 25.41468048095703125, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Haystack 01 (Area: Camp Mojache - Difficulty: 0)
|
||||
(@OGUID+29, 179968, 1, 357, 1099, '0', 0, 0, -4378.34033203125, 233.513885498046875, 25.41333770751953125, 1.029743075370788574, 0, 0, 0.492423057556152343, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: Camp Mojache - Difficulty: 0)
|
||||
(@OGUID+30, 179968, 1, 357, 1099, '0', 0, 0, -4369.63916015625, 236.6180572509765625, 25.41333770751953125, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: Camp Mojache - Difficulty: 0)
|
||||
(@OGUID+31, 179968, 1, 357, 1099, '0', 0, 0, -4371.9375, 242.4305572509765625, 25.41333770751953125, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Haystack 01 (Area: Camp Mojache - Difficulty: 0)
|
||||
(@OGUID+32, 179968, 1, 357, 1099, '0', 0, 0, -4373.46728515625, 242.8368072509765625, 25.41333770751953125, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Camp Mojache - Difficulty: 0)
|
||||
(@OGUID+33, 179968, 1, 357, 1099, '0', 0, 0, -4369.47412109375, 238.1805572509765625, 25.41333770751953125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: Camp Mojache - Difficulty: 0)
|
||||
(@OGUID+34, 179968, 1, 357, 1099, '0', 0, 0, -4372.30224609375, 232.3229217529296875, 25.41333770751953125, 1.989672422409057617, 0, 0, 0.838669776916503906, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: Camp Mojache - Difficulty: 0)
|
||||
(@OGUID+35, 179968, 1, 357, 1099, '0', 0, 0, -4373.94287109375, 231.8368072509765625, 25.41473579406738281, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Camp Mojache - Difficulty: 0)
|
||||
(@OGUID+36, 180353, 1, 357, 1099, '0', 0, 0, -4379.0087890625, 234.0902862548828125, 25.41333770751953125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Camp Mojache - Difficulty: 0)
|
||||
(@OGUID+37, 180353, 1, 357, 1099, '0', 0, 0, -4379.703125, 240.7291717529296875, 25.41417121887207031, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Camp Mojache - Difficulty: 0)
|
||||
(@OGUID+38, 180353, 1, 357, 1099, '0', 0, 0, -4369.486328125, 237.3958282470703125, 25.41333770751953125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Camp Mojache - Difficulty: 0)
|
||||
(@OGUID+39, 180353, 1, 357, 1099, '0', 0, 0, -4373.10595703125, 231.9583282470703125, 25.41333770751953125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Camp Mojache - Difficulty: 0)
|
||||
(@OGUID+40, 180353, 1, 357, 1099, '0', 0, 0, -4372.6787109375, 242.6875, 25.41333770751953125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Camp Mojache - Difficulty: 0)
|
||||
(@OGUID+41, 195164, 1, 357, 1099, '0', 0, 0, -4379.33837890625, 235.0590362548828125, 26.11290931701660156, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Camp Mojache - Difficulty: 0)
|
||||
(@OGUID+42, 195164, 1, 357, 1099, '0', 0, 0, -4373.9912109375, 231.90625, 26.1142425537109375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Camp Mojache - Difficulty: 0)
|
||||
(@OGUID+43, 195164, 1, 357, 1099, '0', 0, 0, -4378.40966796875, 233.5833282470703125, 26.11290931701660156, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Camp Mojache - Difficulty: 0)
|
||||
(@OGUID+44, 195164, 1, 357, 1099, '0', 0, 0, -4372, 242.4479217529296875, 26.11290931701660156, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Camp Mojache - Difficulty: 0)
|
||||
(@OGUID+45, 195164, 1, 357, 1099, '0', 0, 0, -4369.77783203125, 236.4756927490234375, 26.11290931701660156, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Camp Mojache - Difficulty: 0)
|
||||
(@OGUID+46, 195164, 1, 357, 1099, '0', 0, 0, -4369.56787109375, 238.1527862548828125, 26.11290931701660156, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Camp Mojache - Difficulty: 0)
|
||||
(@OGUID+47, 195164, 1, 357, 1099, '0', 0, 0, -4379.93408203125, 239.84722900390625, 26.11410140991210937, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Camp Mojache - Difficulty: 0)
|
||||
(@OGUID+48, 195164, 1, 357, 1099, '0', 0, 0, -4372.1630859375, 232.44097900390625, 26.11290931701660156, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Camp Mojache - Difficulty: 0)
|
||||
(@OGUID+49, 195164, 1, 357, 1099, '0', 0, 0, -4378.97412109375, 241.19097900390625, 26.11290931701660156, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Camp Mojache - Difficulty: 0)
|
||||
(@OGUID+50, 195164, 1, 357, 1099, '0', 0, 0, -4373.5087890625, 242.7430572509765625, 26.11290931701660156, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Camp Mojache - Difficulty: 0)
|
||||
(@OGUID+51, 195664, 1, 357, 1099, '0', 0, 0, -4375.7001953125, 237.3780059814453125, 25.413299560546875, 0, 0, 0, 0, 1, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Camp Mojache - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+3;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1),
|
||||
(@EVENT, @CGUID+2),
|
||||
(@EVENT, @CGUID+3);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+51;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25),
|
||||
(@EVENT, @OGUID+26),
|
||||
(@EVENT, @OGUID+27),
|
||||
(@EVENT, @OGUID+28),
|
||||
(@EVENT, @OGUID+29),
|
||||
(@EVENT, @OGUID+30),
|
||||
(@EVENT, @OGUID+31),
|
||||
(@EVENT, @OGUID+32),
|
||||
(@EVENT, @OGUID+33),
|
||||
(@EVENT, @OGUID+34),
|
||||
(@EVENT, @OGUID+35),
|
||||
(@EVENT, @OGUID+36),
|
||||
(@EVENT, @OGUID+37),
|
||||
(@EVENT, @OGUID+38),
|
||||
(@EVENT, @OGUID+39),
|
||||
(@EVENT, @OGUID+40),
|
||||
(@EVENT, @OGUID+41),
|
||||
(@EVENT, @OGUID+42),
|
||||
(@EVENT, @OGUID+43),
|
||||
(@EVENT, @OGUID+44),
|
||||
(@EVENT, @OGUID+45),
|
||||
(@EVENT, @OGUID+46),
|
||||
(@EVENT, @OGUID+47),
|
||||
(@EVENT, @OGUID+48),
|
||||
(@EVENT, @OGUID+49),
|
||||
(@EVENT, @OGUID+50),
|
||||
(@EVENT, @OGUID+51);
|
||||
@@ -1,134 +0,0 @@
|
||||
SET @CGUID := 396555;
|
||||
SET @OGUID := 249406;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+3;
|
||||
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
|
||||
-- Theramore Isle
|
||||
(@CGUID+0, 32823, 1, 15, 513, '0', 0, 0, 0, 0, -3811.5625, -4544.955078125, 10.61968326568603515, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Theramore Isle - Difficulty: 0) (Auras: )
|
||||
(@CGUID+1, 34653, 1, 15, 513, '0', 0, 0, 0, 0, -3809.473876953125, -4537.19970703125, 10.38020801544189453, 2.513274192810058593, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table Hostess (Area: Theramore Isle - Difficulty: 0)
|
||||
-- Brackenwall Village
|
||||
(@CGUID+2, 32823, 1, 15, 496, '0', 0, 0, 0, 0, -3137.666748046875, -2848.48095703125, 34.66145706176757812, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Brackenwall Village - Difficulty: 0) (Auras: )
|
||||
(@CGUID+3, 34654, 1, 15, 496, '0', 0, 0, 0, 0, -3133.8125, -2842.036376953125, 34.3038177490234375, 1.239183783531188964, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Feast Hostess (Area: Brackenwall Village - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+51;
|
||||
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
|
||||
-- Theramore Isle
|
||||
(@OGUID+0, 179968, 1, 15, 513, '0', 0, 0, -3815.897705078125, -4542.44091796875, 10.125, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Haystack 01 (Area: Theramore Isle - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 1, 15, 513, '0', 0, 0, -3809.333251953125, -4539.49658203125, 10.5463113784790039, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Theramore Isle - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 1, 15, 513, '0', 0, 0, -3814.817626953125, -4541.09716796875, 10.14099311828613281, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 46741), -- Haystack 01 (Area: Theramore Isle - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 1, 15, 513, '0', 0, 0, -3815.25341796875, -4547.3193359375, 10.24652767181396484, 3.403396368026733398, 0, 0, -0.99144458770751953, 0.130528271198272705, 120, 255, 1, 46741), -- Haystack 01 (Area: Theramore Isle - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 1, 15, 513, '0', 0, 0, -3807.803955078125, -4539.90283203125, 10.66493034362792968, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Haystack 01 (Area: Theramore Isle - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 1, 15, 513, '0', 0, 0, -3808.16845703125, -4550.01025390625, 10.26839160919189453, 1.989672422409057617, 0, 0, 0.838669776916503906, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: Theramore Isle - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 1, 15, 513, '0', 0, 0, -3814.20654296875, -4548.8193359375, 10.18003559112548828, 1.029743075370788574, 0, 0, 0.492423057556152343, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: Theramore Isle - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 1, 15, 513, '0', 0, 0, -3805.34033203125, -4544.15283203125, 10.64409732818603515, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: Theramore Isle - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 1, 15, 513, '0', 0, 0, -3805.505126953125, -4545.71533203125, 10.55902767181396484, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: Theramore Isle - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 1, 15, 513, '0', 0, 0, -3809.80908203125, -4550.49658203125, 10.13715267181396484, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Theramore Isle - Difficulty: 0)
|
||||
(@OGUID+10, 180353, 1, 15, 513, '0', 0, 0, -3808.545166015625, -4539.64599609375, 10.60784053802490234, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Theramore Isle - Difficulty: 0)
|
||||
(@OGUID+11, 180353, 1, 15, 513, '0', 0, 0, -3815.569580078125, -4541.60400390625, 10.10506725311279296, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Theramore Isle - Difficulty: 0)
|
||||
(@OGUID+12, 180353, 1, 15, 513, '0', 0, 0, -3805.3525390625, -4544.9375, 10.59895801544189453, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Theramore Isle - Difficulty: 0)
|
||||
(@OGUID+13, 180353, 1, 15, 513, '0', 0, 0, -3814.875, -4548.2431640625, 10.21354198455810546, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Theramore Isle - Difficulty: 0)
|
||||
(@OGUID+14, 180353, 1, 15, 513, '0', 0, 0, -3808.97216796875, -4550.375, 10.1875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Theramore Isle - Difficulty: 0)
|
||||
(@OGUID+15, 195164, 1, 15, 513, '0', 0, 0, -3814.84033203125, -4541.142578125, 10.85353946685791015, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Theramore Isle - Difficulty: 0)
|
||||
(@OGUID+16, 195164, 1, 15, 513, '0', 0, 0, -3805.64404296875, -4545.85791015625, 11.26132583618164062, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Theramore Isle - Difficulty: 0)
|
||||
(@OGUID+17, 195164, 1, 15, 513, '0', 0, 0, -3815.204833984375, -4547.2744140625, 10.96383857727050781, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Theramore Isle - Difficulty: 0)
|
||||
(@OGUID+18, 195164, 1, 15, 513, '0', 0, 0, -3808.029541015625, -4549.892578125, 10.98400688171386718, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Theramore Isle - Difficulty: 0)
|
||||
(@OGUID+19, 195164, 1, 15, 513, '0', 0, 0, -3815.80029296875, -4542.486328125, 10.85578346252441406, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Theramore Isle - Difficulty: 0)
|
||||
(@OGUID+20, 195164, 1, 15, 513, '0', 0, 0, -3807.866455078125, -4539.88525390625, 11.36843109130859375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Theramore Isle - Difficulty: 0)
|
||||
(@OGUID+21, 195164, 1, 15, 513, '0', 0, 0, -3814.276123046875, -4548.75, 10.89290046691894531, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Theramore Isle - Difficulty: 0)
|
||||
(@OGUID+22, 195164, 1, 15, 513, '0', 0, 0, -3809.857666015625, -4550.42724609375, 10.85578346252441406, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Theramore Isle - Difficulty: 0)
|
||||
(@OGUID+23, 195164, 1, 15, 513, '0', 0, 0, -3809.375, -4539.59033203125, 11.25806331634521484, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Theramore Isle - Difficulty: 0)
|
||||
(@OGUID+24, 195164, 1, 15, 513, '0', 0, 0, -3805.43408203125, -4544.1806640625, 11.35239505767822265, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Theramore Isle - Difficulty: 0)
|
||||
(@OGUID+25, 195664, 1, 15, 513, '0', 0, 0, -3811.56005859375, -4544.9599609375, 10.53639984130859375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Theramore Isle - Difficulty: 0)
|
||||
-- Brackenwall Village
|
||||
(@OGUID+26, 179968, 1, 15, 496, '0', 0, 0, -3133.907958984375, -2843.428955078125, 34.3305816650390625, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Haystack 01 (Area: Brackenwall Village - Difficulty: 0)
|
||||
(@OGUID+27, 179968, 1, 15, 496, '0', 0, 0, -3131.609375, -2849.241455078125, 34.7274322509765625, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: Brackenwall Village - Difficulty: 0)
|
||||
(@OGUID+28, 179968, 1, 15, 496, '0', 0, 0, -3135.4375, -2843.022705078125, 34.31423568725585937, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Brackenwall Village - Difficulty: 0)
|
||||
(@OGUID+29, 179968, 1, 15, 496, '0', 0, 0, -3131.444580078125, -2847.678955078125, 34.66319656372070312, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: Brackenwall Village - Difficulty: 0)
|
||||
(@OGUID+30, 179968, 1, 15, 496, '0', 0, 0, -3141.357666015625, -2850.845458984375, 34.49334335327148437, 3.403396368026733398, 0, 0, -0.99144458770751953, 0.130528271198272705, 120, 255, 1, 46741), -- Haystack 01 (Area: Brackenwall Village - Difficulty: 0)
|
||||
(@OGUID+31, 179968, 1, 15, 496, '0', 0, 0, -3142.001708984375, -2845.967041015625, 34.53655624389648437, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Haystack 01 (Area: Brackenwall Village - Difficulty: 0)
|
||||
(@OGUID+32, 179968, 1, 15, 496, '0', 0, 0, -3134.272705078125, -2853.536376953125, 34.7743072509765625, 1.989672422409057617, 0, 0, 0.838669776916503906, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: Brackenwall Village - Difficulty: 0)
|
||||
(@OGUID+33, 179968, 1, 15, 496, '0', 0, 0, -3135.913330078125, -2854.022705078125, 34.71007156372070312, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Brackenwall Village - Difficulty: 0)
|
||||
(@OGUID+34, 179968, 1, 15, 496, '0', 0, 0, -3140.310791015625, -2852.345458984375, 34.51569366455078125, 1.029743075370788574, 0, 0, 0.492423057556152343, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: Brackenwall Village - Difficulty: 0)
|
||||
(@OGUID+35, 179968, 1, 15, 496, '0', 0, 0, -3140.921875, -2844.623291015625, 34.5094757080078125, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 46741), -- Haystack 01 (Area: Brackenwall Village - Difficulty: 0)
|
||||
(@OGUID+36, 180353, 1, 15, 496, '0', 0, 0, -3131.45654296875, -2848.463623046875, 34.69791793823242187, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Brackenwall Village - Difficulty: 0)
|
||||
(@OGUID+37, 180353, 1, 15, 496, '0', 0, 0, -3134.6494140625, -2843.171875, 34.31317520141601562, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Brackenwall Village - Difficulty: 0)
|
||||
(@OGUID+38, 180353, 1, 15, 496, '0', 0, 0, -3141.673583984375, -2845.130126953125, 34.53819656372070312, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Brackenwall Village - Difficulty: 0)
|
||||
(@OGUID+39, 180353, 1, 15, 496, '0', 0, 0, -3135.076416015625, -2853.901123046875, 34.74479293823242187, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Brackenwall Village - Difficulty: 0)
|
||||
(@OGUID+40, 180353, 1, 15, 496, '0', 0, 0, -3140.979248046875, -2851.76904296875, 34.49645614624023437, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Brackenwall Village - Difficulty: 0)
|
||||
(@OGUID+41, 195164, 1, 15, 496, '0', 0, 0, -3131.538330078125, -2847.70654296875, 34.66145706176757812, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Brackenwall Village - Difficulty: 0)
|
||||
(@OGUID+42, 195164, 1, 15, 496, '0', 0, 0, -3131.748291015625, -2849.3837890625, 34.72916793823242187, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Brackenwall Village - Difficulty: 0)
|
||||
(@OGUID+43, 195164, 1, 15, 496, '0', 0, 0, -3133.970458984375, -2843.411376953125, 34.32986068725585937, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Brackenwall Village - Difficulty: 0)
|
||||
(@OGUID+44, 195164, 1, 15, 496, '0', 0, 0, -3135.479248046875, -2843.116455078125, 34.31944656372070312, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Brackenwall Village - Difficulty: 0)
|
||||
(@OGUID+45, 195164, 1, 15, 496, '0', 0, 0, -3141.30908203125, -2850.80029296875, 34.49587249755859375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Brackenwall Village - Difficulty: 0)
|
||||
(@OGUID+46, 195164, 1, 15, 496, '0', 0, 0, -3134.1337890625, -2853.41845703125, 34.78125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Brackenwall Village - Difficulty: 0)
|
||||
(@OGUID+47, 195164, 1, 15, 496, '0', 0, 0, -3141.904541015625, -2846.01220703125, 34.53682327270507812, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Brackenwall Village - Difficulty: 0)
|
||||
(@OGUID+48, 195164, 1, 15, 496, '0', 0, 0, -3135.9619140625, -2853.953125, 34.70833206176757812, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Brackenwall Village - Difficulty: 0)
|
||||
(@OGUID+49, 195164, 1, 15, 496, '0', 0, 0, -3140.380126953125, -2852.276123046875, 34.515625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Brackenwall Village - Difficulty: 0)
|
||||
(@OGUID+50, 195164, 1, 15, 496, '0', 0, 0, -3140.944580078125, -2844.66845703125, 34.51215362548828125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Brackenwall Village - Difficulty: 0)
|
||||
(@OGUID+51, 195664, 1, 15, 496, '0', 0, 0, -3137.666748046875, -2848.48095703125, 34.578125, 0, 0, 0, 0, 1, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Brackenwall Village - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+3;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1),
|
||||
(@EVENT, @CGUID+2),
|
||||
(@EVENT, @CGUID+3);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+51;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25),
|
||||
(@EVENT, @OGUID+26),
|
||||
(@EVENT, @OGUID+27),
|
||||
(@EVENT, @OGUID+28),
|
||||
(@EVENT, @OGUID+29),
|
||||
(@EVENT, @OGUID+30),
|
||||
(@EVENT, @OGUID+31),
|
||||
(@EVENT, @OGUID+32),
|
||||
(@EVENT, @OGUID+33),
|
||||
(@EVENT, @OGUID+34),
|
||||
(@EVENT, @OGUID+35),
|
||||
(@EVENT, @OGUID+36),
|
||||
(@EVENT, @OGUID+37),
|
||||
(@EVENT, @OGUID+38),
|
||||
(@EVENT, @OGUID+39),
|
||||
(@EVENT, @OGUID+40),
|
||||
(@EVENT, @OGUID+41),
|
||||
(@EVENT, @OGUID+42),
|
||||
(@EVENT, @OGUID+43),
|
||||
(@EVENT, @OGUID+44),
|
||||
(@EVENT, @OGUID+45),
|
||||
(@EVENT, @OGUID+46),
|
||||
(@EVENT, @OGUID+47),
|
||||
(@EVENT, @OGUID+48),
|
||||
(@EVENT, @OGUID+49),
|
||||
(@EVENT, @OGUID+50),
|
||||
(@EVENT, @OGUID+51);
|
||||
@@ -1,76 +0,0 @@
|
||||
SET @CGUID := 396559;
|
||||
SET @OGUID := 249458;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+2;
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `PhaseGroup`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES
|
||||
(@CGUID+0, 32823, 1, 400, 5041, '0', 0, 0, 0, 0, -6089.18017578125, -3869.889892578125, 6.274813652038574218, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Fizzle & Pozzik's Speedbarge - Difficulty: 0) (Auras: )
|
||||
(@CGUID+1, 34653, 1, 400, 5041, '0', 0, 0, 0, 0, -6092.9501953125, -3879.18994140625, 6.274813652038574218, 2.757620096206665039, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table Hostess (Area: Fizzle & Pozzik's Speedbarge - Difficulty: 0)
|
||||
(@CGUID+2, 34654, 1, 400, 5041, '0', 0, 0, 0, 0, -6097.5, -3875.4599609375, 6.274813652038574218, 5.183627605438232421, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Feast Hostess (Area: Fizzle & Pozzik's Speedbarge - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+25;
|
||||
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, 179968, 1, 400, 5041, '0', 0, 0, -6092.8701171875, -3872.25, 6.191480159759521484, 3.403396368026733398, 0, 0, -0.99144458770751953, 0.130528271198272705, 120, 255, 1, 46741), -- Haystack 01 (Area: Fizzle & Pozzik's Speedbarge - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 1, 400, 5041, '0', 0, 0, -6086.9501953125, -3864.429931640625, 6.191480159759521484, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Fizzle & Pozzik's Speedbarge - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 1, 400, 5041, '0', 0, 0, -6083.1201171875, -3870.64990234375, 6.191480159759521484, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: Fizzle & Pozzik's Speedbarge - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 1, 400, 5041, '0', 0, 0, -6087.43017578125, -3875.429931640625, 6.191480159759521484, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Fizzle & Pozzik's Speedbarge - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 1, 400, 5041, '0', 0, 0, -6082.9599609375, -3869.080078125, 6.191480159759521484, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: Fizzle & Pozzik's Speedbarge - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 1, 400, 5041, '0', 0, 0, -6092.43994140625, -3866.030029296875, 6.191480159759521484, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 46741), -- Haystack 01 (Area: Fizzle & Pozzik's Speedbarge - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 1, 400, 5041, '0', 0, 0, -6093.52001953125, -3867.3701171875, 6.191480159759521484, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Haystack 01 (Area: Fizzle & Pozzik's Speedbarge - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 1, 400, 5041, '0', 0, 0, -6085.7900390625, -3874.93994140625, 6.191480159759521484, 1.989672422409057617, 0, 0, 0.838669776916503906, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: Fizzle & Pozzik's Speedbarge - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 1, 400, 5041, '0', 0, 0, -6091.81982421875, -3873.75, 6.191480159759521484, 1.029743075370788574, 0, 0, 0.492423057556152343, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: Fizzle & Pozzik's Speedbarge - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 1, 400, 5041, '0', 0, 0, -6085.419921875, -3864.830078125, 6.191480159759521484, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Haystack 01 (Area: Fizzle & Pozzik's Speedbarge - Difficulty: 0)
|
||||
(@OGUID+10, 180353, 1, 400, 5041, '0', 0, 0, -6086.58984375, -3875.31005859375, 6.191480159759521484, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Fizzle & Pozzik's Speedbarge - Difficulty: 0)
|
||||
(@OGUID+11, 180353, 1, 400, 5041, '0', 0, 0, -6082.97021484375, -3869.8701171875, 6.191480159759521484, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Fizzle & Pozzik's Speedbarge - Difficulty: 0)
|
||||
(@OGUID+12, 180353, 1, 400, 5041, '0', 0, 0, -6093.18994140625, -3866.530029296875, 6.191480159759521484, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Fizzle & Pozzik's Speedbarge - Difficulty: 0)
|
||||
(@OGUID+13, 180353, 1, 400, 5041, '0', 0, 0, -6086.16015625, -3864.580078125, 6.191480159759521484, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Fizzle & Pozzik's Speedbarge - Difficulty: 0)
|
||||
(@OGUID+14, 180353, 1, 400, 5041, '0', 0, 0, -6092.490234375, -3873.169921875, 6.191480159759521484, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Fizzle & Pozzik's Speedbarge - Difficulty: 0)
|
||||
(@OGUID+15, 195164, 1, 400, 5041, '0', 0, 0, -6087.47900390625, -3875.361083984375, 6.873746395111083984, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Fizzle & Pozzik's Speedbarge - Difficulty: 0)
|
||||
(@OGUID+16, 195164, 1, 400, 5041, '0', 0, 0, -6091.890625, -3873.6806640625, 6.873746395111083984, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Fizzle & Pozzik's Speedbarge - Difficulty: 0)
|
||||
(@OGUID+17, 195164, 1, 400, 5041, '0', 0, 0, -6085.47900390625, -3864.819580078125, 6.873746395111083984, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Fizzle & Pozzik's Speedbarge - Difficulty: 0)
|
||||
(@OGUID+18, 195164, 1, 400, 5041, '0', 0, 0, -6083.26025390625, -3870.7900390625, 6.873746395111083984, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Fizzle & Pozzik's Speedbarge - Difficulty: 0)
|
||||
(@OGUID+19, 195164, 1, 400, 5041, '0', 0, 0, -6083.05029296875, -3869.111083984375, 6.873746395111083984, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Fizzle & Pozzik's Speedbarge - Difficulty: 0)
|
||||
(@OGUID+20, 195164, 1, 400, 5041, '0', 0, 0, -6092.8193359375, -3872.19970703125, 6.873746395111083984, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Fizzle & Pozzik's Speedbarge - Difficulty: 0)
|
||||
(@OGUID+21, 195164, 1, 400, 5041, '0', 0, 0, -6085.6494140625, -3874.819580078125, 6.873746395111083984, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Fizzle & Pozzik's Speedbarge - Difficulty: 0)
|
||||
(@OGUID+22, 195164, 1, 400, 5041, '0', 0, 0, -6086.98974609375, -3864.520751953125, 6.873746395111083984, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Fizzle & Pozzik's Speedbarge - Difficulty: 0)
|
||||
(@OGUID+23, 195164, 1, 400, 5041, '0', 0, 0, -6092.4599609375, -3866.069580078125, 6.873746395111083984, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Fizzle & Pozzik's Speedbarge - Difficulty: 0)
|
||||
(@OGUID+24, 195164, 1, 400, 5041, '0', 0, 0, -6093.42041015625, -3867.420166015625, 6.873746395111083984, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Fizzle & Pozzik's Speedbarge - Difficulty: 0)
|
||||
(@OGUID+25, 195664, 1, 400, 5041, '0', 0, 0, -6089.18017578125, -3869.8798828125, 6.191480159759521484, 0, 0, 0, 0, 1, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Fizzle & Pozzik's Speedbarge - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+2;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1),
|
||||
(@EVENT, @CGUID+2);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+25;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25);
|
||||
@@ -1,90 +0,0 @@
|
||||
SET @CGUID := 396562;
|
||||
SET @OGUID := 249484;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+3;
|
||||
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, 32823, 1, 440, 976, '0', 0, 0, 0, 0, -7070.2099609375, -3826.169921875, 9.26917266845703125, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Gadgetzan - Difficulty: 0)
|
||||
(@CGUID+1, 32823, 1, 440, 976, '0', 0, 0, 0, 0, -7203.52001953125, -3765.3798828125, 8.921873092651367187, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Gadgetzan - Difficulty: 0)
|
||||
(@CGUID+2, 34653, 1, 440, 976, '0', 0, 0, 0, 0, -7196.68994140625, -3764.31005859375, 8.851963043212890625, 5.777040004730224609, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table Hostess (Area: Gadgetzan - Difficulty: 0)
|
||||
(@CGUID+3, 34654, 1, 440, 976, '0', 0, 0, 0, 0, -7075.240234375, -3821.580078125, 9.161672592163085937, 2.460914134979248046, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Feast Hostess (Area: Gadgetzan - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+31;
|
||||
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, 179968, 1, 440, 976, '0', 0, 0, -7072.81982421875, -3823.419921875, 9.185839653015136718, 5.585053920745849609, 0, 0, -0.34202003479003906, 0.939692676067352294, 120, 255, 1, 46741), -- Haystack 01 (Area: Gadgetzan - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 1, 440, 976, '0', 0, 0, -7072.740234375, -3828.139892578125, 9.185850143432617187, 0.558503925800323486, 0, 0, 0.275636672973632812, 0.961261868476867675, 120, 255, 1, 46741), -- Haystack 01 (Area: Gadgetzan - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 1, 440, 976, '0', 0, 0, -7065.3798828125, -3826.070068359375, 9.185839653015136718, 3.159062385559082031, 0, 0, -0.99996185302734375, 0.008734640665352344, 120, 255, 1, 46741), -- Haystack 01 (Area: Gadgetzan - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 1, 440, 976, '0', 0, 0, -7068.259765625, -3829.760009765625, 9.185839653015136718, 1.954769015312194824, 0, 0, 0.829037666320800781, 0.559192776679992675, 120, 255, 1, 46741), -- Haystack 01 (Area: Gadgetzan - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 1, 440, 976, '0', 0, 0, -7067.97021484375, -3822.1298828125, 9.159720420837402343, 4.258606910705566406, 0, 0, -0.84804725646972656, 0.529920578002929687, 120, 255, 1, 46741), -- Haystack 01 (Area: Gadgetzan - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 1, 440, 976, '0', 0, 0, -7198.33984375, -3765.639892578125, 8.810009956359863281, 3.089183330535888671, 0, 0, 0.99965667724609375, 0.026201646775007247, 120, 255, 1, 46741), -- Haystack 01 (Area: Gadgetzan - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 1, 440, 976, '0', 0, 0, -7201.06005859375, -3761.27001953125, 8.987850189208984375, 4.241150379180908203, 0, 0, -0.85264015197753906, 0.522498607635498046, 120, 255, 1, 46741), -- Haystack 01 (Area: Gadgetzan - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 1, 440, 976, '0', 0, 0, -7205.77978515625, -3767.580078125, 8.535389900207519531, 0.610863447189331054, 0, 0, 0.3007049560546875, 0.953717231750488281, 120, 255, 1, 46741), -- Haystack 01 (Area: Gadgetzan - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 1, 440, 976, '0', 0, 0, -7201.4599609375, -3769.260009765625, 8.711529731750488281, 1.85004889965057373, 0, 0, 0.798635482788085937, 0.60181504487991333, 120, 255, 1, 46741), -- Haystack 01 (Area: Gadgetzan - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 1, 440, 976, '0', 0, 0, -7206.33984375, -3762.449951171875, 8.859379768371582031, 5.637413978576660156, 0, 0, -0.31730461120605468, 0.948323667049407958, 120, 255, 1, 46741), -- Haystack 01 (Area: Gadgetzan - Difficulty: 0)
|
||||
(@OGUID+10, 180353, 1, 440, 976, '0', 0, 0, -7073.77001953125, -3822.570068359375, 9.152779579162597656, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Gadgetzan - Difficulty: 0)
|
||||
(@OGUID+11, 180353, 1, 440, 976, '0', 0, 0, -7073.669921875, -3828.5400390625, 9.185850143432617187, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Gadgetzan - Difficulty: 0)
|
||||
(@OGUID+12, 180353, 1, 440, 976, '0', 0, 0, -7067.81005859375, -3830.85009765625, 9.185839653015136718, 3.490667104721069335, 0, 0, -0.98480701446533203, 0.173652306199073791, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Gadgetzan - Difficulty: 0)
|
||||
(@OGUID+13, 180353, 1, 440, 976, '0', 0, 0, -7067.7001953125, -3821.090087890625, 9.099229812622070312, 3.490667104721069335, 0, 0, -0.98480701446533203, 0.173652306199073791, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Gadgetzan - Difficulty: 0)
|
||||
(@OGUID+14, 180353, 1, 440, 976, '0', 0, 0, -7064.1201171875, -3826, 9.185839653015136718, 3.263772249221801757, 0, 0, -0.99813461303710937, 0.061051756143569946, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Gadgetzan - Difficulty: 0)
|
||||
(@OGUID+15, 180353, 1, 440, 976, '0', 0, 0, -7197.43994140625, -3765.679931640625, 8.788129806518554687, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Gadgetzan - Difficulty: 0)
|
||||
(@OGUID+16, 180353, 1, 440, 976, '0', 0, 0, -7206.669921875, -3768.2900390625, 8.401160240173339843, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Gadgetzan - Difficulty: 0)
|
||||
(@OGUID+17, 180353, 1, 440, 976, '0', 0, 0, -7201.009765625, -3770.60009765625, 8.586810111999511718, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Gadgetzan - Difficulty: 0)
|
||||
(@OGUID+18, 180353, 1, 440, 976, '0', 0, 0, -7207.10986328125, -3761.669921875, 8.904509544372558593, 0.069811686873435974, 0, 0, 0.034898757934570312, 0.999390840530395507, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Gadgetzan - Difficulty: 0)
|
||||
(@OGUID+19, 180353, 1, 440, 976, '0', 0, 0, -7200.580078125, -3760.449951171875, 8.96875, 3.490667104721069335, 0, 0, -0.98480701446533203, 0.173652306199073791, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Gadgetzan - Difficulty: 0)
|
||||
(@OGUID+20, 195164, 1, 440, 976, '0', 0, 0, -7072.919921875, -3823.449951171875, 9.89134979248046875, 5.602506637573242187, 0, 0, -0.33380699157714843, 0.942641437053680419, 120, 255, 1, 46741), -- Pumpkin (Area: Gadgetzan - Difficulty: 0)
|
||||
(@OGUID+21, 195164, 1, 440, 976, '0', 0, 0, -7068.06005859375, -3822.159912109375, 9.865229606628417968, 4.276057243347167968, 0, 0, -0.84339141845703125, 0.537299633026123046, 120, 255, 1, 46741), -- Pumpkin (Area: Gadgetzan - Difficulty: 0)
|
||||
(@OGUID+22, 195164, 1, 440, 976, '0', 0, 0, -7068.2998046875, -3829.85009765625, 9.89134979248046875, 1.937312245368957519, 0, 0, 0.824125289916992187, 0.566407561302185058, 120, 255, 1, 46741), -- Pumpkin (Area: Gadgetzan - Difficulty: 0)
|
||||
(@OGUID+23, 195164, 1, 440, 976, '0', 0, 0, -7072.8798828125, -3828.2900390625, 9.89134979248046875, 0.575957298278808593, 0, 0, 0.284014701843261718, 0.958819925785064697, 120, 255, 1, 46741), -- Pumpkin (Area: Gadgetzan - Difficulty: 0)
|
||||
(@OGUID+24, 195164, 1, 440, 976, '0', 0, 0, -7065.52001953125, -3826.219970703125, 9.89134979248046875, 3.141592741012573242, 0, 0, -1, 0, 120, 255, 1, 46741), -- Pumpkin (Area: Gadgetzan - Difficulty: 0)
|
||||
(@OGUID+25, 195164, 1, 440, 976, '0', 0, 0, -7198.39013671875, -3765.570068359375, 9.516889572143554687, 3.141592741012573242, 0, 0, -1, 0, 120, 255, 1, 46741), -- Pumpkin (Area: Gadgetzan - Difficulty: 0)
|
||||
(@OGUID+26, 195164, 1, 440, 976, '0', 0, 0, -7206.25, -3762.5, 9.564889907836914062, 5.637413978576660156, 0, 0, -0.31730461120605468, 0.948323667049407958, 120, 255, 1, 46741), -- Pumpkin (Area: Gadgetzan - Difficulty: 0)
|
||||
(@OGUID+27, 195164, 1, 440, 976, '0', 0, 0, -7205.85009765625, -3767.510009765625, 9.247170448303222656, 0.610863447189331054, 0, 0, 0.3007049560546875, 0.953717231750488281, 120, 255, 1, 46741), -- Pumpkin (Area: Gadgetzan - Difficulty: 0)
|
||||
(@OGUID+28, 195164, 1, 440, 976, '0', 0, 0, -7201.35986328125, -3769.31005859375, 9.414119720458984375, 1.884953022003173828, 0, 0, 0.809016227722167968, 0.587786316871643066, 120, 255, 1, 46741), -- Pumpkin (Area: Gadgetzan - Difficulty: 0)
|
||||
(@OGUID+29, 195164, 1, 440, 976, '0', 0, 0, -7201.080078125, -3761.31005859375, 9.693360328674316406, 4.241150379180908203, 0, 0, -0.85264015197753906, 0.522498607635498046, 120, 255, 1, 46741), -- Pumpkin (Area: Gadgetzan - Difficulty: 0)
|
||||
(@OGUID+30, 195664, 1, 440, 976, '0', 0, 0, -7070.2099609375, -3826.169921875, 9.185839653015136718, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Gadgetzan - Difficulty: 0)
|
||||
(@OGUID+31, 195664, 1, 440, 976, '0', 0, 0, -7203.52001953125, -3765.3798828125, 8.838540077209472656, 0, 0, 0, 0, 1, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Gadgetzan - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+3;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1),
|
||||
(@EVENT, @CGUID+2),
|
||||
(@EVENT, @CGUID+3);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+31;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25),
|
||||
(@EVENT, @OGUID+26),
|
||||
(@EVENT, @OGUID+27),
|
||||
(@EVENT, @OGUID+28),
|
||||
(@EVENT, @OGUID+29),
|
||||
(@EVENT, @OGUID+30),
|
||||
(@EVENT, @OGUID+31);
|
||||
@@ -1,76 +0,0 @@
|
||||
SET @CGUID := 396566;
|
||||
SET @OGUID := 249516;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+2;
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `PhaseGroup`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES
|
||||
(@CGUID+0, 32823, 1, 1377, 3425, '0', 0, 0, 0, 0, -6835.02978515625, 730.1024169921875, 42.25841140747070312, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Cenarion Hold - Difficulty: 0) (Auras: )
|
||||
(@CGUID+1, 34653, 1, 1377, 3425, '0', 0, 0, 0, 0, -6827.3125, 730.4149169921875, 42.51041030883789062, 0.994837641716003417, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table Hostess (Area: Cenarion Hold - Difficulty: 0)
|
||||
(@CGUID+2, 34654, 1, 1377, 3425, '0', 0, 0, 0, 0, -6831.02783203125, 736.32293701171875, 42.11246490478515625, 0.994837641716003417, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Feast Hostess (Area: Cenarion Hold - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+25;
|
||||
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, 179968, 1, 1377, 3425, '0', 0, 0, -6831.27099609375, 735.154541015625, 42.0382080078125, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Haystack 01 (Area: Cenarion Hold - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 1, 1377, 3425, '0', 0, 0, -6828.80712890625, 730.904541015625, 42.34721755981445312, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: Cenarion Hold - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 1, 1377, 3425, '0', 0, 0, -6838.28466796875, 733.9600830078125, 42.09693527221679687, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 46741), -- Haystack 01 (Area: Cenarion Hold - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 1, 1377, 3425, '0', 0, 0, -6831.63525390625, 725.046875, 42.19963836669921875, 1.989672422409057617, 0, 0, 0.838669776916503906, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: Cenarion Hold - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 1, 1377, 3425, '0', 0, 0, -6838.720703125, 727.73785400390625, 42.31250762939453125, 3.403396368026733398, 0, 0, -0.99144458770751953, 0.130528271198272705, 120, 255, 1, 46741), -- Haystack 01 (Area: Cenarion Hold - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 1, 1377, 3425, '0', 0, 0, -6832.80029296875, 735.560791015625, 41.88399887084960937, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Cenarion Hold - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 1, 1377, 3425, '0', 0, 0, -6833.27587890625, 724.560791015625, 42.67011260986328125, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Cenarion Hold - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 1, 1377, 3425, '0', 0, 0, -6837.673828125, 726.23785400390625, 42.35245132446289062, 1.029743075370788574, 0, 0, 0.492423057556152343, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: Cenarion Hold - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 1, 1377, 3425, '0', 0, 0, -6839.36474609375, 732.6163330078125, 42.21748733520507812, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Haystack 01 (Area: Cenarion Hold - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 1, 1377, 3425, '0', 0, 0, -6828.97216796875, 729.342041015625, 42.3350830078125, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: Cenarion Hold - Difficulty: 0)
|
||||
(@OGUID+10, 180353, 1, 1377, 3425, '0', 0, 0, -6832.01220703125, 735.41143798828125, 41.95886611938476562, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Cenarion Hold - Difficulty: 0)
|
||||
(@OGUID+11, 180353, 1, 1377, 3425, '0', 0, 0, -6828.8193359375, 730.11981201171875, 42.34548187255859375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Cenarion Hold - Difficulty: 0)
|
||||
(@OGUID+12, 180353, 1, 1377, 3425, '0', 0, 0, -6838.34228515625, 726.81427001953125, 42.34897232055664062, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Cenarion Hold - Difficulty: 0)
|
||||
(@OGUID+13, 180353, 1, 1377, 3425, '0', 0, 0, -6839.03662109375, 733.453125, 42.16347122192382812, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Cenarion Hold - Difficulty: 0)
|
||||
(@OGUID+14, 180353, 1, 1377, 3425, '0', 0, 0, -6832.439453125, 724.68231201171875, 42.40452194213867187, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Cenarion Hold - Difficulty: 0)
|
||||
(@OGUID+15, 195164, 1, 1377, 3425, '0', 0, 0, -6831.33349609375, 735.171875, 42.71996307373046875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Cenarion Hold - Difficulty: 0)
|
||||
(@OGUID+16, 195164, 1, 1377, 3425, '0', 0, 0, -6828.90087890625, 730.87677001953125, 43.03228378295898437, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Cenarion Hold - Difficulty: 0)
|
||||
(@OGUID+17, 195164, 1, 1377, 3425, '0', 0, 0, -6829.111328125, 729.19964599609375, 43.01491546630859375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Cenarion Hold - Difficulty: 0)
|
||||
(@OGUID+18, 195164, 1, 1377, 3425, '0', 0, 0, -6833.32470703125, 724.63018798828125, 43.36900711059570312, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Cenarion Hold - Difficulty: 0)
|
||||
(@OGUID+19, 195164, 1, 1377, 3425, '0', 0, 0, -6839.267578125, 732.5711669921875, 42.89789199829101562, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Cenarion Hold - Difficulty: 0)
|
||||
(@OGUID+20, 195164, 1, 1377, 3425, '0', 0, 0, -6837.7431640625, 726.30731201171875, 43.04446029663085937, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Cenarion Hold - Difficulty: 0)
|
||||
(@OGUID+21, 195164, 1, 1377, 3425, '0', 0, 0, -6838.671875, 727.78302001953125, 43.00104522705078125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Cenarion Hold - Difficulty: 0)
|
||||
(@OGUID+22, 195164, 1, 1377, 3425, '0', 0, 0, -6831.49658203125, 725.1649169921875, 42.86907958984375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Cenarion Hold - Difficulty: 0)
|
||||
(@OGUID+23, 195164, 1, 1377, 3425, '0', 0, 0, -6838.30712890625, 733.9149169921875, 42.7890472412109375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Cenarion Hold - Difficulty: 0)
|
||||
(@OGUID+24, 195164, 1, 1377, 3425, '0', 0, 0, -6832.84228515625, 735.467041015625, 42.57432174682617187, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Cenarion Hold - Difficulty: 0)
|
||||
(@OGUID+25, 195664, 1, 1377, 3425, '0', 0, 0, -6835.02978515625, 730.1024169921875, 42.1750946044921875, 0, 0, 0, 0, 1, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Cenarion Hold - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+2;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1),
|
||||
(@EVENT, @CGUID+2);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+25;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25);
|
||||
@@ -1,74 +0,0 @@
|
||||
SET @CGUID := 396569;
|
||||
SET @OGUID := 249542;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+1;
|
||||
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, 32823, 530, 3433, 3488, '0', 0, 0, 0, 0, 7584.57275390625, -6763.36962890625, 86.72222900390625, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Tranquillien - Difficulty: 0) (Auras: )
|
||||
(@CGUID+1, 34654, 530, 3433, 3488, '0', 0, 0, 0, 0, 7580.23095703125, -6769.03662109375, 86.875, 4.502949237823486328, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Feast Hostess (Area: Tranquillien - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+25;
|
||||
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, 179968, 530, 3433, 3488, '0', 0, 0, 7582.15283203125, -6767.5712890625, 86.64583587646484375, 1.029743075370788574, 0, 0, 0.492423057556152343, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: Tranquillien - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 530, 3433, 3488, '0', 0, 0, 7588.36474609375, -6768.595703125, 86.36458587646484375, 1.989672422409057617, 0, 0, 0.838669776916503906, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: Tranquillien - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 530, 3433, 3488, '0', 0, 0, 7585.71337890625, -6769.0400390625, 86.43064117431640625, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Tranquillien - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 530, 3433, 3488, '0', 0, 0, 7586.58837890625, -6757.90087890625, 87.3211822509765625, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Tranquillien - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 530, 3433, 3488, '0', 0, 0, 7591.1181640625, -6762.20654296875, 87.14409637451171875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: Tranquillien - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 530, 3433, 3488, '0', 0, 0, 7580.8818359375, -6765.734375, 86.798614501953125, 3.43830275535583496, 0, 0, -0.98901557922363281, 0.147811368107795715, 120, 255, 1, 46741), -- Haystack 01 (Area: Tranquillien - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 530, 3433, 3488, '0', 0, 0, 7591.14599609375, -6764.564453125, 86.82465362548828125, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: Tranquillien - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 530, 3433, 3488, '0', 0, 0, 7581.83349609375, -6759.046875, 87.03472137451171875, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 46741), -- Haystack 01 (Area: Tranquillien - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 530, 3433, 3488, '0', 0, 0, 7579.91845703125, -6761.18212890625, 87.26041412353515625, 5.794494152069091796, 0, 0, -0.24192142486572265, 0.970295846462249755, 120, 255, 1, 46741), -- Haystack 01 (Area: Tranquillien - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 530, 3433, 3488, '0', 0, 0, 7588.6005859375, -6758.54150390625, 87.3975677490234375, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Haystack 01 (Area: Tranquillien - Difficulty: 0)
|
||||
(@OGUID+10, 180353, 530, 3433, 3488, '0', 0, 0, 7587.1650390625, -6768.7900390625, 86.4017181396484375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Tranquillien - Difficulty: 0)
|
||||
(@OGUID+11, 180353, 530, 3433, 3488, '0', 0, 0, 7581.26220703125, -6766.658203125, 86.71353912353515625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Tranquillien - Difficulty: 0)
|
||||
(@OGUID+12, 180353, 530, 3433, 3488, '0', 0, 0, 7591.18212890625, -6763.3212890625, 86.98784637451171875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Tranquillien - Difficulty: 0)
|
||||
(@OGUID+13, 180353, 530, 3433, 3488, '0', 0, 0, 7587.59033203125, -6758.06103515625, 87.375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Tranquillien - Difficulty: 0)
|
||||
(@OGUID+14, 180353, 530, 3433, 3488, '0', 0, 0, 7580.6181640625, -6759.95654296875, 87.1336822509765625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Tranquillien - Difficulty: 0)
|
||||
(@OGUID+15, 195164, 530, 3433, 3488, '0', 0, 0, 7582.0849609375, -6767.501953125, 87.35654449462890625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Tranquillien - Difficulty: 0)
|
||||
(@OGUID+16, 195164, 530, 3433, 3488, '0', 0, 0, 7585.6630859375, -6768.970703125, 87.1362457275390625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Tranquillien - Difficulty: 0)
|
||||
(@OGUID+17, 195164, 530, 3433, 3488, '0', 0, 0, 7588.50537109375, -6768.4775390625, 87.0614013671875, 2.635444164276123046, 0, 0, 0.96814727783203125, 0.250381410121917724, 120, 255, 1, 46741), -- Pumpkin (Area: Tranquillien - Difficulty: 0)
|
||||
(@OGUID+18, 195164, 530, 3433, 3488, '0', 0, 0, 7581.814453125, -6759.09228515625, 87.7402191162109375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Tranquillien - Difficulty: 0)
|
||||
(@OGUID+19, 195164, 530, 3433, 3488, '0', 0, 0, 7591.02587890625, -6762.234375, 87.83744049072265625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Tranquillien - Difficulty: 0)
|
||||
(@OGUID+20, 195164, 530, 3433, 3488, '0', 0, 0, 7586.546875, -6757.99462890625, 87.99716949462890625, 4.223697185516357421, 0, 0, -0.85716724395751953, 0.515038192272186279, 120, 255, 1, 46741), -- Pumpkin (Area: Tranquillien - Difficulty: 0)
|
||||
(@OGUID+21, 195164, 530, 3433, 3488, '0', 0, 0, 7591.0087890625, -6764.70654296875, 87.49542999267578125, 5.113816738128662109, 0, 0, -0.55193614959716796, 0.833886384963989257, 120, 255, 1, 46741), -- Pumpkin (Area: Tranquillien - Difficulty: 0)
|
||||
(@OGUID+22, 195164, 530, 3433, 3488, '0', 0, 0, 7580.015625, -6761.2275390625, 87.94161224365234375, 3.473210096359252929, 0, 0, -0.98628520965576171, 0.165049895644187927, 120, 255, 1, 46741), -- Pumpkin (Area: Tranquillien - Difficulty: 0)
|
||||
(@OGUID+23, 195164, 530, 3433, 3488, '0', 0, 0, 7588.5400390625, -6758.52587890625, 88.1013336181640625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Tranquillien - Difficulty: 0)
|
||||
(@OGUID+24, 195164, 530, 3433, 3488, '0', 0, 0, 7580.9306640625, -6765.689453125, 87.5058441162109375, 3.752462387084960937, 0, 0, -0.95371627807617187, 0.300707906484603881, 120, 255, 1, 46741), -- Pumpkin (Area: Tranquillien - Difficulty: 0)
|
||||
(@OGUID+25, 195664, 530, 3433, 3488, '0', 0, 0, 7584.572265625, -6763.36962890625, 86.63889312744140625, 0, 0, 0, 0, 1, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Tranquillien - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+1;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+25;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25);
|
||||
@@ -1,130 +0,0 @@
|
||||
SET @CGUID := 396571;
|
||||
SET @OGUID := 249568;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+3;
|
||||
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, 32823, 0, 139, 2268, '0', 0, 0, 0, 0, 2243.179931640625, -5314.08984375, 83.017333984375, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Light's Hope Chapel - Difficulty: 0) (Auras: )
|
||||
(@CGUID+1, 32823, 0, 139, 2268, '0', 0, 0, 0, 0, 2302.56005859375, -5274.5400390625, 82.50003814697265625, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Light's Hope Chapel - Difficulty: 0) (Auras: )
|
||||
(@CGUID+2, 34653, 0, 139, 2268, '0', 0, 0, 0, 0, 2251.3701171875, -5312.31005859375, 82.59723663330078125, 0.349065840244293212, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table Hostess (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@CGUID+3, 34654, 0, 139, 2268, '0', 0, 0, 0, 0, 2299.669921875, -5283.85986328125, 82.21863555908203125, 4.450589656829833984, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Feast Hostess (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+51;
|
||||
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, 179968, 0, 139, 2268, '0', 0, 0, 2247.2099609375, -5309.259765625, 82.46700286865234375, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Haystack 01 (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 0, 139, 2268, '0', 0, 0, 2245.18994140625, -5308.6201171875, 82.26219940185546875, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 0, 139, 2268, '0', 0, 0, 2249.75, -5315.27978515625, 82.22650146484375, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 0, 139, 2268, '0', 0, 0, 2249.72998046875, -5312.919921875, 82.62619781494140625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 0, 139, 2268, '0', 0, 0, 2246.969970703125, -5319.31005859375, 82.2173004150390625, 1.989672422409057617, 0, 0, 0.838669776916503906, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 0, 139, 2268, '0', 0, 0, 2240.760009765625, -5318.2900390625, 82.52359771728515625, 1.029743075370788574, 0, 0, 0.492423057556152343, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 0, 139, 2268, '0', 0, 0, 2238.52001953125, -5311.89990234375, 82.51039886474609375, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Haystack 01 (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 0, 139, 2268, '0', 0, 0, 2297.89990234375, -5272.35009765625, 82.053802490234375, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Haystack 01 (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 0, 139, 2268, '0', 0, 0, 2300.139892578125, -5278.740234375, 81.8144989013671875, 1.029743075370788574, 0, 0, 0.492423057556152343, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 0, 139, 2268, '0', 0, 0, 2298.8701171875, -5276.89990234375, 81.85070037841796875, 3.403396368026733398, 0, 0, -0.99144458770751953, 0.130528271198272705, 120, 255, 1, 46741), -- Haystack 01 (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+10, 179968, 0, 139, 2268, '0', 0, 0, 2240.43994140625, -5309.759765625, 82.44439697265625, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 46741), -- Haystack 01 (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+11, 179968, 0, 139, 2268, '0', 0, 0, 2239.489990234375, -5316.4501953125, 82.64929962158203125, 3.403396368026733398, 0, 0, -0.99144458770751953, 0.130528271198272705, 120, 255, 1, 46741), -- Haystack 01 (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+12, 179968, 0, 139, 2268, '0', 0, 0, 2244.320068359375, -5319.759765625, 82.258697509765625, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+13, 179968, 0, 139, 2268, '0', 0, 0, 2303.699951171875, -5280.2099609375, 81.98960113525390625, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+14, 179968, 0, 139, 2268, '0', 0, 0, 2309.1298828125, -5275.72998046875, 82.6024017333984375, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+15, 179968, 0, 139, 2268, '0', 0, 0, 2306.590087890625, -5269.7099609375, 83.05899810791015625, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Haystack 01 (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+16, 179968, 0, 139, 2268, '0', 0, 0, 2299.820068359375, -5270.22021484375, 82.63719940185546875, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 46741), -- Haystack 01 (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+17, 179968, 0, 139, 2268, '0', 0, 0, 2306.35009765625, -5279.759765625, 82.03350067138671875, 1.989672422409057617, 0, 0, 0.838669776916503906, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+18, 179968, 0, 139, 2268, '0', 0, 0, 2304.570068359375, -5269.06982421875, 83.00350189208984375, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+19, 179968, 0, 139, 2268, '0', 0, 0, 2309.110107421875, -5273.3798828125, 82.8177032470703125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+20, 180353, 0, 139, 2268, '0', 0, 0, 2246.199951171875, -5308.77978515625, 82.2917022705078125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+21, 180353, 0, 139, 2268, '0', 0, 0, 2249.7900390625, -5314.0400390625, 82.43979644775390625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+22, 180353, 0, 139, 2268, '0', 0, 0, 2239.22998046875, -5310.669921875, 82.43060302734375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+23, 180353, 0, 139, 2268, '0', 0, 0, 2245.77001953125, -5319.509765625, 82.3385009765625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+24, 180353, 0, 139, 2268, '0', 0, 0, 2299.25, -5277.830078125, 81.821197509765625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+25, 180353, 0, 139, 2268, '0', 0, 0, 2239.8701171875, -5317.3798828125, 82.60590362548828125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+26, 180353, 0, 139, 2268, '0', 0, 0, 2298.610107421875, -5271.1298828125, 82.3610992431640625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+27, 180353, 0, 139, 2268, '0', 0, 0, 2309.169921875, -5274.490234375, 82.7239990234375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+28, 180353, 0, 139, 2268, '0', 0, 0, 2305.580078125, -5269.22998046875, 83.04509735107421875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+29, 180353, 0, 139, 2268, '0', 0, 0, 2305.14990234375, -5279.9599609375, 81.98960113525390625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+30, 195164, 0, 139, 2268, '0', 0, 0, 2247.199951171875, -5309.33984375, 83.1009979248046875, 6.265733242034912109, 0, 0, -0.00872611999511718, 0.999961912631988525, 120, 255, 1, 46741), -- Pumpkin (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+31, 195164, 0, 139, 2268, '0', 0, 0, 2249.699951171875, -5313.0400390625, 83.257598876953125, 6.265733242034912109, 0, 0, -0.00872611999511718, 0.999961912631988525, 120, 255, 1, 46741), -- Pumpkin (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+32, 195164, 0, 139, 2268, '0', 0, 0, 2300.010009765625, -5278.580078125, 82.45999908447265625, 6.265733242034912109, 0, 0, -0.00872611999511718, 0.999961912631988525, 120, 255, 1, 46741), -- Pumpkin (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+33, 195164, 0, 139, 2268, '0', 0, 0, 2240.77001953125, -5318.33984375, 83.174896240234375, 6.265733242034912109, 0, 0, -0.00872611999511718, 0.999961912631988525, 120, 255, 1, 46741), -- Pumpkin (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+34, 195164, 0, 139, 2268, '0', 0, 0, 2244.360107421875, -5319.7998046875, 82.90650177001953125, 6.265733242034912109, 0, 0, -0.00872611999511718, 0.999961912631988525, 120, 255, 1, 46741), -- Pumpkin (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+35, 195164, 0, 139, 2268, '0', 0, 0, 2247.199951171875, -5319.2900390625, 82.856201171875, 6.265733242034912109, 0, 0, -0.00872611999511718, 0.999961912631988525, 120, 255, 1, 46741), -- Pumpkin (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+36, 195164, 0, 139, 2268, '0', 0, 0, 2298.860107421875, -5276.77001953125, 82.49859619140625, 6.265733242034912109, 0, 0, -0.00872611999511718, 0.999961912631988525, 120, 255, 1, 46741), -- Pumpkin (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+37, 195164, 0, 139, 2268, '0', 0, 0, 2249.68994140625, -5315.509765625, 82.83609771728515625, 6.265733242034912109, 0, 0, -0.00872611999511718, 0.999961912631988525, 120, 255, 1, 46741), -- Pumpkin (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+38, 195164, 0, 139, 2268, '0', 0, 0, 2239.6201171875, -5316.52978515625, 83.2913970947265625, 6.265733242034912109, 0, 0, -0.00872611999511718, 0.999961912631988525, 120, 255, 1, 46741), -- Pumpkin (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+39, 195164, 0, 139, 2268, '0', 0, 0, 2240.47998046875, -5309.93017578125, 83.08589935302734375, 6.265733242034912109, 0, 0, -0.00872611999511718, 0.999961912631988525, 120, 255, 1, 46741), -- Pumpkin (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+40, 195164, 0, 139, 2268, '0', 0, 0, 2238.679931640625, -5312.06982421875, 83.16190338134765625, 6.265733242034912109, 0, 0, -0.00872611999511718, 0.999961912631988525, 120, 255, 1, 46741), -- Pumpkin (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+41, 195164, 0, 139, 2268, '0', 0, 0, 2245.199951171875, -5308.81005859375, 82.9225006103515625, 6.265733242034912109, 0, 0, -0.00872611999511718, 0.999961912631988525, 120, 255, 1, 46741), -- Pumpkin (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+42, 195164, 0, 139, 2268, '0', 0, 0, 2297.919921875, -5272.31005859375, 82.703399658203125, 6.265733242034912109, 0, 0, -0.00872611999511718, 0.999961912631988525, 120, 255, 1, 46741), -- Pumpkin (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+43, 195164, 0, 139, 2268, '0', 0, 0, 2304.43994140625, -5269.0498046875, 83.64260101318359375, 6.265733242034912109, 0, 0, -0.00872611999511718, 0.999961912631988525, 120, 255, 1, 46741), -- Pumpkin (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+44, 195164, 0, 139, 2268, '0', 0, 0, 2306.43994140625, -5279.52978515625, 82.67780303955078125, 6.265733242034912109, 0, 0, -0.00872611999511718, 0.999961912631988525, 120, 255, 1, 46741), -- Pumpkin (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+45, 195164, 0, 139, 2268, '0', 0, 0, 2306.43994140625, -5269.580078125, 83.6999969482421875, 6.265733242034912109, 0, 0, -0.00872611999511718, 0.999961912631988525, 120, 255, 1, 46741), -- Pumpkin (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+46, 195164, 0, 139, 2268, '0', 0, 0, 2308.929931640625, -5275.75, 83.22080230712890625, 6.265733242034912109, 0, 0, -0.00872611999511718, 0.999961912631988525, 120, 255, 1, 46741), -- Pumpkin (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+47, 195164, 0, 139, 2268, '0', 0, 0, 2308.93994140625, -5273.27978515625, 83.4586029052734375, 6.265733242034912109, 0, 0, -0.00872611999511718, 0.999961912631988525, 120, 255, 1, 46741), -- Pumpkin (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+48, 195164, 0, 139, 2268, '0', 0, 0, 2303.60009765625, -5280.02978515625, 82.62529754638671875, 6.265733242034912109, 0, 0, -0.00872611999511718, 0.999961912631988525, 120, 255, 1, 46741), -- Pumpkin (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+49, 195164, 0, 139, 2268, '0', 0, 0, 2299.7099609375, -5270.169921875, 83.27459716796875, 6.265733242034912109, 0, 0, -0.00872611999511718, 0.999961912631988525, 120, 255, 1, 46741), -- Pumpkin (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+50, 195664, 0, 139, 2268, '0', 0, 0, 2243.179931640625, -5314.08984375, 82.93399810791015625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
(@OGUID+51, 195664, 0, 139, 2268, '0', 0, 0, 2302.56005859375, -5274.5400390625, 82.4167022705078125, 0, 0, 0, 0, 1, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Light's Hope Chapel - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+3;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1),
|
||||
(@EVENT, @CGUID+2),
|
||||
(@EVENT, @CGUID+3);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+51;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25),
|
||||
(@EVENT, @OGUID+26),
|
||||
(@EVENT, @OGUID+27),
|
||||
(@EVENT, @OGUID+28),
|
||||
(@EVENT, @OGUID+29),
|
||||
(@EVENT, @OGUID+30),
|
||||
(@EVENT, @OGUID+31),
|
||||
(@EVENT, @OGUID+32),
|
||||
(@EVENT, @OGUID+33),
|
||||
(@EVENT, @OGUID+34),
|
||||
(@EVENT, @OGUID+35),
|
||||
(@EVENT, @OGUID+36),
|
||||
(@EVENT, @OGUID+37),
|
||||
(@EVENT, @OGUID+38),
|
||||
(@EVENT, @OGUID+39),
|
||||
(@EVENT, @OGUID+40),
|
||||
(@EVENT, @OGUID+41),
|
||||
(@EVENT, @OGUID+42),
|
||||
(@EVENT, @OGUID+43),
|
||||
(@EVENT, @OGUID+44),
|
||||
(@EVENT, @OGUID+45),
|
||||
(@EVENT, @OGUID+46),
|
||||
(@EVENT, @OGUID+47),
|
||||
(@EVENT, @OGUID+48),
|
||||
(@EVENT, @OGUID+49),
|
||||
(@EVENT, @OGUID+50),
|
||||
(@EVENT, @OGUID+51);
|
||||
@@ -1,74 +0,0 @@
|
||||
SET @CGUID := 396575;
|
||||
SET @OGUID := 249620;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+1;
|
||||
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, 32823, 0, 130, 228, '0', 0, 0, 0, 0, 451.74798583984375, 1528.3599853515625, 133.024322509765625, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: The Sepulcher - Difficulty: 0) (Auras: )
|
||||
(@CGUID+1, 34654, 0, 130, 228, '0', 0, 0, 0, 0, 459.553985595703125, 1527.199951171875, 132.71533203125, 5.672319889068603515, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Feast Hostess (Area: The Sepulcher - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+25;
|
||||
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, 179968, 0, 130, 228, '0', 0, 0, 458.292999267578125, 1529.52001953125, 132.3780059814453125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: The Sepulcher - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 0, 130, 228, '0', 0, 0, 455.7760009765625, 1533.18994140625, 132.447998046875, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Haystack 01 (Area: The Sepulcher - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 0, 130, 228, '0', 0, 0, 453.764007568359375, 1533.8399658203125, 132.5570068359375, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: The Sepulcher - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 0, 130, 228, '0', 0, 0, 452.889007568359375, 1522.699951171875, 132.906005859375, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: The Sepulcher - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 0, 130, 228, '0', 0, 0, 449.009002685546875, 1532.68994140625, 133.2599945068359375, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 46741), -- Haystack 01 (Area: The Sepulcher - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 0, 130, 228, '0', 0, 0, 448.0570068359375, 1526.010009765625, 133.572998046875, 3.403396368026733398, 0, 0, -0.99144458770751953, 0.130528271198272705, 120, 255, 1, 46741), -- Haystack 01 (Area: The Sepulcher - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 0, 130, 228, '0', 0, 0, 449.3280029296875, 1524.1600341796875, 133.4250030517578125, 1.029743075370788574, 0, 0, 0.492423057556152343, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: The Sepulcher - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 0, 130, 228, '0', 0, 0, 458.321014404296875, 1527.1800537109375, 132.6199951171875, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: The Sepulcher - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 0, 130, 228, '0', 0, 0, 447.093994140625, 1530.56005859375, 133.6060028076171875, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Haystack 01 (Area: The Sepulcher - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 0, 130, 228, '0', 0, 0, 455.540008544921875, 1523.1500244140625, 133.0070037841796875, 1.989672422409057617, 0, 0, 0.838669776916503906, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: The Sepulcher - Difficulty: 0)
|
||||
(@OGUID+10, 180353, 0, 130, 228, '0', 0, 0, 458.358001708984375, 1528.4100341796875, 132.4709930419921875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: The Sepulcher - Difficulty: 0)
|
||||
(@OGUID+11, 180353, 0, 130, 228, '0', 0, 0, 454.7659912109375, 1533.6800537109375, 132.4770050048828125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: The Sepulcher - Difficulty: 0)
|
||||
(@OGUID+12, 180353, 0, 130, 228, '0', 0, 0, 448.43798828125, 1525.0799560546875, 133.531005859375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: The Sepulcher - Difficulty: 0)
|
||||
(@OGUID+13, 180353, 0, 130, 228, '0', 0, 0, 447.792999267578125, 1531.77001953125, 133.4770050048828125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: The Sepulcher - Difficulty: 0)
|
||||
(@OGUID+14, 180353, 0, 130, 228, '0', 0, 0, 454.339996337890625, 1522.949951171875, 132.9170074462890625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: The Sepulcher - Difficulty: 0)
|
||||
(@OGUID+15, 195164, 0, 130, 228, '0', 0, 0, 455.714996337890625, 1533.199951171875, 133.1649932861328125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: The Sepulcher - Difficulty: 0)
|
||||
(@OGUID+16, 195164, 0, 130, 228, '0', 0, 0, 458.20098876953125, 1529.510009765625, 133.095001220703125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: The Sepulcher - Difficulty: 0)
|
||||
(@OGUID+17, 195164, 0, 130, 228, '0', 0, 0, 449.260009765625, 1524.22998046875, 134.149993896484375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: The Sepulcher - Difficulty: 0)
|
||||
(@OGUID+18, 195164, 0, 130, 228, '0', 0, 0, 447.191009521484375, 1530.510009765625, 134.3070068359375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: The Sepulcher - Difficulty: 0)
|
||||
(@OGUID+19, 195164, 0, 130, 228, '0', 0, 0, 452.8389892578125, 1522.77001953125, 133.602996826171875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: The Sepulcher - Difficulty: 0)
|
||||
(@OGUID+20, 195164, 0, 130, 228, '0', 0, 0, 455.680999755859375, 1523.260009765625, 133.7089996337890625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: The Sepulcher - Difficulty: 0)
|
||||
(@OGUID+21, 195164, 0, 130, 228, '0', 0, 0, 453.72198486328125, 1533.739990234375, 133.2790069580078125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: The Sepulcher - Difficulty: 0)
|
||||
(@OGUID+22, 195164, 0, 130, 228, '0', 0, 0, 458.183990478515625, 1527.02001953125, 133.3300018310546875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: The Sepulcher - Difficulty: 0)
|
||||
(@OGUID+23, 195164, 0, 130, 228, '0', 0, 0, 448.989990234375, 1532.6500244140625, 133.977996826171875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: The Sepulcher - Difficulty: 0)
|
||||
(@OGUID+24, 195164, 0, 130, 228, '0', 0, 0, 448.105987548828125, 1526.050048828125, 134.2790069580078125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: The Sepulcher - Difficulty: 0)
|
||||
(@OGUID+25, 195664, 0, 130, 228, '0', 0, 0, 451.74798583984375, 1528.3599853515625, 132.9409942626953125, 0, 0, 0, 0, 1, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: The Sepulcher - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+1;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+25;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25);
|
||||
@@ -1,74 +0,0 @@
|
||||
SET @CGUID := 396577;
|
||||
SET @OGUID := 249646;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+1;
|
||||
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, 32823, 0, 267, 272, '0', 0, 0, 0, 0, -60.6094017028808593, -881.36102294921875, 57.18233108520507812, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Tarren Mill - Difficulty: 0) (Auras: )
|
||||
(@CGUID+1, 34654, 0, 267, 272, '0', 0, 0, 0, 0, -52.0416984558105468, -879.2860107421875, 56.73633193969726562, 0.226892799139022827, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Feast Hostess (Area: Tarren Mill - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+25;
|
||||
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, 179968, 0, 267, 272, '0', 0, 0, -56.8176994323730468, -886.5889892578125, 56.7389984130859375, 1.989672422409057617, 0, 0, 0.838669776916503906, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: Tarren Mill - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 0, 267, 272, '0', 0, 0, -54.0364990234375, -882.5560302734375, 56.91910171508789062, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: Tarren Mill - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 0, 267, 272, '0', 0, 0, -54.0642013549804687, -880.20001220703125, 56.90800094604492187, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: Tarren Mill - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 0, 267, 272, '0', 0, 0, -58.5937995910644531, -875.89202880859375, 56.99670028686523437, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Tarren Mill - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 0, 267, 272, '0', 0, 0, -63.0294990539550781, -885.56402587890625, 56.85770034790039062, 1.029743075370788574, 0, 0, 0.492423057556152343, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: Tarren Mill - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 0, 267, 272, '0', 0, 0, -64.3003005981445312, -883.72601318359375, 56.9449005126953125, 3.403396368026733398, 0, 0, -0.99144458770751953, 0.130528271198272705, 120, 255, 1, 46741), -- Haystack 01 (Area: Tarren Mill - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 0, 267, 272, '0', 0, 0, -59.4687995910644531, -887.03302001953125, 56.81600189208984375, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Tarren Mill - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 0, 267, 272, '0', 0, 0, -63.3489990234375, -877.03997802734375, 57.28820037841796875, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 46741), -- Haystack 01 (Area: Tarren Mill - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 0, 267, 272, '0', 0, 0, -56.5051994323730468, -876.50201416015625, 56.89149856567382812, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Haystack 01 (Area: Tarren Mill - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 0, 267, 272, '0', 0, 0, -65.2639007568359375, -879.17401123046875, 57.215301513671875, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Haystack 01 (Area: Tarren Mill - Difficulty: 0)
|
||||
(@OGUID+10, 180353, 0, 267, 272, '0', 0, 0, -54, -881.31402587890625, 56.90990066528320312, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Tarren Mill - Difficulty: 0)
|
||||
(@OGUID+11, 180353, 0, 267, 272, '0', 0, 0, -64.5642013549804687, -877.947998046875, 57.2639007568359375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Tarren Mill - Difficulty: 0)
|
||||
(@OGUID+12, 180353, 0, 267, 272, '0', 0, 0, -57.5919990539550781, -876.05401611328125, 56.96419906616210937, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Tarren Mill - Difficulty: 0)
|
||||
(@OGUID+13, 180353, 0, 267, 272, '0', 0, 0, -63.9201011657714843, -884.6510009765625, 56.88190078735351562, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Tarren Mill - Difficulty: 0)
|
||||
(@OGUID+14, 180353, 0, 267, 272, '0', 0, 0, -58.0173988342285156, -886.78302001953125, 56.81029891967773437, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Tarren Mill - Difficulty: 0)
|
||||
(@OGUID+15, 195164, 0, 267, 272, '0', 0, 0, -54.1735992431640625, -882.70001220703125, 57.5800018310546875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Tarren Mill - Difficulty: 0)
|
||||
(@OGUID+16, 195164, 0, 267, 272, '0', 0, 0, -54.1562995910644531, -880.22698974609375, 57.56499862670898437, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Tarren Mill - Difficulty: 0)
|
||||
(@OGUID+17, 195164, 0, 267, 272, '0', 0, 0, -59.5191001892089843, -886.9639892578125, 57.47340011596679687, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Tarren Mill - Difficulty: 0)
|
||||
(@OGUID+18, 195164, 0, 267, 272, '0', 0, 0, -56.6771011352539062, -886.47100830078125, 57.387298583984375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Tarren Mill - Difficulty: 0)
|
||||
(@OGUID+19, 195164, 0, 267, 272, '0', 0, 0, -64.2517013549804687, -883.6820068359375, 57.60499954223632812, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Tarren Mill - Difficulty: 0)
|
||||
(@OGUID+20, 195164, 0, 267, 272, '0', 0, 0, -56.6423988342285156, -876.51702880859375, 57.570098876953125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Tarren Mill - Difficulty: 0)
|
||||
(@OGUID+21, 195164, 0, 267, 272, '0', 0, 0, -63.097198486328125, -885.49298095703125, 57.512298583984375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Tarren Mill - Difficulty: 0)
|
||||
(@OGUID+22, 195164, 0, 267, 272, '0', 0, 0, -65.1667022705078125, -879.22100830078125, 57.8628997802734375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Tarren Mill - Difficulty: 0)
|
||||
(@OGUID+23, 195164, 0, 267, 272, '0', 0, 0, -58.6353988647460937, -875.98602294921875, 57.6548004150390625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Tarren Mill - Difficulty: 0)
|
||||
(@OGUID+24, 195164, 0, 267, 272, '0', 0, 0, -63.3680992126464843, -877.08502197265625, 57.9375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Tarren Mill - Difficulty: 0)
|
||||
(@OGUID+25, 195664, 0, 267, 272, '0', 0, 0, -60.6094017028808593, -881.36102294921875, 57.0989990234375, 0, 0, 0, 0, 1, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Tarren Mill - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+1;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+25;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25);
|
||||
@@ -1,134 +0,0 @@
|
||||
SET @CGUID := 396579;
|
||||
SET @OGUID := 249672;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+3;
|
||||
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
|
||||
-- Aerie Peak
|
||||
(@CGUID+0, 32823, 0, 47, 349, '0', 0, 0, 0, 0, 263.055572509765625, -2110.77783203125, 120.7434234619140625, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Wildhammer Keep - Difficulty: 0) (Auras: )
|
||||
(@CGUID+1, 34653, 0, 47, 349, '0', 0, 0, 0, 0, 267.329864501953125, -2117.572998046875, 120.9868850708007812, 5.148721218109130859, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table Hostess (Area: Wildhammer Keep - Difficulty: 0)
|
||||
-- Revantusk Village
|
||||
(@CGUID+2, 32823, 0, 47, 3317, '0', 0, 0, 0, 0, -607.1961669921875, -4616.3125, 10.03559494018554687, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Revantusk Village - Difficulty: 0) (Auras: )
|
||||
(@CGUID+3, 34654, 0, 47, 3317, '0', 0, 0, 0, 0, -599.390625, -4617.470703125, 9.891392707824707031, 5.672319889068603515, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Feast Hostess (Area: Revantusk Village - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+51;
|
||||
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
|
||||
-- Aerie Peak
|
||||
(@OGUID+0, 179968, 0, 47, 349, '0', 0, 0, 266.84722900390625, -2116.007080078125, 120.8715286254882812, 1.989672422409057617, 0, 0, 0.838669776916503906, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: Wildhammer Keep - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 0, 47, 349, '0', 0, 0, 269.630218505859375, -2111.973876953125, 120.9878463745117187, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: Wildhammer Keep - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 0, 47, 349, '0', 0, 0, 264.197906494140625, -2116.453125, 120.8559036254882812, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Wildhammer Keep - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 0, 47, 349, '0', 0, 0, 260.31597900390625, -2106.458251953125, 120.4097213745117187, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 46741), -- Haystack 01 (Area: Wildhammer Keep - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 0, 47, 349, '0', 0, 0, 267.15972900390625, -2105.921875, 121.2152786254882812, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Haystack 01 (Area: Wildhammer Keep - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 0, 47, 349, '0', 0, 0, 258.401031494140625, -2108.59375, 120.5726470947265625, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Haystack 01 (Area: Wildhammer Keep - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 0, 47, 349, '0', 0, 0, 259.364593505859375, -2113.14404296875, 120.782989501953125, 3.403396368026733398, 0, 0, -0.99144458770751953, 0.130528271198272705, 120, 255, 1, 46741), -- Haystack 01 (Area: Wildhammer Keep - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 0, 47, 349, '0', 0, 0, 269.6007080078125, -2109.6181640625, 121.2222213745117187, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: Wildhammer Keep - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 0, 47, 349, '0', 0, 0, 260.63714599609375, -2114.982666015625, 120.8906326293945312, 1.029743075370788574, 0, 0, 0.492423057556152343, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: Wildhammer Keep - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 0, 47, 349, '0', 0, 0, 265.071197509765625, -2105.310791015625, 120.876739501953125, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Wildhammer Keep - Difficulty: 0)
|
||||
(@OGUID+10, 180353, 0, 47, 349, '0', 0, 0, 265.6475830078125, -2116.19970703125, 120.8385391235351562, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Wildhammer Keep - Difficulty: 0)
|
||||
(@OGUID+11, 180353, 0, 47, 349, '0', 0, 0, 269.664947509765625, -2110.734375, 121.0486221313476562, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Wildhammer Keep - Difficulty: 0)
|
||||
(@OGUID+12, 180353, 0, 47, 349, '0', 0, 0, 259.744781494140625, -2114.069580078125, 120.8506927490234375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Wildhammer Keep - Difficulty: 0)
|
||||
(@OGUID+13, 180353, 0, 47, 349, '0', 0, 0, 266.072906494140625, -2105.47216796875, 121.0225677490234375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Wildhammer Keep - Difficulty: 0)
|
||||
(@OGUID+14, 180353, 0, 47, 349, '0', 0, 0, 259.1007080078125, -2107.366455078125, 120.5347213745117187, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Wildhammer Keep - Difficulty: 0)
|
||||
(@OGUID+15, 195164, 0, 47, 349, '0', 0, 0, 269.493072509765625, -2112.1181640625, 121.6967086791992187, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Wildhammer Keep - Difficulty: 0)
|
||||
(@OGUID+16, 195164, 0, 47, 349, '0', 0, 0, 266.98785400390625, -2115.88720703125, 121.5873336791992187, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Wildhammer Keep - Difficulty: 0)
|
||||
(@OGUID+17, 195164, 0, 47, 349, '0', 0, 0, 265.029510498046875, -2105.40625, 121.5630264282226562, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Wildhammer Keep - Difficulty: 0)
|
||||
(@OGUID+18, 195164, 0, 47, 349, '0', 0, 0, 264.145843505859375, -2116.382080078125, 121.5560836791992187, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Wildhammer Keep - Difficulty: 0)
|
||||
(@OGUID+19, 195164, 0, 47, 349, '0', 0, 0, 267.0225830078125, -2105.93408203125, 121.8807373046875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Wildhammer Keep - Difficulty: 0)
|
||||
(@OGUID+20, 195164, 0, 47, 349, '0', 0, 0, 258.498260498046875, -2108.638916015625, 121.2765731811523437, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Wildhammer Keep - Difficulty: 0)
|
||||
(@OGUID+21, 195164, 0, 47, 349, '0', 0, 0, 260.296875, -2106.50341796875, 121.1185836791992187, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Wildhammer Keep - Difficulty: 0)
|
||||
(@OGUID+22, 195164, 0, 47, 349, '0', 0, 0, 269.510406494140625, -2109.645751953125, 121.8946304321289062, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Wildhammer Keep - Difficulty: 0)
|
||||
(@OGUID+23, 195164, 0, 47, 349, '0', 0, 0, 259.4132080078125, -2113.100830078125, 121.4849014282226562, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Wildhammer Keep - Difficulty: 0)
|
||||
(@OGUID+24, 195164, 0, 47, 349, '0', 0, 0, 260.567718505859375, -2114.911376953125, 121.5960235595703125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Wildhammer Keep - Difficulty: 0)
|
||||
(@OGUID+25, 195664, 0, 47, 349, '0', 0, 0, 263.055999755859375, -2110.780029296875, 120.660003662109375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Wildhammer Keep - Difficulty: 0)
|
||||
-- Revantusk Village
|
||||
(@OGUID+26, 179968, 0, 47, 3317, '0', 0, 0, -600.65106201171875, -4615.1494140625, 9.866200447082519531, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: Revantusk Village - Difficulty: 0)
|
||||
(@OGUID+27, 179968, 0, 47, 3317, '0', 0, 0, -603.16839599609375, -4611.484375, 9.887152671813964843, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Haystack 01 (Area: Revantusk Village - Difficulty: 0)
|
||||
(@OGUID+28, 179968, 0, 47, 3317, '0', 0, 0, -605.1805419921875, -4610.84375, 9.881151199340820312, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Revantusk Village - Difficulty: 0)
|
||||
(@OGUID+29, 179968, 0, 47, 3317, '0', 0, 0, -600.623291015625, -4617.5068359375, 9.894596099853515625, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: Revantusk Village - Difficulty: 0)
|
||||
(@OGUID+30, 179968, 0, 47, 3317, '0', 0, 0, -610.88714599609375, -4618.67724609375, 10.17881965637207031, 3.403396368026733398, 0, 0, -0.99144458770751953, 0.130528271198272705, 120, 255, 1, 46741), -- Haystack 01 (Area: Revantusk Village - Difficulty: 0)
|
||||
(@OGUID+31, 179968, 0, 47, 3317, '0', 0, 0, -609.6163330078125, -4620.51416015625, 10.14236164093017578, 1.029743075370788574, 0, 0, 0.492423057556152343, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: Revantusk Village - Difficulty: 0)
|
||||
(@OGUID+32, 179968, 0, 47, 3317, '0', 0, 0, -606.0555419921875, -4621.98291015625, 10.07040214538574218, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Revantusk Village - Difficulty: 0)
|
||||
(@OGUID+33, 179968, 0, 47, 3317, '0', 0, 0, -603.404541015625, -4621.5380859375, 10.00694465637207031, 1.989672422409057617, 0, 0, 0.838669776916503906, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: Revantusk Village - Difficulty: 0)
|
||||
(@OGUID+34, 179968, 0, 47, 3317, '0', 0, 0, -611.8507080078125, -4614.125, 9.96187591552734375, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Haystack 01 (Area: Revantusk Village - Difficulty: 0)
|
||||
(@OGUID+35, 179968, 0, 47, 3317, '0', 0, 0, -609.935791015625, -4611.98974609375, 9.911458015441894531, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 46741), -- Haystack 01 (Area: Revantusk Village - Difficulty: 0)
|
||||
(@OGUID+36, 180353, 0, 47, 3317, '0', 0, 0, -600.5867919921875, -4616.26416015625, 9.878147125244140625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Revantusk Village - Difficulty: 0)
|
||||
(@OGUID+37, 180353, 0, 47, 3317, '0', 0, 0, -604.1788330078125, -4611.00341796875, 9.885110855102539062, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Revantusk Village - Difficulty: 0)
|
||||
(@OGUID+38, 180353, 0, 47, 3317, '0', 0, 0, -611.15106201171875, -4612.8994140625, 9.929449081420898437, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Revantusk Village - Difficulty: 0)
|
||||
(@OGUID+39, 180353, 0, 47, 3317, '0', 0, 0, -610.5069580078125, -4619.6005859375, 10.16666698455810546, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Revantusk Village - Difficulty: 0)
|
||||
(@OGUID+40, 180353, 0, 47, 3317, '0', 0, 0, -604.60418701171875, -4621.73291015625, 10.02672290802001953, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Revantusk Village - Difficulty: 0)
|
||||
(@OGUID+41, 195164, 0, 47, 3317, '0', 0, 0, -600.7430419921875, -4615.17724609375, 10.5774078369140625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Revantusk Village - Difficulty: 0)
|
||||
(@OGUID+42, 195164, 0, 47, 3317, '0', 0, 0, -605.22222900390625, -4610.9375, 10.58710289001464843, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Revantusk Village - Difficulty: 0)
|
||||
(@OGUID+43, 195164, 0, 47, 3317, '0', 0, 0, -609.68402099609375, -4620.4443359375, 10.84650516510009765, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Revantusk Village - Difficulty: 0)
|
||||
(@OGUID+44, 195164, 0, 47, 3317, '0', 0, 0, -606.10589599609375, -4621.9130859375, 10.77658557891845703, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Revantusk Village - Difficulty: 0)
|
||||
(@OGUID+45, 195164, 0, 47, 3317, '0', 0, 0, -611.75347900390625, -4614.17041015625, 10.66797447204589843, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Revantusk Village - Difficulty: 0)
|
||||
(@OGUID+46, 195164, 0, 47, 3317, '0', 0, 0, -603.22918701171875, -4611.46875, 10.58974933624267578, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Revantusk Village - Difficulty: 0)
|
||||
(@OGUID+47, 195164, 0, 47, 3317, '0', 0, 0, -603.263916015625, -4621.42041015625, 10.70130729675292968, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Revantusk Village - Difficulty: 0)
|
||||
(@OGUID+48, 195164, 0, 47, 3317, '0', 0, 0, -609.95489501953125, -4612.03466796875, 10.61386585235595703, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Revantusk Village - Difficulty: 0)
|
||||
(@OGUID+49, 195164, 0, 47, 3317, '0', 0, 0, -610.83856201171875, -4618.6318359375, 10.88643646240234375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Revantusk Village - Difficulty: 0)
|
||||
(@OGUID+50, 195164, 0, 47, 3317, '0', 0, 0, -600.76043701171875, -4617.6494140625, 10.60738754272460937, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Revantusk Village - Difficulty: 0)
|
||||
(@OGUID+51, 195664, 0, 47, 3317, '0', 0, 0, -607.19598388671875, -4616.31005859375, 9.952260017395019531, 0, 0, 0, 0, 1, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Revantusk Village - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+3;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1),
|
||||
(@EVENT, @CGUID+2),
|
||||
(@EVENT, @CGUID+3);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+51;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25),
|
||||
(@EVENT, @OGUID+26),
|
||||
(@EVENT, @OGUID+27),
|
||||
(@EVENT, @OGUID+28),
|
||||
(@EVENT, @OGUID+29),
|
||||
(@EVENT, @OGUID+30),
|
||||
(@EVENT, @OGUID+31),
|
||||
(@EVENT, @OGUID+32),
|
||||
(@EVENT, @OGUID+33),
|
||||
(@EVENT, @OGUID+34),
|
||||
(@EVENT, @OGUID+35),
|
||||
(@EVENT, @OGUID+36),
|
||||
(@EVENT, @OGUID+37),
|
||||
(@EVENT, @OGUID+38),
|
||||
(@EVENT, @OGUID+39),
|
||||
(@EVENT, @OGUID+40),
|
||||
(@EVENT, @OGUID+41),
|
||||
(@EVENT, @OGUID+42),
|
||||
(@EVENT, @OGUID+43),
|
||||
(@EVENT, @OGUID+44),
|
||||
(@EVENT, @OGUID+45),
|
||||
(@EVENT, @OGUID+46),
|
||||
(@EVENT, @OGUID+47),
|
||||
(@EVENT, @OGUID+48),
|
||||
(@EVENT, @OGUID+49),
|
||||
(@EVENT, @OGUID+50),
|
||||
(@EVENT, @OGUID+51);
|
||||
@@ -1,134 +0,0 @@
|
||||
SET @CGUID := 396583;
|
||||
SET @OGUID := 249724;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+3;
|
||||
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
|
||||
-- Refuge Pointe
|
||||
(@CGUID+0, 32823, 0, 45, 320, '0', 0, 0, 0, 0, -1237.4600830078125, -2522.73095703125, 21.688140869140625, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Refuge Pointe - Difficulty: 0) (Auras: )
|
||||
(@CGUID+1, 34653, 0, 45, 320, '0', 0, 0, 0, 0, -1242.1319580078125, -2525.114501953125, 21.12179374694824218, 3.246312379837036132, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table Hostess (Area: Refuge Pointe - Difficulty: 0)
|
||||
-- Hammerfall
|
||||
(@CGUID+2, 32823, 0, 45, 321, '0', 0, 0, 0, 0, -1020.401123046875, -3561.13720703125, 56.92013931274414062, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Hammerfall - Difficulty: 0) (Auras: )
|
||||
(@CGUID+3, 34654, 0, 45, 321, '0', 0, 0, 0, 0, -1018.70660400390625, -3554.52783203125, 56.4930419921875, 1.326450228691101074, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Feast Hostess (Area: Hammerfall - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+51;
|
||||
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
|
||||
-- Refuge Pointe
|
||||
(@OGUID+0, 179968, 0, 45, 320, '0', 0, 0, -1236.3177490234375, -2528.40625, 21.77256965637207031, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Refuge Pointe - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 0, 45, 320, '0', 0, 0, -1241.154541015625, -2525.09716796875, 21.15277862548828125, 3.403396368026733398, 0, 0, -0.99144458770751953, 0.130528271198272705, 120, 255, 1, 46741), -- Haystack 01 (Area: Refuge Pointe - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 0, 45, 320, '0', 0, 0, -1239.8802490234375, -2526.935791015625, 21.28518104553222656, 1.029743075370788574, 0, 0, 0.492423057556152343, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: Refuge Pointe - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 0, 45, 320, '0', 0, 0, -1230.8853759765625, -2523.927001953125, 22.20486068725585937, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: Refuge Pointe - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 0, 45, 320, '0', 0, 0, -1230.9149169921875, -2521.5712890625, 22.13194465637207031, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: Refuge Pointe - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 0, 45, 320, '0', 0, 0, -1233.35595703125, -2517.875, 21.69270896911621093, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Haystack 01 (Area: Refuge Pointe - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 0, 45, 320, '0', 0, 0, -1240.19970703125, -2518.411376953125, 21.65690040588378906, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 46741), -- Haystack 01 (Area: Refuge Pointe - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 0, 45, 320, '0', 0, 0, -1233.66845703125, -2527.960205078125, 22.07986068725585937, 1.989672422409057617, 0, 0, 0.838669776916503906, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: Refuge Pointe - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 0, 45, 320, '0', 0, 0, -1235.4461669921875, -2517.263916015625, 21.84027862548828125, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Refuge Pointe - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 0, 45, 320, '0', 0, 0, -1242.1146240234375, -2520.546875, 21.27444648742675781, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Haystack 01 (Area: Refuge Pointe - Difficulty: 0)
|
||||
(@OGUID+10, 180353, 0, 45, 320, '0', 0, 0, -1240.7708740234375, -2526.022705078125, 21.19011878967285156, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Refuge Pointe - Difficulty: 0)
|
||||
(@OGUID+11, 180353, 0, 45, 320, '0', 0, 0, -1234.8680419921875, -2528.15283203125, 21.96006965637207031, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Refuge Pointe - Difficulty: 0)
|
||||
(@OGUID+12, 180353, 0, 45, 320, '0', 0, 0, -1230.8524169921875, -2522.6875, 22.18055534362792968, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Refuge Pointe - Difficulty: 0)
|
||||
(@OGUID+13, 180353, 0, 45, 320, '0', 0, 0, -1234.4427490234375, -2517.42529296875, 21.73611068725585937, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Refuge Pointe - Difficulty: 0)
|
||||
(@OGUID+14, 180353, 0, 45, 320, '0', 0, 0, -1241.4149169921875, -2519.319580078125, 21.46396827697753906, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Refuge Pointe - Difficulty: 0)
|
||||
(@OGUID+15, 195164, 0, 45, 320, '0', 0, 0, -1236.3699951171875, -2528.340087890625, 22.41620063781738281, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Refuge Pointe - Difficulty: 0)
|
||||
(@OGUID+16, 195164, 0, 45, 320, '0', 0, 0, -1239.949951171875, -2526.860107421875, 21.92679977416992187, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Refuge Pointe - Difficulty: 0)
|
||||
(@OGUID+17, 195164, 0, 45, 320, '0', 0, 0, -1235.489990234375, -2517.360107421875, 22.4925994873046875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Refuge Pointe - Difficulty: 0)
|
||||
(@OGUID+18, 195164, 0, 45, 320, '0', 0, 0, -1240.219970703125, -2518.4599609375, 22.30159950256347656, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Refuge Pointe - Difficulty: 0)
|
||||
(@OGUID+19, 195164, 0, 45, 320, '0', 0, 0, -1233.530029296875, -2527.840087890625, 22.73740005493164062, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Refuge Pointe - Difficulty: 0)
|
||||
(@OGUID+20, 195164, 0, 45, 320, '0', 0, 0, -1231.02001953125, -2524.070068359375, 22.84679985046386718, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Refuge Pointe - Difficulty: 0)
|
||||
(@OGUID+21, 195164, 0, 45, 320, '0', 0, 0, -1241.0999755859375, -2525.050048828125, 21.80570030212402343, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Refuge Pointe - Difficulty: 0)
|
||||
(@OGUID+22, 195164, 0, 45, 320, '0', 0, 0, -1233.489990234375, -2517.889892578125, 22.34499931335449218, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Refuge Pointe - Difficulty: 0)
|
||||
(@OGUID+23, 195164, 0, 45, 320, '0', 0, 0, -1242.02001953125, -2520.590087890625, 21.93470001220703125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Refuge Pointe - Difficulty: 0)
|
||||
(@OGUID+24, 195164, 0, 45, 320, '0', 0, 0, -1231.010009765625, -2521.60009765625, 22.77039909362792968, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Refuge Pointe - Difficulty: 0)
|
||||
(@OGUID+25, 195664, 0, 45, 320, '0', 0, 0, -1237.4599609375, -2522.72998046875, 21.60479927062988281, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Refuge Pointe - Difficulty: 0)
|
||||
-- Hammerfall
|
||||
(@OGUID+26, 179968, 0, 45, 321, '0', 0, 0, -1018.3853759765625, -3555.66845703125, 56.5973358154296875, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Hammerfall - Difficulty: 0)
|
||||
(@OGUID+27, 179968, 0, 45, 321, '0', 0, 0, -1016.296875, -3556.27783203125, 56.76736068725585937, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Haystack 01 (Area: Hammerfall - Difficulty: 0)
|
||||
(@OGUID+28, 179968, 0, 45, 321, '0', 0, 0, -1023.140625, -3556.81591796875, 56.57509231567382812, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 46741), -- Haystack 01 (Area: Hammerfall - Difficulty: 0)
|
||||
(@OGUID+29, 179968, 0, 45, 321, '0', 0, 0, -1025.0555419921875, -3558.94970703125, 56.84895706176757812, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Haystack 01 (Area: Hammerfall - Difficulty: 0)
|
||||
(@OGUID+30, 179968, 0, 45, 321, '0', 0, 0, -1016.609375, -3566.364501953125, 56.89757156372070312, 1.989672422409057617, 0, 0, 0.838669776916503906, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: Hammerfall - Difficulty: 0)
|
||||
(@OGUID+31, 179968, 0, 45, 321, '0', 0, 0, -1022.82122802734375, -3565.34033203125, 56.60069656372070312, 1.029743075370788574, 0, 0, 0.492423057556152343, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: Hammerfall - Difficulty: 0)
|
||||
(@OGUID+32, 179968, 0, 45, 321, '0', 0, 0, -1013.85589599609375, -3559.975830078125, 56.8211822509765625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: Hammerfall - Difficulty: 0)
|
||||
(@OGUID+33, 179968, 0, 45, 321, '0', 0, 0, -1024.092041015625, -3563.501708984375, 56.74995803833007812, 3.403396368026733398, 0, 0, -0.99144458770751953, 0.130528271198272705, 120, 255, 1, 46741), -- Haystack 01 (Area: Hammerfall - Difficulty: 0)
|
||||
(@OGUID+34, 179968, 0, 45, 321, '0', 0, 0, -1019.2603759765625, -3566.80908203125, 56.6961822509765625, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Hammerfall - Difficulty: 0)
|
||||
(@OGUID+35, 179968, 0, 45, 321, '0', 0, 0, -1013.828125, -3562.33154296875, 56.8211822509765625, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: Hammerfall - Difficulty: 0)
|
||||
(@OGUID+36, 180353, 0, 45, 321, '0', 0, 0, -1017.38372802734375, -3555.829833984375, 56.679840087890625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Hammerfall - Difficulty: 0)
|
||||
(@OGUID+37, 180353, 0, 45, 321, '0', 0, 0, -1024.35595703125, -3557.723876953125, 56.73611068725585937, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Hammerfall - Difficulty: 0)
|
||||
(@OGUID+38, 180353, 0, 45, 321, '0', 0, 0, -1023.7117919921875, -3564.427001953125, 56.67013931274414062, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Hammerfall - Difficulty: 0)
|
||||
(@OGUID+39, 180353, 0, 45, 321, '0', 0, 0, -1017.80902099609375, -3566.55908203125, 56.81423568725585937, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Hammerfall - Difficulty: 0)
|
||||
(@OGUID+40, 180353, 0, 45, 321, '0', 0, 0, -1013.79168701171875, -3561.09033203125, 56.82465362548828125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Hammerfall - Difficulty: 0)
|
||||
(@OGUID+41, 195164, 0, 45, 321, '0', 0, 0, -1023.15972900390625, -3556.861083984375, 57.26248550415039062, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Hammerfall - Difficulty: 0)
|
||||
(@OGUID+42, 195164, 0, 45, 321, '0', 0, 0, -1018.4271240234375, -3555.76220703125, 57.2840118408203125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Hammerfall - Difficulty: 0)
|
||||
(@OGUID+43, 195164, 0, 45, 321, '0', 0, 0, -1016.43402099609375, -3556.29345703125, 57.44196319580078125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Hammerfall - Difficulty: 0)
|
||||
(@OGUID+44, 195164, 0, 45, 321, '0', 0, 0, -1013.96527099609375, -3562.475830078125, 57.50272750854492187, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Hammerfall - Difficulty: 0)
|
||||
(@OGUID+45, 195164, 0, 45, 321, '0', 0, 0, -1022.888916015625, -3565.26904296875, 57.28397750854492187, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Hammerfall - Difficulty: 0)
|
||||
(@OGUID+46, 195164, 0, 45, 321, '0', 0, 0, -1019.310791015625, -3566.739501953125, 57.36977005004882812, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Hammerfall - Difficulty: 0)
|
||||
(@OGUID+47, 195164, 0, 45, 321, '0', 0, 0, -1013.9478759765625, -3560.00341796875, 57.5009918212890625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Hammerfall - Difficulty: 0)
|
||||
(@OGUID+48, 195164, 0, 45, 321, '0', 0, 0, -1024.04345703125, -3563.458251953125, 57.43094253540039062, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Hammerfall - Difficulty: 0)
|
||||
(@OGUID+49, 195164, 0, 45, 321, '0', 0, 0, -1024.9583740234375, -3558.99658203125, 57.52529525756835937, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Hammerfall - Difficulty: 0)
|
||||
(@OGUID+50, 195164, 0, 45, 321, '0', 0, 0, -1016.46881103515625, -3566.24658203125, 57.57217025756835937, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Hammerfall - Difficulty: 0)
|
||||
(@OGUID+51, 195664, 0, 45, 321, '0', 0, 0, -1020.4000244140625, -3561.139892578125, 56.83679962158203125, 0, 0, 0, 0, 1, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Hammerfall - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+3;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1),
|
||||
(@EVENT, @CGUID+2),
|
||||
(@EVENT, @CGUID+3);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+51;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25),
|
||||
(@EVENT, @OGUID+26),
|
||||
(@EVENT, @OGUID+27),
|
||||
(@EVENT, @OGUID+28),
|
||||
(@EVENT, @OGUID+29),
|
||||
(@EVENT, @OGUID+30),
|
||||
(@EVENT, @OGUID+31),
|
||||
(@EVENT, @OGUID+32),
|
||||
(@EVENT, @OGUID+33),
|
||||
(@EVENT, @OGUID+34),
|
||||
(@EVENT, @OGUID+35),
|
||||
(@EVENT, @OGUID+36),
|
||||
(@EVENT, @OGUID+37),
|
||||
(@EVENT, @OGUID+38),
|
||||
(@EVENT, @OGUID+39),
|
||||
(@EVENT, @OGUID+40),
|
||||
(@EVENT, @OGUID+41),
|
||||
(@EVENT, @OGUID+42),
|
||||
(@EVENT, @OGUID+43),
|
||||
(@EVENT, @OGUID+44),
|
||||
(@EVENT, @OGUID+45),
|
||||
(@EVENT, @OGUID+46),
|
||||
(@EVENT, @OGUID+47),
|
||||
(@EVENT, @OGUID+48),
|
||||
(@EVENT, @OGUID+49),
|
||||
(@EVENT, @OGUID+50),
|
||||
(@EVENT, @OGUID+51);
|
||||
@@ -1,74 +0,0 @@
|
||||
SET @CGUID := 396587;
|
||||
SET @OGUID := 249776;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+1;
|
||||
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, 32823, 0, 11, 150, '0', 0, 0, 0, 0, -3825.560791015625, -767.4375, 2.957251548767089843, 4.450589656829833984, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Menethil Harbor - Difficulty: 0)
|
||||
(@CGUID+1, 34653, 0, 11, 150, '0', 0, 0, 0, 0, -3817.270751953125, -768.71875, 2.684742450714111328, 4.450589656829833984, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Table Hostess (Area: Menethil Harbor - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+25;
|
||||
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, 179968, 0, 11, 150, '0', 0, 0, -3828.611083984375, -772.70489501953125, 2.844998121261596679, 4.45059061050415039, 0, 0, -0.79335308074951171, 0.608761727809906005, 120, 255, 1, 46741), -- Haystack 01 (Area: Menethil Harbor - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 0, 11, 150, '0', 0, 0, -3824.421875, -773.11285400390625, 2.709897279739379882, 4.45059061050415039, 0, 0, -0.79335308074951171, 0.608761727809906005, 120, 255, 1, 46741), -- Haystack 01 (Area: Menethil Harbor - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 0, 11, 150, '0', 0, 0, -3821.701416015625, -772.70489501953125, 2.639637947082519531, 5.270895957946777343, 0, 0, -0.48480892181396484, 0.87462007999420166, 120, 255, 1, 46741), -- Haystack 01 (Area: Menethil Harbor - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 0, 11, 150, '0', 0, 0, -3819.010498046875, -766.30731201171875, 2.706299304962158203, 3.560472726821899414, 0, 0, -0.97814750671386718, 0.207912087440490722, 120, 255, 1, 46741), -- Haystack 01 (Area: Menethil Harbor - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 0, 11, 150, '0', 0, 0, -3823.5400390625, -761.97052001953125, 2.938312053680419921, 4.45059061050415039, 0, 0, -0.79335308074951171, 0.608761727809906005, 120, 255, 1, 46741), -- Haystack 01 (Area: Menethil Harbor - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 0, 11, 150, '0', 0, 0, -3828.30029296875, -763.11981201171875, 3.054933786392211914, 5.183629035949707031, 0, 0, -0.52249813079833984, 0.852640450000762939, 120, 255, 1, 46741), -- Haystack 01 (Area: Menethil Harbor - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 0, 11, 150, '0', 0, 0, -3818.83154296875, -768.93402099609375, 2.641748428344726562, 6.14356088638305664, 0, 0, -0.06975555419921875, 0.997564136981964111, 120, 255, 1, 46741), -- Haystack 01 (Area: Menethil Harbor - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 0, 11, 150, '0', 0, 0, -3830.5625, -769.9774169921875, 2.965996742248535156, 3.595378875732421875, 0, 0, -0.97437000274658203, 0.224951311945915222, 120, 255, 1, 46741), -- Haystack 01 (Area: Menethil Harbor - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 0, 11, 150, '0', 0, 0, -3821.451416015625, -762.58160400390625, 2.86163330078125, 4.45059061050415039, 0, 0, -0.79335308074951171, 0.608761727809906005, 120, 255, 1, 46741), -- Haystack 01 (Area: Menethil Harbor - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 0, 11, 150, '0', 0, 0, -3830.48095703125, -764.97918701171875, 3.077862501144409179, 5.619962215423583984, 0, 0, -0.32556724548339843, 0.945518851280212402, 120, 255, 1, 46741), -- Haystack 01 (Area: Menethil Harbor - Difficulty: 0)
|
||||
(@OGUID+10, 180353, 0, 11, 150, '0', 0, 0, -3822.970458984375, -772.857666015625, 2.672941446304321289, 4.45059061050415039, 0, 0, -0.79335308074951171, 0.608761727809906005, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Menethil Harbor - Difficulty: 0)
|
||||
(@OGUID+11, 180353, 0, 11, 150, '0', 0, 0, -3817.970458984375, -767.29339599609375, 2.653890609741210937, 4.45059061050415039, 0, 0, -0.79335308074951171, 0.608761727809906005, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Menethil Harbor - Difficulty: 0)
|
||||
(@OGUID+12, 180353, 0, 11, 150, '0', 0, 0, -3829.510498046875, -763.57989501953125, 3.080736875534057617, 4.45059061050415039, 0, 0, -0.79335308074951171, 0.608761727809906005, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Menethil Harbor - Difficulty: 0)
|
||||
(@OGUID+13, 180353, 0, 11, 150, '0', 0, 0, -3829.770751953125, -771.57989501953125, 2.905548095703125, 4.45059061050415039, 0, 0, -0.79335308074951171, 0.608761727809906005, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Menethil Harbor - Difficulty: 0)
|
||||
(@OGUID+14, 180353, 0, 11, 150, '0', 0, 0, -3822.5400390625, -762.1319580078125, 2.904597043991088867, 4.45059061050415039, 0, 0, -0.79335308074951171, 0.608761727809906005, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Menethil Harbor - Difficulty: 0)
|
||||
(@OGUID+15, 195164, 0, 11, 150, '0', 0, 0, -3821.5712890625, -762.6024169921875, 3.560752153396606445, 4.45059061050415039, 0, 0, -0.79335308074951171, 0.608761727809906005, 120, 255, 1, 46741), -- Pumpkin (Area: Menethil Harbor - Difficulty: 0)
|
||||
(@OGUID+16, 195164, 0, 11, 150, '0', 0, 0, -3828.28125, -763.17364501953125, 3.749126911163330078, 5.183629035949707031, 0, 0, -0.52249813079833984, 0.852640450000762939, 120, 255, 1, 46741), -- Pumpkin (Area: Menethil Harbor - Difficulty: 0)
|
||||
(@OGUID+17, 195164, 0, 11, 150, '0', 0, 0, -3830.473876953125, -769.89239501953125, 3.626624584197998046, 3.595378875732421875, 0, 0, -0.97437000274658203, 0.224951311945915222, 120, 255, 1, 46741), -- Pumpkin (Area: Menethil Harbor - Difficulty: 0)
|
||||
(@OGUID+18, 195164, 0, 11, 150, '0', 0, 0, -3824.451416015625, -773.05035400390625, 3.408217668533325195, 4.45059061050415039, 0, 0, -0.79335308074951171, 0.608761727809906005, 120, 255, 1, 46741), -- Pumpkin (Area: Menethil Harbor - Difficulty: 0)
|
||||
(@OGUID+19, 195164, 0, 11, 150, '0', 0, 0, -3828.671875, -772.64581298828125, 3.544173479080200195, 4.45059061050415039, 0, 0, -0.79335308074951171, 0.608761727809906005, 120, 255, 1, 46741), -- Pumpkin (Area: Menethil Harbor - Difficulty: 0)
|
||||
(@OGUID+20, 195164, 0, 11, 150, '0', 0, 0, -3830.401123046875, -764.90277099609375, 3.77321028709411621, 5.619962215423583984, 0, 0, -0.32556724548339843, 0.945518851280212402, 120, 255, 1, 46741), -- Pumpkin (Area: Menethil Harbor - Difficulty: 0)
|
||||
(@OGUID+21, 195164, 0, 11, 150, '0', 0, 0, -3818.826416015625, -769.04864501953125, 3.32099461555480957, 6.14356088638305664, 0, 0, -0.06975555419921875, 0.997564136981964111, 120, 255, 1, 46741), -- Pumpkin (Area: Menethil Harbor - Difficulty: 0)
|
||||
(@OGUID+22, 195164, 0, 11, 150, '0', 0, 0, -3819.092041015625, -766.28302001953125, 3.40521550178527832, 3.560472726821899414, 0, 0, -0.97814750671386718, 0.207912087440490722, 120, 255, 1, 46741), -- Pumpkin (Area: Menethil Harbor - Difficulty: 0)
|
||||
(@OGUID+23, 195164, 0, 11, 150, '0', 0, 0, -3823.5712890625, -762.076416015625, 3.632828950881958007, 4.45059061050415039, 0, 0, -0.79335308074951171, 0.608761727809906005, 120, 255, 1, 46741), -- Pumpkin (Area: Menethil Harbor - Difficulty: 0)
|
||||
(@OGUID+24, 195164, 0, 11, 150, '0', 0, 0, -3821.69091796875, -772.51739501953125, 3.33957982063293457, 5.270895957946777343, 0, 0, -0.48480892181396484, 0.87462007999420166, 120, 255, 1, 46741), -- Pumpkin (Area: Menethil Harbor - Difficulty: 0)
|
||||
(@OGUID+25, 195664, 0, 11, 150, '0', 0, 0, -3825.560791015625, -767.4375, 2.87391829490661621, 0, 0, 0, 0, 1, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Menethil Harbor - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+1;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+25;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25);
|
||||
@@ -1,74 +0,0 @@
|
||||
SET @CGUID := 396589;
|
||||
SET @OGUID := 249802;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+1;
|
||||
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, 32823, 0, 38, 38, '0', 0, 0, 0, 0, -5379, -2881.03466796875, 340.30322265625, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Loch Modan - Difficulty: 0) (Auras: )
|
||||
(@CGUID+1, 34653, 0, 38, 38, '0', 0, 0, 0, 0, -5387.28662109375, -2881.864501953125, 341.30841064453125, 2.530727386474609375, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Table Hostess (Area: Loch Modan - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+25;
|
||||
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, 179968, 0, 38, 38, '0', 0, 0, -5383.65478515625, -2878.850830078125, 340.96875, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Haystack 01 (Area: Loch Modan - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 0, 38, 38, '0', 0, 0, -5381.73974609375, -2876.71533203125, 340.854156494140625, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 46741), -- Haystack 01 (Area: Loch Modan - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 0, 38, 38, '0', 0, 0, -5382.69287109375, -2883.401123046875, 340.22027587890625, 3.403396368026733398, 0, 0, -0.99144458770751953, 0.130528271198272705, 120, 255, 1, 46741), -- Haystack 01 (Area: Loch Modan - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 0, 38, 38, '0', 0, 0, -5372.455078125, -2879.875, 340.016448974609375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: Loch Modan - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 0, 38, 38, '0', 0, 0, -5376.986328125, -2875.567626953125, 340.470489501953125, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Loch Modan - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 0, 38, 38, '0', 0, 0, -5381.41845703125, -2885.239501953125, 340.40972900390625, 1.029743075370788574, 0, 0, 0.492423057556152343, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: Loch Modan - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 0, 38, 38, '0', 0, 0, -5374.89599609375, -2876.178955078125, 340.2100830078125, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Haystack 01 (Area: Loch Modan - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 0, 38, 38, '0', 0, 0, -5375.20849609375, -2886.263916015625, 340.02777099609375, 1.989672422409057617, 0, 0, 0.838669776916503906, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: Loch Modan - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 0, 38, 38, '0', 0, 0, -5377.85791015625, -2886.710205078125, 340.237152099609375, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Loch Modan - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 0, 38, 38, '0', 0, 0, -5372.42529296875, -2882.23095703125, 339.984375, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: Loch Modan - Difficulty: 0)
|
||||
(@OGUID+10, 180353, 0, 38, 38, '0', 0, 0, -5382.955078125, -2877.623291015625, 340.921875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Loch Modan - Difficulty: 0)
|
||||
(@OGUID+11, 180353, 0, 38, 38, '0', 0, 0, -5376.408203125, -2886.45654296875, 340.11285400390625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Loch Modan - Difficulty: 0)
|
||||
(@OGUID+12, 180353, 0, 38, 38, '0', 0, 0, -5375.98291015625, -2875.729248046875, 340.33160400390625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Loch Modan - Difficulty: 0)
|
||||
(@OGUID+13, 180353, 0, 38, 38, '0', 0, 0, -5372.392578125, -2880.991455078125, 339.994781494140625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Loch Modan - Difficulty: 0)
|
||||
(@OGUID+14, 180353, 0, 38, 38, '0', 0, 0, -5382.31103515625, -2884.326416015625, 340.307098388671875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Loch Modan - Difficulty: 0)
|
||||
(@OGUID+15, 195164, 0, 38, 38, '0', 0, 0, -5381.759765625, -2876.760009765625, 341.510009765625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Loch Modan - Difficulty: 0)
|
||||
(@OGUID+16, 195164, 0, 38, 38, '0', 0, 0, -5383.56005859375, -2878.89990234375, 341.615997314453125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Loch Modan - Difficulty: 0)
|
||||
(@OGUID+17, 195164, 0, 38, 38, '0', 0, 0, -5372.5498046875, -2879.89990234375, 340.67401123046875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Loch Modan - Difficulty: 0)
|
||||
(@OGUID+18, 195164, 0, 38, 38, '0', 0, 0, -5377.91015625, -2886.639892578125, 340.897003173828125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Loch Modan - Difficulty: 0)
|
||||
(@OGUID+19, 195164, 0, 38, 38, '0', 0, 0, -5381.490234375, -2885.169921875, 341.05499267578125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Loch Modan - Difficulty: 0)
|
||||
(@OGUID+20, 195164, 0, 38, 38, '0', 0, 0, -5377.02978515625, -2875.659912109375, 341.123992919921875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Loch Modan - Difficulty: 0)
|
||||
(@OGUID+21, 195164, 0, 38, 38, '0', 0, 0, -5382.64013671875, -2883.360107421875, 340.87200927734375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Loch Modan - Difficulty: 0)
|
||||
(@OGUID+22, 195164, 0, 38, 38, '0', 0, 0, -5375.06982421875, -2886.139892578125, 340.67498779296875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Loch Modan - Difficulty: 0)
|
||||
(@OGUID+23, 195164, 0, 38, 38, '0', 0, 0, -5372.56005859375, -2882.3798828125, 340.6400146484375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Loch Modan - Difficulty: 0)
|
||||
(@OGUID+24, 195164, 0, 38, 38, '0', 0, 0, -5375.02978515625, -2876.18994140625, 340.87200927734375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Loch Modan - Difficulty: 0)
|
||||
(@OGUID+25, 195664, 0, 38, 38, '0', 0, 0, -5379, -2881.030029296875, 340.220001220703125, 0, 0, 0, 0, 1, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Loch Modan - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+1;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+25;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25);
|
||||
@@ -1,74 +0,0 @@
|
||||
SET @CGUID := 396591;
|
||||
SET @OGUID := 249828;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+1;
|
||||
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, 32823, 0, 3, 5565, '0', 0, 0, 0, 0, -6707.72021484375, -2456.89990234375, 272.859344482421875, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: New Kargath - Difficulty: 0) (Auras: )
|
||||
(@CGUID+1, 34654, 0, 3, 5565, '0', 0, 0, 0, 0, -6703.10009765625, -2450.830078125, 272.843353271484375, 1.099557399749755859, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Feast Hostess (Area: New Kargath - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+25;
|
||||
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, 179968, 0, 3, 5565, '0', 0, 0, -6703.6201171875, -2452.0400390625, 272.760009765625, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Haystack 01 (Area: New Kargath - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 0, 3, 5565, '0', 0, 0, -6701.14990234375, -2458.090087890625, 272.760009765625, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: New Kargath - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 0, 3, 5565, '0', 0, 0, -6701.18017578125, -2455.739990234375, 272.760009765625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: New Kargath - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 0, 3, 5565, '0', 0, 0, -6710.14013671875, -2461.10009765625, 272.87799072265625, 1.029743075370788574, 0, 0, 0.492423057556152343, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: New Kargath - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 0, 3, 5565, '0', 0, 0, -6712.3798828125, -2454.7099609375, 273.983001708984375, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Haystack 01 (Area: New Kargath - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 0, 3, 5565, '0', 0, 0, -6706.580078125, -2462.570068359375, 272.75799560546875, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: New Kargath - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 0, 3, 5565, '0', 0, 0, -6711.41015625, -2459.260009765625, 273.20098876953125, 3.403396368026733398, 0, 0, -0.99144458770751953, 0.130528271198272705, 120, 255, 1, 46741), -- Haystack 01 (Area: New Kargath - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 0, 3, 5565, '0', 0, 0, -6705.7099609375, -2451.429931640625, 272.760009765625, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: New Kargath - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 0, 3, 5565, '0', 0, 0, -6703.93017578125, -2462.1298828125, 272.769989013671875, 1.989672422409057617, 0, 0, 0.838669776916503906, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: New Kargath - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 0, 3, 5565, '0', 0, 0, -6710.4599609375, -2452.580078125, 273.37701416015625, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 46741), -- Haystack 01 (Area: New Kargath - Difficulty: 0)
|
||||
(@OGUID+10, 180353, 0, 3, 5565, '0', 0, 0, -6701.10986328125, -2456.85009765625, 272.760009765625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: New Kargath - Difficulty: 0)
|
||||
(@OGUID+11, 180353, 0, 3, 5565, '0', 0, 0, -6711.68017578125, -2453.489990234375, 273.805999755859375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: New Kargath - Difficulty: 0)
|
||||
(@OGUID+12, 180353, 0, 3, 5565, '0', 0, 0, -6711.02978515625, -2460.18994140625, 273.0360107421875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: New Kargath - Difficulty: 0)
|
||||
(@OGUID+13, 180353, 0, 3, 5565, '0', 0, 0, -6704.7099609375, -2451.590087890625, 272.760009765625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: New Kargath - Difficulty: 0)
|
||||
(@OGUID+14, 180353, 0, 3, 5565, '0', 0, 0, -6705.1298828125, -2462.320068359375, 272.7650146484375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: New Kargath - Difficulty: 0)
|
||||
(@OGUID+15, 195164, 0, 3, 5565, '0', 0, 0, -6703.759765625, -2452.06005859375, 273.4010009765625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: New Kargath - Difficulty: 0)
|
||||
(@OGUID+16, 195164, 0, 3, 5565, '0', 0, 0, -6701.27001953125, -2455.77001953125, 273.4010009765625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: New Kargath - Difficulty: 0)
|
||||
(@OGUID+17, 195164, 0, 3, 5565, '0', 0, 0, -6703.7900390625, -2462.010009765625, 273.4110107421875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: New Kargath - Difficulty: 0)
|
||||
(@OGUID+18, 195164, 0, 3, 5565, '0', 0, 0, -6710.2099609375, -2461.030029296875, 273.52301025390625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: New Kargath - Difficulty: 0)
|
||||
(@OGUID+19, 195164, 0, 3, 5565, '0', 0, 0, -6701.2900390625, -2458.239990234375, 273.4010009765625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: New Kargath - Difficulty: 0)
|
||||
(@OGUID+20, 195164, 0, 3, 5565, '0', 0, 0, -6710.47998046875, -2452.6201171875, 274.0260009765625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: New Kargath - Difficulty: 0)
|
||||
(@OGUID+21, 195164, 0, 3, 5565, '0', 0, 0, -6705.75, -2451.52001953125, 273.402008056640625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: New Kargath - Difficulty: 0)
|
||||
(@OGUID+22, 195164, 0, 3, 5565, '0', 0, 0, -6706.6298828125, -2462.5, 273.39801025390625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: New Kargath - Difficulty: 0)
|
||||
(@OGUID+23, 195164, 0, 3, 5565, '0', 0, 0, -6711.35986328125, -2459.219970703125, 273.8380126953125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: New Kargath - Difficulty: 0)
|
||||
(@OGUID+24, 195164, 0, 3, 5565, '0', 0, 0, -6712.27978515625, -2454.760009765625, 274.582000732421875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: New Kargath - Difficulty: 0)
|
||||
(@OGUID+25, 195664, 0, 3, 5565, '0', 0, 0, -6707.72021484375, -2456.89990234375, 272.7760009765625, 0, 0, 0, 0, 1, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: New Kargath - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+1;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+25;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25);
|
||||
@@ -1,134 +0,0 @@
|
||||
SET @CGUID := 396593;
|
||||
SET @OGUID := 249854;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+3;
|
||||
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
|
||||
-- Morgan's Vigil
|
||||
(@CGUID+0, 32823, 0, 46, 2418, '0', 0, 0, 0, 0, -8394.126953125, -2780.55029296875, 194.885406494140625, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Morgan's Vigil - Difficulty: 0) (Auras: )
|
||||
(@CGUID+1, 34653, 0, 46, 2418, '0', 0, 0, 0, 0, -8388.9111328125, -2774.779541015625, 194.25384521484375, 0.733038306236267089, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table Hostess (Area: Morgan's Vigil - Difficulty: 0)
|
||||
-- Flame Crest
|
||||
(@CGUID+2, 32823, 0, 46, 250, '0', 0, 0, 0, 0, -7650.32666015625, -2140.34716796875, 135.62152099609375, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Ruins of Thaurissan - Difficulty: 0) (Auras: )
|
||||
(@CGUID+3, 34654, 0, 46, 250, '0', 0, 0, 0, 0, -7642.24658203125, -2139.220458984375, 135.622955322265625, 0.03490658476948738, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Feast Hostess (Area: Ruins of Thaurissan - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+51;
|
||||
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
|
||||
-- Morgan's Vigil
|
||||
(@OGUID+0, 179968, 0, 46, 2418, '0', 0, 0, -8390.0224609375, -2775.694580078125, 194.4027862548828125, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Haystack 01 (Area: Morgan's Vigil - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 0, 46, 2418, '0', 0, 0, -8398.78125, -2778.366455078125, 194.80035400390625, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Haystack 01 (Area: Morgan's Vigil - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 0, 46, 2418, '0', 0, 0, -8396.8662109375, -2776.23095703125, 194.8125, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 46741), -- Haystack 01 (Area: Morgan's Vigil - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 0, 46, 2418, '0', 0, 0, -8392.11328125, -2775.083251953125, 194.5355072021484375, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Morgan's Vigil - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 0, 46, 2418, '0', 0, 0, -8392.984375, -2786.225830078125, 194.782989501953125, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Morgan's Vigil - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 0, 46, 2418, '0', 0, 0, -8396.546875, -2784.755126953125, 194.796875, 1.029743075370788574, 0, 0, 0.492423057556152343, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: Morgan's Vigil - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 0, 46, 2418, '0', 0, 0, -8390.3349609375, -2785.779541015625, 194.888885498046875, 1.989672422409057617, 0, 0, 0.838669776916503906, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: Morgan's Vigil - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 0, 46, 2418, '0', 0, 0, -8387.58203125, -2779.390625, 194.6215362548828125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: Morgan's Vigil - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 0, 46, 2418, '0', 0, 0, -8397.8193359375, -2782.916748046875, 194.796875, 3.403396368026733398, 0, 0, -0.99144458770751953, 0.130528271198272705, 120, 255, 1, 46741), -- Haystack 01 (Area: Morgan's Vigil - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 0, 46, 2418, '0', 0, 0, -8387.5517578125, -2781.74658203125, 194.81597900390625, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: Morgan's Vigil - Difficulty: 0)
|
||||
(@OGUID+10, 180353, 0, 46, 2418, '0', 0, 0, -8391.109375, -2775.244873046875, 194.4618072509765625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Morgan's Vigil - Difficulty: 0)
|
||||
(@OGUID+11, 180353, 0, 46, 2418, '0', 0, 0, -8398.08203125, -2777.138916015625, 194.796875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Morgan's Vigil - Difficulty: 0)
|
||||
(@OGUID+12, 180353, 0, 46, 2418, '0', 0, 0, -8391.53515625, -2785.97216796875, 194.8333282470703125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Morgan's Vigil - Difficulty: 0)
|
||||
(@OGUID+13, 180353, 0, 46, 2418, '0', 0, 0, -8387.51953125, -2780.507080078125, 194.7100677490234375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Morgan's Vigil - Difficulty: 0)
|
||||
(@OGUID+14, 180353, 0, 46, 2418, '0', 0, 0, -8397.4375, -2783.842041015625, 194.796875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Morgan's Vigil - Difficulty: 0)
|
||||
(@OGUID+15, 195164, 0, 46, 2418, '0', 0, 0, -8392.1533203125, -2775.178955078125, 195.241729736328125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Morgan's Vigil - Difficulty: 0)
|
||||
(@OGUID+16, 195164, 0, 46, 2418, '0', 0, 0, -8387.671875, -2779.41845703125, 195.317657470703125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Morgan's Vigil - Difficulty: 0)
|
||||
(@OGUID+17, 195164, 0, 46, 2418, '0', 0, 0, -8390.1943359375, -2785.65966796875, 195.5897979736328125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Morgan's Vigil - Difficulty: 0)
|
||||
(@OGUID+18, 195164, 0, 46, 2418, '0', 0, 0, -8396.8857421875, -2776.276123046875, 195.50299072265625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Morgan's Vigil - Difficulty: 0)
|
||||
(@OGUID+19, 195164, 0, 46, 2418, '0', 0, 0, -8396.6142578125, -2784.68408203125, 195.48736572265625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Morgan's Vigil - Difficulty: 0)
|
||||
(@OGUID+20, 195164, 0, 46, 2418, '0', 0, 0, -8393.0380859375, -2786.154541015625, 195.4752044677734375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Morgan's Vigil - Difficulty: 0)
|
||||
(@OGUID+21, 195164, 0, 46, 2418, '0', 0, 0, -8390.16015625, -2775.70654296875, 195.107666015625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Morgan's Vigil - Difficulty: 0)
|
||||
(@OGUID+22, 195164, 0, 46, 2418, '0', 0, 0, -8397.76953125, -2782.873291015625, 195.48736572265625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Morgan's Vigil - Difficulty: 0)
|
||||
(@OGUID+23, 195164, 0, 46, 2418, '0', 0, 0, -8398.6845703125, -2778.411376953125, 195.4908294677734375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Morgan's Vigil - Difficulty: 0)
|
||||
(@OGUID+24, 195164, 0, 46, 2418, '0', 0, 0, -8387.689453125, -2781.890625, 195.5272979736328125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Morgan's Vigil - Difficulty: 0)
|
||||
(@OGUID+25, 195664, 0, 46, 2418, '0', 0, 0, -8394.1298828125, -2780.550048828125, 194.802001953125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Morgan's Vigil - Difficulty: 0)
|
||||
-- Flame Crest
|
||||
(@OGUID+26, 179968, 0, 46, 250, '0', 0, 0, -7648.31103515625, -2134.87841796875, 135.5035247802734375, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Ruins of Thaurissan - Difficulty: 0)
|
||||
(@OGUID+27, 179968, 0, 46, 250, '0', 0, 0, -7646.22216796875, -2135.48779296875, 135.5280609130859375, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Haystack 01 (Area: Ruins of Thaurissan - Difficulty: 0)
|
||||
(@OGUID+28, 179968, 0, 46, 250, '0', 0, 0, -7643.78125, -2139.185791015625, 135.5396270751953125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: Ruins of Thaurissan - Difficulty: 0)
|
||||
(@OGUID+29, 179968, 0, 46, 250, '0', 0, 0, -7646.53466796875, -2145.57470703125, 135.482635498046875, 1.989672422409057617, 0, 0, 0.838669776916503906, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: Ruins of Thaurissan - Difficulty: 0)
|
||||
(@OGUID+30, 179968, 0, 46, 250, '0', 0, 0, -7653.06591796875, -2136.026123046875, 135.4325714111328125, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 46741), -- Haystack 01 (Area: Ruins of Thaurissan - Difficulty: 0)
|
||||
(@OGUID+31, 179968, 0, 46, 250, '0', 0, 0, -7649.18603515625, -2146.01904296875, 135.5121612548828125, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Ruins of Thaurissan - Difficulty: 0)
|
||||
(@OGUID+32, 179968, 0, 46, 250, '0', 0, 0, -7654.017578125, -2142.7119140625, 135.5396270751953125, 3.403396368026733398, 0, 0, -0.99144458770751953, 0.130528271198272705, 120, 255, 1, 46741), -- Haystack 01 (Area: Ruins of Thaurissan - Difficulty: 0)
|
||||
(@OGUID+33, 179968, 0, 46, 250, '0', 0, 0, -7652.74658203125, -2144.55029296875, 135.5391845703125, 1.029743075370788574, 0, 0, 0.492423057556152343, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: Ruins of Thaurissan - Difficulty: 0)
|
||||
(@OGUID+34, 179968, 0, 46, 250, '0', 0, 0, -7654.98095703125, -2138.15966796875, 135.5290985107421875, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Haystack 01 (Area: Ruins of Thaurissan - Difficulty: 0)
|
||||
(@OGUID+35, 179968, 0, 46, 250, '0', 0, 0, -7643.75341796875, -2141.541748046875, 135.5396270751953125, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: Ruins of Thaurissan - Difficulty: 0)
|
||||
(@OGUID+36, 180353, 0, 46, 250, '0', 0, 0, -7647.30908203125, -2135.0400390625, 135.532623291015625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Ruins of Thaurissan - Difficulty: 0)
|
||||
(@OGUID+37, 180353, 0, 46, 250, '0', 0, 0, -7643.71728515625, -2140.30029296875, 135.5396270751953125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Ruins of Thaurissan - Difficulty: 0)
|
||||
(@OGUID+38, 180353, 0, 46, 250, '0', 0, 0, -7647.734375, -2145.76904296875, 135.4951019287109375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Ruins of Thaurissan - Difficulty: 0)
|
||||
(@OGUID+39, 180353, 0, 46, 250, '0', 0, 0, -7654.28125, -2136.93408203125, 135.4705047607421875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Ruins of Thaurissan - Difficulty: 0)
|
||||
(@OGUID+40, 180353, 0, 46, 250, '0', 0, 0, -7653.63720703125, -2143.63720703125, 135.5396270751953125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Ruins of Thaurissan - Difficulty: 0)
|
||||
(@OGUID+41, 195164, 0, 46, 250, '0', 0, 0, -7643.87353515625, -2139.213623046875, 136.2120208740234375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Ruins of Thaurissan - Difficulty: 0)
|
||||
(@OGUID+42, 195164, 0, 46, 250, '0', 0, 0, -7646.359375, -2135.50341796875, 136.2015380859375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Ruins of Thaurissan - Difficulty: 0)
|
||||
(@OGUID+43, 195164, 0, 46, 250, '0', 0, 0, -7646.39404296875, -2145.45654296875, 136.155029296875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Ruins of Thaurissan - Difficulty: 0)
|
||||
(@OGUID+44, 195164, 0, 46, 250, '0', 0, 0, -7649.236328125, -2145.94970703125, 136.188018798828125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Ruins of Thaurissan - Difficulty: 0)
|
||||
(@OGUID+45, 195164, 0, 46, 250, '0', 0, 0, -7654.8837890625, -2138.20654296875, 136.203643798828125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Ruins of Thaurissan - Difficulty: 0)
|
||||
(@OGUID+46, 195164, 0, 46, 250, '0', 0, 0, -7652.814453125, -2144.479248046875, 136.2120208740234375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Ruins of Thaurissan - Difficulty: 0)
|
||||
(@OGUID+47, 195164, 0, 46, 250, '0', 0, 0, -7648.3525390625, -2134.97216796875, 136.178863525390625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Ruins of Thaurissan - Difficulty: 0)
|
||||
(@OGUID+48, 195164, 0, 46, 250, '0', 0, 0, -7653.0849609375, -2136.0712890625, 136.1085052490234375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Ruins of Thaurissan - Difficulty: 0)
|
||||
(@OGUID+49, 195164, 0, 46, 250, '0', 0, 0, -7643.890625, -2141.685791015625, 136.211944580078125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Ruins of Thaurissan - Difficulty: 0)
|
||||
(@OGUID+50, 195164, 0, 46, 250, '0', 0, 0, -7653.96875, -2142.66845703125, 136.2120208740234375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Ruins of Thaurissan - Difficulty: 0)
|
||||
(@OGUID+51, 195664, 0, 46, 250, '0', 0, 0, -7650.330078125, -2140.35009765625, 135.537994384765625, 0, 0, 0, 0, 1, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Ruins of Thaurissan - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+3;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1),
|
||||
(@EVENT, @CGUID+2),
|
||||
(@EVENT, @CGUID+3);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+51;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25),
|
||||
(@EVENT, @OGUID+26),
|
||||
(@EVENT, @OGUID+27),
|
||||
(@EVENT, @OGUID+28),
|
||||
(@EVENT, @OGUID+29),
|
||||
(@EVENT, @OGUID+30),
|
||||
(@EVENT, @OGUID+31),
|
||||
(@EVENT, @OGUID+32),
|
||||
(@EVENT, @OGUID+33),
|
||||
(@EVENT, @OGUID+34),
|
||||
(@EVENT, @OGUID+35),
|
||||
(@EVENT, @OGUID+36),
|
||||
(@EVENT, @OGUID+37),
|
||||
(@EVENT, @OGUID+38),
|
||||
(@EVENT, @OGUID+39),
|
||||
(@EVENT, @OGUID+40),
|
||||
(@EVENT, @OGUID+41),
|
||||
(@EVENT, @OGUID+42),
|
||||
(@EVENT, @OGUID+43),
|
||||
(@EVENT, @OGUID+44),
|
||||
(@EVENT, @OGUID+45),
|
||||
(@EVENT, @OGUID+46),
|
||||
(@EVENT, @OGUID+47),
|
||||
(@EVENT, @OGUID+48),
|
||||
(@EVENT, @OGUID+49),
|
||||
(@EVENT, @OGUID+50),
|
||||
(@EVENT, @OGUID+51);
|
||||
@@ -1,74 +0,0 @@
|
||||
SET @CGUID := 396597;
|
||||
SET @OGUID := 249906;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+1;
|
||||
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, 32823, 0, 44, 69, '0', 0, 0, 0, 0, -9305.8095703125, -2329.3798828125, 61.32783126831054687, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Lakeshire - Difficulty: 0)
|
||||
(@CGUID+1, 34653, 0, 44, 69, '0', 0, 0, 0, 0, -9301.2099609375, -2322.8701171875, 61.32783126831054687, 0.890117883682250976, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Table Hostess (Area: Lakeshire - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+25;
|
||||
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, 179968, 0, 44, 69, '0', 0, 0, -9299.240234375, -2330.570068359375, 61.24449920654296875, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: Lakeshire - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 0, 44, 69, '0', 0, 0, -9301.7099609375, -2324.52001953125, 61.24449920654296875, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Haystack 01 (Area: Lakeshire - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 0, 44, 69, '0', 0, 0, -9299.26953125, -2328.219970703125, 61.24449920654296875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: Lakeshire - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 0, 44, 69, '0', 0, 0, -9310.4697265625, -2327.18994140625, 61.24449920654296875, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Haystack 01 (Area: Lakeshire - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 0, 44, 69, '0', 0, 0, -9302.01953125, -2334.610107421875, 61.24449920654296875, 1.989672422409057617, 0, 0, 0.838669776916503906, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: Lakeshire - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 0, 44, 69, '0', 0, 0, -9308.5498046875, -2325.06005859375, 61.24449920654296875, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 46741), -- Haystack 01 (Area: Lakeshire - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 0, 44, 69, '0', 0, 0, -9308.23046875, -2333.580078125, 61.24449920654296875, 1.029743075370788574, 0, 0, 0.492423057556152343, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: Lakeshire - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 0, 44, 69, '0', 0, 0, -9304.669921875, -2335.050048828125, 61.24449920654296875, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Lakeshire - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 0, 44, 69, '0', 0, 0, -9303.7998046875, -2323.909912109375, 61.24449920654296875, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Lakeshire - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 0, 44, 69, '0', 0, 0, -9309.5, -2331.739990234375, 61.24449920654296875, 3.403396368026733398, 0, 0, -0.99144458770751953, 0.130528271198272705, 120, 255, 1, 46741), -- Haystack 01 (Area: Lakeshire - Difficulty: 0)
|
||||
(@OGUID+10, 180353, 0, 44, 69, '0', 0, 0, -9299.2099609375, -2329.340087890625, 61.24449920654296875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Lakeshire - Difficulty: 0)
|
||||
(@OGUID+11, 180353, 0, 44, 69, '0', 0, 0, -9309.76953125, -2325.969970703125, 61.24449920654296875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Lakeshire - Difficulty: 0)
|
||||
(@OGUID+12, 180353, 0, 44, 69, '0', 0, 0, -9309.1201171875, -2332.669921875, 61.24449920654296875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Lakeshire - Difficulty: 0)
|
||||
(@OGUID+13, 180353, 0, 44, 69, '0', 0, 0, -9302.7900390625, -2324.070068359375, 61.24449920654296875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Lakeshire - Difficulty: 0)
|
||||
(@OGUID+14, 180353, 0, 44, 69, '0', 0, 0, -9303.2197265625, -2334.800048828125, 61.24449920654296875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Lakeshire - Difficulty: 0)
|
||||
(@OGUID+15, 195164, 0, 44, 69, '0', 0, 0, -9299.3603515625, -2328.25, 61.96820068359375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Lakeshire - Difficulty: 0)
|
||||
(@OGUID+16, 195164, 0, 44, 69, '0', 0, 0, -9299.3798828125, -2330.719970703125, 61.96820068359375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Lakeshire - Difficulty: 0)
|
||||
(@OGUID+17, 195164, 0, 44, 69, '0', 0, 0, -9303.83984375, -2324.010009765625, 61.96820068359375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Lakeshire - Difficulty: 0)
|
||||
(@OGUID+18, 195164, 0, 44, 69, '0', 0, 0, -9308.5703125, -2325.10009765625, 61.96820068359375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Lakeshire - Difficulty: 0)
|
||||
(@OGUID+19, 195164, 0, 44, 69, '0', 0, 0, -9309.4599609375, -2331.699951171875, 61.96820068359375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Lakeshire - Difficulty: 0)
|
||||
(@OGUID+20, 195164, 0, 44, 69, '0', 0, 0, -9301.8798828125, -2334.489990234375, 61.96820068359375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Lakeshire - Difficulty: 0)
|
||||
(@OGUID+21, 195164, 0, 44, 69, '0', 0, 0, -9304.7197265625, -2334.97998046875, 61.96820068359375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Lakeshire - Difficulty: 0)
|
||||
(@OGUID+22, 195164, 0, 44, 69, '0', 0, 0, -9308.2998046875, -2333.510009765625, 61.96820068359375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Lakeshire - Difficulty: 0)
|
||||
(@OGUID+23, 195164, 0, 44, 69, '0', 0, 0, -9310.3701171875, -2327.239990234375, 61.96820068359375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Lakeshire - Difficulty: 0)
|
||||
(@OGUID+24, 195164, 0, 44, 69, '0', 0, 0, -9301.849609375, -2324.530029296875, 61.96820068359375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Lakeshire - Difficulty: 0)
|
||||
(@OGUID+25, 195664, 0, 44, 69, '0', 0, 0, -9305.8095703125, -2329.3798828125, 61.24449920654296875, 0, 0, 0, 0, 1, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Lakeshire - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+1;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+25;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25);
|
||||
@@ -1,74 +0,0 @@
|
||||
SET @CGUID := 396599;
|
||||
SET @OGUID := 249932;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+1;
|
||||
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, 32823, 0, 40, 108, '0', 0, 0, 0, 0, -10538.2001953125, 1022.94000244140625, 56.68903350830078125, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Sentinel Hill - Difficulty: 0) (Auras: )
|
||||
(@CGUID+1, 34653, 0, 40, 108, '0', 0, 0, 0, 0, -10541.5, 1017.58001708984375, 56.52773284912109375, 3.839724302291870117, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Table Hostess (Area: Sentinel Hill - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+25;
|
||||
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, 179968, 0, 40, 108, '0', 0, 0, -10541, 1027.260009765625, 56.60570144653320312, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 46741), -- Haystack 01 (Area: Sentinel Hill - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 0, 40, 108, '0', 0, 0, -10542.900390625, 1025.1300048828125, 56.60570144653320312, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Haystack 01 (Area: Sentinel Hill - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 0, 40, 108, '0', 0, 0, -10541.900390625, 1020.58001708984375, 56.60509872436523437, 3.403396368026733398, 0, 0, -0.99144458770751953, 0.130528271198272705, 120, 255, 1, 46741), -- Haystack 01 (Area: Sentinel Hill - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 0, 40, 108, '0', 0, 0, -10540.599609375, 1018.739990234375, 56.55030059814453125, 1.029743075370788574, 0, 0, 0.492423057556152343, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: Sentinel Hill - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 0, 40, 108, '0', 0, 0, -10534.099609375, 1027.800048828125, 56.60580062866210937, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Haystack 01 (Area: Sentinel Hill - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 0, 40, 108, '0', 0, 0, -10531.7001953125, 1024.0999755859375, 56.60580062866210937, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: Sentinel Hill - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 0, 40, 108, '0', 0, 0, -10531.599609375, 1021.75, 56.60580062866210937, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: Sentinel Hill - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 0, 40, 108, '0', 0, 0, -10536.2001953125, 1028.4100341796875, 56.60580062866210937, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Sentinel Hill - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 0, 40, 108, '0', 0, 0, -10534.400390625, 1017.71002197265625, 56.60589981079101562, 1.989672422409057617, 0, 0, 0.838669776916503906, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: Sentinel Hill - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 0, 40, 108, '0', 0, 0, -10537.099609375, 1017.27001953125, 56.60570144653320312, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Sentinel Hill - Difficulty: 0)
|
||||
(@OGUID+10, 180353, 0, 40, 108, '0', 0, 0, -10541.5, 1019.6500244140625, 56.55080032348632812, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Sentinel Hill - Difficulty: 0)
|
||||
(@OGUID+11, 180353, 0, 40, 108, '0', 0, 0, -10542.2001953125, 1026.3499755859375, 56.60570144653320312, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Sentinel Hill - Difficulty: 0)
|
||||
(@OGUID+12, 180353, 0, 40, 108, '0', 0, 0, -10531.599609375, 1022.989990234375, 56.60580062866210937, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Sentinel Hill - Difficulty: 0)
|
||||
(@OGUID+13, 180353, 0, 40, 108, '0', 0, 0, -10535.2001953125, 1028.25, 56.60580062866210937, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Sentinel Hill - Difficulty: 0)
|
||||
(@OGUID+14, 180353, 0, 40, 108, '0', 0, 0, -10535.599609375, 1017.52001953125, 56.60580062866210937, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Sentinel Hill - Difficulty: 0)
|
||||
(@OGUID+15, 195164, 0, 40, 108, '0', 0, 0, -10542.7998046875, 1025.0799560546875, 57.27659988403320312, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Sentinel Hill - Difficulty: 0)
|
||||
(@OGUID+16, 195164, 0, 40, 108, '0', 0, 0, -10541.900390625, 1020.6199951171875, 57.27579879760742187, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Sentinel Hill - Difficulty: 0)
|
||||
(@OGUID+17, 195164, 0, 40, 108, '0', 0, 0, -10540.7001953125, 1018.80999755859375, 57.2212982177734375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Sentinel Hill - Difficulty: 0)
|
||||
(@OGUID+18, 195164, 0, 40, 108, '0', 0, 0, -10534.2998046875, 1027.7900390625, 57.27669906616210937, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Sentinel Hill - Difficulty: 0)
|
||||
(@OGUID+19, 195164, 0, 40, 108, '0', 0, 0, -10531.7998046875, 1021.5999755859375, 57.27669906616210937, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Sentinel Hill - Difficulty: 0)
|
||||
(@OGUID+20, 195164, 0, 40, 108, '0', 0, 0, -10531.7998046875, 1024.0699462890625, 57.27669906616210937, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Sentinel Hill - Difficulty: 0)
|
||||
(@OGUID+21, 195164, 0, 40, 108, '0', 0, 0, -10541, 1027.219970703125, 57.27669906616210937, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Sentinel Hill - Difficulty: 0)
|
||||
(@OGUID+22, 195164, 0, 40, 108, '0', 0, 0, -10536.2001953125, 1028.31005859375, 57.27669906616210937, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Sentinel Hill - Difficulty: 0)
|
||||
(@OGUID+23, 195164, 0, 40, 108, '0', 0, 0, -10534.2998046875, 1017.83001708984375, 57.27679824829101562, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Sentinel Hill - Difficulty: 0)
|
||||
(@OGUID+24, 195164, 0, 40, 108, '0', 0, 0, -10537.099609375, 1017.34002685546875, 57.27669906616210937, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Sentinel Hill - Difficulty: 0)
|
||||
(@OGUID+25, 195664, 0, 40, 108, '0', 0, 0, -10538.2001953125, 1022.94000244140625, 56.60570144653320312, 0, 0, 0, 0, 1, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Sentinel Hill - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+1;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+25;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25);
|
||||
@@ -1,74 +0,0 @@
|
||||
SET @CGUID := 396601;
|
||||
SET @OGUID := 249958;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+1;
|
||||
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, 32823, 0, 10, 42, '0', 0, 0, 0, 0, -10507.1884765625, -1263.1927490234375, 41.16492843627929687, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Darkshire - Difficulty: 0) (Auras: )
|
||||
(@CGUID+1, 34653, 0, 10, 42, '0', 0, 0, 0, 0, -10512.1923828125, -1266.1163330078125, 41.16327667236328125, 3.001966238021850585, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Table Hostess (Area: Darkshire - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+25;
|
||||
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, 179968, 0, 10, 42, '0', 0, 0, -10506.044921875, -1268.8680419921875, 41.11111068725585937, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Darkshire - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 0, 10, 42, '0', 0, 0, -10510.8798828125, -1265.55908203125, 41.078125, 3.403396368026733398, 0, 0, -0.99144458770751953, 0.130528271198272705, 120, 255, 1, 46741), -- Haystack 01 (Area: Darkshire - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 0, 10, 42, '0', 0, 0, -10509.6064453125, -1267.3975830078125, 41.12673568725585937, 1.029743075370788574, 0, 0, 0.492423057556152343, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: Darkshire - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 0, 10, 42, '0', 0, 0, -10500.642578125, -1262.032958984375, 40.8269500732421875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: Darkshire - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 0, 10, 42, '0', 0, 0, -10505.173828125, -1257.7257080078125, 41.12673568725585937, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Darkshire - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 0, 10, 42, '0', 0, 0, -10500.61328125, -1264.388916015625, 40.878204345703125, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: Darkshire - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 0, 10, 42, '0', 0, 0, -10511.841796875, -1261.0086669921875, 41.3055572509765625, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Haystack 01 (Area: Darkshire - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 0, 10, 42, '0', 0, 0, -10503.396484375, -1268.421875, 41.11815643310546875, 1.989672422409057617, 0, 0, 0.838669776916503906, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: Darkshire - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 0, 10, 42, '0', 0, 0, -10503.0830078125, -1258.3367919921875, 41.07291793823242187, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Haystack 01 (Area: Darkshire - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 0, 10, 42, '0', 0, 0, -10509.9267578125, -1258.873291015625, 41.2899322509765625, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 46741), -- Haystack 01 (Area: Darkshire - Difficulty: 0)
|
||||
(@OGUID+10, 180353, 0, 10, 42, '0', 0, 0, -10510.498046875, -1266.484375, 41.1180572509765625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Darkshire - Difficulty: 0)
|
||||
(@OGUID+11, 180353, 0, 10, 42, '0', 0, 0, -10504.169921875, -1257.88720703125, 41.11632156372070312, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Darkshire - Difficulty: 0)
|
||||
(@OGUID+12, 180353, 0, 10, 42, '0', 0, 0, -10504.595703125, -1268.6146240234375, 41.11126327514648437, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Darkshire - Difficulty: 0)
|
||||
(@OGUID+13, 180353, 0, 10, 42, '0', 0, 0, -10511.142578125, -1259.78125, 41.3125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Darkshire - Difficulty: 0)
|
||||
(@OGUID+14, 180353, 0, 10, 42, '0', 0, 0, -10500.580078125, -1263.1492919921875, 40.84093475341796875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Darkshire - Difficulty: 0)
|
||||
(@OGUID+15, 195164, 0, 10, 42, '0', 0, 0, -10509.67578125, -1267.326416015625, 41.8396759033203125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Darkshire - Difficulty: 0)
|
||||
(@OGUID+16, 195164, 0, 10, 42, '0', 0, 0, -10510.830078125, -1265.515625, 41.79106521606445312, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Darkshire - Difficulty: 0)
|
||||
(@OGUID+17, 195164, 0, 10, 42, '0', 0, 0, -10503.220703125, -1258.3489990234375, 41.78831100463867187, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Darkshire - Difficulty: 0)
|
||||
(@OGUID+18, 195164, 0, 10, 42, '0', 0, 0, -10505.2138671875, -1257.8211669921875, 41.84314727783203125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Darkshire - Difficulty: 0)
|
||||
(@OGUID+19, 195164, 0, 10, 42, '0', 0, 0, -10506.0986328125, -1268.796875, 41.82578659057617187, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Darkshire - Difficulty: 0)
|
||||
(@OGUID+20, 195164, 0, 10, 42, '0', 0, 0, -10509.9462890625, -1258.91845703125, 42.00286865234375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Darkshire - Difficulty: 0)
|
||||
(@OGUID+21, 195164, 0, 10, 42, '0', 0, 0, -10503.2548828125, -1268.3021240234375, 41.83446502685546875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Darkshire - Difficulty: 0)
|
||||
(@OGUID+22, 195164, 0, 10, 42, '0', 0, 0, -10500.732421875, -1262.060791015625, 41.54319000244140625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Darkshire - Difficulty: 0)
|
||||
(@OGUID+23, 195164, 0, 10, 42, '0', 0, 0, -10500.75, -1264.532958984375, 41.60356521606445312, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Darkshire - Difficulty: 0)
|
||||
(@OGUID+24, 195164, 0, 10, 42, '0', 0, 0, -10511.7451171875, -1261.0538330078125, 42.00807571411132812, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Darkshire - Difficulty: 0)
|
||||
(@OGUID+25, 195664, 0, 10, 42, '0', 0, 0, -10507.2001953125, -1263.18994140625, 41.08160018920898437, 0, 0, 0, 0, 1, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Darkshire - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+1;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+25;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25);
|
||||
@@ -1,76 +0,0 @@
|
||||
SET @CGUID := 396603;
|
||||
SET @OGUID := 249984;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+2;
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `PhaseGroup`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES
|
||||
(@CGUID+0, 32823, 0, 8, 5458, '0', 0, 0, 0, 0, -9779.4404296875, -3841.969970703125, 23.09723472595214843, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Bogpaddle - Difficulty: 0) (Auras: )
|
||||
(@CGUID+1, 34653, 0, 8, 5458, '0', 0, 0, 0, 0, -9785.16015625, -3846.10009765625, 22.21903419494628906, 2.460914134979248046, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table Hostess (Area: Bogpaddle - Difficulty: 0)
|
||||
(@CGUID+2, 34654, 0, 8, 5458, '0', 0, 0, 0, 0, -9783.419921875, -3834.7900390625, 23.72113418579101562, 2.30383467674255371, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Feast Hostess (Area: Bogpaddle - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+25;
|
||||
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, 179968, 0, 8, 5458, '0', 0, 0, -9782.1298828125, -3837.639892578125, 22.87150001525878906, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 46741), -- Haystack 01 (Area: Bogpaddle - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 0, 8, 5458, '0', 0, 0, -9781.830078125, -3846.169921875, 22.42659950256347656, 1.029743075370788574, 0, 0, 0.492423057556152343, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: Bogpaddle - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 0, 8, 5458, '0', 0, 0, -9783.1298828125, -3844.330078125, 22.48439979553222656, 3.403396368026733398, 0, 0, -0.99144458770751953, 0.130528271198272705, 120, 255, 1, 46741), -- Haystack 01 (Area: Bogpaddle - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 0, 8, 5458, '0', 0, 0, -9784.0302734375, -3839.780029296875, 22.55480003356933593, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Haystack 01 (Area: Bogpaddle - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 0, 8, 5458, '0', 0, 0, -9775.6298828125, -3847.18994140625, 22.30470085144042968, 1.989672422409057617, 0, 0, 0.838669776916503906, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: Bogpaddle - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 0, 8, 5458, '0', 0, 0, -9777.4404296875, -3836.5, 23.27079963684082031, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Bogpaddle - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 0, 8, 5458, '0', 0, 0, -9772.830078125, -3843.159912109375, 23.06229972839355468, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: Bogpaddle - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 0, 8, 5458, '0', 0, 0, -9775.330078125, -3837.139892578125, 23.17709922790527343, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Haystack 01 (Area: Bogpaddle - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 0, 8, 5458, '0', 0, 0, -9778.23046875, -3847.639892578125, 22.34900093078613281, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Bogpaddle - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 0, 8, 5458, '0', 0, 0, -9772.830078125, -3840.800048828125, 23.15629959106445312, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: Bogpaddle - Difficulty: 0)
|
||||
(@OGUID+10, 180353, 0, 8, 5458, '0', 0, 0, -9782.73046875, -3845.260009765625, 22.49550056457519531, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Bogpaddle - Difficulty: 0)
|
||||
(@OGUID+11, 180353, 0, 8, 5458, '0', 0, 0, -9783.330078125, -3838.550048828125, 22.69989967346191406, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Bogpaddle - Difficulty: 0)
|
||||
(@OGUID+12, 180353, 0, 8, 5458, '0', 0, 0, -9772.830078125, -3841.919921875, 23.16839981079101562, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Bogpaddle - Difficulty: 0)
|
||||
(@OGUID+13, 180353, 0, 8, 5458, '0', 0, 0, -9776.830078125, -3847.389892578125, 22.3264007568359375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Bogpaddle - Difficulty: 0)
|
||||
(@OGUID+14, 180353, 0, 8, 5458, '0', 0, 0, -9776.4404296875, -3836.659912109375, 23.23780059814453125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Bogpaddle - Difficulty: 0)
|
||||
(@OGUID+15, 195164, 0, 8, 5458, '0', 0, 0, -9783.9404296875, -3839.830078125, 23.19090080261230468, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Bogpaddle - Difficulty: 0)
|
||||
(@OGUID+16, 195164, 0, 8, 5458, '0', 0, 0, -9783.0302734375, -3844.2900390625, 23.12520027160644531, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Bogpaddle - Difficulty: 0)
|
||||
(@OGUID+17, 195164, 0, 8, 5458, '0', 0, 0, -9772.9404296875, -3840.830078125, 23.80030059814453125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Bogpaddle - Difficulty: 0)
|
||||
(@OGUID+18, 195164, 0, 8, 5458, '0', 0, 0, -9775.4404296875, -3847.080078125, 22.93490028381347656, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Bogpaddle - Difficulty: 0)
|
||||
(@OGUID+19, 195164, 0, 8, 5458, '0', 0, 0, -9777.4404296875, -3836.590087890625, 23.8871002197265625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Bogpaddle - Difficulty: 0)
|
||||
(@OGUID+20, 195164, 0, 8, 5458, '0', 0, 0, -9778.330078125, -3847.570068359375, 22.98419952392578125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Bogpaddle - Difficulty: 0)
|
||||
(@OGUID+21, 195164, 0, 8, 5458, '0', 0, 0, -9782.1298828125, -3837.68994140625, 23.49130058288574218, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Bogpaddle - Difficulty: 0)
|
||||
(@OGUID+22, 195164, 0, 8, 5458, '0', 0, 0, -9772.9404296875, -3843.300048828125, 23.69090080261230468, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Bogpaddle - Difficulty: 0)
|
||||
(@OGUID+23, 195164, 0, 8, 5458, '0', 0, 0, -9775.4404296875, -3837.1201171875, 23.80730056762695312, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Bogpaddle - Difficulty: 0)
|
||||
(@OGUID+24, 195164, 0, 8, 5458, '0', 0, 0, -9781.9404296875, -3846.10009765625, 23.05080032348632812, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Bogpaddle - Difficulty: 0)
|
||||
(@OGUID+25, 195664, 0, 8, 5458, '0', 0, 0, -9779.4404296875, -3841.969970703125, 23.0139007568359375, 0, 0, 0, 0, 1, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Bogpaddle - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+2;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1),
|
||||
(@EVENT, @CGUID+2);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+25;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25);
|
||||
@@ -1,74 +0,0 @@
|
||||
SET @CGUID := 396606;
|
||||
SET @OGUID := 250010;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+1;
|
||||
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, 32823, 0, 4, 1438, '0', 0, 0, 0, 0, -11021.099609375, -3441.179931640625, 65.196136474609375, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Nethergarde Keep - Difficulty: 0) (Auras: )
|
||||
(@CGUID+1, 34653, 0, 4, 1438, '0', 0, 0, 0, 0, -11013, -3443.419921875, 65.04773712158203125, 5.829399585723876953, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Table Hostess (Area: Nethergarde Keep - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+25;
|
||||
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, 179968, 0, 4, 1438, '0', 0, 0, -11014.5, -3440.02001953125, 65.06999969482421875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: Nethergarde Keep - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 0, 4, 1438, '0', 0, 0, -11014.5, -3442.3798828125, 64.99829864501953125, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: Nethergarde Keep - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 0, 4, 1438, '0', 0, 0, -11017, -3436.330078125, 65.08679962158203125, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Haystack 01 (Area: Nethergarde Keep - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 0, 4, 1438, '0', 0, 0, -11019.099609375, -3435.719970703125, 65.09059906005859375, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Nethergarde Keep - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 0, 4, 1438, '0', 0, 0, -11017.2998046875, -3446.409912109375, 64.98259735107421875, 1.989672422409057617, 0, 0, 0.838669776916503906, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: Nethergarde Keep - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 0, 4, 1438, '0', 0, 0, -11023.5, -3445.389892578125, 65.13719940185546875, 1.029743075370788574, 0, 0, 0.492423057556152343, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: Nethergarde Keep - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 0, 4, 1438, '0', 0, 0, -11024.7998046875, -3443.550048828125, 65.2985992431640625, 3.403396368026733398, 0, 0, -0.99144458770751953, 0.130528271198272705, 120, 255, 1, 46741), -- Haystack 01 (Area: Nethergarde Keep - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 0, 4, 1438, '0', 0, 0, -11025.7001953125, -3439, 65.5364990234375, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Haystack 01 (Area: Nethergarde Keep - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 0, 4, 1438, '0', 0, 0, -11023.7998046875, -3436.860107421875, 65.41840362548828125, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 46741), -- Haystack 01 (Area: Nethergarde Keep - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 0, 4, 1438, '0', 0, 0, -11019.900390625, -3446.860107421875, 64.972198486328125, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Nethergarde Keep - Difficulty: 0)
|
||||
(@OGUID+10, 180353, 0, 4, 1438, '0', 0, 0, -11014.5, -3441.139892578125, 65.00209808349609375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Nethergarde Keep - Difficulty: 0)
|
||||
(@OGUID+11, 180353, 0, 4, 1438, '0', 0, 0, -11025, -3437.77001953125, 65.5052032470703125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Nethergarde Keep - Difficulty: 0)
|
||||
(@OGUID+12, 180353, 0, 4, 1438, '0', 0, 0, -11018.099609375, -3435.8798828125, 65.07810211181640625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Nethergarde Keep - Difficulty: 0)
|
||||
(@OGUID+13, 180353, 0, 4, 1438, '0', 0, 0, -11018.5, -3446.60009765625, 64.9761962890625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Nethergarde Keep - Difficulty: 0)
|
||||
(@OGUID+14, 180353, 0, 4, 1438, '0', 0, 0, -11024.400390625, -3444.469970703125, 65.2274017333984375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Nethergarde Keep - Difficulty: 0)
|
||||
(@OGUID+15, 195164, 0, 4, 1438, '0', 0, 0, -11017.099609375, -3436.340087890625, 65.74700164794921875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Nethergarde Keep - Difficulty: 0)
|
||||
(@OGUID+16, 195164, 0, 4, 1438, '0', 0, 0, -11014.599609375, -3440.050048828125, 65.7230987548828125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Nethergarde Keep - Difficulty: 0)
|
||||
(@OGUID+17, 195164, 0, 4, 1438, '0', 0, 0, -11023.599609375, -3445.320068359375, 65.8076019287109375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Nethergarde Keep - Difficulty: 0)
|
||||
(@OGUID+18, 195164, 0, 4, 1438, '0', 0, 0, -11023.7998046875, -3436.909912109375, 66.0702972412109375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Nethergarde Keep - Difficulty: 0)
|
||||
(@OGUID+19, 195164, 0, 4, 1438, '0', 0, 0, -11024.7001953125, -3443.510009765625, 65.94879913330078125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Nethergarde Keep - Difficulty: 0)
|
||||
(@OGUID+20, 195164, 0, 4, 1438, '0', 0, 0, -11020, -3446.7900390625, 65.6240997314453125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Nethergarde Keep - Difficulty: 0)
|
||||
(@OGUID+21, 195164, 0, 4, 1438, '0', 0, 0, -11025.599609375, -3439.0400390625, 66.1797027587890625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Nethergarde Keep - Difficulty: 0)
|
||||
(@OGUID+22, 195164, 0, 4, 1438, '0', 0, 0, -11014.599609375, -3442.52001953125, 65.6605987548828125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Nethergarde Keep - Difficulty: 0)
|
||||
(@OGUID+23, 195164, 0, 4, 1438, '0', 0, 0, -11017.099609375, -3446.2900390625, 65.64679718017578125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Nethergarde Keep - Difficulty: 0)
|
||||
(@OGUID+24, 195164, 0, 4, 1438, '0', 0, 0, -11019.099609375, -3435.81005859375, 65.743896484375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Nethergarde Keep - Difficulty: 0)
|
||||
(@OGUID+25, 195664, 0, 4, 1438, '0', 0, 0, -11021.099609375, -3441.179931640625, 65.1110992431640625, 0, 0, 0, 0, 1, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Nethergarde Keep - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+1;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+25;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25);
|
||||
@@ -1,140 +0,0 @@
|
||||
SET @CGUID := 396608;
|
||||
SET @OGUID := 250036;
|
||||
SET @EVENT := 26;
|
||||
|
||||
-- Equipments
|
||||
DELETE FROM `creature_equip_template` WHERE `CreatureID`=34654;
|
||||
INSERT INTO `creature_equip_template` (`CreatureID`, `ID`, `ItemID1`, `AppearanceModID1`, `ItemVisual1`, `ItemID2`, `AppearanceModID2`, `ItemVisual2`, `ItemID3`, `AppearanceModID3`, `ItemVisual3`, `VerifiedBuild`) VALUES
|
||||
(34654, 1, 2202, 0, 0, 0, 0, 0, 0, 0, 0, 46741), -- Bountiful Feast Hostess
|
||||
(34654, 2, 2703, 0, 0, 0, 0, 0, 0, 0, 0, 46741); -- Bountiful Feast Hostess
|
||||
|
||||
-- Creature spawns
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+3;
|
||||
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
|
||||
-- Rebel Camp
|
||||
(@CGUID+0, 32823, 0, 33, 99, '0', 0, 0, 0, 0, -11329.845703125, -195.31597900390625, 75.2216644287109375, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Rebel Camp - Difficulty: 0) (Auras: )
|
||||
(@CGUID+1, 34653, 0, 33, 99, '0', 0, 0, 0, 0, -11321.1943359375, -196.446182250976562, 76.1610107421875, 5.689773082733154296, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table Hostess (Area: Rebel Camp - Difficulty: 0)
|
||||
-- Grom'gol Base Camp
|
||||
(@CGUID+2, 32823, 0, 33, 117, '0', 0, 0, 0, 0, -12372.9033203125, 156.4895782470703125, 2.94965219497680664, 0, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741), -- Bountiful Table (Area: Grom'gol Base Camp - Difficulty: 0) (Auras: )
|
||||
(@CGUID+3, 34654, 0, 33, 117, '0', 0, 0, 0, 0, -12367.8095703125, 162.876739501953125, 2.866048336029052734, 1.605702877044677734, 120, 0, 0, 19343, 0, 0, 0, 0, 0, 46741); -- Bountiful Feast Hostess (Area: Grom'gol Base Camp - Difficulty: 0)
|
||||
|
||||
-- Gameobject spawns
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+51;
|
||||
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
|
||||
-- Rebel Camp
|
||||
(@OGUID+0, 179968, 0, 33, 99, '0', 0, 0, -11326.0537109375, -200.541671752929687, 75.59375, 1.989672422409057617, 0, 0, 0.838669776916503906, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: Rebel Camp - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 0, 33, 99, '0', 0, 0, -11323.2724609375, -196.510421752929687, 75.90277862548828125, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: Rebel Camp - Difficulty: 0)
|
||||
(@OGUID+2, 179968, 0, 33, 99, '0', 0, 0, -11323.30078125, -194.152786254882812, 75.8663177490234375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: Rebel Camp - Difficulty: 0)
|
||||
(@OGUID+3, 179968, 0, 33, 99, '0', 0, 0, -11328.70703125, -200.986114501953125, 75.36631011962890625, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Rebel Camp - Difficulty: 0)
|
||||
(@OGUID+4, 179968, 0, 33, 99, '0', 0, 0, -11332.5849609375, -190.993057250976562, 75.923614501953125, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 46741), -- Haystack 01 (Area: Rebel Camp - Difficulty: 0)
|
||||
(@OGUID+5, 179968, 0, 33, 99, '0', 0, 0, -11325.8173828125, -190.48785400390625, 75.3845977783203125, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Haystack 01 (Area: Rebel Camp - Difficulty: 0)
|
||||
(@OGUID+6, 179968, 0, 33, 99, '0', 0, 0, -11327.83203125, -189.84722900390625, 75.27777862548828125, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Rebel Camp - Difficulty: 0)
|
||||
(@OGUID+7, 179968, 0, 33, 99, '0', 0, 0, -11334.501953125, -193.12847900390625, 75.48958587646484375, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Haystack 01 (Area: Rebel Camp - Difficulty: 0)
|
||||
(@OGUID+8, 179968, 0, 33, 99, '0', 0, 0, -11333.5361328125, -197.680557250976562, 74.98958587646484375, 3.403396368026733398, 0, 0, -0.99144458770751953, 0.130528271198272705, 120, 255, 1, 46741), -- Haystack 01 (Area: Rebel Camp - Difficulty: 0)
|
||||
(@OGUID+9, 179968, 0, 33, 99, '0', 0, 0, -11332.265625, -199.517364501953125, 75.0515899658203125, 1.029743075370788574, 0, 0, 0.492423057556152343, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: Rebel Camp - Difficulty: 0)
|
||||
(@OGUID+10, 180353, 0, 33, 99, '0', 0, 0, -11323.23828125, -195.267364501953125, 75.90625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Rebel Camp - Difficulty: 0)
|
||||
(@OGUID+11, 180353, 0, 33, 99, '0', 0, 0, -11327.2548828125, -200.736114501953125, 75.486114501953125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Rebel Camp - Difficulty: 0)
|
||||
(@OGUID+12, 180353, 0, 33, 99, '0', 0, 0, -11333.80078125, -191.902786254882812, 75.79514312744140625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Rebel Camp - Difficulty: 0)
|
||||
(@OGUID+13, 180353, 0, 33, 99, '0', 0, 0, -11326.828125, -190.006942749023437, 75.2881927490234375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Rebel Camp - Difficulty: 0)
|
||||
(@OGUID+14, 180353, 0, 33, 99, '0', 0, 0, -11333.158203125, -198.604171752929687, 74.99652862548828125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Rebel Camp - Difficulty: 0)
|
||||
(@OGUID+15, 195164, 0, 33, 99, '0', 0, 0, -11323.4111328125, -196.652786254882812, 76.55747222900390625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Rebel Camp - Difficulty: 0)
|
||||
(@OGUID+16, 195164, 0, 33, 99, '0', 0, 0, -11325.9150390625, -200.423614501953125, 76.279693603515625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Rebel Camp - Difficulty: 0)
|
||||
(@OGUID+17, 195164, 0, 33, 99, '0', 0, 0, -11328.7548828125, -200.916671752929687, 76.03430938720703125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Rebel Camp - Difficulty: 0)
|
||||
(@OGUID+18, 195164, 0, 33, 99, '0', 0, 0, -11333.48828125, -197.635421752929687, 75.66684722900390625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Rebel Camp - Difficulty: 0)
|
||||
(@OGUID+19, 195164, 0, 33, 99, '0', 0, 0, -11334.404296875, -193.173614501953125, 76.1616363525390625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Rebel Camp - Difficulty: 0)
|
||||
(@OGUID+20, 195164, 0, 33, 99, '0', 0, 0, -11327.873046875, -189.94097900390625, 75.95503997802734375, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Rebel Camp - Difficulty: 0)
|
||||
(@OGUID+21, 195164, 0, 33, 99, '0', 0, 0, -11332.3349609375, -199.447921752929687, 75.71488189697265625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Rebel Camp - Difficulty: 0)
|
||||
(@OGUID+22, 195164, 0, 33, 99, '0', 0, 0, -11332.607421875, -191.038192749023437, 76.58872222900390625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Rebel Camp - Difficulty: 0)
|
||||
(@OGUID+23, 195164, 0, 33, 99, '0', 0, 0, -11325.8798828125, -190.47222900390625, 76.0509796142578125, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Rebel Camp - Difficulty: 0)
|
||||
(@OGUID+24, 195164, 0, 33, 99, '0', 0, 0, -11323.39453125, -194.180557250976562, 76.529693603515625, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Rebel Camp - Difficulty: 0)
|
||||
(@OGUID+25, 195664, 0, 33, 99, '0', 0, 0, -11329.7998046875, -195.315994262695312, 75.13829803466796875, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- [DND] Collision Thanksgiving Table Size (Area: Rebel Camp - Difficulty: 0)
|
||||
-- Grom'gol Base Camp
|
||||
(@OGUID+26, 179968, 0, 33, 117, '0', 0, 0, -12370.888671875, 161.9583282470703125, 2.784722089767456054, 4.729844093322753906, 0, 0, -0.70090866088867187, 0.713251054286956787, 120, 255, 1, 46741), -- Haystack 01 (Area: Grom'gol Base Camp - Difficulty: 0)
|
||||
(@OGUID+27, 179968, 0, 33, 117, '0', 0, 0, -12375.642578125, 160.8125, 2.821777105331420898, 2.076939344406127929, 0, 0, 0.861628532409667968, 0.50753939151763916, 120, 255, 1, 46741), -- Haystack 01 (Area: Grom'gol Base Camp - Difficulty: 0)
|
||||
(@OGUID+28, 179968, 0, 33, 117, '0', 0, 0, -12377.5595703125, 158.6770782470703125, 2.857639074325561523, 6.09120035171508789, 0, 0, -0.09584522247314453, 0.995396256446838378, 120, 255, 1, 46741), -- Haystack 01 (Area: Grom'gol Base Camp - Difficulty: 0)
|
||||
(@OGUID+29, 179968, 0, 33, 117, '0', 0, 0, -12368.875, 161.3177032470703125, 2.802083015441894531, 4.1538848876953125, 0, 0, -0.8746194839477539, 0.484810054302215576, 120, 255, 1, 46741), -- Haystack 01 (Area: Grom'gol Base Camp - Difficulty: 0)
|
||||
(@OGUID+30, 179968, 0, 33, 117, '0', 0, 0, -12376.59375, 154.125, 2.666666984558105468, 3.403396368026733398, 0, 0, -0.99144458770751953, 0.130528271198272705, 120, 255, 1, 46741), -- Haystack 01 (Area: Grom'gol Base Camp - Difficulty: 0)
|
||||
(@OGUID+31, 179968, 0, 33, 117, '0', 0, 0, -12366.330078125, 155.295135498046875, 3.296875, 2.809975385665893554, 0, 0, 0.986285209655761718, 0.165049895644187927, 120, 255, 1, 46741), -- Haystack 01 (Area: Grom'gol Base Camp - Difficulty: 0)
|
||||
(@OGUID+32, 179968, 0, 33, 117, '0', 0, 0, -12369.111328125, 151.263885498046875, 2.625974893569946289, 1.989672422409057617, 0, 0, 0.838669776916503906, 0.544640243053436279, 120, 255, 1, 46741), -- Haystack 01 (Area: Grom'gol Base Camp - Difficulty: 0)
|
||||
(@OGUID+33, 179968, 0, 33, 117, '0', 0, 0, -12375.3232421875, 152.2881927490234375, 2.504584074020385742, 1.029743075370788574, 0, 0, 0.492423057556152343, 0.870355963706970214, 120, 255, 1, 46741), -- Haystack 01 (Area: Grom'gol Base Camp - Difficulty: 0)
|
||||
(@OGUID+34, 179968, 0, 33, 117, '0', 0, 0, -12371.763671875, 150.8194427490234375, 2.431648015975952148, 1.48352813720703125, 0, 0, 0.675589561462402343, 0.737277925014495849, 120, 255, 1, 46741), -- Haystack 01 (Area: Grom'gol Base Camp - Difficulty: 0)
|
||||
(@OGUID+35, 179968, 0, 33, 117, '0', 0, 0, -12366.357421875, 157.6527862548828125, 3.190972089767456054, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Haystack 01 (Area: Grom'gol Base Camp - Difficulty: 0)
|
||||
(@OGUID+36, 180353, 0, 33, 117, '0', 0, 0, -12369.8857421875, 161.798614501953125, 2.786134958267211914, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Grom'gol Base Camp - Difficulty: 0)
|
||||
(@OGUID+37, 180353, 0, 33, 117, '0', 0, 0, -12376.857421875, 159.9027862548828125, 2.852431058883666992, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Grom'gol Base Camp - Difficulty: 0)
|
||||
(@OGUID+38, 180353, 0, 33, 117, '0', 0, 0, -12370.3134765625, 151.0694427490234375, 2.517360925674438476, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Grom'gol Base Camp - Difficulty: 0)
|
||||
(@OGUID+39, 180353, 0, 33, 117, '0', 0, 0, -12366.294921875, 156.5381927490234375, 3.248264074325561523, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Grom'gol Base Camp - Difficulty: 0)
|
||||
(@OGUID+40, 180353, 0, 33, 117, '0', 0, 0, -12376.2158203125, 153.201385498046875, 2.570055007934570312, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Freestanding Torch 01 (Area: Grom'gol Base Camp - Difficulty: 0)
|
||||
(@OGUID+41, 195164, 0, 33, 117, '0', 0, 0, -12370.9306640625, 161.8645782470703125, 3.463037967681884765, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Grom'gol Base Camp - Difficulty: 0)
|
||||
(@OGUID+42, 195164, 0, 33, 117, '0', 0, 0, -12368.97265625, 151.3819427490234375, 3.32444310188293457, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Grom'gol Base Camp - Difficulty: 0)
|
||||
(@OGUID+43, 195164, 0, 33, 117, '0', 0, 0, -12366.451171875, 157.625, 3.853533029556274414, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Grom'gol Base Camp - Difficulty: 0)
|
||||
(@OGUID+44, 195164, 0, 33, 117, '0', 0, 0, -12366.46875, 155.1527862548828125, 3.955962896347045898, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Grom'gol Base Camp - Difficulty: 0)
|
||||
(@OGUID+45, 195164, 0, 33, 117, '0', 0, 0, -12376.544921875, 154.170135498046875, 3.353533029556274414, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Grom'gol Base Camp - Difficulty: 0)
|
||||
(@OGUID+46, 195164, 0, 33, 117, '0', 0, 0, -12375.6630859375, 160.767364501953125, 3.501547098159790039, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Grom'gol Base Camp - Difficulty: 0)
|
||||
(@OGUID+47, 195164, 0, 33, 117, '0', 0, 0, -12377.4619140625, 158.6319427490234375, 3.537559986114501953, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Grom'gol Base Camp - Difficulty: 0)
|
||||
(@OGUID+48, 195164, 0, 33, 117, '0', 0, 0, -12368.9384765625, 161.3333282470703125, 3.48026895523071289, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Grom'gol Base Camp - Difficulty: 0)
|
||||
(@OGUID+49, 195164, 0, 33, 117, '0', 0, 0, -12375.392578125, 152.357635498046875, 3.187550067901611328, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Grom'gol Base Camp - Difficulty: 0)
|
||||
(@OGUID+50, 195164, 0, 33, 117, '0', 0, 0, -12371.8134765625, 150.888885498046875, 3.114584922790527343, 0, 0, 0, 0, 1, 120, 255, 1, 46741), -- Pumpkin (Area: Grom'gol Base Camp - Difficulty: 0)
|
||||
(@OGUID+51, 195664, 0, 33, 117, '0', 0, 0, -12372.900390625, 156.4900054931640625, 2.866319894790649414, 0, 0, 0, 0, 1, 120, 255, 1, 46741); -- [DND] Collision Thanksgiving Table Size (Area: Grom'gol Base Camp - Difficulty: 0)
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @CGUID+0 AND @CGUID+3;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @CGUID+0),
|
||||
(@EVENT, @CGUID+1),
|
||||
(@EVENT, @CGUID+2),
|
||||
(@EVENT, @CGUID+3);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` BETWEEN @OGUID+0 AND @OGUID+51;
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, @OGUID+0),
|
||||
(@EVENT, @OGUID+1),
|
||||
(@EVENT, @OGUID+2),
|
||||
(@EVENT, @OGUID+3),
|
||||
(@EVENT, @OGUID+4),
|
||||
(@EVENT, @OGUID+5),
|
||||
(@EVENT, @OGUID+6),
|
||||
(@EVENT, @OGUID+7),
|
||||
(@EVENT, @OGUID+8),
|
||||
(@EVENT, @OGUID+9),
|
||||
(@EVENT, @OGUID+10),
|
||||
(@EVENT, @OGUID+11),
|
||||
(@EVENT, @OGUID+12),
|
||||
(@EVENT, @OGUID+13),
|
||||
(@EVENT, @OGUID+14),
|
||||
(@EVENT, @OGUID+15),
|
||||
(@EVENT, @OGUID+16),
|
||||
(@EVENT, @OGUID+17),
|
||||
(@EVENT, @OGUID+18),
|
||||
(@EVENT, @OGUID+19),
|
||||
(@EVENT, @OGUID+20),
|
||||
(@EVENT, @OGUID+21),
|
||||
(@EVENT, @OGUID+22),
|
||||
(@EVENT, @OGUID+23),
|
||||
(@EVENT, @OGUID+24),
|
||||
(@EVENT, @OGUID+25),
|
||||
(@EVENT, @OGUID+26),
|
||||
(@EVENT, @OGUID+27),
|
||||
(@EVENT, @OGUID+28),
|
||||
(@EVENT, @OGUID+29),
|
||||
(@EVENT, @OGUID+30),
|
||||
(@EVENT, @OGUID+31),
|
||||
(@EVENT, @OGUID+32),
|
||||
(@EVENT, @OGUID+33),
|
||||
(@EVENT, @OGUID+34),
|
||||
(@EVENT, @OGUID+35),
|
||||
(@EVENT, @OGUID+36),
|
||||
(@EVENT, @OGUID+37),
|
||||
(@EVENT, @OGUID+38),
|
||||
(@EVENT, @OGUID+39),
|
||||
(@EVENT, @OGUID+40),
|
||||
(@EVENT, @OGUID+41),
|
||||
(@EVENT, @OGUID+42),
|
||||
(@EVENT, @OGUID+43),
|
||||
(@EVENT, @OGUID+44),
|
||||
(@EVENT, @OGUID+45),
|
||||
(@EVENT, @OGUID+46),
|
||||
(@EVENT, @OGUID+47),
|
||||
(@EVENT, @OGUID+48),
|
||||
(@EVENT, @OGUID+49),
|
||||
(@EVENT, @OGUID+50),
|
||||
(@EVENT, @OGUID+51);
|
||||
@@ -1,86 +0,0 @@
|
||||
SET @CGUID := 651841;
|
||||
SET @OGUID := 400523;
|
||||
|
||||
-- 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, 174035, 974, 5861, 5861, '0', 0, 0, 0, 0, -4195.15087890625, 6012.06689453125, 5.971547603607177734, 5.066993236541748046, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Dro Seminario (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@CGUID+1, 121535, 974, 5861, 5861, '0', 0, 0, 0, 0, -4169.1806640625, 5998.3505859375, 16.86725425720214843, 2.198547601699829101, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Metal Fan (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@CGUID+2, 121543, 974, 5861, 5861, '0', 0, 0, 0, 0, -4140.88916015625, 6093.861328125, 8.608447074890136718, 6.231745719909667968, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Khan Nabul (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@CGUID+3, 123691, 974, 5861, 5861, '0', 0, 0, 0, 0, -4165.09716796875, 6079.41943359375, 8.650113105773925781, 2.538732767105102539, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Metal Fan (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@CGUID+4, 121537, 974, 5861, 5861, '0', 0, 0, 0, 0, -4151.75537109375, 6093.87939453125, 8.650113105773925781, 3.807008981704711914, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Metal Fan (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@CGUID+5, 121535, 974, 5861, 5861, '0', 0, 0, 0, 0, -4180.63720703125, 6085.783203125, 15.98054981231689453, 6.082070827484130859, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Metal Fan (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@CGUID+6, 121542, 974, 5861, 5861, '0', 0, 0, 0, 0, -4147.767578125, 6078.2109375, 8.608447074890136718, 5.422368049621582031, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Nick Arse (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@CGUID+7, 121535, 974, 5861, 5861, '0', 0, 0, 0, 0, -4164.47216796875, 6094.2099609375, 8.608446121215820312, 3.639302730560302734, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Metal Fan (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@CGUID+8, 121537, 974, 5861, 5861, '0', 0, 0, 0, 0, -4145.8525390625, 6094.6318359375, 8.650113105773925781, 0.442834675312042236, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Metal Fan (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@CGUID+9, 121537, 974, 5861, 5861, '0', 0, 0, 0, 0, -4150.220703125, 6083.3349609375, 8.608446121215820312, 5.956604957580566406, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Metal Fan (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@CGUID+10, 121535, 974, 5861, 5861, '0', 0, 0, 0, 0, -4151.5625, 6082.181640625, 8.650113105773925781, 5.956604957580566406, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Metal Fan (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@CGUID+11, 14849, 974, 5861, 5861, '0', 0, 0, 0, 0, -4152.30029296875, 6076.02880859375, 8.608447074890136718, 0, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Darkmoon Carnie (Area: Darkmoon Island - Difficulty: 0) (Auras: )
|
||||
(@CGUID+12, 123691, 974, 5861, 5861, '0', 0, 0, 0, 0, -4158.26025390625, 6099.98876953125, 8.650113105773925781, 4.275885581970214843, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Metal Fan (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@CGUID+13, 121535, 974, 5861, 5861, '0', 0, 0, 0, 0, -4173.1494140625, 6012.26904296875, 24.90544509887695312, 4.570530891418457031, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Metal Fan (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@CGUID+14, 121535, 974, 5861, 5861, '0', 0, 0, 0, 0, -4154.39404296875, 6092.3046875, 8.650113105773925781, 1.266721487045288085, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Metal Fan (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@CGUID+15, 120928, 974, 5861, 5861, '0', 0, 0, 0, 0, -4155.22216796875, 6067.3662109375, 8.650113105773925781, 2.198677778244018554, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Jay Maguire (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@CGUID+16, 123755, 974, 5861, 5861, '0', 0, 0, 0, 0, -4179.6494140625, 6084.34033203125, 11.09845924377441406, 2.017403602600097656, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Darkmoon Carnie (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@CGUID+17, 123735, 974, 5861, 5861, '0', 0, 0, 0, 0, -4146.8974609375, 6087.81103515625, 8.608446121215820312, 2.716170787811279296, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Henry Gust (Area: Darkmoon Island - Difficulty: 0) (Auras: 246218 - Purple Dance Sticks)
|
||||
(@CGUID+18, 123691, 974, 5861, 5861, '0', 0, 0, 0, 0, -4147.34375, 6095.08349609375, 8.650113105773925781, 0.442834675312042236, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Metal Fan (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@CGUID+19, 121537, 974, 5861, 5861, '0', 0, 0, 0, 0, -4166.03125, 6082.12939453125, 8.650113105773925781, 4.615591049194335937, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Metal Fan (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@CGUID+20, 121537, 974, 5861, 5861, '0', 0, 0, 0, 0, -4166.984375, 6093.2421875, 8.608446121215820312, 0.224299952387809753, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Metal Fan (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@CGUID+21, 14849, 974, 5861, 5861, '0', 0, 0, 0, 0, -4153.96728515625, 6107.06787109375, 9.470907211303710937, 1.005135536193847656, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Darkmoon Carnie (Area: Darkmoon Island - Difficulty: 0) (Auras: )
|
||||
(@CGUID+22, 121535, 974, 5861, 5861, '0', 0, 0, 0, 0, -4160.7431640625, 6098.947265625, 8.650113105773925781, 0.919635295867919921, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Metal Fan (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@CGUID+23, 121535, 974, 5861, 5861, '0', 0, 0, 0, 0, -4201.34375, 6009.7431640625, 18.66161918640136718, 0.240572929382324218, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924); -- Metal Fan (Area: Darkmoon Island - Difficulty: 0)
|
||||
|
||||
-- GameObject
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+18;
|
||||
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, 267850, 974, 5861, 5861, '0', 0, 0, -4166.88916015625, 6093.3427734375, 8.525113105773925781, 0.20071132481098175, 0, 0, 0.100187301635742187, 0.994968593120574951, 120, 255, 1, 46924), -- Chair (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@OGUID+1, 270925, 974, 5861, 5861, '0', 0, 0, -4189.1787109375, 5987.779296875, 5.955767631530761718, 1.49004065990447998, -0.05763673782348632, 0.001698493957519531, 0.678081512451171875, 0.732721388339996337, 120, 255, 1, 46924), -- Spare Drummer (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@OGUID+2, 267836, 974, 5861, 5861, '0', 0, 0, -4139.2119140625, 6090.640625, 8.525116920471191406, 2.740161895751953125, 0, 0, 0.979924201965332031, 0.199370384216308593, 120, 255, 1, 46924), -- Stove (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@OGUID+3, 267847, 974, 5861, 5861, '0', 0, 0, -4163.58154296875, 6091.2041015625, 8.525113105773925781, 3.45575571060180664, 0, 0, -0.98768806457519531, 0.156436234712600708, 120, 255, 1, 46924), -- Chair (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@OGUID+4, 267849, 974, 5861, 5861, '0', 0, 0, -4166.064453125, 6089.65966796875, 8.526848793029785156, 0.628316879272460937, 0, 0, 0.309016227722167968, 0.95105677843093872, 120, 255, 1, 46924), -- Chair (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@OGUID+5, 270926, 974, 5861, 5861, '0', 0, 0, -4191.3291015625, 5987.3427734375, 6.734367847442626953, 1.713305830955505371, -0.03200197219848632, 0.011264801025390625, 0.755476951599121093, 0.65429621934890747, 120, 255, 1, 46924), -- Spare Drummer (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@OGUID+6, 267848, 974, 5861, 5861, '0', 0, 0, -4164.46875, 6094.1962890625, 8.525113105773925781, 3.831001043319702148, 0, 0, -0.94117546081542968, 0.337918221950531005, 120, 255, 1, 46924), -- Chair (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@OGUID+7, 269654, 974, 5861, 5861, '0', 0, 0, -4190.140625, 6014.09716796875, 5.780077934265136718, 1.094468116760253906, -0.01186704635620117, -0.032623291015625, 0.519511222839355468, 0.853758096694946289, 120, 255, 1, 46924), -- Stage Grave (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@OGUID+8, 269654, 974, 5861, 5861, '0', 0, 0, -4183.017578125, 6011.02099609375, 5.750340938568115234, 1.216641187667846679, -0.00700855255126953, 0.000658035278320312, 0.571496009826660156, 0.820574641227722167, 120, 255, 1, 46924), -- Stage Grave (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@OGUID+9, 270926, 974, 5861, 5861, '0', 0, 0, -4191.3291015625, 5987.3427734375, 6.734367847442626953, 1.713305830955505371, -0.03200197219848632, 0.011264801025390625, 0.755476951599121093, 0.65429621934890747, 120, 255, 1, 46924), -- Spare Drummer (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@OGUID+10, 269654, 974, 5861, 5861, '0', 0, 0, -4180.63916015625, 6009.91748046875, 5.603321075439453125, 1.234094858169555664, -0.00701427459716796, 0.000597000122070312, 0.578635215759277343, 0.815556049346923828, 120, 255, 1, 46924), -- Stage Grave (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@OGUID+11, 269654, 974, 5861, 5861, '0', 0, 0, -4165.80712890625, 6002.39404296875, 6.943933963775634765, 3.115356206893920898, -0.06281280517578125, 0.096017837524414062, 0.993210792541503906, 0.019169315695762634, 120, 255, 1, 46924), -- Stage Grave (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@OGUID+12, 269654, 974, 5861, 5861, '0', 0, 0, -4189.54541015625, 6037.1005859375, 6.592328071594238281, 5.198109626770019531, 0.063930511474609375, 0.079247474670410156, -0.51482868194580078, 0.851225078105926513, 120, 255, 1, 46924), -- Stage Grave (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@OGUID+13, 269654, 974, 5861, 5861, '0', 0, 0, -4186.57275390625, 6012.40966796875, 5.764399051666259765, 1.164282083511352539, 0.013566017150878906, -0.04933357238769531, 0.548450469970703125, 0.83461618423461914, 120, 255, 1, 46924), -- Stage Grave (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@OGUID+14, 269654, 974, 5861, 5861, '0', 0, 0, -4165.23291015625, 6019.9921875, 6.801020145416259765, 2.67398691177368164, -0.1113433837890625, -0.02062416076660156, 0.967631340026855468, 0.225536912679672241, 120, 255, 1, 46924), -- Stage Grave (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@OGUID+15, 267836, 974, 5861, 5861, '0', 0, 0, -4139.2119140625, 6090.640625, 8.525116920471191406, 2.740161895751953125, 0, 0, 0.979924201965332031, 0.199370384216308593, 120, 255, 1, 46924), -- Stove (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@OGUID+16, 269654, 974, 5861, 5861, '0', 0, 0, -4166.16845703125, 6014.87255859375, 6.8605499267578125, 3.049898147583007812, -0.11169719696044921, 0.008564949035644531, 0.992643356323242187, 0.045929592102766036, 120, 255, 1, 46924), -- Stage Grave (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@OGUID+17, 269654, 974, 5861, 5861, '0', 0, 0, -4193.40478515625, 6034.8056640625, 6.682002067565917968, 5.219549179077148437, 0.030477523803710937, 0.138102531433105468, -0.49687099456787109, 0.856223106384277343, 120, 255, 1, 46924), -- Stage Grave (Area: Darkmoon Island - Difficulty: 0)
|
||||
(@OGUID+18, 270925, 974, 5861, 5861, '0', 0, 0, -4189.1787109375, 5987.779296875, 5.955767631530761718, 1.49004065990447998, -0.05763673782348632, 0.001698493957519531, 0.678081512451171875, 0.732721388339996337, 120, 255, 1, 46924); -- Spare Drummer (Area: Darkmoon Island - Difficulty: 0)
|
||||
|
||||
-- Creature Addon
|
||||
DELETE FROM `creature_addon` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+23;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(@CGUID+0, 0, 0, 0, 1, 69, 0, 0, 0, 0, ''), -- Dro Seminario
|
||||
(@CGUID+1, 0, 0, 0, 1, 10, 0, 0, 0, 0, ''), -- Metal Fan
|
||||
(@CGUID+2, 0, 0, 0, 1, 69, 0, 0, 0, 0, ''), -- Khan Nabul
|
||||
(@CGUID+3, 0, 0, 0, 1, 10, 0, 0, 0, 0, ''), -- Metal Fan
|
||||
(@CGUID+4, 0, 0, 0, 1, 10, 0, 0, 0, 0, ''), -- Metal Fan
|
||||
(@CGUID+5, 0, 0, 0, 1, 10, 0, 0, 0, 0, ''), -- Metal Fan
|
||||
(@CGUID+6, 0, 0, 0, 1, 69, 0, 0, 0, 0, ''), -- Nick Arse
|
||||
(@CGUID+7, 0, 0, 0, 1, 415, 0, 0, 0, 0, ''), -- Metal Fan
|
||||
(@CGUID+8, 0, 0, 0, 1, 10, 0, 0, 0, 0, ''), -- Metal Fan
|
||||
(@CGUID+10, 0, 0, 0, 1, 10, 0, 0, 0, 0, ''), -- Metal Fan
|
||||
(@CGUID+11, 0, 0, 0, 1, 69, 0, 0, 0, 0, ''), -- Darkmoon Carnie
|
||||
(@CGUID+12, 0, 0, 0, 1, 10, 0, 0, 0, 0, ''), -- Metal Fan
|
||||
(@CGUID+13, 0, 0, 0, 1, 10, 0, 0, 0, 0, ''), -- Metal Fan
|
||||
(@CGUID+14, 0, 0, 0, 1, 10, 0, 0, 0, 0, ''), -- Metal Fan
|
||||
(@CGUID+15, 0, 0, 0, 1, 483, 0, 0, 0, 0, ''), -- Jay Maguire
|
||||
(@CGUID+17, 0, 0, 0, 1, 0, 0, 0, 0, 0, '246218'), -- Henry Gust - 246218 - Purple Dance Sticks
|
||||
(@CGUID+18, 0, 0, 0, 1, 10, 0, 0, 0, 0, ''), -- Metal Fan
|
||||
(@CGUID+19, 0, 0, 0, 1, 10, 0, 0, 0, 0, ''), -- Metal Fan
|
||||
(@CGUID+20, 0, 0, 0, 1, 415, 0, 0, 0, 0, ''), -- Metal Fan
|
||||
(@CGUID+21, 0, 0, 0, 1, 69, 0, 0, 0, 0, ''), -- Darkmoon Carnie
|
||||
(@CGUID+22, 0, 0, 0, 1, 10, 0, 0, 0, 0, ''); -- Metal Fan
|
||||
|
||||
-- Creature Template
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60, `faction`=1555, `npcflag`=128, `BaseAttackTime`=2000, `unit_flags`=768, `unit_flags2`=2048 WHERE `entry`=123735; -- Henry Gust
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=21057, `minlevel`=60, `maxlevel`=60, `faction`=1555, `npcflag`=1, `BaseAttackTime`=2000, `unit_flags`=768, `unit_flags2`=2048 WHERE `entry`=120928; -- Jay Maguire
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60, `faction`=1555, `npcflag`=128, `BaseAttackTime`=2000, `unit_flags`=768, `unit_flags2`=2048 WHERE `entry`=121542; -- Nick Arse
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60, `faction`=1555, `BaseAttackTime`=2000, `unit_flags`=768, `unit_flags2`=2048 WHERE `entry` IN (121537, 123691, 121535); -- Metal Fan
|
||||
UPDATE `creature_template` SET `minlevel`=60, `maxlevel`=60, `faction`=1555, `npcflag`=128, `BaseAttackTime`=2000, `unit_flags`=768, `unit_flags2`=2048 WHERE `entry`=121543; -- Khan Nabul
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=26433, `minlevel`=60, `maxlevel`=60, `faction`=1555, `npcflag`=1, `BaseAttackTime`=2000, `unit_flags`=768, `unit_flags2`=2048 WHERE `entry`=174035; -- Dro Seminario
|
||||
@@ -1,29 +0,0 @@
|
||||
SET @EVENT := 3;
|
||||
|
||||
-- Gameobject spawn incorrectly linked to the event
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid`=220436;
|
||||
|
||||
-- Event spawns
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=@EVENT AND `guid` IN (535, 296252, 307954, 312055, 314353);
|
||||
INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, 535),
|
||||
(@EVENT, 296252),
|
||||
(@EVENT, 307954),
|
||||
(@EVENT, 312055),
|
||||
(@EVENT, 314353);
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@EVENT AND `guid` IN (312, 313, 214889, 214890, 218246, 218251, 218911, 218912, 219321, 219322, 220102, 220438, 220458);
|
||||
INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
(@EVENT, 312),
|
||||
(@EVENT, 313),
|
||||
(@EVENT, 214889),
|
||||
(@EVENT, 214890),
|
||||
(@EVENT, 218246),
|
||||
(@EVENT, 218251),
|
||||
(@EVENT, 218911),
|
||||
(@EVENT, 218912),
|
||||
(@EVENT, 219321),
|
||||
(@EVENT, 219322),
|
||||
(@EVENT, 220102),
|
||||
(@EVENT, 220438),
|
||||
(@EVENT, 220458);
|
||||
@@ -1,61 +0,0 @@
|
||||
-- Silas Darkmoon
|
||||
SET @CGUID := 290772;
|
||||
SET @PATH := (@CGUID) * 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, -4039.335, 6289.607, 10.1855, NULL, 0),
|
||||
(@PATH, 1, -4052.212, 6301.694, 10.11833, NULL, 0),
|
||||
(@PATH, 2, -4063.542, 6312.986, 10.11833, NULL, 0),
|
||||
(@PATH, 3, -4080.451, 6328.855, 9.825958, NULL, 0),
|
||||
(@PATH, 4, -4096.42, 6336.471, 9.825955, NULL, 0),
|
||||
(@PATH, 5, -4116.934, 6347.939, 9.825955, NULL, 0),
|
||||
(@PATH, 6, -4138.082, 6351.953, 9.825917, NULL, 0),
|
||||
(@PATH, 7, -4164.543, 6353.951, 9.825917, NULL, 0),
|
||||
(@PATH, 8, -4187.503, 6351.134, 9.825955, NULL, 0),
|
||||
(@PATH, 9, -4218.802, 6346.977, 9.825955, NULL, 0),
|
||||
(@PATH, 10, -4247.597, 6341.32, 9.825955, NULL, 0),
|
||||
(@PATH, 11, -4264.741, 6343.163, 10.1929, NULL, 0),
|
||||
(@PATH, 12, -4282.766, 6344.669, 9.996053, NULL, 0),
|
||||
(@PATH, 13, -4300.082, 6346.167, 9.901448, NULL, 0),
|
||||
(@PATH, 14, -4315.285, 6345.894, 9.746053, NULL, 0),
|
||||
(@PATH, 15, -4330.168, 6344.745, 9.939168, NULL, 0),
|
||||
(@PATH, 16, -4347.693, 6343.939, 9.871053, NULL, 0),
|
||||
(@PATH, 17, -4364.318, 6340.635, 10.84054, NULL, 0),
|
||||
(@PATH, 18, -4378.733, 6336.581, 11.6141, NULL, 0),
|
||||
(@PATH, 19, -4364.318, 6340.635, 10.84054, NULL, 0),
|
||||
(@PATH, 20, -4347.693, 6343.939, 9.871053, NULL, 0),
|
||||
(@PATH, 21, -4330.168, 6344.745, 9.939168, NULL, 0),
|
||||
(@PATH, 22, -4315.285, 6345.894, 9.746053, NULL, 0),
|
||||
(@PATH, 23, -4300.082, 6346.167, 9.901448, NULL, 0),
|
||||
(@PATH, 24, -4282.766, 6344.669, 9.996053, NULL, 0),
|
||||
(@PATH, 25, -4264.741, 6343.163, 10.1929, NULL, 0),
|
||||
(@PATH, 26, -4247.597, 6341.32, 9.825955, NULL, 0),
|
||||
(@PATH, 27, -4218.802, 6346.977, 9.825955, NULL, 0),
|
||||
(@PATH, 28, -4187.503, 6351.134, 9.825955, NULL, 0),
|
||||
(@PATH, 29, -4164.543, 6353.951, 9.825917, NULL, 0),
|
||||
(@PATH, 30, -4138.082, 6351.953, 9.825917, NULL, 0),
|
||||
(@PATH, 31, -4116.934, 6347.939, 9.825955, NULL, 0),
|
||||
(@PATH, 32, -4096.42, 6336.471, 9.825955, NULL, 0),
|
||||
(@PATH, 33, -4080.451, 6328.855, 9.825958, NULL, 0),
|
||||
(@PATH, 34, -4063.542, 6312.986, 10.11833, NULL, 0),
|
||||
(@PATH, 35, -4052.212, 6301.694, 10.11833, NULL, 0),
|
||||
(@PATH, 36, -4039.335, 6289.607, 10.1855, NULL, 0),
|
||||
(@PATH, 37, -4029.083, 6276.619, 10.18344, NULL, 0),
|
||||
(@PATH, 38, -4017.953, 6266.069, 10.1855, NULL, 0),
|
||||
(@PATH, 39, -4002.981, 6253.635, 10.18684, NULL, 0),
|
||||
(@PATH, 40, -3991.868, 6243.412, 11.03603, NULL, 0),
|
||||
(@PATH, 41, -3983.865, 6235.367, 12.72988, NULL, 0),
|
||||
(@PATH, 42, -3991.868, 6243.412, 11.03603, NULL, 0),
|
||||
(@PATH, 43, -4002.981, 6253.635, 10.18684, NULL, 0),
|
||||
(@PATH, 44, -4017.953, 6266.069, 10.1855, NULL, 0),
|
||||
(@PATH, 45, -4029.083, 6276.619, 10.18344, NULL, 0);
|
||||
|
||||
UPDATE `creature` SET `position_x`= -4039.335, `position_y`= 6289.607, `position_z`= 10.1855, `orientation`= 0, `wander_distance`= 0, `MovementType`= 2 WHERE `guid`= @CGUID;
|
||||
DELETE FROM `creature_addon` WHERE `guid`= @CGUID;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes2`) VALUES
|
||||
(@CGUID, @PATH, 78112, 1);
|
||||
|
||||
DELETE FROM `creature_formations` WHERE `leaderGUID` = 290772;
|
||||
INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`, `point_1`, `point_2`) VALUES
|
||||
(290772, 290772, 0, 0, 512, 0, 0),
|
||||
(290772, 290771, 5, 0, 512, 0, 0);
|
||||
@@ -1,127 +0,0 @@
|
||||
SET @CGUID := 460930;
|
||||
SET @OGUID := 395737;
|
||||
|
||||
-- Creature
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+52;
|
||||
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, 89734, 974, 5861, 5904, '0', 0, 0, 0, 0, -4409.21337890625, 6366.12060546875, 13.50523948669433593, 2.654129743576049804, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Rocketeer (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 152760 - Powerup - Area Trigger - Pitstop - OnSpawn, 151025 - Powerup - Area Trigger - Generic - Load Data, 179281 - Powerup Visual - Pitstop - Rocketeer, Mount Advanced)
|
||||
(@CGUID+1, 89736, 974, 5861, 5904, '0', 0, 0, 0, 0, -4425.7724609375, 6373.7822265625, 13.50523948669433593, 5.815080165863037109, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Wanderluster (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 152760 - Powerup - Area Trigger - Pitstop - OnSpawn, 151025 - Powerup - Area Trigger - Generic - Load Data, 179273 - Powerup Visual - Pitstop - Wanderluster, Mount Advanced)
|
||||
(@CGUID+2, 90148, 974, 5861, 5904, '0', 0, 0, 0, 0, -4409.4931640625, 6374.8349609375, 13.50523948669433593, 3.375472068786621093, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Racing Strider (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 152760 - Powerup - Area Trigger - Pitstop - OnSpawn, 151025 - Powerup - Area Trigger - Generic - Load Data, 179749 - Powerup Visual - Pitstop - Tallstrider Advanced)
|
||||
(@CGUID+3, 89734, 974, 5861, 5904, '0', 0, 0, 0, 0, -4408.5068359375, 6273.9931640625, 13.89466476440429687, 3.053420782089233398, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Rocketeer (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 152760 - Powerup - Area Trigger - Pitstop - OnSpawn, 151025 - Powerup - Area Trigger - Generic - Load Data, 179281 - Powerup Visual - Pitstop - Rocketeer, Mount Advanced)
|
||||
(@CGUID+4, 89736, 974, 5861, 5904, '0', 0, 0, 0, 0, -4424.27587890625, 6273.73193359375, 13.89584636688232421, 0.117442205548286437, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Wanderluster (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 152760 - Powerup - Area Trigger - Pitstop - OnSpawn, 151025 - Powerup - Area Trigger - Generic - Load Data, 179273 - Powerup Visual - Pitstop - Wanderluster, Mount Advanced)
|
||||
(@CGUID+5, 89732, 974, 5861, 5904, '0', 0, 0, 0, 0, -4425.32470703125, 6365.3203125, 13.50523948669433593, 6.226679325103759765, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Powermonger (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 152760 - Powerup - Area Trigger - Pitstop - OnSpawn, 151025 - Powerup - Area Trigger - Generic - Load Data, 179277 - Powerup Visual - Pitstop - Powermonger, Mount Advanced)
|
||||
(@CGUID+6, 89732, 974, 5861, 5904, '0', 0, 0, 0, 0, -4424.0693359375, 6265.54150390625, 13.94834709167480468, 6.237830638885498046, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Powermonger (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 152760 - Powerup - Area Trigger - Pitstop - OnSpawn, 151025 - Powerup - Area Trigger - Generic - Load Data, 179277 - Powerup Visual - Pitstop - Powermonger, Mount Advanced)
|
||||
(@CGUID+7, 90148, 974, 5861, 5904, '0', 0, 0, 0, 0, -4408.14404296875, 6265.77783203125, 13.94806671142578125, 2.210808277130126953, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Racing Strider (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 152760 - Powerup - Area Trigger - Pitstop - OnSpawn, 151025 - Powerup - Area Trigger - Generic - Load Data, 179749 - Powerup Visual - Pitstop - Tallstrider Advanced)
|
||||
(@CGUID+8, 74056, 974, 5861, 5904, '0', 0, 0, 0, 1, -4417.673828125, 6358.51025390625, 15.52252388000488281, 0.544945597648620605, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Malle Earnhard (Area: Darkmoon Boardwalk - Difficulty: 0)
|
||||
(@CGUID+9, 90473, 974, 5861, 5904, '0', 0, 0, 0, 1, -4408.95166015625, 6279.205078125, 14.6503143310546875, 3.060221433639526367, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Patti Earnhard (Area: Darkmoon Boardwalk - Difficulty: 0)
|
||||
(@CGUID+10, 55348, 974, 5861, 5904, '0', 0, 0, 0, 0, -4400.21533203125, 6274.2041015625, 13.71255874633789062, 2.947497129440307617, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Horde Citizen (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 73813 - Citizen Costume)
|
||||
(@CGUID+11, 55348, 974, 5861, 5904, '0', 0, 0, 0, 0, -4399.6806640625, 6414.7041015625, 15.16792106628417968, 2.922005414962768554, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Horde Citizen (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 71084 - Citizen Costume)
|
||||
(@CGUID+12, 55347, 974, 5861, 5904, '0', 0, 0, 0, 0, -4401.96533203125, 6391.11376953125, 14.53761482238769531, 3.253297328948974609, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Alliance Citizen (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 73809 - Citizen Costume)
|
||||
(@CGUID+13, 55347, 974, 5861, 5904, '0', 0, 0, 0, 0, -4402.31591796875, 6415.52685546875, 13.68542671203613281, 2.757519960403442382, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Alliance Citizen (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 73809 - Citizen Costume)
|
||||
(@CGUID+14, 55347, 974, 5861, 5904, '0', 0, 0, 0, 0, -4401.83154296875, 6413.43603515625, 14.16103744506835937, 2.757519960403442382, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Alliance Citizen (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 73809 - Citizen Costume)
|
||||
(@CGUID+15, 55347, 974, 5861, 5904, '0', 0, 0, 0, 0, -4401.15625, 6389.8837890625, 14.98537540435791015, 3.253297328948974609, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Alliance Citizen (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 73104 - Citizen Costume)
|
||||
(@CGUID+16, 55348, 974, 5861, 5904, '0', 0, 0, 0, 0, -4402.30908203125, 6417.27587890625, 13.71753120422363281, 2.922005414962768554, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Horde Citizen (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 73815 - Citizen Costume)
|
||||
(@CGUID+17, 55348, 974, 5861, 5904, '0', 0, 0, 0, 0, -4402.32275390625, 6400.66650390625, 13.796844482421875, 3.25595402717590332, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Horde Citizen (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 73814 - Citizen Costume)
|
||||
(@CGUID+18, 55348, 974, 5861, 5904, '0', 0, 0, 0, 0, -4402.392578125, 6403.033203125, 13.79646587371826171, 3.25595402717590332, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Horde Citizen (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 73813 - Citizen Costume)
|
||||
(@CGUID+19, 55348, 974, 5861, 5904, '0', 0, 0, 0, 0, -4397.3994140625, 6273.0634765625, 15.19376468658447265, 2.947497129440307617, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Horde Citizen (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 73814 - Citizen Costume)
|
||||
(@CGUID+20, 55347, 974, 5861, 5904, '0', 0, 0, 0, 0, -4401.72412109375, 6399.640625, 14.24470043182373046, 3.09146881103515625, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Alliance Citizen (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 73810 - Citizen Costume)
|
||||
(@CGUID+21, 55347, 974, 5861, 5904, '0', 0, 0, 0, 0, -4399.68408203125, 6400.79345703125, 15.25401592254638671, 3.09146881103515625, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Alliance Citizen (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 73811 - Citizen Costume)
|
||||
(@CGUID+22, 55347, 974, 5861, 5904, '0', 0, 0, 0, 0, -4400.18603515625, 6388.6630859375, 15.59764766693115234, 3.253297328948974609, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Alliance Citizen (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 70764 - Citizen Costume)
|
||||
(@CGUID+23, 55348, 974, 5861, 5904, '0', 0, 0, 0, 0, -4400.251953125, 6276.4609375, 13.76355171203613281, 2.947497129440307617, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Horde Citizen (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 71084 - Citizen Costume)
|
||||
(@CGUID+24, 55347, 974, 5861, 5904, '0', 0, 0, 0, 0, -4400.173828125, 6390.69091796875, 15.73886775970458984, 3.25329756736755371, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Alliance Citizen (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 70764 - Citizen Costume)
|
||||
(@CGUID+25, 55347, 974, 5861, 5904, '0', 0, 0, 0, 0, -4401.265625, 6386.76025390625, 14.97508716583251953, 3.253297328948974609, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Alliance Citizen (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 73809 - Citizen Costume)
|
||||
(@CGUID+26, 55348, 974, 5861, 5904, '0', 0, 0, 0, 0, -4399.70166015625, 6399.2900390625, 15.23775005340576171, 2.922005414962768554, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Horde Citizen (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 73814 - Citizen Costume)
|
||||
(@CGUID+27, 55347, 974, 5861, 5904, '0', 0, 0, 0, 0, -4400.61279296875, 6416.22119140625, 14.66377449035644531, 2.757519960403442382, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Alliance Citizen (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 73810 - Citizen Costume)
|
||||
(@CGUID+28, 55347, 974, 5861, 5904, '0', 0, 0, 0, 0, -4402.4306640625, 6413.93408203125, 13.73136711120605468, 2.757519960403442382, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Alliance Citizen (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 70764 - Citizen Costume)
|
||||
(@CGUID+29, 55348, 974, 5861, 5904, '0', 0, 0, 0, 0, -4400.85595703125, 6403.986328125, 14.89526844024658203, 3.281445980072021484, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Horde Citizen (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 73813 - Citizen Costume)
|
||||
(@CGUID+30, 55348, 974, 5861, 5904, '0', 0, 0, 0, 0, -4398.36279296875, 6275.3212890625, 14.73030757904052734, 2.947497129440307617, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Horde Citizen (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 73813 - Citizen Costume)
|
||||
(@CGUID+31, 55348, 974, 5861, 5904, '0', 0, 0, 0, 0, -4401.50537109375, 6403.73291015625, 14.34080696105957031, 3.25595402717590332, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Horde Citizen (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 73815 - Citizen Costume)
|
||||
(@CGUID+32, 55348, 974, 5861, 5904, '0', 0, 0, 0, 0, -4399.19775390625, 6272.111328125, 14.19003677368164062, 2.947497129440307617, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Horde Citizen (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 73814 - Citizen Costume)
|
||||
(@CGUID+33, 55347, 974, 5861, 5904, '0', 0, 0, 0, 0, -4402.16845703125, 6387.96875, 14.41534709930419921, 3.253297328948974609, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Alliance Citizen (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 73811 - Citizen Costume)
|
||||
(@CGUID+34, 55348, 974, 5861, 5904, '0', 0, 0, 0, 0, -4400.30029296875, 6417.9599609375, 14.81303882598876953, 2.947497129440307617, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Horde Citizen (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 73813 - Citizen Costume)
|
||||
(@CGUID+35, 55348, 974, 5861, 5904, '0', 0, 0, 0, 0, -4400.99462890625, 6413.72900390625, 14.62116336822509765, 2.922005414962768554, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Horde Citizen (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 73814 - Citizen Costume)
|
||||
(@CGUID+36, 55347, 974, 5861, 5904, '0', 0, 0, 0, 0, -4400.3369140625, 6263.296875, 13.77440643310546875, 3.253297328948974609, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Alliance Citizen (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 73809 - Citizen Costume)
|
||||
(@CGUID+37, 55347, 974, 5861, 5904, '0', 0, 0, 0, 0, -4400.267578125, 6261.923828125, 13.73682117462158203, 3.253297328948974609, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Alliance Citizen (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 73810 - Citizen Costume)
|
||||
(@CGUID+38, 55347, 974, 5861, 5904, '0', 0, 0, 0, 0, -4398.5087890625, 6262.62060546875, 14.76891231536865234, 3.253297328948974609, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Alliance Citizen (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 70764 - Citizen Costume)
|
||||
(@CGUID+39, 55347, 974, 5861, 5904, '0', 0, 0, 0, 0, -4397.73779296875, 6259.017578125, 15.20176887512207031, 3.253297328948974609, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Alliance Citizen (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 73810 - Citizen Costume)
|
||||
(@CGUID+40, 55347, 974, 5861, 5904, '0', 0, 0, 0, 0, -4399.54345703125, 6260.80908203125, 14.18574047088623046, 3.253297328948974609, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Alliance Citizen (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 73810 - Citizen Costume)
|
||||
(@CGUID+41, 55348, 974, 5861, 5904, '0', 0, 0, 0, 0, -4399.5537109375, 6248.595703125, 14.33590888977050781, 2.947497129440307617, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Horde Citizen (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 73814 - Citizen Costume)
|
||||
(@CGUID+42, 55348, 974, 5861, 5904, '0', 0, 0, 0, 0, -4398.71533203125, 6244.9443359375, 14.69170475006103515, 2.947497129440307617, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Horde Citizen (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 73814 - Citizen Costume)
|
||||
(@CGUID+43, 74388, 974, 5861, 5904, '0', 0, 0, 0, 0, -4408.34716796875, 6385.9150390625, 13.50523948669433593, 4.725545406341552734, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Camp Post (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 149746 - Powerup - Area Trigger - Camp, 151532 - Aura Very Tall - Yellow - State)
|
||||
(@CGUID+44, 74388, 974, 5861, 5904, '0', 0, 0, 0, 0, -4426.76904296875, 6385.328125, 13.50523948669433593, 4.653382778167724609, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Camp Post (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 149746 - Powerup - Area Trigger - Camp, 151532 - Aura Very Tall - Yellow - State)
|
||||
(@CGUID+45, 74388, 974, 5861, 5904, '0', 0, 0, 0, 0, -4406.751953125, 6252.34814453125, 13.97506141662597656, 4.602067947387695312, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Camp Post (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 149746 - Powerup - Area Trigger - Camp, 151532 - Aura Very Tall - Yellow - State)
|
||||
(@CGUID+46, 74388, 974, 5861, 5904, '0', 0, 0, 0, 0, -4425.40283203125, 6252.244140625, 13.97578239440917968, 1.542731404304504394, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Camp Post (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 149746 - Powerup - Area Trigger - Camp, 151532 - Aura Very Tall - Yellow - State)
|
||||
(@CGUID+47, 74333, 974, 5861, 5904, '0', 0, 0, 0, 0, -4417.828125, 6383.49462890625, 13.50523948669433593, 4.797967910766601562, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Arch, Start Race (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 149665 - Powerup - Area Trigger - Start Arch)
|
||||
(@CGUID+48, 74333, 974, 5861, 5904, '0', 0, 0, 0, 0, -4416.6181640625, 6256.220703125, 13.97569561004638671, 4.707498550415039062, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Arch, Start Race (Area: Darkmoon Boardwalk - Difficulty: 0) (Auras: 149665 - Powerup - Area Trigger - Start Arch)
|
||||
(@CGUID+49, 93835, 974, 5861, 5904, '0', 0, 0, 0, 0, -4419.85400390625, 6296.8818359375, 13.869903564453125, 3.924604654312133789, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Thorina (Area: Darkmoon Boardwalk - Difficulty: 0)
|
||||
(@CGUID+50, 55103, 974, 5861, 5904, '0', 0, 0, 0, 0, -4423.1630859375, 6293.07470703125, 13.86382865905761718, 6.247150897979736328, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Galissa Sundew (Area: Darkmoon Boardwalk - Difficulty: 0)
|
||||
(@CGUID+51, 93808, 974, 5861, 5904, '0', 0, 0, 0, 0, -4426.17529296875, 6292.275390625, 14.41958045959472656, 0.013728062622249126, 120, 0, 0, 27, 0, 0, 0, 0, 0, 46924), -- Ghostshell Crab (Area: Darkmoon Boardwalk - Difficulty: 0)
|
||||
(@CGUID+52, 93804, 974, 5861, 5904, '0', 0, 0, 0, 0, -4422.9287109375, 6290.00244140625, 13.94439888000488281, 0.404267847537994384, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924); -- Costumed Entertainer (Area: Darkmoon Boardwalk - Difficulty: 0)
|
||||
|
||||
-- Delete old Portals
|
||||
DELETE FROM `gameobject` WHERE `guid` IN (213395, 212440);
|
||||
|
||||
-- Move Tatia Brine
|
||||
UPDATE `creature` SET `position_x`= -4423.034, `position_y`= 6295.53125, `position_z`= 13.86851692199707031, `orientation`= 6.217611 WHERE `guid` = 290561;
|
||||
|
||||
-- Move Steven Stagnaro
|
||||
UPDATE `creature` SET `position_x`= -4419.8110, `position_y`= 6289.228, `position_z`= 13.98196, `orientation`= 0.709314 WHERE `guid` = 290562;
|
||||
|
||||
-- GameObject
|
||||
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, 179968, 974, 5861, 5904, '0', 0, 0, -4408.60400390625, 6278.79541015625, 13.84513568878173828, 4.70208597183227539, 0, 0, -0.7107400894165039, 0.70345473289489746, 120, 255, 1, 46924), -- Haystack 01 (Area: Darkmoon Boardwalk - Difficulty: 0)
|
||||
(@OGUID+1, 179968, 974, 5861, 5904, '0', 0, 0, -4408.74658203125, 6279.57666015625, 13.87330436706542968, 1.576887726783752441, 0, 0, 0.709257125854492187, 0.704949855804443359, 120, 255, 1, 46924), -- Haystack 01 (Area: Darkmoon Boardwalk - Difficulty: 0)
|
||||
(@OGUID+2, 216667, 974, 5861, 5904, '0', 0, 0, -4447.79150390625, 6329.22900390625, 13.26463031768798828, 3.09826970100402832, 0, 0, 0.999765396118164062, 0.021659828722476959, 120, 255, 1, 46924); -- Portal Back (Area: Darkmoon Boardwalk - Difficulty: 0)
|
||||
|
||||
-- Creature Addon
|
||||
DELETE FROM `creature_addon` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+52;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(@CGUID+0, 0, 0, 0, 1, 0, 0, 0, 0, 0, '152760 151025 179281'), -- Rocketeer - 152760 - Powerup - Area Trigger - Pitstop - OnSpawn, 151025 - Powerup - Area Trigger - Generic - Load Data, 179281 - Powerup Visual - Pitstop - Rocketeer, Mount Advanced
|
||||
(@CGUID+1, 0, 0, 0, 1, 0, 0, 0, 0, 0, '152760 151025 179273'), -- Wanderluster - 152760 - Powerup - Area Trigger - Pitstop - OnSpawn, 151025 - Powerup - Area Trigger - Generic - Load Data, 179273 - Powerup Visual - Pitstop - Wanderluster, Mount Advanced
|
||||
(@CGUID+2, 0, 0, 0, 1, 0, 0, 0, 0, 0, '152760 151025 179749'), -- Racing Strider - 152760 - Powerup - Area Trigger - Pitstop - OnSpawn, 151025 - Powerup - Area Trigger - Generic - Load Data, 179749 - Powerup Visual - Pitstop - Tallstrider Advanced
|
||||
(@CGUID+3, 0, 0, 0, 1, 0, 0, 0, 0, 0, '152760 151025 179281'), -- Rocketeer - 152760 - Powerup - Area Trigger - Pitstop - OnSpawn, 151025 - Powerup - Area Trigger - Generic - Load Data, 179281 - Powerup Visual - Pitstop - Rocketeer, Mount Advanced
|
||||
(@CGUID+4, 0, 0, 0, 1, 0, 0, 0, 0, 0, '152760 151025 179273'), -- Wanderluster - 152760 - Powerup - Area Trigger - Pitstop - OnSpawn, 151025 - Powerup - Area Trigger - Generic - Load Data, 179273 - Powerup Visual - Pitstop - Wanderluster, Mount Advanced
|
||||
(@CGUID+5, 0, 0, 0, 1, 0, 0, 0, 0, 0, '152760 151025 179277'), -- Powermonger - 152760 - Powerup - Area Trigger - Pitstop - OnSpawn, 151025 - Powerup - Area Trigger - Generic - Load Data, 179277 - Powerup Visual - Pitstop - Powermonger, Mount Advanced
|
||||
(@CGUID+6, 0, 0, 0, 1, 0, 0, 0, 0, 0, '152760 151025 179277'), -- Powermonger - 152760 - Powerup - Area Trigger - Pitstop - OnSpawn, 151025 - Powerup - Area Trigger - Generic - Load Data, 179277 - Powerup Visual - Pitstop - Powermonger, Mount Advanced
|
||||
(@CGUID+7, 0, 0, 0, 1, 0, 0, 0, 0, 0, '152760 151025 179749'), -- Racing Strider - 152760 - Powerup - Area Trigger - Pitstop - OnSpawn, 151025 - Powerup - Area Trigger - Generic - Load Data, 179749 - Powerup Visual - Pitstop - Tallstrider Advanced
|
||||
(@CGUID+10, 0, 0, 1, 1, 0, 0, 0, 0, 0, '73813'), -- Horde Citizen - 73813 - Citizen Costume
|
||||
(@CGUID+11, 0, 0, 1, 1, 0, 0, 0, 0, 0, '71084'), -- Horde Citizen - 71084 - Citizen Costume
|
||||
(@CGUID+12, 0, 0, 1, 1, 0, 0, 0, 0, 0, '73809'), -- Alliance Citizen - 73809 - Citizen Costume
|
||||
(@CGUID+13, 0, 0, 1, 1, 0, 0, 0, 0, 0, '73809'), -- Alliance Citizen - 73809 - Citizen Costume
|
||||
(@CGUID+14, 0, 0, 1, 1, 0, 0, 0, 0, 0, '73809'), -- Alliance Citizen - 73809 - Citizen Costume
|
||||
(@CGUID+15, 0, 0, 1, 1, 0, 0, 0, 0, 0, '73104'), -- Alliance Citizen - 73104 - Citizen Costume
|
||||
(@CGUID+16, 0, 0, 1, 1, 0, 0, 0, 0, 0, '73815'), -- Horde Citizen - 73815 - Citizen Costume
|
||||
(@CGUID+17, 0, 0, 1, 1, 0, 0, 0, 0, 0, '73814'), -- Horde Citizen - 73814 - Citizen Costume
|
||||
(@CGUID+18, 0, 0, 1, 1, 0, 0, 0, 0, 0, '73813'), -- Horde Citizen - 73813 - Citizen Costume
|
||||
(@CGUID+19, 0, 0, 1, 1, 0, 0, 0, 0, 0, '73814'), -- Horde Citizen - 73814 - Citizen Costume
|
||||
(@CGUID+20, 0, 0, 1, 1, 0, 0, 0, 0, 0, '73810'), -- Alliance Citizen - 73810 - Citizen Costume
|
||||
(@CGUID+21, 0, 0, 1, 1, 0, 0, 0, 0, 0, '73811'), -- Alliance Citizen - 73811 - Citizen Costume
|
||||
(@CGUID+22, 0, 0, 1, 1, 0, 0, 0, 0, 0, '70764'), -- Alliance Citizen - 70764 - Citizen Costume
|
||||
(@CGUID+23, 0, 0, 1, 1, 0, 0, 0, 0, 0, '71084'), -- Horde Citizen - 71084 - Citizen Costume
|
||||
(@CGUID+24, 0, 0, 1, 1, 0, 0, 0, 0, 0, '70764'), -- Alliance Citizen - 70764 - Citizen Costume
|
||||
(@CGUID+25, 0, 0, 1, 1, 0, 0, 0, 0, 0, '73809'), -- Alliance Citizen - 73809 - Citizen Costume
|
||||
(@CGUID+26, 0, 0, 1, 1, 0, 0, 0, 0, 0, '73814'), -- Horde Citizen - 73814 - Citizen Costume
|
||||
(@CGUID+27, 0, 0, 1, 1, 0, 0, 0, 0, 0, '73810'), -- Alliance Citizen - 73810 - Citizen Costume
|
||||
(@CGUID+28, 0, 0, 1, 1, 0, 0, 0, 0, 0, '70764'), -- Alliance Citizen - 70764 - Citizen Costume
|
||||
(@CGUID+29, 0, 0, 1, 1, 0, 0, 0, 0, 0, '73813'), -- Horde Citizen - 73813 - Citizen Costume
|
||||
(@CGUID+30, 0, 0, 1, 1, 0, 0, 0, 0, 0, '73813'), -- Horde Citizen - 73813 - Citizen Costume
|
||||
(@CGUID+31, 0, 0, 1, 1, 0, 0, 0, 0, 0, '73815'), -- Horde Citizen - 73815 - Citizen Costume
|
||||
(@CGUID+32, 0, 0, 1, 1, 0, 0, 0, 0, 0, '73814'), -- Horde Citizen - 73814 - Citizen Costume
|
||||
(@CGUID+33, 0, 0, 1, 1, 0, 0, 0, 0, 0, '73811'), -- Alliance Citizen - 73811 - Citizen Costume
|
||||
(@CGUID+34, 0, 0, 1, 1, 0, 0, 0, 0, 0, '73813'), -- Horde Citizen - 73813 - Citizen Costume
|
||||
(@CGUID+35, 0, 0, 1, 1, 0, 0, 0, 0, 0, '73814'), -- Horde Citizen - 73814 - Citizen Costume
|
||||
(@CGUID+36, 0, 0, 1, 1, 0, 0, 0, 0, 0, '73809'), -- Alliance Citizen - 73809 - Citizen Costume
|
||||
(@CGUID+37, 0, 0, 1, 1, 0, 0, 0, 0, 0, '73810'), -- Alliance Citizen - 73810 - Citizen Costume
|
||||
(@CGUID+38, 0, 0, 1, 1, 0, 0, 0, 0, 0, '70764'), -- Alliance Citizen - 70764 - Citizen Costume
|
||||
(@CGUID+39, 0, 0, 1, 1, 0, 0, 0, 0, 0, '73810'), -- Alliance Citizen - 73810 - Citizen Costume
|
||||
(@CGUID+40, 0, 0, 1, 1, 0, 0, 0, 0, 0, '73810'), -- Alliance Citizen - 73810 - Citizen Costume
|
||||
(@CGUID+41, 0, 0, 1, 1, 0, 0, 0, 0, 0, '73814'), -- Horde Citizen - 73814 - Citizen Costume
|
||||
(@CGUID+42, 0, 0, 1, 1, 0, 0, 0, 0, 0, '73814'), -- Horde Citizen - 73814 - Citizen Costume
|
||||
(@CGUID+43, 0, 0, 0, 1, 0, 0, 0, 0, 4, '149746 151532'), -- Camp Post - 149746 - Powerup - Area Trigger - Camp, 151532 - Aura Very Tall - Yellow - State
|
||||
(@CGUID+44, 0, 0, 0, 1, 0, 0, 0, 0, 4, '149746 151532'), -- Camp Post - 149746 - Powerup - Area Trigger - Camp, 151532 - Aura Very Tall - Yellow - State
|
||||
(@CGUID+45, 0, 0, 0, 1, 0, 0, 0, 0, 4, '149746 151532'), -- Camp Post - 149746 - Powerup - Area Trigger - Camp, 151532 - Aura Very Tall - Yellow - State
|
||||
(@CGUID+46, 0, 0, 0, 1, 0, 0, 0, 0, 4, '149746 151532'), -- Camp Post - 149746 - Powerup - Area Trigger - Camp, 151532 - Aura Very Tall - Yellow - State
|
||||
(@CGUID+47, 0, 0, 0, 1, 0, 0, 0, 0, 3, '149665'), -- Arch, Start Race - 149665 - Powerup - Area Trigger - Start Arch
|
||||
(@CGUID+48, 0, 0, 0, 1, 0, 0, 0, 0, 3, '149665'), -- Arch, Start Race - 149665 - Powerup - Area Trigger - Start Arch
|
||||
(@CGUID+49, 0, 0, 1, 1, 0, 0, 0, 0, 0, ''); -- Thorina
|
||||
@@ -1,125 +0,0 @@
|
||||
SET @CGUID := 396612;
|
||||
|
||||
-- Creature
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+13;
|
||||
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, 55347, 974, 5861, 5870, '0', 0, 0, 0, 0, -4046.663330078125, 6348.13720703125, 13.20008659362792968, 1.936677932739257812, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Alliance Citizen (Area: The Darkmoon Faire - Difficulty: 0) (Auras: 73104 - Citizen Costume)
|
||||
(@CGUID+1, 55347, 974, 5861, 5870, '0', 0, 0, 0, 0, -4048.8056640625, 6351.314453125, 13.20008659362792968, 5.706589698791503906, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Alliance Citizen (Area: The Darkmoon Faire - Difficulty: 0) (Auras: 70764 - Citizen Costume)
|
||||
(@CGUID+2, 55348, 974, 5861, 5870, '0', 0, 0, 0, 0, -4027.979248046875, 6338.5556640625, 13.20008563995361328, 5.996942520141601562, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Horde Citizen (Area: The Darkmoon Faire - Difficulty: 0) (Auras: 73815 - Citizen Costume)
|
||||
(@CGUID+3, 55347, 974, 5861, 5870, '0', 0, 0, 0, 0, -4046.467041015625, 6351.80908203125, 13.20008659362792968, 4.554671287536621093, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Alliance Citizen (Area: The Darkmoon Faire - Difficulty: 0) (Auras: 70764 - Citizen Costume)
|
||||
(@CGUID+4, 55348, 974, 5861, 5870, '0', 0, 0, 0, 0, -4024.364501953125, 6339.2490234375, 13.20009040832519531, 3.659704208374023437, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Horde Citizen (Area: The Darkmoon Faire - Difficulty: 0) (Auras: 73815 - Citizen Costume)
|
||||
(@CGUID+5, 55348, 974, 5861, 5870, '0', 0, 0, 0, 0, -4026.935791015625, 6336.40087890625, 13.20008468627929687, 1.261948466300964355, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Horde Citizen (Area: The Darkmoon Faire - Difficulty: 0) (Auras: 71084 - Citizen Costume)
|
||||
(@CGUID+6, 55347, 974, 5861, 5870, '0', 0, 0, 0, 0, -4018.98779296875, 6366.7119140625, 13.20009040832519531, 4.435286998748779296, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Alliance Citizen (Area: The Darkmoon Faire - Difficulty: 0) (Auras: 73810 - Citizen Costume)
|
||||
(@CGUID+7, 55347, 974, 5861, 5870, '0', 0, 0, 0, 0, -4018.265625, 6363.1025390625, 13.20009136199951171, 2.098049402236938476, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Alliance Citizen (Area: The Darkmoon Faire - Difficulty: 0) (Auras: 73809 - Citizen Costume)
|
||||
(@CGUID+8, 55347, 974, 5861, 5870, '0', 0, 0, 0, 0, -4021.135498046875, 6365.6484375, 13.20009040832519531, 5.983478546142578125, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Alliance Citizen (Area: The Darkmoon Faire - Difficulty: 0) (Auras: 70764 - Citizen Costume)
|
||||
(@CGUID+9, 55347, 974, 5861, 5870, '0', 0, 0, 0, 0, -4085.885498046875, 6320.24462890625, 11.04891586303710937, 3.857727289199829101, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Alliance Citizen (Area: The Darkmoon Faire - Difficulty: 0) (Auras: 73810 - Citizen Costume)
|
||||
(@CGUID+10, 55347, 974, 5861, 5870, '0', 0, 0, 0, 0, -4088.007080078125, 6318.6240234375, 11.74756717681884765, 1.196440577507019042, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Alliance Citizen (Area: The Darkmoon Faire - Difficulty: 0) (Auras: 70764 - Citizen Costume)
|
||||
(@CGUID+11, 55347, 974, 5861, 5870, '0', 0, 0, 0, 0, -4087.994873046875, 6321.36962890625, 11.16493034362792968, 5.009645462036132812, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Alliance Citizen (Area: The Darkmoon Faire - Difficulty: 0) (Auras: 73811 - Citizen Costume)
|
||||
(@CGUID+12, 68402, 974, 5861, 5870, '0', 0, 0, 0, 1, -4058.213623046875, 6331.0244140625, 11.71875, 4.511098861694335937, 120, 0, 0, 112919, 0, 0, 0, 0, 0, 46924), -- Kae Ti (Area: The Darkmoon Faire - Difficulty: 0)
|
||||
(@CGUID+13, 68407, 974, 5861, 5870, '0', 0, 0, 0, 0, -4047.119873046875, 6341.11669921875, 13.01276016235351562, 4.00434112548828125, 120, 0, 0, 27, 0, 0, 0, 0, 0, 46924); -- "Olive" Ya (Area: The Darkmoon Faire - Difficulty: 0)
|
||||
|
||||
DELETE FROM `creature_addon` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+13;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(@CGUID+0, 0, 0, 0, 1, 0, 0, 0, 0, 0, '73104'), -- Alliance Citizen - 73104 - Citizen Costume
|
||||
(@CGUID+1, 0, 0, 0, 1, 0, 0, 0, 0, 0, '70764'), -- Alliance Citizen - 70764 - Citizen Costume
|
||||
(@CGUID+2, 0, 0, 0, 1, 0, 0, 0, 0, 0, '73815'), -- Horde Citizen - 73815 - Citizen Costume
|
||||
(@CGUID+3, 0, 0, 0, 1, 0, 0, 0, 0, 0, '70764'), -- Alliance Citizen - 70764 - Citizen Costume
|
||||
(@CGUID+4, 0, 0, 0, 1, 0, 0, 0, 0, 0, '73815'), -- Horde Citizen - 73815 - Citizen Costume
|
||||
(@CGUID+5, 0, 0, 0, 1, 0, 0, 0, 0, 0, '71084'), -- Horde Citizen - 71084 - Citizen Costume
|
||||
(@CGUID+6, 0, 0, 0, 1, 0, 0, 0, 0, 0, '73810'), -- Alliance Citizen - 73810 - Citizen Costume
|
||||
(@CGUID+7, 0, 0, 0, 1, 0, 0, 0, 0, 0, '73809'), -- Alliance Citizen - 73809 - Citizen Costume
|
||||
(@CGUID+8, 0, 0, 0, 1, 0, 0, 0, 0, 0, '70764'), -- Alliance Citizen - 70764 - Citizen Costume
|
||||
(@CGUID+9, 0, 0, 0, 1, 0, 0, 0, 0, 0, '73810'), -- Alliance Citizen - 73810 - Citizen Costume
|
||||
(@CGUID+10, 0, 0, 0, 1, 0, 0, 0, 0, 0, '73810'), -- Alliance Citizen - 73810 - Citizen Costume
|
||||
(@CGUID+11, 0, 0, 0, 1, 0, 0, 0, 0, 0, '70764'); -- Alliance Citizen - 70764 - Citizen Costume
|
||||
|
||||
-- Waypoints for CGUID+13
|
||||
SET @PATH := (@CGUID+13) * 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, -4017.691, 6336.815, 13.16664, NULL, 0),
|
||||
(@PATH, 1, -4028.326, 6331.984, 13.19014, NULL, 0),
|
||||
(@PATH, 2, -4035.635, 6331.594, 13.11833, NULL, 0),
|
||||
(@PATH, 3, -4041.825, 6334.296, 13.16664, NULL, 0),
|
||||
(@PATH, 4, -4046.74, 6336.051, 13.16664, NULL, 0),
|
||||
(@PATH, 5, -4049.885, 6333.23, 12.69475, NULL, 0),
|
||||
(@PATH, 6, -4053.911, 6329.064, 11.22209, NULL, 0),
|
||||
(@PATH, 7, -4055.25, 6324.245, 11.36833, NULL, 0),
|
||||
(@PATH, 8, -4047.262, 6315.127, 11.4251, NULL, 0),
|
||||
(@PATH, 9, -4037.238, 6311.301, 13.53691, NULL, 0),
|
||||
(@PATH, 10, -4033.38, 6308.745, 13.49333, NULL, 0),
|
||||
(@PATH, 11, -4034.019, 6304.787, 13.46574, NULL, 0),
|
||||
(@PATH, 12, -4037.47, 6303.75, 12.59123, NULL, 0),
|
||||
(@PATH, 13, -4041.148, 6305.401, 11.57817, NULL, 0),
|
||||
(@PATH, 14, -4048.965, 6312.557, 10.44377, NULL, 0),
|
||||
(@PATH, 15, -4054.491, 6318.771, 10.83183, NULL, 0),
|
||||
(@PATH, 16, -4056.321, 6324.629, 11.31499, NULL, 0),
|
||||
(@PATH, 17, -4054.177, 6329.696, 11.36943, NULL, 0),
|
||||
(@PATH, 18, -4050.306, 6334.001, 12.61061, NULL, 0),
|
||||
(@PATH, 19, -4047.526, 6337.846, 13.16664, NULL, 0),
|
||||
(@PATH, 20, -4038.274, 6342.155, 13.16664, NULL, 0),
|
||||
(@PATH, 21, -4032.359, 6340.044, 13.16664, NULL, 0),
|
||||
(@PATH, 22, -4026.103, 6340.779, 13.16664, NULL, 0),
|
||||
(@PATH, 23, -4021.148, 6345.004, 13.16664, NULL, 0),
|
||||
(@PATH, 24, -4018.573, 6350.762, 13.16664, NULL, 0),
|
||||
(@PATH, 25, -4019.752, 6357.356, 13.16664, NULL, 0),
|
||||
(@PATH, 26, -4024.097, 6362.542, 13.16664, NULL, 0),
|
||||
(@PATH, 27, -4029.814, 6364.646, 13.16664, NULL, 0),
|
||||
(@PATH, 28, -4036.738, 6363.67, 13.16664, NULL, 0),
|
||||
(@PATH, 29, -4040.858, 6359.434, 13.16664, NULL, 0),
|
||||
(@PATH, 30, -4043.59, 6352.838, 13.16664, NULL, 0),
|
||||
(@PATH, 31, -4041.915, 6347.196, 13.16664, NULL, 0),
|
||||
(@PATH, 32, -4050.728, 6336.908, 12.87465, NULL, 0),
|
||||
(@PATH, 33, -4056.141, 6330.427, 11.4572, NULL, 0),
|
||||
(@PATH, 34, -4059.637, 6328.071, 11.20537, NULL, 0),
|
||||
(@PATH, 35, -4065.585, 6329.223, 10.32182, NULL, 0),
|
||||
(@PATH, 36, -4070.446, 6334.002, 10.31155, NULL, 0),
|
||||
(@PATH, 37, -4083.464, 6347.912, 11.05887, NULL, 0),
|
||||
(@PATH, 38, -4089.753, 6352.374, 11.53518, NULL, 0),
|
||||
(@PATH, 39, -4089.753, 6352.374, 11.53518, NULL, 0),
|
||||
(@PATH, 40, -4089.753, 6352.374, 11.53518, NULL, 0),
|
||||
(@PATH, 41, -4089.753, 6352.374, 11.53518, NULL, 0),
|
||||
(@PATH, 42, -4089.753, 6352.374, 11.53518, NULL, 0),
|
||||
(@PATH, 43, -4089.753, 6352.374, 11.53518, NULL, 0),
|
||||
(@PATH, 44, -4089.753, 6352.374, 11.53518, NULL, 0),
|
||||
(@PATH, 45, -4094.649, 6354.988, 11.6387, NULL, 0),
|
||||
(@PATH, 46, -4104.555, 6359.779, 11.07596, NULL, 0),
|
||||
(@PATH, 47, -4106.196, 6361.928, 11.99539, NULL, 0),
|
||||
(@PATH, 48, -4102.519, 6371.447, 13.23885, NULL, 0),
|
||||
(@PATH, 49, -4097.8, 6374.787, 13.24175, NULL, 0),
|
||||
(@PATH, 50, -4099.963, 6378.29, 13.24175, NULL, 0),
|
||||
(@PATH, 51, -4104.144, 6379.275, 13.23885, NULL, 0),
|
||||
(@PATH, 52, -4106.068, 6372.806, 13.23885, NULL, 0),
|
||||
(@PATH, 53, -4109.181, 6363.05, 12.05838, NULL, 0),
|
||||
(@PATH, 54, -4107.097, 6359.782, 10.996, NULL, 0),
|
||||
(@PATH, 55, -4092.875, 6352.223, 11.10611, NULL, 0),
|
||||
(@PATH, 56, -4084.425, 6346.792, 10.61233, NULL, 0),
|
||||
(@PATH, 57, -4071.79, 6333.202, 10.02347, NULL, 0),
|
||||
(@PATH, 58, -4065.653, 6328.105, 10.42851, NULL, 0),
|
||||
(@PATH, 59, -4059.219, 6327.222, 11.19756, NULL, 0),
|
||||
(@PATH, 60, -4059.219, 6327.222, 11.19756, NULL, 0),
|
||||
(@PATH, 61, -4059.219, 6327.222, 11.19756, NULL, 0),
|
||||
(@PATH, 62, -4059.219, 6327.222, 11.19756, NULL, 0),
|
||||
(@PATH, 63, -4059.219, 6327.222, 11.19756, NULL, 0),
|
||||
(@PATH, 64, -4059.219, 6327.222, 11.19756, NULL, 0),
|
||||
(@PATH, 65, -4059.219, 6327.222, 11.19756, NULL, 0),
|
||||
(@PATH, 66, -4056.253, 6330.985, 11.52409, NULL, 0),
|
||||
(@PATH, 67, -4051.106, 6337.88, 12.89992, NULL, 0),
|
||||
(@PATH, 68, -4052.497, 6344.082, 13.16664, NULL, 0),
|
||||
(@PATH, 69, -4054.438, 6351.719, 13.16664, NULL, 0),
|
||||
(@PATH, 70, -4052.939, 6357.502, 13.16664, NULL, 0),
|
||||
(@PATH, 71, -4047.134, 6367.213, 13.24175, NULL, 0),
|
||||
(@PATH, 72, -4042.03, 6372.264, 13.24175, NULL, 0),
|
||||
(@PATH, 73, -4035.177, 6374.056, 13.24175, NULL, 0),
|
||||
(@PATH, 74, -4027.082, 6374.905, 13.23439, NULL, 0),
|
||||
(@PATH, 75, -4019.608, 6374.435, 13.23439, NULL, 0),
|
||||
(@PATH, 76, -4013.865, 6370.941, 13.23439, NULL, 0),
|
||||
(@PATH, 77, -4010.34, 6365.042, 13.16664, NULL, 0),
|
||||
(@PATH, 78, -4008.863, 6357.522, 13.16664, NULL, 0),
|
||||
(@PATH, 79, -4009.24, 6350.943, 13.16664, NULL, 0),
|
||||
(@PATH, 80, -4011.603, 6345.24, 13.16664, NULL, 0);
|
||||
|
||||
UPDATE `creature` SET `position_x`= -4017.691, `position_y`= 6336.815, `position_z`= 13.16664, `orientation`= 0, `wander_distance`= 0, `MovementType`= 2 WHERE `guid`= @CGUID+13;
|
||||
DELETE FROM `creature_addon` WHERE `guid`= @CGUID+13;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `bytes2`) VALUES
|
||||
(@CGUID+13, @PATH, 1);
|
||||
@@ -1,12 +0,0 @@
|
||||
-- Quest POIs
|
||||
DELETE FROM `quest_poi` WHERE (`QuestID`=9294 AND `BlobIndex`=0 AND `Idx1`=2) OR (`QuestID`=9294 AND `BlobIndex`=0 AND `Idx1`=1) OR (`QuestID`=9294 AND `BlobIndex`=0 AND `Idx1`=0);
|
||||
INSERT INTO `quest_poi` (`QuestID`, `BlobIndex`, `Idx1`, `ObjectiveIndex`, `QuestObjectiveID`, `QuestObjectID`, `MapID`, `UiMapID`, `Priority`, `Flags`, `WorldEffectID`, `PlayerConditionID`, `NavigationPlayerConditionID`, `SpawnTrackingID`, `AlwaysAllowMergingBlobs`, `VerifiedBuild`) VALUES
|
||||
(9294, 0, 2, 32, 0, 0, 530, 468, 0, 0, 0, 0, 0, 136400, 0, 46924), -- Healing the Lake
|
||||
(9294, 0, 1, 0, 260415, 88791, 530, 468, 0, 0, 0, 0, 0, 0, 0, 46924), -- Healing the Lake
|
||||
(9294, 0, 0, -1, 0, 0, 530, 468, 0, 0, 0, 0, 0, 0, 0, 46924); -- Healing the Lake
|
||||
|
||||
DELETE FROM `quest_poi_points` WHERE (`QuestID`=9294 AND `Idx1`=2 AND `Idx2`=0) OR (`QuestID`=9294 AND `Idx1`=1 AND `Idx2`=0) OR (`QuestID`=9294 AND `Idx1`=0 AND `Idx2`=0);
|
||||
INSERT INTO `quest_poi_points` (`QuestID`, `Idx1`, `Idx2`, `X`, `Y`, `Z`, `VerifiedBuild`) VALUES
|
||||
(9294, 2, 0, -4057, -13722, 73, 46924), -- Healing the Lake
|
||||
(9294, 1, 0, -4387, -13632, 0, 46924), -- Healing the Lake
|
||||
(9294, 0, 0, -4057, -13722, 73, 46924); -- Healing the Lake
|
||||
@@ -1,3 +0,0 @@
|
||||
-- Update Theramore Deckhand & Southsea Cutthroat
|
||||
UPDATE `creature_template` SET `faction`=1077 WHERE `entry`=34707; -- Theramore Deck Hand
|
||||
UPDATE `creature_template` SET `minlevel`=30, `maxlevel`=30, `faction`=190, `unit_flags`=33024 WHERE `entry`=3383; -- Southsea Cutthroat
|
||||
@@ -1,43 +0,0 @@
|
||||
SET @CGUID := 1051924;
|
||||
|
||||
-- Creature
|
||||
DELETE FROM `creature` WHERE `guid` = @CGUID+0;
|
||||
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, 161666, 2175, 10424, 10529, '0', 15017, 0, 0, 1, 187.6006927490234375, -2290.87841796875, 81.6041259765625, 0.230253174901008605, 120, 0, 0, 95, 382, 0, 0, 0, 0, 46924); -- Austin Huxworth (Area: Ogre Ruins - Difficulty: 0)
|
||||
|
||||
DELETE FROM `creature_addon` WHERE `guid` = @CGUID+0;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(@CGUID+0, 0, 0, 0, 1, 214, 0, 0, 0, 0, ''); -- Austin Huxworth
|
||||
|
||||
UPDATE `creature_template` SET `minlevel`=10, `maxlevel`=10, `faction`=35, `BaseAttackTime`=2000, `unit_flags2`=2048, `unit_flags3`=524288 WHERE `entry`=164989; -- Austin Huxworth
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=24886, `minlevel`=10, `maxlevel`=10, `faction`=35, `npcflag`=4194307, `BaseAttackTime`=2000, `unit_flags2`=2048 WHERE `entry`=161666; -- Austin Huxworth
|
||||
|
||||
-- Phasing
|
||||
DELETE FROM `phase_name` WHERE `ID` = 15017;
|
||||
INSERT INTO `phase_name` (`ID`, `Name`) VALUES
|
||||
(15017, 'Cosmetic - See Austin Huxworth at Alliance Populated Camp');
|
||||
|
||||
DELETE FROM `phase_area` WHERE `AreaId` = 10424 AND `PhaseId` = 15017;
|
||||
INSERT INTO `phase_area` (`AreaId`, `PhaseId`, `Comment`) VALUES
|
||||
(10424, 15017, 'Cosmetic - See Austin Huxworth at Alliance Populated Camp');
|
||||
|
||||
DELETE FROM `conditions` WHERE (`SourceTypeOrReferenceId` = 26 AND `SourceGroup` = 15017 AND `SourceEntry` = 10424);
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `Comment`) VALUES
|
||||
(26, 15017, 10424, 0, 0, 47, 0, 55879, 64, 0, 0, 'Apply Phase 15017 if Quest 55879 is rewarded');
|
||||
|
||||
-- Equip Template
|
||||
DELETE FROM `creature_equip_template` WHERE (`CreatureID`=164989 AND `ID`=1);
|
||||
INSERT INTO `creature_equip_template` (`CreatureID`, `ID`, `ItemID1`, `AppearanceModID1`, `ItemVisual1`, `ItemID2`, `AppearanceModID2`, `ItemVisual2`, `ItemID3`, `AppearanceModID3`, `ItemVisual3`, `VerifiedBuild`) VALUES
|
||||
(164989, 1, 0, 0, 0, 0, 0, 0, 110178, 0, 0, 46924); -- Austin Huxworth
|
||||
|
||||
-- Scaling Data
|
||||
DELETE FROM `creature_template_scaling` WHERE (`DifficultyID`=0 AND `Entry` IN (164990,164989,164986));
|
||||
INSERT INTO `creature_template_scaling` (`Entry`, `DifficultyID`, `LevelScalingDeltaMin`, `LevelScalingDeltaMax`, `ContentTuningID`, `VerifiedBuild`) VALUES
|
||||
(164990, 0, 0, 0, 482, 46924),
|
||||
(164989, 0, 0, 0, 741, 46924),
|
||||
(164986, 0, 0, 0, 741, 46924);
|
||||
|
||||
-- Spawngroup
|
||||
DELETE FROM `spawn_group` WHERE `groupId` = 128 AND `spawnId` = @CGUID+0;
|
||||
INSERT INTO `spawn_group` (`groupId`,`spawnType`,`spawnId`) VALUES
|
||||
(128, 0, @CGUID+0);
|
||||
@@ -1,512 +0,0 @@
|
||||
-- smart_scripts startup fixes
|
||||
|
||||
-- Missing gameobject_templates
|
||||
DELETE FROM `gameobject_template` WHERE `entry` IN (19901, 20352, 61927, 113791, 175329, 175330, 175331);
|
||||
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`, `AIName`, `ScriptName`, `VerifiedBuild`) VALUES
|
||||
(19901, 10, 465, 'Circle of Imprisonment', '', '', '', 1, 93, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'SmartGameObjectAI', '', 11723),
|
||||
(20352, 10, 343, 'Circle of Imprisonment', '', '', '', 1, 93, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'SmartGameObjectAI', '', 12340),
|
||||
(61927, 8, 200, 'Bonfire', '', '', '', 0.75, 4, 10, 2066, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'SmartGameObjectAI', '', 12340),
|
||||
(113791, 2, 602, 'Brazier of Everfount', '', '', '', 1, 0, 1630, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'SmartGameObjectAI', '', 12340),
|
||||
(175329, 3, 3613, 'Blackwood Nut Stores', '', '', '', 1.1, 93, 12811, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '', 12340),
|
||||
(175330, 3, 3613, 'Blackwood Fruit Stores', '', '', '', 0.72, 93, 12810, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'SmartGameObjectAI', '', 12340),
|
||||
(175331, 3, 3613, 'Blackwood Grain Stores', '', '', '', 0.91, 93, 12812, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'SmartGameObjectAI', '', 12340);
|
||||
|
||||
-- Creature/Gameobject is not using SmartAI
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry` IN (503, 1855, 2010, 2498, 2817, 2984, 3879, 3893, 3898, 3899, 3900, 4484, 4488, 4530, 4531, 4630, 4781, 4789, 5353, 6142, 6221, 6626, 7411, 7774, 7917, 7997, 8417, 8421, 10216, 10605, 10717, 10758, 10926, 11798, 11800, 12319, 12997, 13716, 14523, 15203, 15204, 15206, 15207, 15208, 15209, 15211, 15212, 15220, 15305, 15307, 15491, 19671, 19672, 23580, 23941);
|
||||
UPDATE `creature_template` SET `ScriptName`='' WHERE `entry`=4781;
|
||||
UPDATE `gameobject_template` SET `AIName`='SmartGameObjectAI' WHERE `entry`=148498;
|
||||
|
||||
-- Creature uses ScriptName or deprecated script
|
||||
UPDATE `creature_template` SET `AIName`='' WHERE `entry` IN (34697, 38978);
|
||||
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=474 AND `id`=3;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=5976 AND `id`=5;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=10261 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=10263 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=11563 AND `id` IN (2, 3);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=38981 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=39965 AND `id`=11;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=40080 AND `id`=2;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=50749 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=64267 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=64913 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid` IN (3143, 6353, 10445, 34697, 38978, 44367, 44906, 44954, 44966, 44987, 61411, 173254);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=1 AND `entryorguid`=204019 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=9 AND `entryorguid`=4229100 AND `id` IN (1, 4, 5);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=9 AND `entryorguid`=4294500 AND `id` IN (1, 2);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=9 AND `entryorguid`=5458704;
|
||||
|
||||
-- Creature guid does not exist
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid` IN (-19361, -13579, -19402, -19412, -371666, -371675, -371684);
|
||||
|
||||
-- Unused event_type or action_type
|
||||
UPDATE `smart_scripts` SET `event_type`=74, `event_param1`=0, `event_param2`=30, `event_param5`=40, `comment`='Riverpaw Mystic - Friendly At 0-30% Health - Cast ''Healing Wave''' WHERE `source_type`=0 AND `entryorguid`=453 AND `id`=3;
|
||||
UPDATE `smart_scripts` SET `event_type`=74, `event_param1`=0, `event_param2`=40, `event_param5`=40, `comment`='Ambermill Watcher - Friendly At 0-40% Health - Cast ''Renew''' WHERE `source_type`=0 AND `entryorguid`=1888 AND `id`=3;
|
||||
UPDATE `smart_scripts` SET `event_type`=74, `event_param1`=0, `event_param2`=40, `event_param5`=40, `comment`='Boulderfist Shaman - Friendly At 0-40% Health - Cast ''Healing Wave''' WHERE `source_type`=0 AND `entryorguid`=2570 AND `id`=2;
|
||||
UPDATE `smart_scripts` SET `event_type`=74, `event_param1`=0, `event_param2`=40, `event_param5`=40, `comment`='Medic Tamberlyn - Friendly At 0-40% Health - Cast ''First Aid''' WHERE `source_type`=0 AND `entryorguid`=5199 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `event_type`=74, `event_param1`=0, `event_param2`=40, `event_param5`=40, `comment`='Medic Helaina - Friendly At 0-40% Health - Cast ''First Aid''' WHERE `source_type`=0 AND `entryorguid`=5200 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `event_type`=74, `event_param1`=0, `event_param2`=40, `event_param5`=40, `comment`='Deadwood Gardener - Friendly At 0-40% Health - Cast ''Rejuvenation''' WHERE `source_type`=0 AND `entryorguid`=7154 AND `id`=1;
|
||||
UPDATE `smart_scripts` SET `event_type`=74, `event_param1`=0, `event_param2`=40, `event_param5`=40, `comment`='Scarlet Warder - Friendly At 0-40% Health - Cast ''Holy Light''' WHERE `source_type`=0 AND `entryorguid`=9447 AND `id`=2;
|
||||
UPDATE `smart_scripts` SET `event_type`=74, `event_param1`=0, `event_param2`=40, `event_param5`=40, `comment`='Scarlet Curate - Friendly At 0-40% Health - Cast ''Renew''' WHERE `source_type`=0 AND `entryorguid`=9450 AND `id`=1;
|
||||
UPDATE `smart_scripts` SET `event_type`=74, `event_param1`=0, `event_param2`=40, `event_param5`=40, `comment`='Shatterspear Priestess - Friendly At 0-40% Health - Cast ''Heal''' WHERE `source_type`=0 AND `entryorguid`=32855 AND `id`=1;
|
||||
UPDATE `smart_scripts` SET `event_type`=74, `event_param1`=0, `event_param2`=40, `event_param5`=40, `comment`='Blackmaw Shaman - Friendly At 0-40% Health - Cast ''Healing Wave''' WHERE `source_type`=0 AND `entryorguid`=36012 AND `id`=2;
|
||||
UPDATE `smart_scripts` SET `event_type`=74, `event_param1`=0, `event_param2`=40, `event_param5`=40, `comment`='Deepfin Seer - Friendly At 0-40% Health - Cast ''Healing Touch''' WHERE `source_type`=0 AND `entryorguid`=41592 AND `id`=1;
|
||||
UPDATE `smart_scripts` SET `event_type`=74, `event_param1`=0, `event_param2`=40, `event_param5`=40, `comment`='Idra''kess Prophet - Friendly At 0-40% Health - Cast ''Greater Heal''' WHERE `source_type`=0 AND `entryorguid`=41608 AND `id`=4;
|
||||
UPDATE `smart_scripts` SET `event_type`=74, `event_param1`=0, `event_param2`=40, `event_param5`=40, `comment`='Azsh''ir Abyss Priestess - Friendly At 0-40% Health - Cast ''Greater Heal''' WHERE `source_type`=0 AND `entryorguid`=42453 AND `id`=4;
|
||||
UPDATE `smart_scripts` SET `event_type`=74, `event_param1`=0, `event_param2`=40, `event_param5`=40, `comment`='Marshtide Cleric - Friendly At 0-40% Health - Cast ''Heal''' WHERE `source_type`=0 AND `entryorguid`=46841 AND `id`=2;
|
||||
UPDATE `smart_scripts` SET `event_type`=74, `event_param1`=0, `event_param2`=40, `event_param5`=40 WHERE `source_type`=0 AND `entryorguid` IN (61239, 61339) AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `event_type`=0, `event_param2`=0, `target_type`=2, `comment`='Gosh-Haldir - In Combat - Cast ''Fatal Bite''' WHERE `source_type`=0 AND `entryorguid`=2476 AND `id`=2;
|
||||
UPDATE `smart_scripts` SET `event_type`=0, `event_param2`=0, `target_type`=2, `comment`='Ruuzlu - In Combat - Cast ''Execute''' WHERE `source_type`=0 AND `entryorguid`=7797 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `event_type`=0, `event_param2`=0, `target_type`=2, `comment`='Sand Slitherer - In Combat - Cast ''Fatal Bite''' WHERE `source_type`=0 AND `entryorguid`=44595 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `event_type`=0, `event_param3`=6000, `event_param4`=9000 WHERE `event_type`=67;
|
||||
|
||||
UPDATE `smart_scripts` SET `action_type`=11, `comment`='Rattlecage Skeleton - In Combat - Cast ''Battle Shout''' WHERE `source_type`=0 AND `entryorguid`=-325170 AND `id`=2;
|
||||
UPDATE `smart_scripts` SET `action_type`=11, `comment`='Saltspittle Puddlejumper - On Reset - Cast ''Battle Stance'' (No Repeat)' WHERE `source_type`=0 AND `entryorguid`=3737 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `action_type`=11, `target_type`=1, `target_param1`=0, `target_param3`=0, `comment`='Conflagration - Out of Combat - Cast ''Burning Heat''' WHERE `source_type`=0 AND `entryorguid`=39994 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `action_type`=11, `comment`='Sand Vortex - Out of Combat - Cast ''Sand Vortex''' WHERE `source_type`=0 AND `entryorguid`=41730 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `action_type`=11, `comment`='Valdred - On Just summoned - Cast Kneel' WHERE `source_type`=0 AND `entryorguid`=49231 AND `id`=1;
|
||||
UPDATE `smart_scripts` SET `action_type`=11, `comment`='Risen Dead - On Script - Cast ''Enrage''' WHERE `source_type`=9 AND `entryorguid`=5037400 AND `id`=3;
|
||||
UPDATE `smart_scripts` SET `action_type`=133, `target_type`=1, `target_param1`=0, `target_param2`=0, `target_param3`=0 WHERE `source_type`=0 AND `entryorguid`=17826 AND `id`=13;
|
||||
UPDATE `smart_scripts` SET `action_type`=133, `action_param2`=48191, `target_type`=1, `target_param1`=0, `target_param2`=0, `target_param3`=0 WHERE `source_type`=0 AND `entryorguid`=18471 AND `id`=26;
|
||||
UPDATE `smart_scripts` SET `action_type`=41, `action_param1`=1000, `action_param2`=1 WHERE `source_type`=0 AND `entryorguid` IN (44614, 44794) AND `id`=7;
|
||||
UPDATE `smart_scripts` SET `action_type`=146, `action_param1`=1, `comment`='Injured Stormwind Infantry - On Spellhit - Set uninteractible' WHERE `source_type`=0 AND `entryorguid`=50047 AND `id`=5;
|
||||
|
||||
-- Non-existent spell entry
|
||||
UPDATE `creature_template` SET `AIName`='' WHERE `entry` IN (683, 787, 819, 909, 1062, 1183, 1679, 2030, 2170, 2742, 2744, 3811, 3939, 3940, 4025, 4036, 4119, 4151, 4278, 4682, 4798, 4850, 5333, 5682, 6047, 7727, 12320, 13219, 14832);
|
||||
|
||||
UPDATE `smart_scripts` SET `action_param1`=23381 WHERE `source_type`=0 AND `entryorguid` IN (-251442, -251439, -251437, -251436, -251430, -251426, -251425) AND `id`=5;
|
||||
UPDATE `smart_scripts` SET `action_param1`=11971 WHERE `source_type`=0 AND `entryorguid`=568 AND `id`=2;
|
||||
UPDATE `smart_scripts` SET `action_param1`=75930, `comment`='Panther - In Combat - Cast ''Mangle''' WHERE `source_type`=0 AND `entryorguid`=736 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `action_param1`=11972 WHERE `source_type`=0 AND `entryorguid`=1540 AND `id`=1;
|
||||
UPDATE `smart_scripts` SET `action_param1`=12550 WHERE `source_type`=0 AND `entryorguid`=1544 AND `id`=2;
|
||||
UPDATE `smart_scripts` SET `event_param1`=12550, `action_param1`=12550 WHERE `source_type`=0 AND `entryorguid`=1544 AND `id`=3;
|
||||
UPDATE `smart_scripts` SET `action_param1`=11986 WHERE `source_type`=0 AND `entryorguid`=2640 AND `id`=1;
|
||||
UPDATE `smart_scripts` SET `action_param1`=11986 WHERE `source_type`=0 AND `entryorguid`=2718 AND `id`=2;
|
||||
UPDATE `smart_scripts` SET `action_param1`=23381 WHERE `source_type`=0 AND `entryorguid`=3672 AND `id`=1;
|
||||
UPDATE `smart_scripts` SET `action_param1`=23381 WHERE `source_type`=0 AND `entryorguid`=3840 AND `id`=5;
|
||||
UPDATE `smart_scripts` SET `action_param1`=20815 WHERE `source_type`=0 AND `entryorguid`=4289 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `action_param1`=20296 WHERE `source_type`=0 AND `entryorguid`=4289 AND `id`=1;
|
||||
UPDATE `smart_scripts` SET `action_param1`=32749 WHERE `source_type`=0 AND `entryorguid`=4300 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `action_param1`=34517 WHERE `source_type`=0 AND `entryorguid`=4300 AND `id`=1;
|
||||
UPDATE `smart_scripts` SET `action_param1`=12039 WHERE `source_type`=0 AND `entryorguid`=4303 AND `id`=2;
|
||||
UPDATE `smart_scripts` SET `action_param1`=19514 WHERE `source_type`=0 AND `entryorguid`=5236 AND `id` IN (1, 2, 3);
|
||||
UPDATE `smart_scripts` SET `action_param1`=79924 WHERE `source_type`=0 AND `entryorguid`=5236 AND `id`=4;
|
||||
UPDATE `smart_scripts` SET `action_param1`=11970 WHERE `source_type`=0 AND `entryorguid`=6226 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `action_param1`=15732 WHERE `source_type`=0 AND `entryorguid`=10425 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `event_flags`=3, `event_type`=2, `event_param2`=10 WHERE `source_type`=0 AND `entryorguid`=15277 AND `id`=7;
|
||||
UPDATE `smart_scripts` SET `action_param1`=16827 WHERE `source_type`=0 AND `entryorguid`=16348 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `action_param1`=34945 WHERE `source_type`=0 AND `entryorguid`=23368 AND `id`=1;
|
||||
UPDATE `smart_scripts` SET `action_param1`=17139 WHERE `source_type`=0 AND `entryorguid`=23368 AND `id`=2;
|
||||
UPDATE `smart_scripts` SET `action_param1`=53570 WHERE `source_type`=0 AND `entryorguid`=28490 AND `id`=2;
|
||||
UPDATE `smart_scripts` SET `action_param1`=75417 WHERE `source_type`=0 AND `entryorguid`=40419 AND `id`=1;
|
||||
UPDATE `smart_scripts` SET `action_param1`=91677 WHERE `source_type`=0 AND `entryorguid`=47138 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=503 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid` IN (683, 819, 1028) AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=787 AND `id` IN (0, 1);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=909 AND `id` IN (0, 1, 2);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=938 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=940 AND `id` IN (0, 1, 2);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=942 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=1029 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=1036 AND `id` IN (1, 3);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=1038 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=1060 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=1062 AND `id` IN (0, 1);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=1175 AND `id`=2;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=1183 AND `id`=2;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=1679 AND `id` IN (0, 1);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=1717 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=1854 AND `id` IN (1, 4);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=1911 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=2021 AND `id`=2;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=2030 AND `id` IN (0, 1, 2);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=2170 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=2171 AND `id`=2;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=2203 AND `id` IN (0, 1, 2);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=2205 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=2338 AND `id` IN (1, 2);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=2344 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=2583 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=2651 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=2713 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=2742 AND `id` IN (0, 1);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=2744 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=2761 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=3271 AND `id` IN (2, 3);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=3380 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=3458 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=3804 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=3808 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=3811 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=3900 AND `id` IN (1, 2);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=3939 AND `id` IN (0, 1);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=3940 AND `id` IN (0, 1, 2);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=4025 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=4036 AND `id` IN (0, 1);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=4050 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=4051 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=4116 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=4119 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=4151 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=4278 AND `id` IN (0, 1);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=4296 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=4299 AND `id` IN (0, 1);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=4303 AND `id`=3;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=4467 AND `id`=2;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=4517 AND `id` IN (0, 2);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=4649 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=4680 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=4682 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=4684 AND `id`=2;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=4798 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=4799 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=4805 AND `id`=2;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=4809 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=4818 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=4820 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=4831 AND `id`=3;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=4847 AND `id` IN (0, 2);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=4850 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=4852 AND `id` IN (0, 1);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=4962 AND `id` IN (0, 3);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=4971 AND `id`=2;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=5333 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=5335 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=5601 AND `id`=2;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=5682 AND `id` IN (0, 1);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=5915 AND `id`=4;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=6047 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=6113 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=6207 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=6210 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=7175 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=7291 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=7321 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=7727 AND `id` IN (0, 1, 2);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=7843 AND `id`=4;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=10979 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=11032 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=12320 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=13219 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=14832 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=15184 AND `id`=2;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=15212 AND `id`=3;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=15277 AND `id`=6;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=17143 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=17150 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=17199 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=17206 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=17551 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=17725 AND `id` IN (2, 3);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=17810 AND `id`=6;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=19480 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=19671 AND `id`=4;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=23188 AND `id`=7;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=23619 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid` IN (23623, 23624, 23625, 23626) AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=24687 AND `id` IN (4, 5);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=25087 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid` IN (25090, 25091, 25092) AND `id`=2;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=26178 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=26428 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=29614 AND `id` IN (5, 6, 7);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=32377 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=35143 AND `id` IN (1, 3);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=36499 AND `id`=3;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=36516 AND `id`=5;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=36522 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=36551 AND `id`=5;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=36564 AND `id` IN (3, 5);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=36620 AND `id` IN (3, 5, 7);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=36840 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=36842 AND `id` IN (1, 3);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=36879 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=36892 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=36896 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=37712 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=37728 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=38482 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=40417 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=43540 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid` IN (44614, 44794) AND `id`=6;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=50051 AND `id`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=9 AND `entryorguid`=2732801 AND `id` IN (3, 4);
|
||||
|
||||
-- Missing SMART_EVENT_FLAG_NOT_REPEATABLE
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid` IN (-131059, -131058, -131056, -131055, -105495, -105489, -105488, -105487) AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=702 AND `id`=2;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=1393 AND `id`=1;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=1538 AND `id`=1;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=1664 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=4961 AND `id`=2;
|
||||
UPDATE `smart_scripts` SET `event_flags`=3 WHERE `source_type`=0 AND `entryorguid`=9707 AND `id`=3;
|
||||
UPDATE `smart_scripts` SET `event_flags`=3 WHERE `source_type`=0 AND `entryorguid`=9708 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `event_flags`=3 WHERE `source_type`=0 AND `entryorguid`=10375 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `event_flags`=3 WHERE `source_type`=0 AND `entryorguid` IN (10680, 10681) AND `id`=4;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=16459 AND `id`=1;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=17240 AND `id`=2;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=17311 AND `id`=3;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=17664 AND `id`=2;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=18372 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid` IN (18734, 18735, 18736, 18737, 18738) AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=20132 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=20769 AND `id`=1;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=22979 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `event_flags`=3 WHERE `source_type`=0 AND `entryorguid`=23030 AND `id`=1;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=23037 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=23162 AND `id`=4;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=23274 AND `id` IN (15, 18);
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=23376 AND `id` IN (0, 3);
|
||||
UPDATE `smart_scripts` SET `event_flags`=7 WHERE `source_type`=0 AND `entryorguid`=26638 AND `id` IN (1, 2);
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=27250 AND `id`=3;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=27254 AND `id`=4;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=27615 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid` IN (27616, 27618, 27619) AND `id`=1;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=27640 AND `id`=2;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=28027 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=28362 AND `id`=9;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=28608 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=28902 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=28998 AND `id`=9;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=29352 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=30096 AND `id`=3;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=30146 AND `id`=1;
|
||||
UPDATE `smart_scripts` SET `event_flags`=513 WHERE `source_type`=0 AND `entryorguid`=30174 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=30399 AND `id`=7;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=30845 AND `id`=4;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=31222 AND `id`=5;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=31271 AND `id`=4;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=31277 AND `id`=8;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=32484 AND `id`=1;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=32868 AND `id`=4;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=33498 AND `id` IN (0, 1);
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=34300 AND `id`=4;
|
||||
UPDATE `smart_scripts` SET `event_flags`=7 WHERE `source_type`=0 AND `entryorguid`=37670 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=42940 AND `id`=1;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=45919 AND `id`=5;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=58731 AND `id`=2;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=63240 AND `id`=3;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `source_type`=0 AND `entryorguid`=67004 AND `id`=2;
|
||||
|
||||
-- Missing event timers
|
||||
UPDATE `smart_scripts` SET `event_param2`=1000, `event_param3`=3000, `event_param4`=3000 WHERE `source_type`=0 AND `entryorguid`=314 AND `id`=1;
|
||||
UPDATE `smart_scripts` SET `event_param3`=500, `event_param4`=500 WHERE `source_type`=0 AND `entryorguid` IN (5254, 5343, 5366, 7726, 29368) AND `id` IN (4, 5, 6, 7, 8);
|
||||
UPDATE `smart_scripts` SET `event_param3`=500, `event_param4`=500 WHERE `source_type`=0 AND `entryorguid` IN (5251, 7939, 8147) AND `id` IN (6, 8, 11);
|
||||
UPDATE `smart_scripts` SET `event_param1`=15000, `event_param2`=25000 WHERE `source_type`=0 AND `entryorguid`=5808 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `event_param3`=3000, `event_param4`=7000 WHERE `source_type`=0 AND `entryorguid`=9817 AND `id`=7;
|
||||
UPDATE `smart_scripts` SET `event_param3`=8000, `event_param4`=10000 WHERE `source_type`=0 AND `entryorguid`=11340 AND `id`=2;
|
||||
UPDATE `smart_scripts` SET `event_param3`=15000, `event_param4`=20000 WHERE `source_type`=0 AND `entryorguid`=11353 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `event_param3`=500, `event_param4`=500 WHERE `source_type`=0 AND `entryorguid`=18678 AND `id` IN (9, 11);
|
||||
UPDATE `smart_scripts` SET `event_param3`=500, `event_param4`=500 WHERE `source_type`=0 AND `entryorguid`=23285 AND `id` IN (9, 12);
|
||||
UPDATE `smart_scripts` SET `event_param3`=500, `event_param4`=500 WHERE `source_type`=0 AND `entryorguid`=25969 AND `id`=3;
|
||||
UPDATE `smart_scripts` SET `event_param3`=500, `event_param4`=500 WHERE `source_type`=0 AND `entryorguid`=26865 AND `id` IN (12, 13, 15, 17, 18);
|
||||
UPDATE `smart_scripts` SET `event_param3`=500, `event_param4`=500 WHERE `source_type`=0 AND `entryorguid`=28083 AND `id` IN (9, 12);
|
||||
UPDATE `smart_scripts` SET `event_param3`=500, `event_param4`=500 WHERE `source_type`=0 AND `entryorguid`=28752 AND `id` IN (4, 6, 8);
|
||||
UPDATE `smart_scripts` SET `event_param3`=500, `event_param4`=500 WHERE `source_type`=0 AND `entryorguid`=35151 AND `id` IN (4, 5, 6, 7);
|
||||
UPDATE `smart_scripts` SET `event_param3`=1000, `event_param4`=1000 WHERE `source_type`=0 AND `entryorguid`=36856 AND `id`=4;
|
||||
UPDATE `smart_scripts` SET `event_param3`=500, `event_param4`=500 WHERE `source_type`=0 AND `entryorguid` IN (39733, 39965, 43488) AND `id` IN (4, 5, 6, 7, 8);
|
||||
UPDATE `smart_scripts` SET `event_param3`=500, `event_param4`=500 WHERE `source_type`=0 AND `entryorguid` IN (39946, 39972, 40069, 40360, 44400) AND `id` IN (6, 8, 11);
|
||||
UPDATE `smart_scripts` SET `event_param3`=8000, `event_param4`=10000 WHERE `source_type`=0 AND `entryorguid`=43014 AND `id`=1;
|
||||
UPDATE `smart_scripts` SET `event_param3`=60000, `event_param4`=60000 WHERE `source_type`=0 AND `entryorguid`=46709 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `event_param1`=10000, `event_param2`=10000, `event_param3`=35000, `event_param4`=40000 WHERE `source_type`=0 AND `entryorguid`=50780 AND `id`=1;
|
||||
UPDATE `smart_scripts` SET `event_param3`=3000, `event_param4`=3000 WHERE `source_type`=0 AND `entryorguid`=63611 AND `id`=0;
|
||||
|
||||
-- Event links
|
||||
UPDATE `smart_scripts` SET `link`=0 WHERE `source_type`=0 AND `entryorguid` IN (-460049, 3616, 41641, 46274, 47250) AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `link`=0 WHERE `source_type`=0 AND `entryorguid`=14908 AND `id`=7;
|
||||
UPDATE `smart_scripts` SET `link`=0 WHERE `source_type`=0 AND `entryorguid`=29614 AND `id`=4;
|
||||
|
||||
-- Invalid data for SMART_EVENT_VICTIM_CASTING
|
||||
UPDATE `smart_scripts` SET `event_param3`=0, `event_param4`=0 WHERE `event_type`=13;
|
||||
|
||||
-- Invalid data for SMART_ACTION_SET_INGAME_PHASE_ID & SMART_ACTION_SET_INGAME_PHASE_GROUP
|
||||
UPDATE `creature` SET `phaseUseFlags`= 0, `PhaseId`= 170 WHERE `guid`=27588 AND `id`=26206;
|
||||
|
||||
UPDATE `smart_scripts` SET `comment`='Skyguard Ace - On Data 1 1 Set - Remove phase 170' WHERE `source_type`=0 AND `entryorguid`=-130968 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `comment`='Skyguard Ace - On Data 1 1 Set - Remove phase 170 (Skyguard Ace)' WHERE `source_type`=0 AND `entryorguid`=-130968 AND `id` IN (3, 4);
|
||||
UPDATE `smart_scripts` SET `action_param1`=170, `action_param2`=1, `comment`='Anvilrage Guardsman - On Respawn - Set phase 170' WHERE `source_type`=0 AND `entryorguid` IN (-91106, -91107) AND `id`=3;
|
||||
UPDATE `smart_scripts` SET `action_param1`=170, `action_param2`=0, `comment`='Anvilrage Guardsman - On Script - Remove phase 170' WHERE `source_type`=9 AND `entryorguid` IN (889100, 889101) AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `action_param1`=170, `action_param2`=1, `comment`='High Chief Bristlelimb - On Reset - Set phase 170' WHERE `source_type`=0 AND `entryorguid`=17702 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `action_param1`=170, `action_param2`=0, `comment`='High Chief Bristlelimb - On Data Set - Remove phase 170' WHERE `source_type`=0 AND `entryorguid`=17702 AND `id`=3;
|
||||
UPDATE `smart_scripts` SET `action_type`=16, `action_param1`=371, `action_param2`=1, `comment`='Halfdan the Ice-Hearted - On Just Summoned - Set phase group 371' WHERE `source_type`=0 AND `entryorguid`=23671 AND `id`=1;
|
||||
UPDATE `smart_scripts` SET `action_param1`=170, `action_param2`=0, `comment`='Halfdan the Ice-Hearted - On Just Summoned - Remove phase 170 from Val''kyr Observer' WHERE `source_type`=0 AND `entryorguid`=23671 AND `id`=3;
|
||||
UPDATE `smart_scripts` SET `action_param1`=170, `action_param2`=1, `comment`='Halfdan the Ice-Hearted - Ooc - Set phase 170 to Val''kyr Observer' WHERE `source_type`=0 AND `entryorguid`=23671 AND `id`=17;
|
||||
UPDATE `smart_scripts` SET `action_param1`=170, `action_param2`=0, `comment`='Raelorasz - On Quest ''Mustering the Reds'' Rewarded - Remove phase 170 (Keristrasza)' WHERE `source_type`=0 AND `entryorguid`=26117 AND `id`=3;
|
||||
UPDATE `smart_scripts` SET `action_type`=16, `comment`='Warlord Jin''arrak - On Just Summoned - Set phase group 371' WHERE `source_type`=0 AND `entryorguid`=27199 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `action_param1`=177, `action_param2`=1, `comment`='Gymer - On Passenger Boarded - Set phase 177' WHERE `source_type`=0 AND `entryorguid`=29884 AND `id`=2;
|
||||
UPDATE `smart_scripts` SET `action_param1`=177, `action_param2`=0, `comment`='Gymer - On Passenger Removed - Remove phase 177' WHERE `source_type`=0 AND `entryorguid`=29884 AND `id`=5;
|
||||
UPDATE `smart_scripts` SET `action_type`=16, `comment`='Machine - Just created - Set phase group 371' WHERE `source_type`=0 AND `entryorguid`=30134 AND `id`=16;
|
||||
UPDATE `smart_scripts` SET `action_param2`=1, `comment`='Crusader Olakin Sainrith - On Just Summoned - Set phase 175' WHERE `source_type`=0 AND `entryorguid`=31428 AND `id`=6;
|
||||
UPDATE `smart_scripts` SET `action_param2`=1, `comment`='Ghostwing - On Just Summoned - Set phase 175' WHERE `source_type`=0 AND `entryorguid`=31432 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `action_type`=16, `comment`='Your Corpse - On Just Summoned - Set phase group 371 (No Repeat)' WHERE `source_type`=0 AND `entryorguid`=32742 AND `id`=1;
|
||||
UPDATE `smart_scripts` SET `comment`='Banner of Provocation - On counter set - Set phase 170' WHERE `source_type`=1 AND `entryorguid`=181058 AND `id`=2;
|
||||
UPDATE `smart_scripts` SET `comment`='Bundle of Bloodthistle - On Data Set 3 3 - Set phase 170' WHERE `source_type`=1 AND `entryorguid`=184798 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `comment`='Zul''Drak Skull Pile 02 - On Data Set 0 1 - Set phase 170' WHERE `source_type`=1 AND `entryorguid`=190594 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `comment`='Convocation Summoning Circle Spell Focus - On Data Set 0 1 - Set phase 170' WHERE `source_type`=1 AND `entryorguid`=191124 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `comment`='Shadow Council Torch (x2.00) - On Data Set 0 1 - Set phase 170' WHERE `source_type`=1 AND `entryorguid`=191365 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `comment`='Archbishop Landgren''s Corpse - On Data Set 0 1 - Set phase 170' WHERE `source_type`=1 AND `entryorguid`=191578 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `action_param2`=1, `comment`='Razorthorn Dirt Mound - On Script - Set phase 170' WHERE `source_type`=9 AND `entryorguid`=18707300 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `action_param1`=170, `action_param2`=0, `comment`='Razorthorn Dirt Mound - On Script - Remove phase 170' WHERE `source_type`=9 AND `entryorguid`=18707300 AND `id`=1;
|
||||
UPDATE `smart_scripts` SET `action_param2`=1, `comment`='Nerubian Crater - On Script - Set phase 170' WHERE `source_type`=9 AND `entryorguid`=19055500 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `action_param1`=170, `action_param2`=0, `comment`='Nerubian Crater - On Script - Remove phase 170' WHERE `source_type`=9 AND `entryorguid`=19055500 AND `id`=1;
|
||||
UPDATE `smart_scripts` SET `action_param2`=1, `comment`='Convocation Summoning Circle - On Script - Set phase 170' WHERE `source_type`=9 AND `entryorguid`=19112300 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `action_param1`=170, `action_param2`=0, `comment`='Convocation Summoning Circle - On Script - Remove phase 170' WHERE `source_type`=9 AND `entryorguid`=19112300 AND `id`=1;
|
||||
UPDATE `smart_scripts` SET `action_param1`=170, `action_param2`=0, `comment`='Shadow Council Torch (x2.00) - On Script - Remove phase 170' WHERE `source_type`=9 AND `entryorguid`=19136500 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `action_param1`=170, `action_param2`=1, `comment`='Val''kyr Observer - On Script - Set phase 170 to nearby Val''kyr Observer' WHERE `source_type`=9 AND `entryorguid`=2411800 AND `id`=5;
|
||||
UPDATE `smart_scripts` SET `action_param1`=170, `action_param2`=1, `comment`='Val''kyr Observer - On Script - Set phase 170 to Self' WHERE `source_type`=9 AND `entryorguid`=2411800 AND `id`=6;
|
||||
UPDATE `smart_scripts` SET `action_param1`=170, `action_param2`=0, `comment`='Mootoo the Younger - On Script - Remove phase 170' WHERE `source_type`=9 AND `entryorguid`=2550404 AND `id`=1;
|
||||
UPDATE `smart_scripts` SET `comment`='Brann - On ActionList - Set phase group 371' WHERE `source_type`=9 AND `entryorguid`=3038200 AND `id`=2;
|
||||
|
||||
-- Invalid misc data
|
||||
UPDATE `smart_scripts` SET `event_param2`=12000 WHERE `source_type`=0 AND `entryorguid`=1804 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `event_type`=40 WHERE `source_type`=0 AND `entryorguid`=6176 AND `id`=1;
|
||||
UPDATE `smart_scripts` SET `action_param1`=120 WHERE `source_type`=0 AND `entryorguid`=7750 AND `id`=1;
|
||||
UPDATE `smart_scripts` SET `event_param1`=83562 WHERE `source_type`=0 AND `entryorguid`=9397 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `action_param1`=0 WHERE `source_type`=0 AND `entryorguid`=14718 AND `id`=1;
|
||||
UPDATE `smart_scripts` SET `action_param1`=22268, `action_param2`=0 WHERE `source_type`=0 AND `entryorguid`=22448 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `event_type`=61 WHERE `source_type`=0 AND `entryorguid` IN (20234, 26602, 26853, 26876, 26881) AND `id`=2;
|
||||
UPDATE `smart_scripts` SET `action_type`=11, `action_param1`=95006, `action_param2`=2, `target_type`=1 WHERE `source_type`=0 AND `entryorguid`=30698 AND `id`=9;
|
||||
UPDATE `smart_scripts` SET `action_type`=86, `action_param3`=21, `action_param4`=50, `target_param1`=50 WHERE `source_type`=0 AND `entryorguid`=31119 AND `id`=2;
|
||||
UPDATE `smart_scripts` SET `event_flags`=7, `event_param1`=0 WHERE `source_type`=0 AND `entryorguid`=31260 AND `id`=1;
|
||||
UPDATE `smart_scripts` SET `action_type`=134, `action_param1`=66780, `action_param2`=0 WHERE `source_type`=0 AND `entryorguid`=35126 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `action_type`=134, `action_param1`=66781, `action_param2`=0 WHERE `source_type`=0 AND `entryorguid`=35128 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `action_type`=134, `action_param1`=66782, `action_param2`=0 WHERE `source_type`=0 AND `entryorguid`=35130 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `event_flags`=7, `event_param1`=0 WHERE `source_type`=0 AND `entryorguid`=36879 AND `id`=3;
|
||||
UPDATE `smart_scripts` SET `event_flags`=519, `event_param1`=0 WHERE `source_type`=0 AND `entryorguid`=36896 AND `id`=2;
|
||||
UPDATE `smart_scripts` SET `target_type`=23 WHERE `source_type`=0 AND `entryorguid`=37988 AND `id`=5;
|
||||
UPDATE `smart_scripts` SET `event_param3`=12000, `event_param4`=18000 WHERE `source_type`=0 AND `entryorguid`=37112 AND `id`=2;
|
||||
UPDATE `smart_scripts` SET `action_param3`=1, `target_type`=23 WHERE `source_type`=0 AND `entryorguid`=37988 AND `id`=6;
|
||||
UPDATE `smart_scripts` SET `action_param3`=0 WHERE `source_type`=0 AND `entryorguid`=46230 AND `id`=2;
|
||||
UPDATE `smart_scripts` SET `link`=0, `event_type`=4 WHERE `source_type`=0 AND `entryorguid` IN (47599, 47600) AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `action_type`=134 WHERE `source_type`=0 AND `entryorguid`=47930 AND `id`=1;
|
||||
UPDATE `smart_scripts` SET `event_param1`=0, `event_param2`=20 WHERE `source_type`=0 AND `entryorguid`=58769 AND `id`=2;
|
||||
UPDATE `smart_scripts` SET `event_type`=25 WHERE `source_type`=0 AND `entryorguid`=59722 AND `id`=1;
|
||||
UPDATE `smart_scripts` SET `action_type`=134, `action_param1`=290189 WHERE `source_type`=0 AND `entryorguid`=149626 AND `id` IN (0, 2);
|
||||
UPDATE `smart_scripts` SET `event_type`=70, `event_flags`=1, `event_param1`=2, `action_type`=87, `action_param1`=16481900, `action_param2`=16481901, `action_param3`=16481902, `action_param4`=16481903, `action_param5`=16481904, `action_param6`=16481905, `target_type`=1, `target_param1`=0, `target_param2`=0, `comment`='Dark Keeper Portrait - ON_STATE_CHANGED - Random action list' WHERE `source_type`=1 AND `entryorguid`=164819 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `event_type`=70, `event_param1`=2 WHERE `source_type`=1 AND `entryorguid`=204019 AND `id`=2;
|
||||
UPDATE `smart_scripts` SET `action_type`=11, `action_param1`=102760, `target_type`=1 WHERE `source_type`=9 AND `entryorguid`=1566400 AND `id`=1;
|
||||
UPDATE `smart_scripts` SET `action_type`=11, `action_param1`=36421 WHERE `source_type`=9 AND `entryorguid`=1999500 AND `id`=17;
|
||||
UPDATE `smart_scripts` SET `action_param1`=22268, `action_param2`=0 WHERE `source_type`=9 AND `entryorguid`=2244801 AND `id`=5;
|
||||
UPDATE `smart_scripts` SET `action_param2`=294149 WHERE `source_type`=9 AND `entryorguid`=2362200 AND `id`=3;
|
||||
UPDATE `smart_scripts` SET `target_type`=10 WHERE `source_type`=9 AND `entryorguid`=2598300 AND `id`=1;
|
||||
|
||||
-- Missing creature texts
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` IN (2984, 4500, 4781, 6492, 7774, 10717, 13716, 15491, 24480, 49178);
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(2984, 0, 0, 'I''ve been expecting you, $n.', 12, 3, 100, 0, 0, 0, 947, 0, 'Seer Wiserunner'),
|
||||
(4500, 0, 0, 'Puny $r wanna fight Overlord Mok''Morokk? Me beat you! Me boss here!', 12, 0, 100, 0, 0, 0, 1515, 0, 'Overlord Mok''Morokk - on Quest Accept'),
|
||||
(4500, 1, 0, 'Me scared! Me run now!', 14, 0, 100, 0, 0, 0, 1523, 0, 'Overlord Mok''Morokk - on Health 0%-25%'),
|
||||
(4500, 2, 0, 'Me still boss of ogres. Haw!', 14, 0, 100, 0, 0, 0, 1514, 0, 'Overlord Mok''Morokk'),
|
||||
(4781, 0, 0, '%s nervously crawls from the crate.', 16, 0, 100, 0, 0, 0, 1638, 0, 'Snufflenose Gopher'),
|
||||
(4781, 1, 0, '%s wiggles his whiskers at $n.', 16, 0, 100, 0, 0, 0, 1591, 0, 'Snufflenose Gopher'),
|
||||
(4781, 2, 0, '%s sniffs at the ground...', 16, 0, 100, 0, 0, 0, 1592, 0, 'Snufflenose Gopher'),
|
||||
(6492, 0, 0, '%s is angered and attacks!', 16, 0, 100, 0, 0, 0, 3074, 0, 'Rift Spawn'),
|
||||
(6492, 1, 0, '%s escapes into the void!', 16, 0, 100, 0, 0, 0, 2564, 0, 'Rift Spawn'),
|
||||
(6492, 2, 0, '%s is sucked into the coffer!', 16, 0, 100, 0, 0, 0, 2553, 0, 'Rift Spawn'),
|
||||
(7774, 0, 0, 'Don''t forget to get my bell out of the chest here. And remember, if do happen to wander off, just ring it and i''ll find you again.', 12, 0, 100, 0, 0, 0, 3921, 0, 'Shay Leafrunner'),
|
||||
(7774, 1, 0, 'This is quite an adventure!', 12, 0, 100, 0, 0, 0, 3914, 0, 'Shay Leafrunner'),
|
||||
(7774, 1, 1, 'Oh, I wandered off again. I''m sorry.', 12, 0, 100, 0, 0, 0, 3913, 0, 'Shay Leafrunner'),
|
||||
(7774, 1, 2, 'The bell again, such a sweet sound.', 12, 0, 100, 0, 0, 0, 3916, 0, 'Shay Leafrunner'),
|
||||
(7774, 1, 3, 'I can''t help it, really. This is just such a beautiful place.', 12, 0, 100, 0, 0, 0, 3915, 0, 'Shay Leafrunner'),
|
||||
(7774, 1, 4, 'Oh, there you are!', 12, 0, 100, 0, 0, 0, 3906, 0, 'Shay Leafrunner'),
|
||||
(7774, 2, 0, '%s begins to wander off.', 16, 0, 100, 0, 0, 0, 3918, 0, 'Shay Leafrunner'),
|
||||
(7774, 3, 0, 'Are we taking the scenic route?', 12, 0, 100, 0, 0, 0, 3912, 0, 'Shay Leafrunner'),
|
||||
(7774, 3, 1, 'Oh, what a beautiful flower over there...', 12, 0, 100, 0, 0, 0, 3907, 0, 'Shay Leafrunner'),
|
||||
(7774, 3, 2, 'These trees are quite glorious, aren''t they?', 12, 0, 100, 0, 0, 0, 3908, 0, 'Shay Leafrunner'),
|
||||
(7774, 3, 3, 'Are you sure this is the right way? Maybe we should go this way instead...', 12, 0, 100, 0, 0, 0, 3909, 0, 'Shay Leafrunner'),
|
||||
(7774, 3, 4, 'Hmmm, I wonder what''s over this way?', 12, 0, 100, 0, 0, 0, 3911, 0, 'Shay Leafrunner'),
|
||||
(7774, 4, 0, 'Oh, here you are, Rockbiter! I''m sorry, I know I''m not supposed to wander off.', 12, 0, 100, 0, 0, 0, 3917, 0, 'Shay Leafrunner'),
|
||||
(10717, 0, 0, '%s is summoned through a temporal rift!', 16, 0, 100, 0, 0, 0, 6033, 0, ''),
|
||||
(13716, 0, 0, 'You wish to learn of the stone? Follow me.', 12, 0, 100, 1, 0, 0, 8952, 0, 'Celebras - Line 0'),
|
||||
(13716, 1, 0, 'For so long I have drifted in my cursed form. You have freed me... Your hard work shall be repaid.', 12, 0, 100, 1, 0, 0, 8953, 0, 'Celebras - Line 1'),
|
||||
(13716, 2, 0, 'Please do as I instruct you, $n.', 12, 0, 100, 1, 0, 0, 8954, 0, 'Celebras - Line 2'),
|
||||
(13716, 3, 0, 'Read this tome I have placed before you, and speak the words aloud.', 12, 0, 100, 1, 0, 0, 8950, 0, 'Celebras - Line 3'),
|
||||
(13716, 4, 0, '%s begins to channel his energy, focusing on the stone.', 16, 0, 100, 469, 0, 0, 8951, 0, 'Celebras - Emote'),
|
||||
(13716, 5, 0, 'Together, the two parts shall become one, once again.', 12, 0, 100, 1, 0, 0, 8948, 0, 'Celebras - Line 5'),
|
||||
(13716, 6, 0, 'Shal myrinan ishnu daldorah...', 12, 0, 100, 1, 0, 0, 8949, 0, 'Celebras - Line 6'),
|
||||
(13716, 7, 0, 'My scepter will once again become whole!', 12, 0, 100, 1, 0, 0, 8955, 0, 'Celebras - Line 7'),
|
||||
(13716, 8, 0, 'Perhaps we can attempt this later. Please speak to me again if you wish to do so.', 12, 0, 100, 0, 0, 0, 8947, 0, 'Celebras the Redeemed'),
|
||||
(15491, 0, 0, 'Pitiful, predictable mortals... You know not what you have done! The Master''s will fulfilled. The Moonglade shall be destroyed and Malfurion along with it!', 14, 0, 100, 0, 0, 0, 11030, 0, 'Eranikus Say 0'),
|
||||
(15491, 1, 1, '%s lets loose a sinister laugh.', 16, 0, 100, 0, 0, 0, 11296, 0, 'Eranikus Say 1'),
|
||||
(15491, 2, 2, 'You are certainly not your father, insect. Should it interest me, I would crush you with but a swipe of my claws. Turn Shan''do Stormrage over to me and your pitiful life will be spared along with the lives of your people.', 14, 0, 100, 0, 0, 0, 11294, 0, 'Eranikus Say 2'),
|
||||
(15491, 3, 3, 'My redemption? You are bold, little one. My redemption comes by the will of my god.', 14, 0, 100, 0, 0, 0, 11297, 0, 'Eranikus Say 3'),
|
||||
(15491, 4, 4, '%s roars furiously.', 16, 0, 100, 0, 0, 0, 11298, 0, 'Eranikus Say 4'),
|
||||
(15491, 5, 5, 'Rise, servants of the Nightmare! Rise and destroy this world! Let there be no survivors...', 14, 0, 100, 0, 0, 0, 11299, 0, 'Eranikus Say 5'),
|
||||
(15491, 6, 6, 'Where is your savior? How long can you hold out against my attacks?', 14, 0, 100, 0, 0, 0, 11304, 0, 'Eranikus Say 6'),
|
||||
(15491, 7, 7, 'Remulos, look how easy they fall before me? You can stop this, fool. Turn the druid over to me and it will all be over...', 14, 0, 100, 0, 0, 0, 11306, 0, 'Eranikus Say 7'),
|
||||
(15491, 8, 8, 'Defeated my minions? Then face me, mortals!', 14, 0, 100, 0, 0, 0, 11305, 0, 'Eranikus Say 8'),
|
||||
(15491, 9, 9, 'IT BURNS! THE PAIN... SEARING...', 14, 0, 100, 0, 0, 0, 11314, 0, 'Eranikus Say 9'),
|
||||
(15491, 10, 10, 'WHY? Why did this happen to ... to me? Where were you Tyrande? Where were you when I fell from the grace of Elune?', 14, 0, 100, 0, 0, 0, 11315, 0, 'Eranikus Say 10'),
|
||||
(15491, 11, 11, 'I... I feel... I feel the touch of Elune upon my being once more... She smiles upon me... Yes... I...', 14, 0, 100, 0, 0, 0, 11316, 0, 'Eranikus Say 11'),
|
||||
(15491, 12, 12, '%s falls to one knee.', 16, 0, 100, 0, 0, 0, 11319, 0, 'Eranikus Say 12'),
|
||||
(24480, 0, 0, 'I thought you''d never ask!', 15, 0, 100, 0, 0, 0, 23477, 0, 'Mojo'),
|
||||
(24480, 0, 1, 'Now that''s what I call froggy-style!', 15, 0, 100, 0, 0, 0, 23478, 0, 'Mojo'),
|
||||
(24480, 0, 2, 'This won''t take long, did it?', 15, 0, 100, 0, 0, 0, 23479, 0, 'Mojo'),
|
||||
(24480, 0, 3, 'I promise not to give you warts...', 15, 0, 100, 0, 0, 0, 23480, 0, 'Mojo'),
|
||||
(24480, 0, 4, 'There''s just never enough Mojo to go around...', 15, 0, 100, 0, 0, 0, 23481, 0, 'Mojo'),
|
||||
(24480, 0, 5, 'Listen, $n, I know of a little swamp not too far from here....', 15, 0, 100, 0, 0, 0, 23482, 0, 'Mojo'),
|
||||
(24480, 0, 6, 'Your lily pad or mine?', 15, 0, 100, 0, 0, 0, 23483, 0, 'Mojo'),
|
||||
(24480, 0, 7, 'Feelin'' a little froggy, are ya?', 15, 0, 100, 0, 0, 0, 23484, 0, 'Mojo'),
|
||||
(24480, 1, 0, 'Mojo leaps into $n''s pocket!', 16, 0, 100, 0, 0, 0, 23485, 0, 'Mojo'),
|
||||
(49178, 0, 0, 'FOOD FOR GROLNAR!', 14, 0, 100, 0, 0, 0, 49256, 0, 'Grolnar the Berserk');
|
||||
|
||||
-- Missing waypoints
|
||||
DELETE FROM `waypoints` WHERE `entry` IN (7997, 13716, 15491, 19666, 369200, 1710900, 1710901);
|
||||
INSERT INTO `waypoints` (`entry`, `pointid`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `point_comment`) VALUES
|
||||
(7997, 1, -4532.19, 807.833, 59.9749, NULL, 0, 'Captured Sprite Darter'),
|
||||
(7997, 2, -4526.04, 799.328, 59.4271, NULL, 0, 'Captured Sprite Darter'),
|
||||
(7997, 3, -4518.87, 786.24, 59.9261, NULL, 0, 'Captured Sprite Darter'),
|
||||
(7997, 4, -4516.6, 766.617, 60.6654, NULL, 0, 'Captured Sprite Darter'),
|
||||
(7997, 5, -4516.79, 749.124, 60.4805, NULL, 0, 'Captured Sprite Darter'),
|
||||
(7997, 6, -4517.52, 731.643, 60.9822, NULL, 0, 'Captured Sprite Darter'),
|
||||
(7997, 7, -4522.3, 710.707, 60.8061, NULL, 0, 'Captured Sprite Darter'),
|
||||
(7997, 8, -4530.08, 695.036, 60.6917, NULL, 0, 'Captured Sprite Darter'),
|
||||
(7997, 9, -4537.26, 679.979, 60.5726, NULL, 0, 'Captured Sprite Darter'),
|
||||
(7997, 10, -4541.54, 655.429, 58.551, NULL, 0, 'Captured Sprite Darter'),
|
||||
(7997, 11, -4539.33, 649.443, 57.9488, NULL, 0, 'Captured Sprite Darter'),
|
||||
(7997, 12, -4526.54, 639.678, 56.2069, NULL, 0, 'Captured Sprite Darter'),
|
||||
(7997, 13, -4507.92, 627.417, 55.6034, NULL, 0, 'Captured Sprite Darter'),
|
||||
(13716, 1, 657.207, 73.8004, -86.8318, NULL, 0, 'Celebras - The Scepter of Celebras - waypoint 1'),
|
||||
(13716, 2, 656.58, 83.1467, -86.8285, NULL, 0, 'Celebras - The Scepter of Celebras - waypoint 2'),
|
||||
(13716, 3, 656.595, 73.5683, -86.8284, NULL, 0, 'Celebras - The Scepter of Celebras - waypoint 3'),
|
||||
(13716, 4, 655.405, 73.8083, -86.8384, NULL, 0, 'Celebras - The Scepter of Celebras - waypoint 4'),
|
||||
(13716, 5, 655.405, 73.8083, -86.8384, NULL, 0, 'Celebras - The Scepter of Celebras - waypoint 5'),
|
||||
(13716, 6, 653.437, 73.9764, -85.3354, NULL, 0, 'Celebras - The Scepter of Celebras - waypoint 6'),
|
||||
(13716, 7, 655.724, 67.3549, -86.828, NULL, 0, 'Celebras - The Scepter of Celebras - waypoint 7'),
|
||||
(13716, 8, 650.08, 65.0115, -86.7745, NULL, 0, 'Celebras - The Scepter of Celebras - waypoint 8'),
|
||||
(13716, 9, 655.445, 67.6601, -86.8283, NULL, 0, 'Celebras - The Scepter of Celebras - waypoint 9'),
|
||||
(13716, 10, 657.399, 78.0873, -86.8283, NULL, 0, 'Celebras - The Scepter of Celebras - waypoint 10'),
|
||||
(13716, 11, 652.611, 86.3702, -86.8453, NULL, 0, 'Celebras - The Scepter of Celebras - waypoint 11'),
|
||||
(15491, 1, 7949.81, -2605.47, 513.591, NULL, 0, 'Eranikus'),
|
||||
(15491, 2, 7931.33, -2575.21, 489.629, NULL, 0, 'Eranikus'),
|
||||
(15491, 3, 7925.13, -2573.75, 489.64, NULL, 0, 'Eranikus'),
|
||||
(15491, 4, 7910.55, -2565.55, 488.616, NULL, 0, 'Eranikus'),
|
||||
(15491, 5, 7867.44, -2567.33, 486.946, NULL, 0, 'Eranikus'),
|
||||
(19666, 1, -68.4021, -19.7878, -0.952996, NULL, 0, 'Shadow Lord Xiraxis'),
|
||||
(19666, 2, -67.832, -48.3341, -0.955288, NULL, 0, 'Shadow Lord Xiraxis'),
|
||||
(19666, 3, -67.7851, -75.7174, -0.938923, NULL, 0, 'Shadow Lord Xiraxis'),
|
||||
(369200, 1, 4606.61, 2.96905, 69.909, NULL, 0, 'Volcor'),
|
||||
(369200, 2, 4612.49, 14.2943, 69.8441, NULL, 0, 'Volcor'),
|
||||
(1710900, 1, -10463.3, -3322.52, 20.9924, NULL, 0, ''),
|
||||
(1710900, 2, -10468.9, -3331.02, 25.4713, NULL, 0, ''),
|
||||
(1710900, 3, -10463.3, -3322.52, 20.9924, NULL, 0, ''),
|
||||
(1710900, 4, -10461.1, -3319.65, 20.9641, NULL, 0, ''),
|
||||
(1710901, 1, -10457.4, -3322.28, 20.9642, NULL, 0, ''),
|
||||
(1710901, 2, -10454.3, -3320.74, 20.9642, NULL, 0, ''),
|
||||
(1710901, 3, -10455.1, -3311.08, 21.0004, NULL, 0, ''),
|
||||
(1710901, 4, -10445.8, -3296.79, 20.1784, NULL, 0, ''),
|
||||
(1710901, 5, -10455.1, -3311.08, 21.0004, NULL, 0, ''),
|
||||
(1710901, 6, -10454.3, -3320.74, 20.9642, NULL, 0, ''),
|
||||
(1710901, 7, -10457.4, -3322.28, 20.9642, NULL, 0, ''),
|
||||
(1710901, 8, -10461.1, -3319.65, 20.9641, NULL, 0, '');
|
||||
|
||||
-- Non-existent areatrigger
|
||||
DELETE FROM `areatrigger_scripts` WHERE `entry` IN (2246, 2248, 2250, 2252, 2626, 2627, 2628, 2629, 2630, 2631, 2632, 2633, 2634, 2635, 2636, 2637, 4354);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=2 AND `entryorguid` IN (2246, 2248, 2250, 2252, 2626, 2627, 2628, 2629, 2630, 2631, 2632, 2633, 2634, 2635, 2636, 2637, 4354);
|
||||
|
||||
-- Action 15 SpecialFlags for Quest entry does not include FLAGS_EXPLORATION_OR_EVENT
|
||||
DELETE FROM `quest_template_addon` WHERE `ID`=4770;
|
||||
INSERT INTO `quest_template_addon` (`ID`, `MaxLevel`, `AllowableClasses`, `SourceSpellID`, `PrevQuestID`, `NextQuestID`, `ExclusiveGroup`, `BreadcrumbForQuestId`, `RewardMailTemplateID`, `RewardMailDelay`, `RequiredSkillID`, `RequiredSkillPoints`, `RequiredMinRepFaction`, `RequiredMaxRepFaction`, `RequiredMinRepValue`, `RequiredMaxRepValue`, `ProvidedItemCount`, `SpecialFlags`) VALUES
|
||||
(4770, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2);
|
||||
|
||||
UPDATE `quest_template_addon` SET `SpecialFlags`=2 WHERE `ID`=27222;
|
||||
@@ -1,89 +0,0 @@
|
||||
--
|
||||
-- Table structure for table `creature_template`
|
||||
--
|
||||
ALTER TABLE `creature_template` MODIFY `mechanic_immune_mask` bigint unsigned NOT NULL DEFAULT 0;
|
||||
|
||||
--
|
||||
-- Table structure for table `gossip_menu_option`
|
||||
--
|
||||
ALTER TABLE `gossip_menu_option`
|
||||
ADD `GossipOptionID` int NOT NULL DEFAULT 0 AFTER `MenuID`,
|
||||
ADD `Flags` int NOT NULL DEFAULT 0 AFTER `Language`,
|
||||
ADD `GossipNpcOptionID` int NULL DEFAULT NULL AFTER `ActionPoiID`,
|
||||
ADD `SpellID` int NULL DEFAULT NULL AFTER `BoxBroadcastTextID`,
|
||||
ADD `OverrideIconID` int NULL DEFAULT NULL AFTER `SpellID`;
|
||||
|
||||
-- give it a temporary dummy unique value
|
||||
UPDATE `gossip_menu_option` SET `GossipOptionID`=-((`MenuID`<<8) | `OptionID`);
|
||||
|
||||
DROP TABLE IF EXISTS `gossip_menu_option_addon`;
|
||||
|
||||
--
|
||||
-- Table structure for table `quest_completion_log_conditional`
|
||||
--
|
||||
DROP TABLE IF EXISTS `quest_completion_log_conditional`;
|
||||
CREATE TABLE `quest_completion_log_conditional` (
|
||||
`QuestId` int NOT NULL,
|
||||
`PlayerConditionId` int NOT NULL,
|
||||
`QuestgiverCreatureId` int NOT NULL,
|
||||
`locale` varchar(4) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`Text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
|
||||
`OrderIndex` int NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` int NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`QuestId`,`PlayerConditionId`,`QuestgiverCreatureId`,`locale`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
--
|
||||
-- Table structure for table `quest_description_conditional`
|
||||
--
|
||||
DROP TABLE IF EXISTS `quest_description_conditional`;
|
||||
CREATE TABLE `quest_description_conditional` (
|
||||
`QuestId` int NOT NULL,
|
||||
`PlayerConditionId` int NOT NULL,
|
||||
`QuestgiverCreatureId` int NOT NULL,
|
||||
`locale` varchar(4) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`Text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
|
||||
`OrderIndex` int NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` int NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`QuestId`,`PlayerConditionId`,`QuestgiverCreatureId`,`locale`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
ALTER TABLE `creature_template` MODIFY `mechanic_immune_mask` bigint unsigned NOT NULL DEFAULT 0;
|
||||
|
||||
--
|
||||
-- Table structure for table `quest_offer_reward_conditional`
|
||||
--
|
||||
DROP TABLE IF EXISTS `quest_offer_reward_conditional`;
|
||||
CREATE TABLE `quest_offer_reward_conditional` (
|
||||
`QuestId` int NOT NULL,
|
||||
`PlayerConditionId` int NOT NULL,
|
||||
`QuestgiverCreatureId` int NOT NULL,
|
||||
`locale` varchar(4) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`Text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
|
||||
`OrderIndex` int NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` int NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`QuestId`,`PlayerConditionId`,`QuestgiverCreatureId`,`locale`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
--
|
||||
-- Table structure for table `quest_request_items_conditional`
|
||||
--
|
||||
DROP TABLE IF EXISTS `quest_request_items_conditional`;
|
||||
CREATE TABLE `quest_request_items_conditional` (
|
||||
`QuestId` int NOT NULL,
|
||||
`PlayerConditionId` int NOT NULL,
|
||||
`QuestgiverCreatureId` int NOT NULL,
|
||||
`locale` varchar(4) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`Text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
|
||||
`OrderIndex` int NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` int NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`QuestId`,`PlayerConditionId`,`QuestgiverCreatureId`,`locale`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
--
|
||||
-- Table structure for table `serverside_spell`
|
||||
--
|
||||
ALTER TABLE `serverside_spell`
|
||||
ADD `CasterAuraType` int NOT NULL DEFAULT 0 AFTER `ExcludeTargetAuraSpell`,
|
||||
ADD `TargetAuraType` int NOT NULL DEFAULT 0 AFTER `CasterAuraType`,
|
||||
ADD `ExcludeCasterAuraType` int NOT NULL DEFAULT 0 AFTER `TargetAuraType`,
|
||||
ADD `ExcludeTargetAuraType` int NOT NULL DEFAULT 0 AFTER `ExcludeCasterAuraType`;
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1,4 @@
|
||||
-- TDB 1002.22121 world
|
||||
UPDATE `version` SET `db_version`='TDB 1002.22121', `cache_id`=22121 LIMIT 1;
|
||||
UPDATE `updates` SET `state`='ARCHIVED',`speed`=0;
|
||||
REPLACE INTO `updates_include` (`path`, `state`) VALUES ('$/sql/old/10.x/world', 'ARCHIVED');
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1,15 @@
|
||||
--
|
||||
DELETE FROM `page_text` WHERE `ID` IN (8148 /*8148*/, 8398 /*8398*/, 8399 /*8399*/);
|
||||
INSERT INTO `page_text` (`ID`, `Text`, `NextPageID`, `PlayerConditionID`, `Flags`, `VerifiedBuild`) VALUES
|
||||
(8148, 'The Stonewright is untouchable. Not even our own stoneborn forces would dare raise a talon against her. \n\nWhat is worse is that she is one of the first venthyr, like myself and the Curator. She was not made from a soul, but willed into being by Denathrius himself. \n\nNo sinstone, no mortal trappings, or past deeds will bend her to our will. If she is unwilling to provide us her medallion, we stand very little chance of recovering it.', 0, 0, 0, 43345), -- 8148
|
||||
(8398, 'Item List:\n\n3 vombata saddle adjustments for Varoun\n\n7 tools for Banit\'s stock \n\n15 new staves for the guards \n\nAssorted dishes and seating for Anap\'s caravan \n\n(These new travellers seem to have decided it is an inn of sorts. Which would be fine if they did not make a such a mess.)', 0, 0, 0, 43345), -- 8398
|
||||
(8399, 'After a thorough examination of the Raptora in the area, I do not believe they are fit to bear travelers across Zereth Mortis without unacceptable levels of training. \n\nTherefore, these strange devices scattered throughout will have to do. It is a shame the Exile took up residence near the westernmost one. Elder Kreth may be unhappy about us making use of these, but I have convinced him it is better than disturbing sacred ground and possibly disrupting the wildlife and Automa wherever we pass.\n\n-Wayfinder Ros', 0, 0, 0, 43345); -- 8399
|
||||
|
||||
UPDATE `page_text` SET `VerifiedBuild`=43345 WHERE `ID` IN (8128, 8141, 8135, 8143, 8133, 8137, 8387, 8380, 8390, 8336, 8397, 8396);
|
||||
UPDATE `page_text` SET `VerifiedBuild`=43340 WHERE `ID` IN (4899, 8143);
|
||||
UPDATE `page_text` SET `VerifiedBuild`=43206 WHERE `ID` IN (8128, 8143);
|
||||
UPDATE `page_text` SET `VerifiedBuild`=42698 WHERE `ID` IN (8389, 8432, 8431, 8430, 8429, 8428, 8427, 8426, 8425, 8421, 8420, 8419, 8418, 8417, 8416, 8388, 8390);
|
||||
UPDATE `page_text` SET `VerifiedBuild`=42560 WHERE `ID`=8390;
|
||||
UPDATE `page_text` SET `VerifiedBuild`=42538 WHERE `ID` IN (8540, 8552, 8539, 8551, 8538, 8550, 8537, 8549, 8536, 8548, 8535, 8547, 8534, 8546, 8533, 8545, 8532, 8544, 8412, 8543, 8375, 8542, 8411, 8541, 8553, 8436, 8435, 8434, 8433, 8424, 8423, 8422, 8415, 8414, 8413, 8388);
|
||||
UPDATE `page_text` SET `VerifiedBuild`=42488 WHERE `ID` IN (8388, 8540, 8552, 8539, 8551, 8538, 8550, 8537, 8549, 8536, 8548, 8535, 8547, 8534, 8546, 8533, 8545, 8532, 8544, 8412, 8543, 8375, 8542, 8411, 8541, 8553);
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
--
|
||||
DELETE FROM `page_text` WHERE `ID` IN (3566 /*3566*/, 4748 /*4748*/, 4776 /*4776*/, 4775 /*4775*/, 4774 /*4774*/, 8368 /*8368*/, 8367 /*8367*/, 8366 /*8366*/, 8365 /*8365*/, 8364 /*8364*/, 8363 /*8363*/, 8362 /*8362*/, 8361 /*8361*/, 8360 /*8360*/, 8359 /*8359*/, 8358 /*8358*/, 8357 /*8357*/, 8356 /*8356*/, 8355 /*8355*/, 8354 /*8354*/, 8353 /*8353*/, 8352 /*8352*/, 8351 /*8351*/, 8350 /*8350*/, 8349 /*8349*/, 8257 /*8257*/, 8256 /*8256*/, 8148 /*8148*/);
|
||||
INSERT INTO `page_text` (`ID`, `Text`, `NextPageID`, `PlayerConditionID`, `Flags`, `VerifiedBuild`) VALUES
|
||||
(3566, 'Grimfang,$b$bI report to you from Splintertree, and the news is unpleasant.$b$bThe post was recently attacked by the kaldorei, which prevented any reports from being delivered.$b$bThe siege has been broken, but many were lost and another attack looks imminent.$b$bWe shall continue sending elves to their graves as long as fate permits.$b$b- Kadrak', 0, 0, 0, 44908), -- 3566
|
||||
(4748, '\"Behold the Royal Chamberlain. Long may he stand as the defender of his majesty\'s vast and sacred treasures. As long as this statue stands, none but the Emperor himself may lay claim to the royal treasury.\"', 0, 0, 0, 44730), -- 4748
|
||||
(4776, 'Lei Shen unified the language, established a single currency, standardized weights and measures, and founded an empire. $b$BFor the first time, the races of the land were united. The Thunder King considered their suffering a small price to pay... a mere weakness of the flesh.', 0, 0, 0, 44730), -- 4776
|
||||
(4775, 'But many mogu saw in Lei Shen the unity of purpose that had been lacking in the generations since their masters had fallen silent. They flocked around the Thunder King\'s banner. They eagerly did his bidding as he enslaved the other races, believing - as Lei Shen did - that the \"lesser\" races should serve the mogu, just as the mogu had once served their masters.', 4776, 0, 0, 44730), -- 4775
|
||||
(4774, 'Armed with the power of storms, the Thunder King gathered together his followers and began the systematic conquest of the other mogu warlords. Most did not submit to his authority: the lucky ones were vaporized by lightning or trampled by his growing legions. The others were dragged off in chains until he deemed them \"broken.\"', 4775, 0, 0, 44730), -- 4774
|
||||
(8368, 'Diviner\'s Rune Chits\n\nThis is one of many items within the archive crafted for divination. As I have always been guided by the Purpose, I sometimes ask myself if mortals are frustrated by the ambiguity of their existence.\n\nAnd sometimes, I wonder if they relish the thrill of possibility.', 0, 91971, 0, 44730), -- 8368
|
||||
(8367, 'Obelisk of Dark Tidings\n\nSo much power in such a humble object. Its whispers speak of the Purpose--if there is only one true way, why then does it diverge into different paths? \n\nSuch musings might work on those who lack faith. But my kind are faith incarnate. There is no shaking our convictions.', 8368, 91982, 0, 44730), -- 8367
|
||||
(8366, 'The Netherstar\n\nI asked Roh-Senara where the Netherstar came from, but she did not know. When pressed further, she shook her head. \n\n\"We must accept that some stories are simply lost. Those tales are no longer ours to tell. Instead, we find the ones that are.\"', 8367, 91974, 0, 44730), -- 8366
|
||||
(8365, 'Ring of Self-Reflection\n\nEvery relic within the archive was made for an intended use. I once asked Roh-Senara why someone would craft a ring such as this.\n\n\"Perhaps they merely sought company,\" she mused, \"even if it were only an illusion.\"\n\nI did not understand what she meant. I believe I do now.', 8366, 91985, 0, 44730), -- 8365
|
||||
(8364, 'Gorak Claw Fetish\n\nToday I asked Roh-Senara whether the Drust are truly part of the Purpose if they exist between Life and Death.\n\nInstead of an answer, she posed a question in return: If the wind is not of soil or sky, is it truly part of nature?\n\nIt seems I have much to ponder.', 8365, 91988, 0, 44730), -- 8364
|
||||
(8363, 'Shadow-Slicing Shortsword\n\nWhile considering the blade, I asked Roh-Senara about the nature of violence. What role does it play within the Purpose? She told me this was a mystery I would have to unravel on my own. \n\nRather than think upon that question, I now wonder why she answered in this way.', 8364, 91986, 0, 44730), -- 8363
|
||||
(8362, 'Bulwark of Divine Intent\n\nSometimes when I am alone with the bulwark, it feels as though someone is standing watch nearby. I am overcome with the sense that I am somehow being protected. \n\nOne might think such an experience would be unnerving, but in truth I find it a source of comfort.', 8363, 91972, 0, 44730), -- 8362
|
||||
(8361, 'Unstable Explosive Orb\n\nThis relic makes me nervous. I do not like storing it in the archive, but Roh-Senara insists that we must. In our hands, she explained, we can be certain it will never be used. \n\nWe trust in the Purpose. Is it really so difficult to trust in each other as well?', 8362, 91977, 0, 44730), -- 8361
|
||||
(8360, 'Sack of Strange Soil\n\nThough I am unfamiliar with its origin, this small parcel of earth seems most eager to cultivate life. Perhaps it is not soil, but possibilities that merely wait for the right moment. \n\n\"It is nothing so complicated,\" Roh-Senara told me with a laugh. \"The soil merely fulfills its Purpose.\"', 8361, 91980, 0, 44730), -- 8360
|
||||
(8359, 'Drum of the Death Loa\n\nTrickster. Liar. Swindler. A few of many words to describe Bwonsamdi. I feel as if I hear his voice whenever this drum is sounded.\n\nThough he is the loa of Death, it is said that he began as a mortal. Perhaps that is why, despite his title, he always seems so full of life.', 8360, 91979, 0, 44730), -- 8359
|
||||
(8358, 'Enigmatic Decrypting Device\n\nWe attendants are straightforward in our speech. Such is not the case with other beings.\n\nDuplicity can be easy to detect. But there are more subtle inflections--sarcasm, innuendo, allusion--that often elude me. \n\nPerhaps I should make use of this device myself.', 8359, 91984, 0, 44730), -- 8358
|
||||
(8357, 'Everliving Statuette\n\nThis statue has vexed me for eons. It claims to know much but speaks only in falsehoods. I once told Roh-Senara as much, and to my surprise, she laughed.\n\n\"There is one truth above all others,\" she said to me as she regarded the relic. \"No one knows everything.\"', 8358, 91981, 0, 44730), -- 8357
|
||||
(8356, 'Cipher of Understanding\n\nSometimes I ponder the nature of language. We learn to communicate, forming symbols that evolve into text. Yet languages vary widely, even within a single realm.\n\nWould it not be in the best interests of the Purpose if we could all understand each other?', 8357, 91978, 0, 44730), -- 8356
|
||||
(8355, 'Celestial Shadowlands Chart\n\nI have always been fascinated by maps. A few lines and names scribbled onto parchment, and entire worlds unfurl before the one who reads them.\n\nSeeing all of the realms at once reminds me of the grandeur of the Purpose... and of my infinitesimal part within it.', 8356, 91976, 0, 44730), -- 8355
|
||||
(8354, 'Peculiar Wood Carving\n\nIt took great effort to restore this carving. I removed untold ages of soil until the image underneath was at last revealed. Roh-Senara praised my dedication to the task.\n\nFor the first time, I felt truly accomplished. Perhaps Korthia is where I am meant to be after all.', 8355, 91987, 0, 44730), -- 8354
|
||||
(8353, 'Guise of the Changeling\n\nAh yes, this mask was one of the more recent additions to the archive. I understand that it originated from a mortal world but has passed through many a sorcerer\'s hand within the Shadowlands.\n\nI suppose that even in Death, one often possesses secrets they wish to hide.', 8354, 91973, 0, 44730), -- 8353
|
||||
(8352, 'The Talisman of the Eternal Scholar\n\nThank the Purpose! I had feared that the talisman and all of its history were lost forever. \n\nRoh-Senara never revealed its power to me. Yet when I hold it, I can feel the weight of my responsibility. It fills me with the strength to carry on.\n\nSurely, that is power in and of itself.', 8353, 90299, 0, 44730), -- 8352
|
||||
(8351, 'Book of Binding: The Tormented Sorcerer\n\nOccasionally I wonder what would happen if I were to retrieve that final page. Would I be fulfilling the book\'s part of the Purpose? \n\nAnd yet the adamant calls of the text only further my resolve to leave such matters be. Some stories are better left untold.', 8352, 91983, 0, 44730), -- 8351
|
||||
(8350, 'Singing Steel Ingot\n\nIt occurred to me while cataloging the ingot that music is something rare in our culture. Other societies exult in their triumphs and lows, but we simply exist. The Purpose is enough for true fulfillment.\n\nStill, I recently caught myself humming along to it.', 8351, 91975, 0, 44730), -- 8350
|
||||
(8349, 'Book of Binding: The Mad Witch\n\nRoh-Senara kept the final page of this book in a different wing of the archive, and once chastised me when I took it upon myself to finish its restoration.\n\nI often wonder what its prisoner did to warrant such a punishment. One can justify terrible acts in the pursuit of knowledge.', 8350, 90518, 0, 44730), -- 8349
|
||||
(8257, 'The Lodestaff\n\nFor eons I witnessed Roh-Senara hold this staff aloft as she maintained the archive. It passed to me before I was ready, and I can only hope that I fulfill the trust that has been placed in me.\n\nThe path before me is long and arduous. I am eternally grateful that I need not walk it alone.', 8349, 0, 0, 44730), -- 8257
|
||||
(8256, 'The Archivists\' Codex\n\nHerein lies a catalogue of notable relics held within the archive. I shall endeavor to contextualize their history and significance as the Maw Walker aids me in recovering them.\n\nMay the Purpose grant me wisdom.\n\n--Archivist Roh-Suir', 8257, 0, 0, 44730), -- 8256
|
||||
(8148, 'The Stonewright is untouchable. Not even our own stoneborn forces would dare raise a talon against her. \n\nWhat is worse is that she is one of the first venthyr, like myself and the Curator. She was not made from a soul, but willed into being by Denathrius himself. \n\nNo sinstone, no mortal trappings, or past deeds will bend her to our will. If she is unwilling to provide us her medallion, we stand very little chance of recovering it.', 0, 0, 0, 43971); -- 8148
|
||||
|
||||
UPDATE `page_text` SET `VerifiedBuild`=44325 WHERE `ID`=8143;
|
||||
UPDATE `page_text` SET `VerifiedBuild`=44061 WHERE `ID`=8114;
|
||||
UPDATE `page_text` SET `VerifiedBuild`=43971 WHERE `ID`=8128;
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user