TDB 915.21111 - 11/17/2021
Port From (https://github.com/TrinityCore/TrinityCore/commit/06b9be494a7e4d1249d11550cc0eec2e35712d25)
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
--
|
||||
DELETE FROM `rbac_permissions` WHERE `id`=874;
|
||||
INSERT INTO `rbac_permissions` (`id`,`name`) VALUES
|
||||
(874, "Command: go instance");
|
||||
|
||||
SET @parent := (SELECT `id` FROM `rbac_linked_permissions` WHERE `linkedId`=852);
|
||||
DELETE FROM `rbac_linked_permissions` WHERE `linkedId`=874;
|
||||
INSERT INTO `rbac_linked_permissions` (`id`,`linkedId`) VALUES
|
||||
(@parent, 874);
|
||||
@@ -0,0 +1,3 @@
|
||||
-- rbac simplify
|
||||
DELETE FROM `rbac_linked_permissions` WHERE `linkedid` IN (378,379,380,381,382,383,384,385,386,852,874);
|
||||
DELETE FROM `rbac_permissions` WHERE `id` IN (378,379,380,381,382,383,384,385,386,852,874);
|
||||
@@ -0,0 +1,6 @@
|
||||
--
|
||||
DELETE FROM `rbac_permissions` WHERE `id`=852;
|
||||
INSERT INTO `rbac_permissions` (`id`,`name`) VALUES (852, 'Command: debug dummy');
|
||||
|
||||
DELETE FROM `rbac_linked_permissions` WHERE `linkedId`=852;
|
||||
INSERT INTO `rbac_linked_permissions` (`id`,`linkedId`) VALUES (196,852);
|
||||
@@ -0,0 +1,3 @@
|
||||
-- TDB 910.21101 auth
|
||||
UPDATE `updates` SET `state`='ARCHIVED',`speed`=0;
|
||||
REPLACE INTO `updates_include` (`path`, `state`) VALUES ('$/sql/old/9.x/auth', 'ARCHIVED');
|
||||
@@ -0,0 +1,11 @@
|
||||
DROP TABLE IF EXISTS `battle_pet_declinedname`;
|
||||
CREATE TABLE `battle_pet_declinedname` (
|
||||
`guid` bigint(20) NOT NULL,
|
||||
`genitive` varchar(12) NOT NULL DEFAULT '',
|
||||
`dative` varchar(12) NOT NULL DEFAULT '',
|
||||
`accusative` varchar(12) NOT NULL DEFAULT '',
|
||||
`instrumental` varchar(12) NOT NULL DEFAULT '',
|
||||
`prepositional` varchar(12) NOT NULL DEFAULT '',
|
||||
PRIMARY KEY (`guid`),
|
||||
CONSTRAINT fk_battle_pet__battle_pet_declinedname FOREIGN KEY (`guid`) REFERENCES `battle_pets` (`guid`) ON DELETE RESTRICT ON UPDATE RESTRICT
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
@@ -0,0 +1 @@
|
||||
ALTER TABLE `battle_pets` ADD `displayId` int(11) NOT NULL DEFAULT '0' AFTER `breed`;
|
||||
@@ -0,0 +1,7 @@
|
||||
DELETE FROM `rbac_permissions` WHERE `id` = 882;
|
||||
INSERT INTO `rbac_permissions` (`id`, `name`) VALUES
|
||||
(882, 'Command: reload spell_script_names');
|
||||
|
||||
DELETE FROM `rbac_linked_permissions` WHERE `linkedId` = 882;
|
||||
INSERT INTO `rbac_linked_permissions` (`id`, `linkedId`) VALUES
|
||||
(196, 882);
|
||||
@@ -0,0 +1,3 @@
|
||||
-- rbac simplify
|
||||
DELETE FROM `rbac_linked_permissions` WHERE `linkedid` IN (834,799,800,801);
|
||||
DELETE FROM `rbac_permissions` WHERE `id` IN (834,799,800,801);
|
||||
@@ -0,0 +1,7 @@
|
||||
DELETE FROM `build_info` WHERE `build`=40725;
|
||||
INSERT INTO `build_info` (`build`,`majorVersion`,`minorVersion`,`bugfixVersion`,`hotfixVersion`,`winAuthSeed`,`win64AuthSeed`,`mac64AuthSeed`,`winChecksumSeed`,`macChecksumSeed`) VALUES
|
||||
(40725,9,1,0,NULL,NULL,'C1EBDBEB9BB2956EBCCEF7C9D27A1B3B',NULL,NULL,NULL);
|
||||
|
||||
UPDATE `realmlist` SET `gamebuild`=40725 WHERE `gamebuild`=40593;
|
||||
|
||||
ALTER TABLE `realmlist` CHANGE `gamebuild` `gamebuild` int(10) unsigned NOT NULL DEFAULT '40725';
|
||||
@@ -0,0 +1,7 @@
|
||||
DELETE FROM `build_info` WHERE `build`=40906;
|
||||
INSERT INTO `build_info` (`build`,`majorVersion`,`minorVersion`,`bugfixVersion`,`hotfixVersion`,`winAuthSeed`,`win64AuthSeed`,`mac64AuthSeed`,`winChecksumSeed`,`macChecksumSeed`) VALUES
|
||||
(40906,9,1,5,NULL,NULL,'F5FC259C8635488AFE0D0CD023F361D4',NULL,NULL,NULL);
|
||||
|
||||
UPDATE `realmlist` SET `gamebuild`=40906 WHERE `gamebuild`=40725;
|
||||
|
||||
ALTER TABLE `realmlist` CHANGE `gamebuild` `gamebuild` int(10) unsigned NOT NULL DEFAULT '40906';
|
||||
@@ -0,0 +1,7 @@
|
||||
DELETE FROM `build_info` WHERE `build`=40944;
|
||||
INSERT INTO `build_info` (`build`,`majorVersion`,`minorVersion`,`bugfixVersion`,`hotfixVersion`,`winAuthSeed`,`win64AuthSeed`,`mac64AuthSeed`,`winChecksumSeed`,`macChecksumSeed`) VALUES
|
||||
(40944,9,1,5,NULL,NULL,'368FC7FABAF487A8A049C11970657074',NULL,NULL,NULL);
|
||||
|
||||
UPDATE `realmlist` SET `gamebuild`=40944 WHERE `gamebuild`=40906;
|
||||
|
||||
ALTER TABLE `realmlist` CHANGE `gamebuild` `gamebuild` int(10) unsigned NOT NULL DEFAULT '40944';
|
||||
@@ -0,0 +1,7 @@
|
||||
DELETE FROM `build_info` WHERE `build`=40966;
|
||||
INSERT INTO `build_info` (`build`,`majorVersion`,`minorVersion`,`bugfixVersion`,`hotfixVersion`,`winAuthSeed`,`win64AuthSeed`,`mac64AuthSeed`,`winChecksumSeed`,`macChecksumSeed`) VALUES
|
||||
(40966,9,1,5,NULL,NULL,'D90F47AF21F381D2D8F3763B994BAC88',NULL,NULL,NULL);
|
||||
|
||||
UPDATE `realmlist` SET `gamebuild`=40966 WHERE `gamebuild`=40944;
|
||||
|
||||
ALTER TABLE `realmlist` CHANGE `gamebuild` `gamebuild` int(10) unsigned NOT NULL DEFAULT '40966';
|
||||
@@ -0,0 +1,7 @@
|
||||
DELETE FROM `build_info` WHERE `build`=41031;
|
||||
INSERT INTO `build_info` (`build`,`majorVersion`,`minorVersion`,`bugfixVersion`,`hotfixVersion`,`winAuthSeed`,`win64AuthSeed`,`mac64AuthSeed`,`winChecksumSeed`,`macChecksumSeed`) VALUES
|
||||
(41031,9,1,5,NULL,NULL,'019A0FACD6B0D6374B7BA69A5B677449',NULL,NULL,NULL);
|
||||
|
||||
UPDATE `realmlist` SET `gamebuild`=41031 WHERE `gamebuild`=40966;
|
||||
|
||||
ALTER TABLE `realmlist` CHANGE `gamebuild` `gamebuild` int(10) unsigned NOT NULL DEFAULT '41031';
|
||||
@@ -0,0 +1,3 @@
|
||||
-- TDB 910.21101 characters
|
||||
UPDATE `updates` SET `state`='ARCHIVED',`speed`=0;
|
||||
REPLACE INTO `updates_include` (`path`, `state`) VALUES ('$/sql/old/9.x/characters', 'ARCHIVED');
|
||||
@@ -0,0 +1,2 @@
|
||||
--
|
||||
ALTER TABLE `character_homebind` ADD `orientation` float NOT NULL DEFAULT '0' AFTER `posZ`;
|
||||
@@ -0,0 +1,2 @@
|
||||
DROP TABLE IF EXISTS `guild_finder_applicant`;
|
||||
DROP TABLE IF EXISTS `guild_finder_guild_settings`;
|
||||
@@ -0,0 +1,2 @@
|
||||
ALTER TABLE `characters` ADD `power7` int(10) unsigned NOT NULL DEFAULT '0' AFTER `power6`;
|
||||
ALTER TABLE `character_stats` ADD `maxpower7` int(10) unsigned NOT NULL DEFAULT '0' AFTER `maxpower6`;
|
||||
@@ -0,0 +1,3 @@
|
||||
-- TDB 910.21101 hotfixes
|
||||
UPDATE `updates` SET `state`='ARCHIVED',`speed`=0;
|
||||
REPLACE INTO `updates_include` (`path`, `state`) VALUES ('$/sql/old/9.x/hotfixes', 'ARCHIVED');
|
||||
@@ -0,0 +1,2 @@
|
||||
ALTER TABLE `item_sparse` MODIFY `InstanceBound` smallint(5) unsigned NOT NULL DEFAULT '0' AFTER `TotemCategoryID`;
|
||||
ALTER TABLE `item_sparse` MODIFY `LimitCategory` int(11) NOT NULL DEFAULT '0' AFTER `DmgVariance`;
|
||||
@@ -0,0 +1,15 @@
|
||||
--
|
||||
-- Table structure for table `broadcast_text_duration`
|
||||
--
|
||||
DROP TABLE IF EXISTS `broadcast_text_duration`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `broadcast_text_duration` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`BroadcastTextID` int(11) NOT NULL DEFAULT '0',
|
||||
`Locale` int(11) NOT NULL DEFAULT '0',
|
||||
`Duration` 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;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
@@ -0,0 +1,440 @@
|
||||
--
|
||||
-- Table structure for table `currency_container`
|
||||
--
|
||||
DROP TABLE IF EXISTS `currency_container`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `currency_container` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`ContainerName` text,
|
||||
`ContainerDescription` text,
|
||||
`MinAmount` int(11) NOT NULL DEFAULT '0',
|
||||
`MaxAmount` int(11) NOT NULL DEFAULT '0',
|
||||
`ContainerIconID` int(11) NOT NULL DEFAULT '0',
|
||||
`ContainerQuality` int(11) NOT NULL DEFAULT '0',
|
||||
`OnLootSpellVisualKitID` int(11) NOT NULL DEFAULT '0',
|
||||
`CurrencyTypesID` 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;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `currency_container_locale`
|
||||
--
|
||||
DROP TABLE IF EXISTS `currency_container_locale`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `currency_container_locale` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`locale` varchar(4) NOT NULL,
|
||||
`ContainerName_lang` text,
|
||||
`ContainerDescription_lang` text,
|
||||
`VerifiedBuild` int(11) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
|
||||
/*!50500 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) */;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `garr_mission`
|
||||
--
|
||||
DROP TABLE IF EXISTS `garr_mission`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `garr_mission` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Name` text,
|
||||
`Location` text,
|
||||
`Description` text,
|
||||
`MapPosX` float NOT NULL DEFAULT '0',
|
||||
`MapPosY` float NOT NULL DEFAULT '0',
|
||||
`WorldPosX` float NOT NULL DEFAULT '0',
|
||||
`WorldPosY` float NOT NULL DEFAULT '0',
|
||||
`GarrTypeID` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`GarrMissionTypeID` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`GarrFollowerTypeID` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`MaxFollowers` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`MissionCost` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`MissionCostCurrencyTypesID` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`OfferedGarrMissionTextureID` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`UiTextureKitID` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`EnvGarrMechanicID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`EnvGarrMechanicTypeID` int(11) NOT NULL DEFAULT '0',
|
||||
`PlayerConditionID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`GarrMissionSetID` int(11) NOT NULL DEFAULT '0',
|
||||
`TargetLevel` tinyint(4) NOT NULL DEFAULT '0',
|
||||
`TargetItemLevel` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`MissionDuration` int(11) NOT NULL DEFAULT '0',
|
||||
`TravelDuration` int(11) NOT NULL DEFAULT '0',
|
||||
`OfferDuration` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`BaseCompletionChance` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`BaseFollowerXP` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`OvermaxRewardPackID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`FollowerDeathChance` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`AreaID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Flags` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`AutoMissionScalar` float NOT NULL DEFAULT '0',
|
||||
`AutoMissionScalarCurveID` int(11) NOT NULL DEFAULT '0',
|
||||
`AutoCombatantEnvCasterID` 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;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `garr_mission_locale`
|
||||
--
|
||||
DROP TABLE IF EXISTS `garr_mission_locale`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `garr_mission_locale` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`locale` varchar(4) NOT NULL,
|
||||
`Name_lang` text,
|
||||
`Location_lang` text,
|
||||
`Description_lang` text,
|
||||
`VerifiedBuild` int(11) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
|
||||
/*!50500 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) */;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `journal_encounter`
|
||||
--
|
||||
DROP TABLE IF EXISTS `journal_encounter`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `journal_encounter` (
|
||||
`Name` text,
|
||||
`Description` text,
|
||||
`MapX` float NOT NULL DEFAULT '0',
|
||||
`MapY` float NOT NULL DEFAULT '0',
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`JournalInstanceID` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`DungeonEncounterID` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`OrderIndex` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`FirstSectionID` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`UiMapID` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`MapDisplayConditionID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Flags` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`DifficultyMask` tinyint(4) NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` int(11) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`,`VerifiedBuild`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `journal_encounter_locale`
|
||||
--
|
||||
DROP TABLE IF EXISTS `journal_encounter_locale`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `journal_encounter_locale` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`locale` varchar(4) NOT NULL,
|
||||
`Name_lang` text,
|
||||
`Description_lang` text,
|
||||
`VerifiedBuild` int(11) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
|
||||
/*!50500 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) */;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `journal_encounter_section`
|
||||
--
|
||||
DROP TABLE IF EXISTS `journal_encounter_section`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `journal_encounter_section` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Title` text,
|
||||
`BodyText` text,
|
||||
`JournalEncounterID` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`OrderIndex` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`ParentSectionID` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`FirstChildSectionID` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`NextSiblingSectionID` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`Type` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`IconCreatureDisplayInfoID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`UiModelSceneID` int(11) NOT NULL DEFAULT '0',
|
||||
`SpellID` int(11) NOT NULL DEFAULT '0',
|
||||
`IconFileDataID` int(11) NOT NULL DEFAULT '0',
|
||||
`Flags` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`IconFlags` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`DifficultyMask` tinyint(4) NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` int(11) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`,`VerifiedBuild`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `journal_encounter_section_locale`
|
||||
--
|
||||
DROP TABLE IF EXISTS `journal_encounter_section_locale`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `journal_encounter_section_locale` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`locale` varchar(4) NOT NULL,
|
||||
`Title_lang` text,
|
||||
`BodyText_lang` text,
|
||||
`VerifiedBuild` int(11) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
|
||||
/*!50500 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) */;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `journal_instance`
|
||||
--
|
||||
DROP TABLE IF EXISTS `journal_instance`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `journal_instance` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Name` text,
|
||||
`Description` text,
|
||||
`MapID` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`BackgroundFileDataID` int(11) NOT NULL DEFAULT '0',
|
||||
`ButtonFileDataID` int(11) NOT NULL DEFAULT '0',
|
||||
`ButtonSmallFileDataID` int(11) NOT NULL DEFAULT '0',
|
||||
`LoreFileDataID` int(11) NOT NULL DEFAULT '0',
|
||||
`OrderIndex` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`Flags` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`AreaID` smallint(5) 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;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `journal_instance_locale`
|
||||
--
|
||||
DROP TABLE IF EXISTS `journal_instance_locale`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `journal_instance_locale` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`locale` varchar(4) NOT NULL,
|
||||
`Name_lang` text,
|
||||
`Description_lang` text,
|
||||
`VerifiedBuild` int(11) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
|
||||
/*!50500 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) */;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `journal_tier`
|
||||
--
|
||||
DROP TABLE IF EXISTS `journal_tier`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `journal_tier` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Name` text,
|
||||
`PlayerConditionID` 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;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `journal_tier_locale`
|
||||
--
|
||||
DROP TABLE IF EXISTS `journal_tier_locale`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `journal_tier_locale` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`locale` varchar(4) NOT NULL,
|
||||
`Name_lang` text,
|
||||
`VerifiedBuild` int(11) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
|
||||
/*!50500 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) */;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `keystone_affix`
|
||||
--
|
||||
DROP TABLE IF EXISTS `keystone_affix`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `keystone_affix` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Name` text,
|
||||
`Description` text,
|
||||
`FiledataID` 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;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `keystone_affix_locale`
|
||||
--
|
||||
DROP TABLE IF EXISTS `keystone_affix_locale`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `keystone_affix_locale` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`locale` varchar(4) NOT NULL,
|
||||
`Name_lang` text,
|
||||
`Description_lang` text,
|
||||
`VerifiedBuild` int(11) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
|
||||
/*!50500 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) */;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `map_challenge_mode`
|
||||
--
|
||||
DROP TABLE IF EXISTS `map_challenge_mode`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `map_challenge_mode` (
|
||||
`Name` text,
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`MapID` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`Flags` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`ExpansionLevel` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`CriteriaCount1` smallint(6) NOT NULL DEFAULT '0',
|
||||
`CriteriaCount2` smallint(6) NOT NULL DEFAULT '0',
|
||||
`CriteriaCount3` smallint(6) NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` int(11) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`,`VerifiedBuild`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `map_challenge_mode_locale`
|
||||
--
|
||||
DROP TABLE IF EXISTS `map_challenge_mode_locale`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `map_challenge_mode_locale` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`locale` varchar(4) NOT NULL,
|
||||
`Name_lang` text,
|
||||
`VerifiedBuild` int(11) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
|
||||
/*!50500 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) */;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `maw_power`
|
||||
--
|
||||
DROP TABLE IF EXISTS `maw_power`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `maw_power` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`SpellID` int(11) NOT NULL DEFAULT '0',
|
||||
`MawPowerRarityID` 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;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `soulbind_conduit_rank`
|
||||
--
|
||||
DROP TABLE IF EXISTS `soulbind_conduit_rank`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `soulbind_conduit_rank` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`RankIndex` int(11) NOT NULL DEFAULT '0',
|
||||
`SpellID` int(11) NOT NULL DEFAULT '0',
|
||||
`AuraPointsOverride` float NOT NULL DEFAULT '0',
|
||||
`SoulbindConduitID` 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;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
@@ -0,0 +1 @@
|
||||
ALTER TABLE `animation_data` CHANGE COLUMN `BehaviorID` `Fallback` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0' AFTER `ID`, CHANGE COLUMN `Fallback` `BehaviorID` INT(11) NOT NULL DEFAULT '0' AFTER `BehaviorTier`;
|
||||
@@ -0,0 +1 @@
|
||||
ALTER TABLE `broadcast_text` CHANGE COLUMN `SoundEntriesID1` `SoundKitID1` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `ChatBubbleDurationMs`, CHANGE COLUMN `SoundEntriesID2` `SoundKitID2` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `SoundKitID1`;
|
||||
@@ -0,0 +1,63 @@
|
||||
ALTER TABLE `azerite_power_set_member` MODIFY `Tier` tinyint(4) NOT NULL DEFAULT 0 AFTER `Class`;
|
||||
|
||||
ALTER TABLE `chr_customization_choice` ADD `AddedInPatch` int(11) NOT NULL DEFAULT 0 AFTER `Flags`;
|
||||
|
||||
ALTER TABLE `chr_customization_option` ADD `AddedInPatch` int(11) NOT NULL DEFAULT 0 AFTER `UiOrderIndex`;
|
||||
|
||||
ALTER TABLE `cinematic_camera` ADD `Unknown915` int(11) NOT NULL DEFAULT 0 AFTER `FileDataID`;
|
||||
|
||||
ALTER TABLE `friendship_rep_reaction` ADD `OverrideColor` int(11) NOT NULL DEFAULT 0 AFTER `ReactionThreshold`;
|
||||
|
||||
ALTER TABLE `garr_ability` MODIFY `GarrFollowerTypeID` tinyint(4) NOT NULL DEFAULT 0 AFTER `GarrAbilityCategoryID`;
|
||||
ALTER TABLE `garr_ability` MODIFY `Flags` int(11) NOT NULL DEFAULT 0 AFTER `FactionChangeGarrAbilityID`;
|
||||
|
||||
ALTER TABLE `garr_building` MODIFY `BuildingType` tinyint(4) NOT NULL DEFAULT 0 AFTER `GarrTypeID`;
|
||||
ALTER TABLE `garr_building` MODIFY `Flags` int(11) NOT NULL DEFAULT 0 AFTER `GoldCost`;
|
||||
|
||||
ALTER TABLE `garr_class_spec` MODIFY `Flags` int(11) NOT NULL DEFAULT 0 AFTER `FollowerClassLimit`;
|
||||
|
||||
ALTER TABLE `garr_follower` MODIFY `GarrFollowerTypeID` tinyint(4) NOT NULL DEFAULT 0 AFTER `GarrTypeID`;
|
||||
ALTER TABLE `garr_follower` MODIFY `Quality` tinyint(4) NOT NULL DEFAULT 0 AFTER `AllianceGarrClassSpecID`;
|
||||
ALTER TABLE `garr_follower` MODIFY `Flags` int(11) NOT NULL DEFAULT 0 AFTER `ChrClassID`;
|
||||
|
||||
ALTER TABLE `garr_follower` MODIFY `GarrFollowerTypeID` tinyint(4) NOT NULL DEFAULT 0 AFTER `GarrTypeID`;
|
||||
ALTER TABLE `garr_mission` MODIFY `Flags` int(11) NOT NULL DEFAULT 0 AFTER `AreaID`;
|
||||
|
||||
ALTER TABLE `heirloom`
|
||||
ADD `UpgradeItemID5` int(11) NOT NULL DEFAULT 0 AFTER `UpgradeItemID4`,
|
||||
ADD `UpgradeItemID6` int(11) NOT NULL DEFAULT 0 AFTER `UpgradeItemID5`,
|
||||
ADD `UpgradeItemBonusListID5` smallint(5) unsigned NOT NULL DEFAULT 0 AFTER `UpgradeItemBonusListID4`,
|
||||
ADD `UpgradeItemBonusListID6` smallint(5) unsigned NOT NULL DEFAULT 0 AFTER `UpgradeItemBonusListID5`;
|
||||
|
||||
ALTER TABLE `item` ADD `ContentTuningID` int(11) NOT NULL DEFAULT 0 AFTER `ItemGroupSoundsID`;
|
||||
|
||||
ALTER TABLE `item_appearance` MODIFY `DisplayType` int(11) NOT NULL DEFAULT 0 AFTER `ID`;
|
||||
|
||||
ALTER TABLE `item_modified_appearance` MODIFY `ItemAppearanceModifierID` int(11) NOT NULL DEFAULT 0 AFTER `ItemID`;
|
||||
ALTER TABLE `item_modified_appearance` MODIFY `ItemAppearanceID` int(11) NOT NULL DEFAULT 0 AFTER `ItemAppearanceModifierID`;
|
||||
ALTER TABLE `item_modified_appearance` MODIFY `OrderIndex` int(11) NOT NULL DEFAULT 0 AFTER `ItemAppearanceID`;
|
||||
ALTER TABLE `item_modified_appearance` MODIFY `TransmogSourceTypeEnum` tinyint(3) unsigned NOT NULL DEFAULT 0 AFTER `OrderIndex`;
|
||||
|
||||
ALTER TABLE `item_sparse` MODIFY `InventoryType` tinyint(4) NOT NULL DEFAULT 0 AFTER `RequiredLevel`;
|
||||
ALTER TABLE `item_sparse` MODIFY `OverallQualityID` tinyint(4) NOT NULL DEFAULT 0 AFTER `InventoryType`;
|
||||
|
||||
ALTER TABLE `keystone_affix` MODIFY `ID` int(10) unsigned NOT NULL DEFAULT 0 AFTER `Description`;
|
||||
|
||||
ALTER TABLE `map_challenge_mode` ADD `RequiredWorldStateID` int(11) NOT NULL DEFAULT 0 AFTER `ExpansionLevel`;
|
||||
|
||||
ALTER TABLE `quest_info` MODIFY `Modifiers` int(11) NOT NULL DEFAULT 0 AFTER `Type`;
|
||||
|
||||
ALTER TABLE `quest_line_x_quest` ADD `Flags` int(11) NOT NULL DEFAULT 0 AFTER `OrderIndex`;
|
||||
|
||||
ALTER TABLE `scene_script` ADD `Unknown915` int(11) NOT NULL DEFAULT 0 AFTER `NextSceneScriptID`;
|
||||
|
||||
ALTER TABLE `scene_script_package` ADD `Unknown915` int(11) NOT NULL DEFAULT 0 AFTER `Name`;
|
||||
|
||||
ALTER TABLE `spell_effect` MODIFY `Effect` int(10) unsigned NOT NULL DEFAULT 0 AFTER `EffectIndex`;
|
||||
|
||||
ALTER TABLE `ui_map` MODIFY `System` int(10) unsigned NOT NULL DEFAULT 0 AFTER `Flags`;
|
||||
ALTER TABLE `ui_map` MODIFY `Type` int(10) unsigned NOT NULL DEFAULT 0 AFTER `System`;
|
||||
|
||||
ALTER TABLE `world_effect` MODIFY `TargetType` tinyint(3) unsigned NOT NULL DEFAULT 0 AFTER `WhenToDisplay`;
|
||||
|
||||
ALTER TABLE `hotfix_data` ADD `UniqueId` int(10) unsigned NOT NULL DEFAULT 0 AFTER `Id`;
|
||||
@@ -0,0 +1,3 @@
|
||||
ALTER TABLE `chr_races` CHANGE COLUMN `NameS` `LoreName` TEXT NULL DEFAULT NULL COLLATE 'utf8mb4_unicode_ci' AFTER `NameFemaleLowercase`, CHANGE COLUMN `NameFemaleS` `LoreNameFemale` TEXT NULL DEFAULT NULL COLLATE 'utf8mb4_unicode_ci' AFTER `LoreName`, CHANGE COLUMN `NameLowercaseS` `LoreNameLower` TEXT NULL DEFAULT NULL COLLATE 'utf8mb4_unicode_ci' AFTER `LoreNameFemale`, CHANGE COLUMN `NameFemaleLowercaseS` `LoreNameLowerFemale` TEXT NULL DEFAULT NULL COLLATE 'utf8mb4_unicode_ci' AFTER `LoreNameLower`, CHANGE COLUMN `RaceFantasyDescription` `LoreDescription` TEXT NULL DEFAULT NULL COLLATE 'utf8mb4_unicode_ci' AFTER `LoreNameLowerFemale`, CHANGE COLUMN `NameL` `ShortName` TEXT NULL DEFAULT NULL COLLATE 'utf8mb4_unicode_ci' AFTER `LoreDescription`, CHANGE COLUMN `NameFemaleL` `ShortNameFemale` TEXT NULL DEFAULT NULL COLLATE 'utf8mb4_unicode_ci' AFTER `ShortName`, CHANGE COLUMN `NameLowercaseL` `ShortNameLower` TEXT NULL DEFAULT NULL COLLATE 'utf8mb4_unicode_ci' AFTER `ShortNameFemale`, CHANGE COLUMN `NameFemaleLowercaseL` `ShortNameLowerFemale` TEXT NULL DEFAULT NULL COLLATE 'utf8mb4_unicode_ci' AFTER `ShortNameLower`;
|
||||
|
||||
ALTER TABLE `chr_classes` CHANGE COLUMN `ChatColorR` `ClassColorR` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' AFTER `SpellClassSet`, CHANGE COLUMN `ChatColorG` `ClassColorG` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' AFTER `ClassColorR`, CHANGE COLUMN `ChatColorB` `ClassColorB` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' AFTER `ClassColorG`;
|
||||
@@ -0,0 +1 @@
|
||||
ALTER TABLE `chr_races_locale` CHANGE COLUMN `NameS_lang` `LoreName_lang` TEXT NULL DEFAULT NULL COLLATE 'utf8mb4_unicode_ci' AFTER `NameFemaleLowercase_lang`, CHANGE COLUMN `NameFemaleS_lang` `LoreNameFemale_lang` TEXT NULL DEFAULT NULL COLLATE 'utf8mb4_unicode_ci' AFTER `LoreName_lang`, CHANGE COLUMN `NameLowercaseS_lang` `LoreNameLower_lang` TEXT NULL DEFAULT NULL COLLATE 'utf8mb4_unicode_ci' AFTER `LoreNameFemale_lang`, CHANGE COLUMN `NameFemaleLowercaseS_lang` `LoreNameLowerFemale_lang` TEXT NULL DEFAULT NULL COLLATE 'utf8mb4_unicode_ci' AFTER `LoreNameLower_lang`, CHANGE COLUMN `RaceFantasyDescription_lang` `LoreDescription_lang` TEXT NULL DEFAULT NULL COLLATE 'utf8mb4_unicode_ci' AFTER `LoreNameLowerFemale_lang`, CHANGE COLUMN `NameL_lang` `ShortName_lang` TEXT NULL DEFAULT NULL COLLATE 'utf8mb4_unicode_ci' AFTER `LoreDescription_lang`, CHANGE COLUMN `NameFemaleL_lang` `ShortNameFemale_lang` TEXT NULL DEFAULT NULL COLLATE 'utf8mb4_unicode_ci' AFTER `ShortName_lang`, CHANGE COLUMN `NameLowercaseL_lang` `ShortNameLower_lang` TEXT NULL DEFAULT NULL COLLATE 'utf8mb4_unicode_ci' AFTER `ShortNameFemale_lang`, CHANGE COLUMN `NameFemaleLowercaseL_lang` `ShortNameLowerFemale_lang` TEXT NULL DEFAULT NULL COLLATE 'utf8mb4_unicode_ci' AFTER `ShortNameLower_lang`;
|
||||
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,59 @@
|
||||
--
|
||||
-- Table structure for table `ui_splash_screen`
|
||||
--
|
||||
DROP TABLE IF EXISTS `ui_splash_screen`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `ui_splash_screen` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Header` text,
|
||||
`TopLeftFeatureTitle` text,
|
||||
`TopLeftFeatureDesc` text,
|
||||
`BottomLeftFeatureTitle` text,
|
||||
`BottomLeftFeatureDesc` text,
|
||||
`RightFeatureTitle` text,
|
||||
`RightFeatureDesc` text,
|
||||
`AllianceQuestID` int(11) NOT NULL DEFAULT '0',
|
||||
`HordeQuestID` int(11) NOT NULL DEFAULT '0',
|
||||
`ScreenType` tinyint(4) NOT NULL DEFAULT '0',
|
||||
`TextureKitID` int(11) NOT NULL DEFAULT '0',
|
||||
`SoundKitID` int(11) NOT NULL DEFAULT '0',
|
||||
`PlayerConditionID` int(11) NOT NULL DEFAULT '0',
|
||||
`CharLevelConditionID` int(11) NOT NULL DEFAULT '0',
|
||||
`RequiredTimeEventPassed` 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;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `ui_splash_screen_locale`
|
||||
--
|
||||
DROP TABLE IF EXISTS `ui_splash_screen_locale`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `ui_splash_screen_locale` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`locale` varchar(4) NOT NULL,
|
||||
`Header_lang` text,
|
||||
`TopLeftFeatureTitle_lang` text,
|
||||
`TopLeftFeatureDesc_lang` text,
|
||||
`BottomLeftFeatureTitle_lang` text,
|
||||
`BottomLeftFeatureDesc_lang` text,
|
||||
`RightFeatureTitle_lang` text,
|
||||
`RightFeatureDesc_lang` text,
|
||||
`VerifiedBuild` int(11) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
|
||||
/*!50500 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) */;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
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
@@ -0,0 +1,4 @@
|
||||
-- TDB 910.21101 world
|
||||
UPDATE `version` SET `db_version`='TDB 910.21101', `cache_id`=21101 LIMIT 1;
|
||||
UPDATE `updates` SET `state`='ARCHIVED',`speed`=0;
|
||||
REPLACE INTO `updates_include` (`path`, `state`) VALUES ('$/sql/old/9.x/world', 'ARCHIVED');
|
||||
@@ -0,0 +1,29 @@
|
||||
-- Sunstrider Guardian (Area: Sunstrider Isle - Difficulty: 0)
|
||||
UPDATE `creature_template` SET `minlevel`=63, `maxlevel`=63, `VerifiedBuild`=40120 WHERE `entry`=15371;
|
||||
|
||||
UPDATE `creature_template_model` SET `VerifiedBuild`=40120 WHERE `CreatureID`=15371 AND `Idx` IN (0,1,2,3,4,5,6,7);
|
||||
|
||||
UPDATE `creature_model_info` SET `VerifiedBuild`=40120 WHERE `DisplayID` IN (89418,89420,89421,89800,89801,89802);
|
||||
|
||||
UPDATE `creature` SET `zoneId`=6455, `areaId`=3431, `position_z`=1.13558, `spawntimesecs`=120, `curhealth`=176865, `curmana`=5240, `VerifiedBuild`=40120 WHERE `guid`=55168;
|
||||
UPDATE `creature` SET `zoneId`=6455, `areaId`=3431, `position_z`=1.32708, `spawntimesecs`=120, `curhealth`=176865, `curmana`=5240, `VerifiedBuild`=40120 WHERE `guid`=55169;
|
||||
UPDATE `creature` SET `zoneId`=6455, `areaId`=3431, `position_z`=2.00616, `spawntimesecs`=120, `curhealth`=176865, `curmana`=5240, `VerifiedBuild`=40120 WHERE `guid`=55170;
|
||||
UPDATE `creature` SET `zoneId`=6455, `areaId`=3431, `position_z`=2.15025, `spawntimesecs`=120, `curhealth`=176865, `curmana`=5240, `VerifiedBuild`=40120 WHERE `guid`=55171;
|
||||
UPDATE `creature` SET `zoneId`=6455, `areaId`=3431, `position_z`=38.5174, `spawntimesecs`=120, `curhealth`=176865, `curmana`=5240, `VerifiedBuild`=40120 WHERE `guid`=55172;
|
||||
UPDATE `creature` SET `zoneId`=6455, `areaId`=3431, `spawntimesecs`=120, `curhealth`=176865, `curmana`=5240, `VerifiedBuild`=40120 WHERE `guid`=55173;
|
||||
UPDATE `creature` SET `zoneId`=6455, `areaId`=3431, `spawntimesecs`=120, `curhealth`=176865, `curmana`=5240, `VerifiedBuild`=40120 WHERE `guid`=55174;
|
||||
UPDATE `creature` SET `zoneId`=6455, `areaId`=3431, `spawntimesecs`=120, `curhealth`=176865, `curmana`=5240, `VerifiedBuild`=40120 WHERE `guid`=55175;
|
||||
UPDATE `creature` SET `zoneId`=6455, `areaId`=3431, `spawntimesecs`=120, `curhealth`=176865, `curmana`=5240, `VerifiedBuild`=40120 WHERE `guid`=55176;
|
||||
|
||||
DELETE FROM `creature_addon` WHERE `guid` BETWEEN 55168 AND 55175;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `auras`) VALUES
|
||||
(55168, 0, 0, 0, 257, 0, 0, 0, 0, ''), -- Sunstrider Guardian
|
||||
(55169, 0, 0, 0, 257, 0, 0, 0, 0, ''), -- Sunstrider Guardian
|
||||
(55170, 0, 0, 0, 257, 0, 0, 0, 0, ''), -- Sunstrider Guardian
|
||||
(55171, 0, 0, 0, 257, 0, 0, 0, 0, ''), -- Sunstrider Guardian
|
||||
(55172, 0, 0, 0, 257, 0, 0, 0, 0, ''), -- Sunstrider Guardian
|
||||
(55173, 0, 0, 0, 257, 0, 0, 0, 0, ''), -- Sunstrider Guardian
|
||||
(55174, 0, 0, 0, 257, 0, 0, 0, 0, ''), -- Sunstrider Guardian
|
||||
(55175, 0, 0, 0, 257, 0, 0, 0, 0, ''); -- Sunstrider Guardian
|
||||
|
||||
UPDATE `creature_addon` SET `bytes2`=257 WHERE `guid`=55176;
|
||||
@@ -0,0 +1,468 @@
|
||||
-- Phasing
|
||||
DELETE FROM `phase_area` WHERE `AreaId` = 9359 AND `PhaseId` IN (10260, 10349, 9949);
|
||||
INSERT INTO `phase_area`(`AreaId`, `PhaseId`, `Comment`) VALUES
|
||||
(9359, 10260, 'Lightforged Draenai - Default Phase'),
|
||||
(9359, 9949, 'Lightforged Draenei - After Quest 49772 rewarded'),
|
||||
(9359, 10349, 'Lightforged Draenei - Before Quest 49772 rewarded');
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 26 AND `SourceGroup` IN (10349, 9949);
|
||||
INSERT INTO `conditions`(`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(26, 10349, 9359, 0, 0, 8, 0, 49772, 0, 0, 1, 0, 0, '', 'Set phase if quest 49772 is NOT rewarded'),
|
||||
(26, 9949, 9359, 0, 0, 8, 0, 49772, 0, 0, 0, 0, 0, '', 'Set phase if quest 49772 is rewarded');
|
||||
|
||||
UPDATE `creature` SET `PhaseId` = 10349 WHERE `guid` = 650070;
|
||||
|
||||
-- Quest starter & ender
|
||||
DELETE FROM `creature_queststarter` WHERE `id` = 130993 AND `quest` = 49772;
|
||||
INSERT INTO `creature_queststarter` (`id`, `quest`) VALUES
|
||||
(130993, 49772);
|
||||
|
||||
DELETE FROM `creature_questender` WHERE `id` = 133362 AND `quest` = 49772;
|
||||
INSERT INTO `creature_questender` (`id`, `quest`) VALUES
|
||||
(133362, 49772);
|
||||
|
||||
-- Update Jarus (ID: 132325) aiAnimKit
|
||||
DELETE FROM `creature_addon` WHERE `guid` = 650116;
|
||||
INSERT INTO `creature_addon`(`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(650116, 0, 0, 0, 1, 0, 7276, 0, 0, 0, '');
|
||||
|
||||
-- Update missing aiAnimKit to GUID 650125
|
||||
DELETE FROM `creature_addon` WHERE `guid` = 650125;
|
||||
INSERT INTO `creature_addon`(`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(650125, 0, 0, 0, 1, 0, 12976, 0, 0, 0, '79968');
|
||||
|
||||
-- Update Durael (ID: 132224) EmoteState
|
||||
DELETE FROM `creature_addon` WHERE `guid` = 650078;
|
||||
INSERT INTO `creature_addon`(`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(650078, 0, 0, 0, 1, 613, 0, 0, 0, 0, '');
|
||||
|
||||
-- Update Maras (ID: 130560) EmoteState
|
||||
DELETE FROM `creature_addon` WHERE `guid` = 650092;
|
||||
INSERT INTO `creature_addon`(`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(650092, 0, 0, 0, 1, 415, 0, 0, 0, 0, '');
|
||||
|
||||
-- Creature_text
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` = 130986 AND `GroupID` IN (0, 1, 2, 3, 4, 5) AND `ID` = 0;
|
||||
INSERT INTO `creature_text`(`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(130986, 0, 0, 'Why have you returned?', 12, 0, 100, 0, 0, 96042, 146009, 0, 'Vigilant Quoram to Player'),
|
||||
(130986, 1, 0, 'Congratulations.', 12, 0, 100, 0, 0, 96043, 146010, 0, 'Vigilant Quoram to Player'),
|
||||
(130986, 2, 0, 'I am told power comes from unlikely places.', 12, 0, 100, 0, 0, 96046, 146013, 0, 'Vigilant Quoram to Player'),
|
||||
(130986, 3, 0, 'For now.', 12, 0, 100, 0, 0, 96048, 146015, 0, 'Vigilant Quoram to Player'),
|
||||
(130986, 4, 0, 'Fine.', 12, 0, 100, 0, 0, 96049, 146016, 0, 'Vigilant Quoram to Player'),
|
||||
(130986, 5, 0, 'I am afraid I cannot allow that.', 12, 0, 100, 0, 0, 96050, 146017, 0, 'Vigilant Quoram to Player');
|
||||
|
||||
-- SET SAI in Template
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry` IN (126030, 132266, 125524, 125843, 132214, 132215, 132225, 132328, 130986, 130993);
|
||||
|
||||
-- Conversation Stuff for Fareeya (GUID: 650070)
|
||||
DELETE FROM `conversation_actors` WHERE (`ConversationId`=6481 AND `Idx`=0);
|
||||
INSERT INTO `conversation_actors`(`ConversationId`, `ConversationActorId`, `ConversationActorGuid`, `Idx`, `CreatureId`, `CreatureDisplayInfoId`, `VerifiedBuild`) VALUES
|
||||
(6481, 61703, 650070, 0, 0, 0, 40593);
|
||||
|
||||
DELETE FROM `conversation_line_template` WHERE `Id` IN (14662, 14661, 14660, 14659, 14658);
|
||||
INSERT INTO `conversation_line_template` (`Id`, `StartTime`, `UiCameraID`, `ActorIdx`, `Flags`, `VerifiedBuild`) VALUES
|
||||
(14662, 47915, 0, 0, 0, 40593),
|
||||
(14661, 35458, 0, 0, 0, 40593),
|
||||
(14660, 25276, 0, 0, 0, 40593),
|
||||
(14659, 11436, 0, 0, 0, 40593),
|
||||
(14658, 0, 0, 0, 0, 40593);
|
||||
|
||||
DELETE FROM `conversation_template` WHERE `Id`=6481;
|
||||
INSERT INTO `conversation_template` (`Id`, `FirstLineID`, `LastLineEndTime`, `TextureKitId`, `VerifiedBuild`) VALUES
|
||||
(6481, 14658, 51922, 0, 40593);
|
||||
|
||||
-- SAI Conversation Script for Fareeya GUID: 650070
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = -650070 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_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(-650070, 0, 0, 0, 19, 0, 100, 0, 49772, 0, 0, 0, 0, '', 143, 6481, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Fareeya - On Quest accept 49772 - Start Conversation 6481 - To Invoker');
|
||||
|
||||
-- SAI for NPC 130986 (vigilant-quoram)
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = 130986 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_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(130986, 0, 0, 1, 62, 0, 100, 0, 21910, 0, 0, 0, 0, '', 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On Gossip select option 0 - Say Text 0'),
|
||||
(130986, 0, 1, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, '', 72, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Link - close Gossip'),
|
||||
(130986, 0, 2, 3, 62, 0, 100, 0, 21910, 1, 0, 0, 0, '', 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On Gossip select option 1 - Say Text 1'),
|
||||
(130986, 0, 3, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, '', 72, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Link - close Gossip'),
|
||||
(130986, 0, 4, 5, 62, 0, 100, 0, 21910, 2, 0, 0, 0, '', 1, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On Gossip select option 2 - say Text 2'),
|
||||
(130986, 0, 5, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, '', 72, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Link - close Gossip'),
|
||||
(130986, 0, 6, 7, 62, 0, 100, 0, 21910, 3, 0, 0, 0, '', 1, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On Gossip select option 3 - Say Text 3'),
|
||||
(130986, 0, 7, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, '', 72, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Link - close Gossip'),
|
||||
(130986, 0, 8, 9, 62, 0, 100, 0, 21910, 4, 0, 0, 0, '', 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On Gossip select option 4 - Say text 4'),
|
||||
(130986, 0, 9, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, '', 72, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Link - close Gossip'),
|
||||
(130986, 0, 10, 11, 62, 0, 100, 0, 21910, 5, 0, 0, 0, '', 1, 5, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On Gossip select option 5 - Say Text 5'),
|
||||
(130986, 0, 11, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, '', 72, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Link - close Gossip');
|
||||
|
||||
|
||||
-- SAI Script for Guid 650087
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = -650087 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_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(-650087, 0, 0, 0, 1, 0, 100, 1, 1000, 1000, 0, 0, 0, '', 11, 240226, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Lightsworm Anchorite - cast Cosmetic Spell on self');
|
||||
|
||||
-- SAI Script for Guid 650096
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = -650096 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_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(-650096, 0, 0, 0, 1, 0, 100, 1, 1000, 1000, 0, 0, 0, '', 11, 240226, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'lightforged bulwark - cast Cosmetic Spell on self');
|
||||
|
||||
-- SAI Script for Guid 650112
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = -650112 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_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(-650112, 0, 0, 0, 1, 0, 100, 0, 3000, 5000, 5000, 10000, 0, '', 10, 274, 273, 6, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'OOC - on 3000ms to 5000ms and Repeat every 5000ms to 8000ms - Call rnd Emote');
|
||||
|
||||
-- SAI Script for Guid 650080
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = -650080 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_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(-650080, 0, 0, 0, 1, 0, 100, 0, 3000, 5000, 5000, 10000, 0, '', 10, 274, 273, 6, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'OOC - on 3000ms to 5000ms and Repeat every 5000ms to 8000ms - Call rnd Emote');
|
||||
|
||||
-- SAI Script for Guid 650105
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = -650105 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_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(-650105, 0, 0, 0, 1, 0, 100, 0, 3000, 5000, 5000, 10000, 0, '', 10, 274, 273, 6, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'OOC - on 3000ms to 5000ms and Repeat every 5000ms to 8000ms - Call rnd Emote');
|
||||
|
||||
-- SAI Script for Guid 650117
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = -650117 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_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(-650117, 0, 0, 0, 1, 0, 100, 0, 3000, 5000, 5000, 10000, 0, '', 10, 274, 273, 6, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'OOC - on 3000ms to 5000ms and Repeat every 5000ms to 8000ms - Call rnd Emote');
|
||||
|
||||
-- SAI Script for Guid 650120
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = -650120 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_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(-650120, 0, 0, 0, 1, 0, 100, 0, 3000, 5000, 5000, 10000, 0, '', 10, 274, 273, 6, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'OOC - on 3000ms to 5000ms and Repeat every 5000ms to 8000ms - Call rnd Emote');
|
||||
|
||||
-- SAI Script for Guid 650124
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = -650124 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_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(-650124, 0, 0, 0, 1, 0, 100, 0, 3000, 5000, 5000, 10000, 0, '', 10, 274, 273, 6, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'OOC - on 3000ms to 5000ms and Repeat every 5000ms to 8000ms - Call rnd Emote');
|
||||
|
||||
-- SAI Script for Guid 650081
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = -650081 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_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(-650081, 0, 0, 0, 1, 0, 100, 0, 3000, 5000, 5000, 10000, 0, '', 10, 274, 273, 6, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'OOC - on 3000ms to 5000ms and Repeat every 5000ms to 8000ms - Call rnd Emote');
|
||||
|
||||
-- SAI Script for Guid 650102
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = -650102 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_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(-650102, 0, 0, 0, 1, 0, 100, 0, 3000, 5000, 5000, 10000, 0, '', 10, 274, 273, 6, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'OOC - on 3000ms to 5000ms and Repeat every 5000ms to 8000ms - Call rnd Emote');
|
||||
|
||||
-- SAI Script for Guid 650107
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = -650107 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_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(-650107, 0, 0, 0, 1, 0, 100, 0, 3000, 5000, 5000, 10000, 0, '', 10, 274, 273, 6, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'OOC - on 3000ms to 5000ms and Repeat every 5000ms to 8000ms - Call rnd Emote');
|
||||
|
||||
-- SAI Script for Guid 650110
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = -650110 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_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(-650110, 0, 0, 0, 1, 0, 100, 0, 3000, 5000, 5000, 10000, 0, '', 10, 274, 273, 6, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'OOC - on 3000ms to 5000ms and Repeat every 5000ms to 8000ms - Call rnd Emote');
|
||||
|
||||
-- SAI Script for Guid 650126
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = -650126 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_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(-650126, 0, 0, 0, 1, 0, 100, 0, 3000, 5000, 5000, 10000, 0, '', 10, 274, 273, 6, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'OOC - on 3000ms to 5000ms and Repeat every 5000ms to 8000ms - Call rnd Emote');
|
||||
|
||||
-- SAI Script for Guid 650122
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = -650122 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_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(-650122, 0, 0, 0, 1, 0, 100, 0, 3000, 5000, 5000, 10000, 0, '', 10, 274, 273, 6, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'OOC - on 3000ms to 5000ms and Repeat every 5000ms to 8000ms - Call rnd Emote');
|
||||
|
||||
-- SAI Script for Guid 650115
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = -650115 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_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(-650115, 0, 0, 0, 1, 0, 100, 0, 3000, 5000, 5000, 10000, 0, '', 10, 274, 273, 6, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'OOC - on 3000ms to 5000ms and Repeat every 5000ms to 8000ms - Call rnd Emote');
|
||||
|
||||
-- SAI Script for Guid 650113
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = -650113 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_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(-650113, 0, 0, 0, 1, 0, 100, 0, 3000, 5000, 5000, 10000, 0, '', 10, 274, 273, 6, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'OOC - on 3000ms to 5000ms and Repeat every 5000ms to 8000ms - Call rnd Emote');
|
||||
|
||||
-- Waypoints and Formation Data for GUIDs 650082 & 650103
|
||||
SET @CGUID := 650103;
|
||||
SET @PATH := @CGUID * 10;
|
||||
SET @CLEADER := 650103;
|
||||
SET @CMEMBER := 650082;
|
||||
|
||||
DELETE FROM `creature_formations` WHERE `leaderGUID` = @CLEADER;
|
||||
INSERT INTO `creature_formations`(`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`, `point_1`, `point_2`) VALUES
|
||||
(@CLEADER, @CLEADER, 0, 0, 515, 0, 0),
|
||||
(@CLEADER, @CMEMBER, 2, 90, 515, 0, 0);
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id`= @PATH;
|
||||
INSERT INTO `waypoint_data`(`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`, `action`, `action_chance`, `wpguid`) VALUES
|
||||
(@PATH, 0, 425.095, 1438.91, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 1, 425.317, 1442.74, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 2, 426.108, 1446.2, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 3, 427.422, 1448.99, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 4, 428.614, 1451.72, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 5, 429.68, 1454.39, 742.886, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 6, 430.591, 1457.19, 743.547, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 7, 431.674, 1460.08, 744.594, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 8, 432.78, 1462.79, 745.482, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 9, 434.441, 1465.61, 746.429, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 10, 436.273, 1468.39, 747.52, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 11, 438.286, 1470.49, 748.399, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 12, 440.691, 1472.8, 749.454, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 13, 443.108, 1474.42, 750.417, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 14, 445.914, 1476.06, 751.394, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 15, 448.577, 1477.23, 752.357, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 16, 451.689, 1478.24, 753.491, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 17, 454.527, 1478.92, 754.517, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 18, 457.791, 1479.22, 755.482, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 19, 460.694, 1479.34, 756.435, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 20, 463.933, 1479.11, 757.525, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 21, 466.045, 1479.19, 757.627, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 22, 469.1, 1480.03, 757.472, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 23, 469.459, 1481.52, 757.456, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 24, 470.04, 1483.35, 757.333, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 25, 470.281, 1484.75, 757.279, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 26, 468.04, 1486.89, 757.356, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 27, 466.111, 1487.73, 757.603, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 28, 463.585, 1488.48, 758.087, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 29, 460.578, 1488.74, 758.641, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 30, 457.904, 1488.9, 759.686, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 31, 454.81, 1488.85, 760.096, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 32, 452.216, 1488.62, 760.753, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 33, 449.254, 1487.98, 761.71, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 34, 446.729, 1487.19, 762.13, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 35, 443.952, 1486.02, 762.769, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 36, 441.45, 1484.77, 763.477, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 37, 438.819, 1483.29, 764.144, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 38, 436.522, 1481.83, 764.613, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 39, 434.132, 1480, 765.177, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 40, 432.1, 1478.29, 765.793, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 41, 430.058, 1476.07, 766.47, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 42, 428.251, 1474.04, 767.19, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 43, 426.538, 1471.56, 767.892, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 44, 425.027, 1469.37, 768.482, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 45, 423.781, 1466.67, 769.215, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 46, 422.594, 1464.12, 769.731, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 47, 421.691, 1461.25, 770.444, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 48, 421.047, 1458.65, 771.059, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 49, 420.639, 1455.66, 771.744, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 50, 420.347, 1452.73, 772.418, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 51, 420, 1449.59, 772.758, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 52, 419.555, 1446.55, 772.844, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 53, 419.527, 1444.09, 772.69, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 54, 420.012, 1441.05, 772.664, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 55, 420.512, 1438.32, 772.671, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 56, 421.431, 1435.38, 772.685, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 57, 422.348, 1432.46, 772.819, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 58, 423.365, 1430.44, 772.697, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 59, 425.32, 1428.06, 772.664, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 60, 427.284, 1425.68, 772.728, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 61, 429.257, 1424.18, 772.782, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 62, 431.81, 1422.2, 772.791, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 63, 434.217, 1420.42, 772.751, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 64, 436.709, 1418.64, 772.429, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 65, 439.116, 1417.03, 771.734, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 66, 441.692, 1415.48, 771.134, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 67, 443.986, 1414.18, 770.556, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 68, 446.812, 1413.08, 769.907, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 69, 449.631, 1411.99, 769.273, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 70, 452.185, 1411.51, 768.583, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 71, 455.143, 1411.01, 767.863, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 72, 457.876, 1410.91, 767.276, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 73, 460.883, 1410.82, 766.629, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 74, 463.687, 1411.04, 766.026, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 75, 466.459, 1411.32, 765.402, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 76, 469.426, 1411.9, 764.664, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 77, 469.65, 1409.86, 764.7, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 78, 469.651, 1409.86, 764.699, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 79, 477.215, 1414.74, 763.059, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 80, 479.872, 1416.28, 762.292, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 81, 481.742, 1417.87, 762.106, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 82, 483.966, 1419.78, 761.211, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 83, 486.063, 1421.92, 760.265, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 84, 487.826, 1423.99, 759.804, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 85, 489.595, 1426.36, 758.859, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 86, 491.266, 1428.77, 758.153, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 87, 492.772, 1431.17, 757.649, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 89, 493.989, 1432.96, 757.442, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 90, 494.181, 1436.01, 757.323, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 91, 493.674, 1436.83, 757.259, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 92, 492.256, 1438.46, 757.278, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 93, 489.288, 1439.18, 757.412, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 94, 487.482, 1438.66, 757.536, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 95, 485.915, 1437.66, 757.604, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 96, 484.063, 1435.4, 757.656, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 97, 482.373, 1433.09, 756.492, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 98, 480.408, 1430.66, 755.344, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 99, 478.432, 1428.56, 754.382, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 100, 476.005, 1426.4, 753.537, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 101, 473.666, 1424.68, 752.412, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 102, 473.666, 1424.68, 752.412, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 103, 473.666, 1424.68, 752.412, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 104, 473.666, 1424.68, 752.412, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 105, 473.666, 1424.68, 752.412, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 106, 473.666, 1424.68, 752.412, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 107, 470.558, 1423, 751.247, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 108, 467.799, 1422.14, 750.429, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 109, 464.682, 1421.47, 749.263, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 110, 461.82, 1421.03, 748.429, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 111, 458.523, 1421.07, 747.585, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 112, 455.631, 1421.22, 746.376, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 113, 452.499, 1421.85, 745.46, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 114, 449.563, 1422.53, 744.548, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 115, 446.674, 1423.52, 743.494, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 116, 443.984, 1424.24, 742.848, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 117, 441.076, 1424.94, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 118, 438.091, 1425.64, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 119, 434.852, 1426.78, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 120, 431.627, 1428.42, 742.093, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 121, 429.287, 1430.39, 742.065, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 122, 427.075, 1433.13, 742.46, 0, 0, 0, 0, 100, 0);
|
||||
|
||||
UPDATE `creature` SET `position_x`= 425.0947, `position_y`= 1438.913, `position_z`= 742.0541, `orientation`= 0, `spawndist`= 0, `MovementType`= 2 WHERE `guid`= @CGUID;
|
||||
UPDATE `creature` SET `position_x`= 425.0947, `position_y`= 1440.913, `position_z`= 742.0541, `orientation`= 0, `spawndist`= 0, `MovementType`= 0 WHERE `guid`= @CMEMBER;
|
||||
DELETE FROM `creature_addon` WHERE `guid`= @CGUID;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `bytes2`) VALUES
|
||||
(@CGUID, @PATH, 1);
|
||||
|
||||
-- Waypoints and Formation for GUIDS 650118 & 650119
|
||||
SET @CGUID := 650119;
|
||||
SET @PATH := @CGUID * 10;
|
||||
SET @CLEADER := 650119;
|
||||
SET @CMEMBER := 650118;
|
||||
|
||||
DELETE FROM `creature_formations` WHERE `leaderGUID` = @CLEADER;
|
||||
INSERT INTO `creature_formations`(`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`, `point_1`, `point_2`) VALUES
|
||||
(@CLEADER, @CLEADER, 0, 0, 515, 0, 0),
|
||||
(@CLEADER, @CMEMBER, 2, 90, 515, 0, 0);
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id`= @PATH;
|
||||
INSERT INTO `waypoint_data`(`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`, `action`, `action_chance`, `wpguid`) VALUES
|
||||
(@PATH, 0, 445.31, 1491.44, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 1, 449.102, 1492.26, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 2, 452.211, 1492.02, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 3, 455.332, 1491.77, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 4, 459.149, 1491.24, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 5, 461.977, 1489.86, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 6, 464.783, 1488.5, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 7, 467.845, 1486.43, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 8, 470.159, 1484.3, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 9, 472.47, 1482.17, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 10, 474.784, 1480.48, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 11, 477.384, 1478.69, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 12, 479.934, 1476.97, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 13, 482.59, 1475.29, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 14, 485.636, 1473.01, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 15, 487.552, 1470.53, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 16, 489.67, 1467.63, 742.351, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 17, 490.965, 1464.76, 742.41, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 18, 492.259, 1461.91, 742.094, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 19, 493.017, 1458.38, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 20, 493.614, 1455.29, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 21, 493.873, 1451.91, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 22, 494.082, 1448.77, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 23, 494.018, 1445.42, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 24, 493.892, 1442.26, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 25, 493.686, 1439.02, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 26, 493.405, 1435.87, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 27, 493.125, 1432.73, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 28, 492.558, 1429.43, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 29, 491.974, 1426.33, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 30, 490.814, 1422.84, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 31, 489.362, 1420.06, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 32, 487.307, 1416.63, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 33, 484.792, 1414.76, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 34, 482.283, 1412.89, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 35, 479.226, 1411.06, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 36, 476.346, 1409.78, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 37, 473.466, 1408.51, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 38, 470.176, 1407.37, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 39, 467.112, 1406.61, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 40, 464.061, 1405.85, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 41, 460.678, 1405.27, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 42, 457.557, 1404.97, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 43, 454.439, 1404.66, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 44, 450.63, 1404.75, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 45, 447.592, 1405.52, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 46, 444.559, 1406.3, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 47, 441.241, 1408.08, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 48, 438.659, 1409.84, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 49, 435.959, 1412.43, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 50, 434.062, 1414.93, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 51, 432.168, 1417.44, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 52, 430.249, 1419.89, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 53, 428.286, 1422.37, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 54, 426.317, 1425.07, 742.078, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 55, 424.625, 1427.71, 742.386, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 56, 422.932, 1430.35, 742.391, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 57, 420.405, 1436.27, 742.46, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 58, 419.453, 1439.03, 742.46, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 59, 418.494, 1441.81, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 60, 417.564, 1444.83, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 61, 416.921, 1447.69, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 62, 416.277, 1450.54, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 63, 415.805, 1453.77, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 64, 415.674, 1456.71, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 65, 415.543, 1459.64, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 66, 415.413, 1462.57, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 67, 416.659, 1466.18, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 68, 417.855, 1468.87, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 69, 419.464, 1471.91, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 70, 421.322, 1474.18, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 71, 423.185, 1476.45, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 72, 425.048, 1478.72, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 73, 427.477, 1480.94, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 74, 429.724, 1482.82, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 75, 431.97, 1484.71, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 76, 434.211, 1486.59, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 77, 437.152, 1488.8, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 78, 439.943, 1489.7, 742.054, 0, 0, 0, 0, 100, 0),
|
||||
(@PATH, 79, 442.729, 1490.6, 742.054, 0, 0, 0, 0, 100, 0);
|
||||
|
||||
UPDATE `creature` SET `position_x`= 445.3101, `position_y`= 1491.44, `position_z`= 742.0541, `orientation`= 0, `spawndist`= 0, `MovementType`= 2 WHERE `guid`= @CGUID;
|
||||
UPDATE `creature` SET `position_x`= 445.3101, `position_y`= 1489.44, `position_z`= 742.0541, `orientation`= 0, `spawndist`= 0, `MovementType`= 2 WHERE `guid`= @CMEMBER;
|
||||
DELETE FROM `creature_addon` WHERE `guid`= @CGUID;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `bytes2`) VALUES
|
||||
(@CGUID, @PATH, 1);
|
||||
|
||||
-- SAI Event Script for GUID 650090
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (-650090, 6500900, 6500901) AND `source_type` IN (0, 9);
|
||||
INSERT INTO `smart_scripts`(`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `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_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(-650090, 0, 0, 0, 40, 0, 100, 0, 0, 0, 0, 0, 0, '', 80, 6500901, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On WP 2 reached - run ActionList - self'),
|
||||
(-650090, 0, 1, 0, 40, 0, 100, 0, 1, 6500900, 0, 0, 0, '', 80, 6500900, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On WP 1 reach - run ActionList - self'),
|
||||
(6500900, 9, 0, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 0, '', 45, 1, 1, 0, 0, 0, 0, 10, 650076, 132215, 0, 0, 0, 0, 0, 'After 1s - Set Byte 1 1 - Target GUID'),
|
||||
(6500900, 9, 1, 0, 0, 0, 100, 0, 2000, 2000, 0, 0, 0, '', 5, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 2s - Play Emote - self'),
|
||||
(6500900, 9, 2, 0, 0, 0, 100, 0, 3000, 3000, 0, 0, 0, '', 5, 6, 0, 0, 0, 0, 0, 10, 650076, 132215, 0, 0, 0, 0, 0, 'After 3s - Play Emote - Target GUID'),
|
||||
(6500900, 9, 3, 0, 0, 0, 100, 0, 2000, 2000, 0, 0, 0, '', 5, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 2s - Play Emote - self'),
|
||||
(6500900, 9, 4, 0, 0, 0, 100, 0, 2000, 2000, 0, 0, 0, '', 5, 1, 0, 0, 0, 0, 0, 10, 650076, 132215, 0, 0, 0, 0, 0, 'After 2s - Play Emote - Target GUID'),
|
||||
(6500900, 9, 5, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, '', 45, 2, 2, 0, 0, 0, 0, 10, 650076, 132215, 0, 0, 0, 0, 0, 'After 6s - Send data 2 2 - Target GUID'),
|
||||
(6500901, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, '', 128, 12894, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 0s - Set AnimKit - self'),
|
||||
(6500901, 9, 1, 0, 0, 0, 100, 0, 42000, 42000, 0, 0, 0, '', 128, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 42s - Set AnimKit to 0 - self');
|
||||
|
||||
SET @CGUID := 650090;
|
||||
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`, `move_type`, `action`, `action_chance`, `wpguid`) VALUES
|
||||
(@PATH, 1, 451.651, 1391.86, 772.655, 3.5627, 15751, 0, 0, 100, 0),
|
||||
(@PATH, 2, 468.72, 1398.42, 772.649, 0, 43549, 0, 0, 100, 0);
|
||||
|
||||
UPDATE `creature` SET `position_x`= 451.651, `position_y`= 1391.865, `position_z`= 772.6549, `orientation`= 0, `spawndist`= 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);
|
||||
|
||||
-- SAI Event Script for GUID 650085
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (-650085, 65008500, -650127, -650121) AND `source_type` IN (0, 9);
|
||||
INSERT INTO `smart_scripts`(`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `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_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(-650085, 0, 0, 0, 40, 0, 100, 0, 1, 6500850, 0, 0, 0, '', 80, 65008500, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On Waypoint 1 reached - Start Action List - Self'),
|
||||
(65008500, 9, 0, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 0, '', 45, 1, 1, 0, 0, 0, 0, 9, 132214, 0, 4, 0, 0, 0, 0, 'After 1s - Set Data 1 1 to nearby Entry'),
|
||||
(65008500, 9, 1, 0, 0, 0, 100, 0, 3000, 3000, 0, 0, 0, '', 5, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'After 3s - Play Emote - Self'),
|
||||
(65008500, 9, 2, 0, 0, 0, 100, 0, 3000, 3000, 0, 0, 0, '', 5, 1, 0, 0, 0, 0, 0, 10, 650127, 132214, 0, 0, 0, 0, 0, 'After 3s - Play Emote - Target Guid'),
|
||||
(65008500, 9, 3, 0, 0, 0, 100, 0, 3000, 3000, 0, 0, 0, '', 5, 1, 0, 0, 0, 0, 0, 10, 650121, 132214, 0, 0, 0, 0, 0, 'After 3s - Play Emote - Target Guid'),
|
||||
(65008500, 9, 4, 0, 0, 0, 100, 0, 4000, 4000, 0, 0, 0, '', 45, 2, 2, 0, 0, 0, 0, 9, 132214, 0, 4, 0, 0, 0, 0, 'After 4s - Set data 2 2 - Nearby Entry'),
|
||||
(-650127, 0, 0, 0, 38, 0, 100, 0, 1, 1, 0, 0, 0, '', 66, 0, 0, 0, 0, 0, 0, 10, 650085, 132215, 0, 0, 0, 0, 0, 'On data Set 1 1 - Set Orientation - Target GUID / Entry'),
|
||||
(-650127, 0, 1, 0, 38, 0, 100, 0, 2, 2, 0, 0, 0, '', 66, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 4.20928, 'On data Set 2 2 - Set Orientation - Default Orientation'),
|
||||
(-650121, 0, 0, 0, 38, 0, 100, 0, 1, 1, 0, 0, 0, '', 66, 0, 0, 0, 0, 0, 0, 10, 650085, 132215, 0, 0, 0, 0, 0, 'On data Set 1 1 - Set Orientation - Target GUID / Entry'),
|
||||
(-650121, 0, 1, 0, 38, 0, 100, 0, 2, 2, 0, 0, 0, '', 66, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 1.48262, 'On data Set 2 2 - Set Orientation - Default Orientation');
|
||||
|
||||
SET @CGUID := 650085;
|
||||
SET @PATH := @CGUID * 10;
|
||||
DELETE FROM `waypoint_data` WHERE `id`= @PATH; -- This Waypoints should be Spline.
|
||||
INSERT INTO `waypoint_data`(`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`, `action`, `action_chance`, `wpguid`) VALUES
|
||||
(6500850, 0, 425.337, 1412.52, 772.696, 0.1589, 6118, 0, 0, 100, 0),
|
||||
(6500850, 1, 415.845, 1483.25, 772.655, 0.1196, 15743, 0, 0, 100, 0);
|
||||
|
||||
UPDATE `creature` SET `position_x`= 425.3368, `position_y`= 1412.521, `position_z`= 772.6965, `orientation`= 0, `spawndist`= 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);
|
||||
@@ -0,0 +1,2 @@
|
||||
--
|
||||
UPDATE `creature_text` SET `TextRange`=5 WHERE `CreatureID`=130986 AND `GroupID` BETWEEN 0 AND 5;
|
||||
@@ -0,0 +1,5 @@
|
||||
--
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=14 AND `SourceGroup`=1822;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(14,1822,2473,0,0,6,0,67,0,0,0,0,0,"","Show gossip text 2473 if player is Horde"),
|
||||
(14,1822,2474,0,0,6,0,469,0,0,0,0,0,"","Show gossip text 2474 if player is Alliance");
|
||||
@@ -0,0 +1,27 @@
|
||||
--
|
||||
-- Thaurissan Relic
|
||||
UPDATE `gameobject_template` SET `AIName`="SmartGameObjectAI" WHERE `entry`=153556;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=153556 AND `source_type`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=15355600 AND `source_type`=9;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(153556,1,0,0,70,0,100,1,2,0,0,0,64,1,0,0,0,0,0,7,0,0,0,0,0,0,0,"Thaurissan Relic - On Gameobject State Changed - Store Targetlist"),
|
||||
(153556,1,1,0,70,0,100,1,2,0,0,0,80,15355600,0,0,0,0,0,1,0,0,0,0,0,0,0,"Thaurissan Relic - On Gameobject State Changed - Run Script"),
|
||||
(15355600,9,0,0,0,0,100,0,0,0,0,0,12,8887,3,5000,0,0,0,1,0,0,0,0,0,0,0,"Thaurissan Relic - On Script - Summon Creature 'A tormented voice'"),
|
||||
(15355600,9,1,0,0,0,100,0,0,0,0,0,100,1,0,0,0,0,0,19,8887,0,0,0,0,0,0,"Thaurissan Relic - On Script - Send Targetlist"),
|
||||
(15355600,9,2,0,0,0,100,0,0,0,0,0,45,1,1,0,0,0,0,19,8887,0,0,0,0,0,0,"Thaurissan Relic - On Script - Set Data");
|
||||
|
||||
-- A tormented voice
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=8887;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=8887 AND `source_type`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(8887,0,0,0,38,0,100,0,1,1,0,0,1,0,0,0,0,0,0,12,1,0,0,0,0,0,0,"A tormented voice - On Data Set - Say Line 0");
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`=8887;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(8887,0,0,"Leave this place. <The relic emits a white hot arc of flame. A memory has been gained: A lone Dark Iron dwarf is surrounded by seven corpses, kneeling before a monolith of flame.>",15,0,100,0,0,0,4594,0,"A tormented voice"),
|
||||
(8887,0,1,"You will perish here. <Your mind fills with visions of chaos and destruction.>",15,0,100,0,0,0,4595,0,"A tormented voice"),
|
||||
(8887,0,2,"Do not taint these ruins, mortal. <You are engulfed in a blinding flash of light. A creature composed entirely of flame is the only thing you can remember seeing.>",15,0,100,0,0,0,4596,0,"A tormented voice"),
|
||||
(8887,0,3,"Help us, outsider. <The relic crumbles to dust. A vision of eight Dark Iron dwarves performing some sort of ritual fills your head.>",15,0,100,0,0,0,4597,0,"A tormented voice"),
|
||||
(8887,0,4,"He cannot be defeated. <The relic burns to nothing. The memories it held are now your own. This city was destroyed by a being not of this world.>",15,0,100,0,0,0,4598,0,"A tormented voice"),
|
||||
(8887,0,5,"Your existence is acknowledged. <The relic turns to dust. Your head throbs with newfound wisdom. Something evil lurks in the heart of the mountain.>",15,0,100,0,0,0,4599,0,"A tormented voice"),
|
||||
(8887,0,6,"Defiler... you will be punished for this incursion. <A symbol of flame radiates from the relic before it crumbles to the earth.>",15,0,100,0,0,0,4600,0,"A tormented voice");
|
||||
@@ -0,0 +1,8 @@
|
||||
-- Royal Historian Archesonus
|
||||
DELETE FROM `gossip_menu` WHERE `MenuID`=1561 AND `TextID`=2235;
|
||||
INSERT INTO `gossip_menu` (`MenuID`, `TextID`, `VerifiedBuild`) VALUES
|
||||
(1561,2235,0);
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=14 AND `SourceGroup`=1561;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(14,1561,2235,0,0,9,0,3702,0,0,0,0,0,"","Show gossip text 2235 if quest 'The Smoldering Ruins of Thaurissan' is taken");
|
||||
@@ -0,0 +1,14 @@
|
||||
--
|
||||
-- Stone Watcher of Norgannon
|
||||
UPDATE `gossip_menu` SET `TextID`=1676 WHERE `MenuID`=57001;
|
||||
UPDATE `gossip_menu` SET `TextID`=1675 WHERE `MenuID`=57002;
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`=7918;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(7918,0,0,"Salutations! I am a guardian of entry. Please use the proper discs for access to Uldum.",12,0,100,0,0,0,4049,0,"Stone Watcher of Norgannon"),
|
||||
(7918,1,0,"Your discs will be returned to you once you access the pedestal.",12,0,100,0,0,0,4065,0,"Stone Watcher of Norgannon");
|
||||
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=7918 AND `source_type`=0 AND `id` IN (2,3);
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(7918,0,2,0,11,0,100,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Stone Watcher of Norgannon - On Spawn - Say Line 0"),
|
||||
(7918,0,3,0,62,0,100,0,57005,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Stone Watcher of Norgannon - On Gossip Option Selected - Say Line 1");
|
||||
@@ -0,0 +1,4 @@
|
||||
-- Princess Moira Bronzebeard
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`=8929;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(8929,0,0,"%s is visibly shaken by the death of Emperor Thaurissan.",16,0,100,18,0,0,5429,0,"Princess Moira Bronzebeard");
|
||||
@@ -0,0 +1,59 @@
|
||||
-- Sharth and Pathaleon conversation
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`=21504 AND `GroupID`=13;
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`=18554;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(18554,0,0,"You come into my house and threaten ME? I think not!'",12,0,100,1,0,0,15542,0,"Sharth Voldoun"),
|
||||
(18554,1,0,"My master, we are honored by your presence. How may I serve thee?",12,0,100,0,0,0,19156,0,"Sharth Voldoun"),
|
||||
(18554,2,0,"All goes exceedingly well, my lord. Testing of the smaller prototype at the Cenarion Thicket was a complete success. The second bomb is being ritually fueled in the courtyard below even as we speak. And, I''ve sent a courier to Tuurem to bring the rest of the parts to us here.",12,0,100,1,0,0,19159,0,"Sharth Voldoun"),
|
||||
(18554,3,0,'You are satisfied?',12,0,100,6,0,0,19160,0,"Sharth Voldoun"),
|
||||
(18554,4,0,'I can assure you that we will not fail, my master. I am personally overseeing every aspect of the construction, and I hold the final codes, myself. Within a day''s time, I will have the bomb detonated on those nearby pests.',12,0,100,2,0,0,19164,0,"Sharth Voldoun"),
|
||||
(21504,13,0,'Rise, young Voldoun. Do not worry yourself with pleasantries. I come at the behest of our master, Prince Kael''thas. He bids me to check on the progress of the mana bomb.',12,0,100,1,0,0,19157,0,"Pathaleon the Calculator's Image");
|
||||
|
||||
-- Incorrect spawning of Pathaleon the Calculators Image
|
||||
DELETE FROM `creature` WHERE `guid`=85566 AND `id`=21504;
|
||||
|
||||
-- Sharth Voldoun, fix position and weapon sheathed
|
||||
UPDATE `creature` SET `position_x` = -2288.34839, `position_y` = 3091.4968, `orientation` = 3.2263 WHERE `guid` = 86925;
|
||||
DELETE FROM `creature_template_addon` WHERE `entry`=18554;
|
||||
INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `auras`) VALUES
|
||||
(18554,0,0,0,0,0,"");
|
||||
|
||||
-- Sharth Voldoun
|
||||
UPDATE `creature_template` SET `AIName`= 'SmartAI' WHERE `entry`= 18554;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=18554 AND `source_type`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1855400 AND `source_type`=9;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(18554,0,0,0,0,0,100,0,3000,5000,40000,45000,0,11,15277,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sharth Voldoun - IC - Cast Seal of Reckoning"),
|
||||
(18554,0,1,0,2,0,100,0,0,40,15000,20000,0,11,13952,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sharth Voldoun - On Below 40% HP - Cast Holy Light"),
|
||||
(18554,0,2,3,4,0,100,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sharth Voldoun - On Aggro - Say Line 0"),
|
||||
(18554,0,3,0,61,0,100,0,0,0,0,0,0,45,1,1,0,0,0,0,19,21504,50,0,0,0,0,0,"Sharth Voldoun - On Aggro - Set Data"),
|
||||
(18554,0,4,0,1,0,100,0,30000,30000,120000,120000,0,80,1855400,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sharth Voldoun - OOC - RunScript"),
|
||||
(1855400,9,0,0,0,0,100,0,0,0,0,0,0,12,21504,8,0,0,0,0,8,0,0,0,-2293.5210,3091.34302,152.817734,6.17546,"Sharth Voldoun - On Script - Summon Pathaleon the Calculators Image"),
|
||||
(1855400,9,1,0,0,0,100,0,2000,2000,0,0,0,90,8,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sharth Voldoun - On Script - Set Flag Standstate 'Kneel'"),
|
||||
(1855400,9,2,0,0,0,100,0,1000,1000,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sharth Voldoun - On Script - Say Line 1"),
|
||||
(1855400,9,3,0,0,0,100,0,7000,7000,0,0,0,1,13,0,0,0,0,0,19,21504,0,0,0,0,0,0,"Sharth Voldoun - On Script - Say Line 13 (Pathaleon the Calculators Image)"),
|
||||
(1855400,9,4,0,0,0,100,0,3000,3000,0,0,0,91,8,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sharth Voldoun - On Script - Remove Flag Standstate 'Kneel'"),
|
||||
(1855400,9,5,0,0,0,100,0,8000,8000,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sharth Voldoun - On Script - Say Line 2"),
|
||||
(1855400,9,6,0,0,0,100,0,14000,14000,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sharth Voldoun - On Script - Say Line 3"),
|
||||
(1855400,9,7,0,0,0,100,0,4000,4000,0,0,0,1,4,0,0,0,0,0,19,21504,0,0,0,0,0,0,"Sharth Voldoun - On Script - Say Line 4 (Pathaleon the Calculators Image)"),
|
||||
(1855400,9,8,0,0,0,100,0,16000,16000,0,0,0,1,5,0,0,0,0,0,19,21504,0,0,0,0,0,0,"Sharth Voldoun - On Script - Say Line 5 (Pathaleon the Calculators Image)"),
|
||||
(1855400,9,9,0,0,0,100,0,16000,16000,0,0,0,1,6,0,0,0,0,0,19,21504,0,0,0,0,0,0,"Sharth Voldoun - On Script - Say Line 6 (Pathaleon the Calculators Image)"),
|
||||
(1855400,9,10,0,0,0,100,0,10000,10000,0,0,0,1,4,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sharth Voldoun - On Script - Say Line 4"),
|
||||
(1855400,9,11,0,0,0,100,0,13000,13000,0,0,0,1,7,0,0,0,0,0,19,21504,0,0,0,0,0,0,"Sharth Voldoun - On Script - Say Line 7 (Pathaleon the Calculators Image)"),
|
||||
(1855400,9,12,0,0,0,100,0,0,0,0,0,0,45,3,3,0,0,0,0,19,21504,0,0,0,0,0,0,"Sharth Voldoun - On Script - Set Data to Pathaleon the Calculators Image");
|
||||
|
||||
-- Pathaleon the Calculators Image
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=21504 AND `ID`>1;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=2150401 AND `source_type`=9;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=2150402 AND `source_type`=9;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=21504 AND `ID`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(21504,0,2,0,54,0,100,0,0,0,0,0,0,11,34427,2,0,0,0,0,1,0,0,0,0,0,0,0,"Pathaleon the Calculator's Image - On Just Summoned - Cast Ethereal Teleport"),
|
||||
(21504,0,3,0,54,0,100,0,0,0,0,0,0,11,33900,2,0,0,0,0,1,0,0,0,0,0,0,0,"Pathaleon the Calculator's Image - On Just Summoned - Cast Shroud of Death"),
|
||||
(21504,0,4,0,38,0,100,0,3,3,0,0,0,80,2150401,2,0,0,0,0,1,0,0,0,0,0,0,0,"Pathaleon the Calculator's Image - On Data Set - Run Script"),
|
||||
(2150401,9,0,0,0,0,100,0,8000,8000,0,0,0,11,34427,2,0,0,0,0,1,0,0,0,0,0,0,0,"Pathaleon the Calculator's Image - On Script - Cast Ethereal Teleport"),
|
||||
(2150401,9,1,0,0,0,100,0,2000,2000,0,0,0,41,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Pathaleon the Calculator's Image - On Script - Despawn"),
|
||||
(21504,0,0,0,38,0,100,0,1,1,0,0,0,80,2150402,2,0,0,0,0,1,0,0,0,0,0,0,0,"Pathaleon the Calculator's Image - On Data Set - Run Script"),
|
||||
(2150402,9,0,0,0,0,100,0,1000,1000,0,0,0,1,8,0,0,0,0,0,1,0,0,0,0,0,0,0,"Pathaleon the Calculator's Image - On Script - Say text"),
|
||||
(2150402,9,1,0,0,0,100,0,5000,5000,0,0,0,11,34427,2,0,0,0,0,1,0,0,0,0,0,0,0,"Pathaleon the Calculator's Image - On Script - Cast Ethereal Teleport"),
|
||||
(2150402,9,2,0,0,0,100,0,1000,1000,0,0,0,41,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Pathaleon the Calculator's Image - On Script - Despawn");
|
||||
@@ -0,0 +1,7 @@
|
||||
UPDATE `creature_template` SET `ScriptName`='npc_pet_gen_soul_trader' WHERE `entry`=27914;
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName` IN ('spell_ethereal_pet_aura','spell_ethereal_pet_onsummon','spell_ethereal_pet_aura_remove','spell_steal_essence_visual');
|
||||
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
|
||||
(50051,'spell_ethereal_pet_aura'),
|
||||
(50052,'spell_ethereal_pet_onsummon'),
|
||||
(50055,'spell_ethereal_pet_aura_remove'),
|
||||
(50101,'spell_steal_essence_visual');
|
||||
@@ -0,0 +1,12 @@
|
||||
--
|
||||
-- Quest "Replacement Phial"
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=19 AND `SourceEntry`=3375;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(19,0,3375,0,0,14,0,2200,0,0,1,0,0,"","Quest 'Replacement Phial' can only be taken if quest 'Back to Uldaman' is taken"),
|
||||
(19,0,3375,0,0,28,0,2204,0,0,1,0,0,"","Quest 'Replacement Phial' can only be taken if quest 'Restoring the Necklace' is not completed"),
|
||||
(19,0,3375,0,0,8,0,2204,0,0,1,0,0,"","Quest 'Replacement Phial' can only be taken if quest 'Restoring the Necklace' is not rewarded"),
|
||||
(19,0,3375,0,0,2,0,7667,1,1,1,0,0,"","Quest 'Replacement Phial' can only be taken if player does not have item 'Talvash's Phial of Scrying'");
|
||||
|
||||
DELETE FROM `quest_template_addon` WHERE `ID`=3375;
|
||||
INSERT INTO `quest_template_addon` (`ID`, `MaxLevel`, `AllowableClasses`, `SourceSpellID`, `PrevQuestID`, `NextQuestID`, `ExclusiveGroup`, `RewardMailTemplateID`, `RewardMailDelay`, `RequiredSkillID`, `RequiredSkillPoints`, `RequiredMinRepFaction`, `RequiredMaxRepFaction`, `RequiredMinRepValue`, `RequiredMaxRepValue`, `ProvidedItemCount`, `SpecialFlags`) VALUES
|
||||
(3375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1);
|
||||
@@ -0,0 +1,41 @@
|
||||
-- Talvash del Kissel
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`=6826 AND `GroupID` IN (1,2,3,4,5);
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(6826,1,0,"Let me grab a spell focus from inside my home here, and then we'll get started!",12,7,100,0,0,0,3121,0,"Talvash del Kissel"),
|
||||
(6826,2,0,"Bah, it isn't here. Where did I have that blasted thing at last?",12,7,100,6,0,0,3122,0,"Talvash del Kissel"),
|
||||
(6826,3,0,"That's right, it's over by the bed. Heh, sorry about that!",12,7,100,0,0,0,3123,0,"Talvash del Kissel"),
|
||||
(6826,4,0,"Fantastic then! Let's get this thing fixed for you.",12,7,100,0,0,0,3124,0,"Talvash del Kissel"),
|
||||
(6826,5,0,"Success! Huzzah! The power source restored the necklace!",12,7,100,4,0,0,3125,0,"Talvash del Kissel");
|
||||
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=6826 AND `source_type`=0 AND `id` IN (2,3,4,5,6,7);
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (682600,682601,682602) AND `source_type`=9;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(6826,0,2,0,20,0,100,0,2204,0,0,0,83,3,0,0,0,0,0,1,0,0,0,0,0,0,0,"Talvash del Kissel - On Quest 'Restoring the Necklace' Finished - Remove Npc Flag Questgiver+Gossip"),
|
||||
(6826,0,3,0,20,0,100,0,2204,0,0,0,53,0,6826,0,0,0,0,1,0,0,0,0,0,0,0,"Talvash del Kissel - On Quest 'Restoring the Necklace' Finished - Start Waypoint"),
|
||||
(6826,0,4,0,20,0,100,0,2204,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Talvash del Kissel - On Quest 'Restoring the Necklace' Finished - Say Line 1"),
|
||||
(6826,0,5,0,40,0,100,0,3,6826,0,0,80,682600,0,0,0,0,0,1,0,0,0,0,0,0,0,"Talvash del Kissel - On Waypoint 3 Reached - Run Script"),
|
||||
(6826,0,6,0,40,0,100,0,5,6826,0,0,80,682601,0,0,0,0,0,1,0,0,0,0,0,0,0,"Talvash del Kissel - On Waypoint 5 Reached - Run Script"),
|
||||
(6826,0,7,0,40,0,100,0,10,6826,0,0,80,682602,0,0,0,0,0,1,0,0,0,0,0,0,0,"Talvash del Kissel - On Waypoint 10 Reached - Run Script"),
|
||||
(682600,9,0,0,0,0,100,0,0,0,0,0,54,8000,0,0,0,0,0,1,0,0,0,0,0,0,0,"Talvash del Kissel - On Script - Pause Waypoint"),
|
||||
(682600,9,1,0,0,0,100,0,0,0,0,0,66,0,0,0,0,0,0,8,0,0,0,0,0,0,5.02135,"Talvash del Kissel - On Script - Set Orientation"),
|
||||
(682600,9,2,0,0,0,100,0,3000,3000,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Talvash del Kissel - On Script - Say Line 2"),
|
||||
(682600,9,3,0,0,0,100,0,5000,5000,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,"Talvash del Kissel - On Script - Say Line 3"),
|
||||
(682601,9,0,0,0,0,100,0,0,0,0,0,54,4000,0,0,0,0,0,1,0,0,0,0,0,0,0,"Talvash del Kissel - On Script - Pause Waypoint"),
|
||||
(682601,9,2,0,0,0,100,0,4000,4000,0,0,1,4,0,0,0,0,0,1,0,0,0,0,0,0,0,"Talvash del Kissel - On Script - Say Line 4"),
|
||||
(682602,9,0,0,0,0,100,0,0,0,0,0,66,0,0,0,0,0,0,8,0,0,0,0,0,0,3.31613,"Talvash del Kissel - On Script - Set Orientation"),
|
||||
(682602,9,1,0,0,0,100,0,1000,1000,0,0,11,9795,0,0,0,0,0,1,0,0,0,0,0,0,0,"Talvash del Kissel - On Script - Cast 'Talvash's Necklace Repair'"),
|
||||
(682602,9,2,0,0,0,100,0,6000,6000,0,0,1,5,0,0,0,0,0,1,0,0,0,0,0,0,0,"Talvash del Kissel - On Script - Say Line 5"),
|
||||
(682602,9,3,0,0,0,100,0,0,0,0,0,82,3,0,0,0,0,0,1,0,0,0,0,0,0,0,"Talvash del Kissel - On Script - Add Npc Flag Questgiver+Gossip");
|
||||
|
||||
DELETE FROM `waypoints` WHERE `entry`=6826;
|
||||
INSERT INTO `waypoints` (`entry`, `pointid`, `position_x`, `position_y`, `position_z`, `point_comment`) VALUES
|
||||
(6826,1,-4586.89,-997.797,503.658,""),
|
||||
(6826,2,-4582.68,-996.563,503.658,""),
|
||||
(6826,3,-4575.23,-998.552,503.658,""),
|
||||
(6826,4,-4575.04,-995.529,503.657,""),
|
||||
(6826,5,-4576.11,-992.451,503.657,""),
|
||||
(6826,6,-4575.04,-995.529,503.657,""),
|
||||
(6826,7,-4575.64,-997.129,503.657,""),
|
||||
(6826,8,-4578.79,-998.015,503.657,""),
|
||||
(6826,9,-4586.89,-997.797,503.658,""),
|
||||
(6826,10,-4588.3,-1001.21,503.657,"");
|
||||
@@ -0,0 +1,66 @@
|
||||
--
|
||||
-- Tidelord Rrurgaz
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=16072;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=16072 AND `source_type`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(16072,0,0,0,0,0,100,0,2000,4000,14000,21000,0,11,16244,0,0,0,0,0,1,0,0,0,0,0,0,0,"Tidelord Rrurgaz - In Combat - Cast 'Demoralizing Shout'"),
|
||||
(16072,0,1,0,0,0,100,0,5000,7000,19000,22000,0,11,16509,0,0,0,0,0,5,0,0,0,0,0,0,0,"Tidelord Rrurgaz - In Combat - Cast 'Rend'"),
|
||||
(16072,0,2,0,0,0,100,0,7000,9000,8000,12000,0,11,17207,0,0,0,0,0,1,0,0,0,0,0,0,0,"Tidelord Rrurgaz - In Combat - Cast 'Whirlwind'"),
|
||||
(16072,0,3,0,0,0,100,0,9000,12000,14000,17000,0,11,15588,0,0,0,0,0,1,0,0,0,0,0,0,0,"Tidelord Rrurgaz - In Combat - Cast 'Thunderclap'");
|
||||
|
||||
-- Strashaz Warrior
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=4364;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=4364 AND `source_type`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(4364,0,0,0,0,0,100,0,5000,7000,12000,15000,0,11,9080,0,0,0,0,0,2,0,0,0,0,0,0,0,"Strashaz Warrior - In Combat - Cast 'Hamstring'"),
|
||||
(4364,0,1,0,0,0,100,0,4000,9000,8000,12000,0,11,16856,0,0,0,0,0,2,0,0,0,0,0,0,0,"Strashaz Warrior - In Combat - Cast 'Mortal Strike'"),
|
||||
(4364,0,2,0,2,0,100,1,0,15,0,0,0,25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Strashaz Warrior - Between 0-15% Health - Flee For Assist (No Repeat)");
|
||||
|
||||
-- Strashaz Sorceress
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=4370;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=4370 AND `source_type`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(4370,0,0,0,0,0,100,0,0,0,3000,5000,0,11,12737,64,0,0,0,0,2,0,0,0,0,0,0,0,"Strashaz Sorceress - In Combat - Cast 'Frostbolt'"),
|
||||
(4370,0,1,0,0,0,100,0,12000,16000,16000,21000,0,11,15499,0,0,0,0,0,5,0,0,0,0,0,0,0,"Strashaz Sorceress - In Combat - Cast 'Frost Shock'"),
|
||||
(4370,0,2,0,9,0,100,0,0,8,12000,15000,0,11,15532,0,0,0,0,0,1,0,0,0,0,0,0,0,"Strashaz Sorceress - Within 0-8 Range - Cast 'Frost Nova'"),
|
||||
(4370,0,3,0,2,0,100,1,0,15,0,0,0,25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Strashaz Sorceress - Between 0-15% Health - Flee For Assist (No Repeat)");
|
||||
|
||||
-- Strashaz Siren
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=4371;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=4371 AND `source_type`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(4371,0,0,0,0,0,100,0,0,0,3000,5000,0,11,15587,64,0,0,0,0,2,0,0,0,0,0,0,0,"Strashaz Siren - In Combat - Cast 'Mind Blast'"),
|
||||
(4371,0,1,0,0,0,100,0,11000,15000,21000,26000,0,11,15654,0,0,0,0,0,5,0,0,0,0,0,0,0,"Strashaz Siren - In Combat - Cast 'Shadow Word: Pain'"),
|
||||
(4371,0,2,0,0,0,100,0,8000,12000,16000,22000,0,11,7645,0,0,0,0,0,6,0,0,0,0,0,0,0,"Strashaz Siren - In Combat - Cast 'Dominate Mind'"),
|
||||
(4371,0,3,0,2,0,100,1,0,15,0,0,0,25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Strashaz Siren - Between 0-15% Health - Flee For Assist (No Repeat)");
|
||||
|
||||
-- Strashaz Myrmidon
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=4368;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=4368 AND `source_type`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(4368,0,0,0,0,0,100,0,5000,7000,11000,14000,0,11,15284,0,0,0,0,0,2,0,0,0,0,0,0,0,"Strashaz Myrmidon - In Combat - Cast 'Cleave'"),
|
||||
(4368,0,1,0,0,0,100,0,7000,11000,9000,13000,0,11,18812,0,0,0,0,0,5,0,0,0,0,0,0,0,"Strashaz Myrmidon - In Combat - Cast 'Knockdown'"),
|
||||
(4368,0,2,0,2,0,100,1,0,15,0,0,0,25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Strashaz Myrmidon - Between 0-15% Health - Flee For Assist (No Repeat)");
|
||||
|
||||
-- Strashaz Serpent Guard
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=4366;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=4366 AND `source_type`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(4366,0,0,0,0,0,100,0,5000,7000,7000,11000,0,11,12057,0,0,0,0,0,2,0,0,0,0,0,0,0,"Strashaz Serpent Guard - In Combat - Cast 'Strike'"),
|
||||
(4366,0,1,0,0,0,100,0,4000,9000,18000,24000,0,11,6713,0,0,0,0,0,2,0,0,0,0,0,0,0,"Strashaz Serpent Guard - In Combat - Cast 'Disarm'"),
|
||||
(4366,0,2,0,0,0,100,0,7000,12000,21000,25000,0,11,16509,0,0,0,0,0,5,0,0,0,0,0,0,0,"Strashaz Serpent Guard - In Combat - Cast 'Rend'"),
|
||||
(4366,0,3,0,2,0,100,1,0,15,0,0,0,25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Strashaz Serpent Guard - Between 0-15% Health - Flee For Assist (No Repeat)");
|
||||
|
||||
-- Strashaz Hydra
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=4374;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=4374 AND `source_type`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(4374,0,0,0,25,0,100,0,0,0,0,0,0,11,8876,0,0,0,0,0,1,0,0,0,0,0,0,0,"Strashaz Hydra - On Reset - Cast 'Thrash'"),
|
||||
(4374,0,1,0,0,0,100,0,5000,9000,12000,21000,0,11,16128,0,0,0,0,0,5,0,0,0,0,0,0,0,"Strashaz Hydra - In Combat - Cast 'Infected Bite'");
|
||||
|
||||
-- Doctor Weavil
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=15552;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=15552 AND `source_type`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(15552,0,0,0,0,0,100,0,8000,14000,8000,14000,0,11,25774,0,0,0,0,0,1,0,0,0,0,0,0,0,"Doctor Weavil - In Combat - Cast 'Mind Shatter'"),
|
||||
(15552,0,1,0,0,0,100,0,15000,15000,120000,120000,0,11,25772,0,0,0,0,0,2,0,0,0,0,0,0,0,"Doctor Weavil - In Combat - Cast 'Mental Domination'");
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,357 @@
|
||||
--
|
||||
-- Ma'ruk Wyrmscale
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=2090 AND `source_type`=0 AND `id`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(2090,0,0,0,4,0,100,0,0,0,0,0,0,11,9128,0,0,0,0,0,1,0,0,0,0,0,0,0,"Ma'ruk Wyrmscale - On Aggro - Cast 'Battle Shout'");
|
||||
|
||||
-- Black Slime
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1030 AND `source_type`=0 AND `id`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1030,0,0,0,0,0,100,1,5000,9000,0,0,0,11,3335,0,0,0,0,0,1,0,0,0,0,0,0,0,"Black Slime - In Combat - Cast 'Dark Sludge' (No Repeat)");
|
||||
|
||||
-- Sludginn
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=14433 AND `source_type`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(14433,0,0,0,0,0,100,1,9000,11000,0,0,0,11,3335,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sludginn - In Combat - Cast 'Dark Sludge' (No Repeat)"),
|
||||
(14433,0,1,0,0,0,100,0,5000,8000,21000,23000,0,11,3358,32,0,0,0,0,2,0,0,0,0,0,0,0,"Sludginn - In Combat - Cast 'Leech Poison'");
|
||||
|
||||
-- Mosshide Gnoll
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1007 AND `source_type`=0 AND `id` IN (1,2,3);
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1007,0,1,0,25,0,100,0,0,0,0,0,0,11,8852,0,0,0,0,0,1,0,0,0,0,0,0,0,"Mosshide Gnoll - On Reset - Cast 'Moss Hide'"),
|
||||
(1007,0,2,0,2,0,100,1,0,15,0,0,0,25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mosshide Gnoll - Between 0-15% Health - Flee For Assist (No Repeat)");
|
||||
|
||||
-- Mosshide Mongrel
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1008 AND `source_type`=0 AND `id` IN (1,2,3,4);
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1008,0,1,0,0,0,100,0,6000,13000,17000,24000,0,11,8016,0,0,0,0,0,2,0,0,0,0,0,0,0,"Mosshide Mongrel - In Combat - Cast 'Spirit Decay'"),
|
||||
(1008,0,2,0,25,0,100,0,0,0,0,0,0,11,8852,0,0,0,0,0,1,0,0,0,0,0,0,0,"Mosshide Mongrel - On Reset - Cast 'Moss Hide'"),
|
||||
(1008,0,3,0,2,0,100,1,0,15,0,0,0,25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mosshide Mongrel - Between 0-15% Health - Flee For Assist (No Repeat)");
|
||||
|
||||
-- Mosshide Fenrunner
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1010 AND `source_type`=0 AND `id` IN (1,2,3);
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1010,0,1,0,25,0,100,0,0,0,0,0,0,11,8852,0,0,0,0,0,1,0,0,0,0,0,0,0,"Mosshide Fenrunner - On Reset - Cast 'Moss Hide'"),
|
||||
(1010,0,2,0,2,0,100,1,0,15,0,0,0,25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mosshide Fenrunner - Between 0-15% Health - Flee For Assist (No Repeat)");
|
||||
|
||||
-- Mosshide Mistweaver
|
||||
UPDATE `smart_scripts` SET `event_param3`=3000, `event_param4`=5000 WHERE `entryorguid`=1009 AND `source_type`=0 AND `id`=2;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1009 AND `source_type`=0 AND `id` IN (0,3,4,5);
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1009,0,0,0,1,0,100,0,1000,1000,1800000,1800000,0,11,12544,0,0,0,0,0,1,0,0,0,0,0,0,0,"Mosshide Mistweaver - Out of Combat - Cast 'Frost Armor'"),
|
||||
(1009,0,3,0,25,0,100,0,0,0,0,0,0,11,8852,0,0,0,0,0,1,0,0,0,0,0,0,0,"Mosshide Mistweaver - On Reset - Cast 'Moss Hide'"),
|
||||
(1009,0,4,0,2,0,100,1,0,15,0,0,0,25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mosshide Mistweaver - Between 0-15% Health - Flee For Assist (No Repeat)");
|
||||
|
||||
-- Mosshide Trapper
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1011 AND `source_type`=0 AND `id` IN (1,2,3,4);
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1011,0,1,0,0,0,100,0,4000,11000,15000,22000,0,11,6533,0,0,0,0,0,2,0,0,0,0,0,0,0,"Mosshide Trapper - In Combat - Cast 'Net'"),
|
||||
(1011,0,2,0,25,0,100,0,0,0,0,0,0,11,8852,0,0,0,0,0,1,0,0,0,0,0,0,0,"Mosshide Trapper - On Reset - Cast 'Moss Hide'"),
|
||||
(1011,0,3,0,2,0,100,1,0,15,0,0,0,25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mosshide Trapper - Between 0-15% Health - Flee For Assist (No Repeat)");
|
||||
|
||||
-- Mosshide Brute
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1012 AND `source_type`=0 AND `id`=2;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1012,0,2,0,25,0,100,0,0,0,0,0,0,11,8852,0,0,0,0,0,1,0,0,0,0,0,0,0,"Mosshide Brute - On Reset - Cast 'Moss Hide'");
|
||||
|
||||
-- Mosshide Alpha
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1014 AND `source_type`=0 AND `id` IN (1,2,3,4);
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1014,0,1,0,4,0,100,0,0,0,0,0,0,11,9128,0,0,0,0,0,1,0,0,0,0,0,0,0,"Mosshide Alpha - On Aggro - Cast 'Battle Shout'"),
|
||||
(1014,0,2,0,25,0,100,0,0,0,0,0,0,11,8852,0,0,0,0,0,1,0,0,0,0,0,0,0,"Mosshide Alpha - On Reset - Cast 'Moss Hide'"),
|
||||
(1014,0,3,0,2,0,100,1,0,15,0,0,0,25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mosshide Alpha - Between 0-15% Health - Flee For Assist (No Repeat)");
|
||||
|
||||
-- Mosshide Mystic
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1013 AND `source_type`=0 AND `id` IN (2,3,4,5,6);
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1013,0,2,0,0,0,100,0,8000,14000,18000,24000,0,11,11436,0,0,0,0,0,5,0,0,0,0,0,0,0,"Mosshide Mystic - In Combat - Cast 'Slow'"),
|
||||
(1013,0,3,0,14,0,100,0,320,40,25000,30000,0,11,11986,0,0,0,0,0,7,0,0,0,0,0,0,0,"Mosshide Mystic - Friendly At 320 Health - Cast 'Healing Wave'"),
|
||||
(1013,0,4,0,25,0,100,0,0,0,0,0,0,11,8852,0,0,0,0,0,1,0,0,0,0,0,0,0,"Mosshide Mystic - On Reset - Cast 'Moss Hide'"),
|
||||
(1013,0,5,0,2,0,100,1,0,15,0,0,0,25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mosshide Mystic - Between 0-15% Health - Flee For Assist (No Repeat)");
|
||||
|
||||
-- Leech Stalker
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1111 AND `source_type`=0 AND `id`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1111,0,0,0,0,0,100,0,5000,13000,21000,23000,0,11,3358,32,0,0,0,0,2,0,0,0,0,0,0,0,"Leech Stalker - In Combat - Cast 'Leech Poison'");
|
||||
|
||||
-- Cave Stalker
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=4040 AND `source_type`=0 AND `id`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(4040,0,0,0,0,0,100,0,5000,13000,21000,23000,0,11,3358,32,0,0,0,0,2,0,0,0,0,0,0,0,"Cave Stalker - In Combat - Cast 'Leech Poison'");
|
||||
|
||||
-- Leech Widow
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1112 AND `source_type`=0 AND `id`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1112,0,0,0,0,0,100,0,7000,11000,21000,22000,0,11,3388,32,0,0,0,0,2,0,0,0,0,0,0,0,"Leech Widow - In Combat - Cast 'Deadly Leech Poison'");
|
||||
|
||||
-- Red Whelp
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1042 AND `source_type`=0 AND `id`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1042,0,0,0,0,0,100,0,3000,11000,13000,21000,0,11,3356,0,0,0,0,0,2,0,0,0,0,0,0,0,"Red Whelp - In Combat - Cast 'Flame Lash'");
|
||||
|
||||
-- Black Ooze
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1032 AND `source_type`=0 AND `id`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1032,0,0,0,25,0,100,0,0,0,0,0,0,11,3235,0,0,0,0,0,1,0,0,0,0,0,0,0,"Black Ooze - On Reset - Cast 'Rancid Blood'");
|
||||
|
||||
-- Crimson Ooze
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1031 AND `source_type`=0 AND `id`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1031,0,0,0,25,0,100,0,0,0,0,0,0,11,3235,0,0,0,0,0,1,0,0,0,0,0,0,0,"Crimson Ooze - On Reset - Cast 'Rancid Blood'");
|
||||
|
||||
-- Monstrous Ooze
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1033 AND `source_type`=0 AND `id`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1033,0,0,0,25,0,100,0,0,0,0,0,0,11,3235,0,0,0,0,0,1,0,0,0,0,0,0,0,"Monstrous Ooze - On Reset - Cast 'Rancid Blood'");
|
||||
|
||||
-- Rotting Ancestor
|
||||
-- DELETE FROM `smart_scripts` WHERE `entryorguid`=1530 AND `source_type`=0 AND `id`=0;
|
||||
-- INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
-- (1530,0,0,0,25,0,100,0,0,0,0,0,0,11,3235,0,0,0,0,0,1,0,0,0,0,0,0,0,"Rotting Ancestor - On Reset - Cast 'Rancid Blood'");
|
||||
|
||||
-- Bleeding Horror
|
||||
-- DELETE FROM `smart_scripts` WHERE `entryorguid`=1529 AND `source_type`=0 AND `id`=0;
|
||||
-- INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
-- (1529,0,0,0,25,0,100,0,0,0,0,0,0,11,3235,0,0,0,0,0,1,0,0,0,0,0,0,0,"Bleeding Horror - On Reset - Cast 'Rancid Blood'");
|
||||
|
||||
-- Highland Lashtail
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1016 AND `source_type`=0 AND `id`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1016,0,0,0,0,0,100,0,5000,11000,13000,19000,0,11,6607,2,0,0,0,0,2,0,0,0,0,0,0,0,"Highland Lashtail - In Combat - Cast 'Lash'");
|
||||
UPDATE `smart_scripts` SET `action_param2`=2 WHERE `action_type`=11 AND `action_param1`=6607;
|
||||
|
||||
-- Highland Scytheclaw
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1017 AND `source_type`=0 AND `id`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1017,0,0,0,0,0,100,0,4000,9000,12000,17000,0,11,3147,0,0,0,0,0,2,0,0,0,0,0,0,0,"Highland Scytheclaw - In Combat - Cast 'Rend Flesh'");
|
||||
|
||||
-- Highland Razormaw
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1018 AND `source_type`=0 AND `id`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1018,0,0,0,0,0,100,0,5000,12000,15000,19000,0,11,3427,0,0,0,0,0,2,0,0,0,0,0,0,0,"Highland Razormaw - In Combat - Cast 'Infected Wound'");
|
||||
|
||||
-- Elder Razormaw
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1019 AND `source_type`=0 AND `id`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1019,0,0,0,0,0,100,0,4000,9000,11000,16000,0,11,3604,0,0,0,0,0,2,0,0,0,0,0,0,0,"Elder Razormaw - In Combat - Cast 'Tendon Rip'");
|
||||
|
||||
-- Razormaw Matriarch
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1140 AND `source_type`=0 AND `id` IN (2,3);
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1140,0,2,0,12,0,100,1,0,20,0,0,0,11,7938,0,0,0,0,0,2,0,0,0,0,0,0,0,"Razormaw Matriarch - In Combat - Target Between 0-20% Health - Cast 'Fatal Bite' (No Repeat)"),
|
||||
(1140,0,3,0,0,0,100,0,5000,8000,11000,16000,0,11,3147,0,0,0,0,0,2,0,0,0,0,0,0,0,"Razormaw Matriarch - In Combat - Cast 'Rend Flesh'");
|
||||
|
||||
-- Dark Iron Dwarf
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1051 AND `source_type`=0 AND `id`=1;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1051,0,1,0,0,0,100,0,1000,8000,11000,20000,0,11,7891,2,0,0,0,0,2,0,0,0,0,0,0,0,"Dark Iron Dwarf - In Combat - Cast 'Gift of Ragnaros'");
|
||||
|
||||
-- Dark Iron Rifleman
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=6523 AND `source_type`=0 AND `id`=2;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(6523,0,2,0,0,0,100,0,1000,8000,11000,20000,0,11,7891,2,0,0,0,0,2,0,0,0,0,0,0,0,"Dark Iron Rifleman - In Combat - Cast 'Gift of Ragnaros'");
|
||||
|
||||
-- Dark Iron Demolitionist
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1054 AND `source_type`=0 AND `id`=2;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1054,0,2,0,0,0,100,0,1000,8000,11000,20000,0,11,7891,2,0,0,0,0,2,0,0,0,0,0,0,0,"Dark Iron Demolitionist - In Combat - Cast 'Gift of Ragnaros'");
|
||||
|
||||
-- Dark Iron Saboteur
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1052 AND `source_type`=0 AND `id` IN (0,4);
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1052,0,0,0,0,0,100,0,1000,8000,11000,20000,0,11,7891,2,0,0,0,0,2,0,0,0,0,0,0,0,"Dark Iron Saboteur - In Combat - Cast 'Gift of Ragnaros'"),
|
||||
(1052,0,4,0,4,0,15,0,0,0,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Dark Iron Saboteur - On Aggro - Say Line 2");
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`=1052 AND `GroupID`=2;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(1052,2,0,"Never cross a Dark Iron, $C.",12,0,100,0,0,0,1934,0,"Dark Iron Saboteur"),
|
||||
(1052,2,1,"Time to die, $C.",12,0,100,0,0,0,1935,0,"Dark Iron Saboteur"),
|
||||
(1052,2,2,"Feel the power of the Dark Iron Dwarves!",12,0,100,0,0,0,1936,0,"Dark Iron Saboteur");
|
||||
|
||||
DELETE FROM `spell_linked_spell` WHERE `spell_trigger`=3204;
|
||||
INSERT INTO `spell_linked_spell` (`spell_trigger`, `spell_effect`, `type`, `comment`) VALUES
|
||||
(3204,8329,0,"Sapper Explode");
|
||||
|
||||
-- Dark Iron Tunneler
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1053 AND `source_type`=0 AND `id` IN (1,2,3);
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1053,0,1,0,4,0,100,0,0,0,0,0,0,11,7164,0,0,0,0,0,1,0,0,0,0,0,0,0,"Dark Iron Tunneler - In Combat - Cast 'Defensive Stance'"),
|
||||
(1053,0,2,0,0,0,100,0,1000,8000,11000,20000,0,11,7891,2,0,0,0,0,2,0,0,0,0,0,0,0,"Dark Iron Tunneler - In Combat - Cast 'Gift of Ragnaros'"),
|
||||
(1053,0,3,0,0,0,100,0,5000,9000,11000,15000,0,11,11971,2,0,0,0,0,2,0,0,0,0,0,0,0,"Dark Iron Tunneler - In Combat - Cast 'Sunder Armor'");
|
||||
|
||||
-- Balgaras the Foul
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1364 AND `source_type`=0 AND `id` IN (2,3,4);
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1364,0,2,0,0,0,100,0,3000,5000,11000,13000,0,11,9081,0,0,0,0,0,1,0,0,0,0,0,0,0,"Balgaras the Foul - In Combat - Cast 'Shadow Bolt Volley'"),
|
||||
(1364,0,3,0,0,0,100,0,8000,12000,13000,16000,0,11,11831,0,0,0,0,0,1,0,0,0,0,0,0,0,"Balgaras the Foul - In Combat - Cast 'Frost Nova'"),
|
||||
(1364,0,4,0,0,0,100,0,11000,13000,181000,182000,0,11,3586,0,0,0,0,0,2,0,0,0,0,0,0,0,"Balgaras the Foul - In Combat - Cast 'Volatile Infection'");
|
||||
|
||||
-- Fen Creeper
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1040 AND `source_type`=0 AND `id`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1040,0,0,0,25,0,100,0,0,0,0,0,0,11,22766,0,0,0,0,0,1,0,0,0,0,0,0,0,"Fen Creeper - On Reset - Cast 'Sneak'");
|
||||
|
||||
-- Chimaera Matriarch
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=6167;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=6167 AND `source_type`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(6167,0,0,0,0,0,100,0,3000,5000,7000,12000,0,11,3396,0,0,0,0,0,5,0,0,0,0,0,0,0,"Chimaera Matriarch - In Combat - Cast 'Corrosive Poison'");
|
||||
|
||||
-- Condemned Cleric
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=7070 AND `source_type`=0 AND `id`=1;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(7070,0,1,0,14,0,100,0,3000,40,18000,21000,0,11,15586,0,0,0,0,0,7,0,0,0,0,0,0,0,"Condemned Cleric - Friendly At 3000 Health - Cast 'Heal'");
|
||||
|
||||
-- Condemned Acolyte
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=7068 AND `source_type`=0 AND `id`=1;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(7068,0,1,0,14,0,100,0,3000,40,18000,25000,0,11,25058,0,0,0,0,0,7,0,0,0,0,0,0,0,"Condemned Acolyte - Friendly At 3000 Health - Cast 'Renew'");
|
||||
|
||||
-- Dragonmaw Raider
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1034 AND `source_type`=0 AND `id`=1;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1034,0,1,0,0,0,100,0,2000,13000,15000,26000,0,11,6533,0,0,0,0,0,2,0,0,0,0,0,0,0,"Dragonmaw Raider - In Combat - Cast 'Net'");
|
||||
|
||||
-- Dragonmaw Swamprunner
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1035 AND `source_type`=0 AND `id`=1;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1035,0,1,0,25,0,100,0,0,0,0,0,0,11,3616,0,0,0,0,0,1,0,0,0,0,0,0,0,"Dragonmaw Swamprunner - On Reset - Cast 'Poison Proc'");
|
||||
|
||||
-- Garneg Charskull
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=2108 AND `source_type`=0 AND `id` IN (1,2,3);
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(2108,0,1,0,0,0,100,0,1000,2000,4000,6000,0,11,184,32,0,0,0,0,1,0,0,0,0,0,0,0,"Garneg Charskull - In Combat - Cast 'Fire Shield II'"),
|
||||
(2108,0,2,0,0,0,100,0,4000,6000,8000,12000,0,11,15039,0,0,0,0,0,2,0,0,0,0,0,0,0,"Garneg Charskull - In Combat - Cast 'Flame Shock'"),
|
||||
(2108,0,3,0,0,0,100,0,9000,12000,18000,21000,0,11,6725,0,0,0,0,0,2,0,0,0,0,0,0,0,"Garneg Charskull - In Combat - Cast 'Flame Spike'");
|
||||
|
||||
-- Dragonmaw Bonewarder
|
||||
-- DELETE FROM `smart_scripts` WHERE `entryorguid`=1057 AND `source_type`=0;
|
||||
-- INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
-- (1057,0,0,0,4,0,15,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Dragonmaw Bonewarder - On Aggro - Say Line 0"),
|
||||
-- (1057,0,1,0,1,0,100,1,1000,3000,0,0,0,11,8853,0,0,0,0,0,1,0,0,0,0,0,0,0,"Dragonmaw Bonewarder - Out of Combat - Cast 'Summon Skeleton'"),
|
||||
-- (1057,0,2,0,0,0,100,0,3000,6000,14000,19000,0,11,707,0,0,0,0,0,2,0,0,0,0,0,0,0,"Dragonmaw Bonewarder - In Combat - Cast 'Immolate'"),
|
||||
-- (1057,0,3,0,0,0,100,0,8000,14000,8000,14000,0,11,6205,32,0,0,0,0,5,0,0,0,0,0,0,0,"Dragonmaw Bonewarder - In Combat - Cast 'Curse of Weakness'"),
|
||||
-- (1057,0,4,0,2,0,100,1,0,15,0,0,0,25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragonmaw Bonewarder - Between 0-15% Health - Flee For Assist (No Repeat)");
|
||||
|
||||
-- DELETE FROM `creature_text` WHERE `CreatureID`=1057;
|
||||
-- INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
-- (1057,0,0,"Your bones will break under my boot, $r!",12,1,100,0,0,0,1938,0,"Dragonmaw Bonewarder"),
|
||||
-- (1057,0,1,"Long live the Dragonmaw! Die you worthless $r!",12,1,100,0,0,0,1939,0,"Dragonmaw Bonewarder"),
|
||||
-- (1057,0,2,"For the Dragonmaw!",12,1,100,0,0,0,1937,0,"Dragonmaw Bonewarder");
|
||||
|
||||
-- Dragonmaw Shadowwarder
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1038 AND `source_type`=0 AND `id`=3;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1038,0,3,0,4,0,15,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Dragonmaw Shadowwarder - On Aggro - Say Line 0");
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`=1038;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(1038,0,0,"Your bones will break under my boot, $r!",12,1,100,0,0,0,1938,0,"Dragonmaw Shadowwarder"),
|
||||
(1038,0,1,"Long live the Dragonmaw! Die you worthless $r!",12,1,100,0,0,0,1939,0,"Dragonmaw Shadowwarder"),
|
||||
(1038,0,2,"For the Dragonmaw!",12,1,100,0,0,0,1937,0,"Dragonmaw Shadowwarder");
|
||||
|
||||
-- Dragonmaw Centurion
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1036 AND `source_type`=0 AND `id` IN (1,2,3,4);
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1036,0,1,0,4,0,100,0,0,0,0,0,0,11,643,0,0,0,0,0,1,0,0,0,0,0,0,0,"Dragonmaw Centurion - On Aggro - Cast 'Devotion Aura'"),
|
||||
(1036,0,2,0,25,0,100,0,0,0,0,0,0,11,7164,0,0,0,0,0,1,0,0,0,0,0,0,0,"Dragonmaw Centurion - On Reset - Cast 'Defensive Stance'"),
|
||||
(1036,0,3,0,0,0,100,0,5000,7000,11000,13000,0,11,1672,2,0,0,0,0,2,0,0,0,0,0,0,0,"Dragonmaw Centurion - In Combat - Cast 'Shield Bash'"),
|
||||
(1036,0,4,0,0,0,100,0,5000,13000,21000,29000,0,11,3419,0,0,0,0,0,1,0,0,0,0,0,0,0,"Dragonmaw Centurion - In Combat - Cast 'Improved Blocking'");
|
||||
|
||||
-- Dragonmaw Battlemaster
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1037 AND `source_type`=0 AND `id` IN (0,2,3);
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1037,0,0,0,4,0,100,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Dragonmaw Battlemaster - On Aggro - Say Line 0"),
|
||||
(1037,0,2,3,0,0,100,0,9000,14000,19000,28000,0,11,3019,2,0,0,0,0,1,0,0,0,0,0,0,0,"Dragonmaw Battlemaster - In Combat - Cast 'Frenzy'"),
|
||||
(1037,0,3,0,61,0,100,1,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Dragonmaw Battlemaster - In Combat - Say Line 1");
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`=1037;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(1037,0,0,"Your bones will break under my boot, $r!",12,1,100,0,0,0,1938,0,"Dragonmaw Shadowwarder"),
|
||||
(1037,0,1,"Long live the Dragonmaw! Die you worthless $r!",12,1,100,0,0,0,1939,0,"Dragonmaw Shadowwarder"),
|
||||
(1037,0,2,"For the Dragonmaw!",12,1,100,0,0,0,1937,0,"Dragonmaw Shadowwarder"),
|
||||
(1037,1,0,"%s goes into a frenzy!",16,0,100,0,0,0,2384,0,"Dragonmaw Shadowwarder");
|
||||
|
||||
-- Chieftain Nek'rosh
|
||||
UPDATE `smart_scripts` SET `action_param2`=2 WHERE `entryorguid`=2091 AND `source_type`=0 AND `id`=1;
|
||||
|
||||
-- Mottled Scytheclaw
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1022 AND `source_type`=0 AND `id`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1022,0,0,0,0,0,100,0,4000,12000,15000,23000,0,11,3147,0,0,0,0,0,2,0,0,0,0,0,0,0,"Mottled Scytheclaw - In Combat - Cast 'Rend Flesh'");
|
||||
|
||||
-- Mottled Razormaw
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1023 AND `source_type`=0 AND `id`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1023,0,0,0,0,0,100,0,5000,12000,15000,19000,0,11,3427,0,0,0,0,0,2,0,0,0,0,0,0,0,"Mottled Razormaw - In Combat - Cast 'Infected Wound'");
|
||||
|
||||
-- Sarltooth
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1353 AND `source_type`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(1353,0,0,0,25,0,100,0,0,0,0,0,0,11,8876,0,0,0,0,0,1,0,0,0,0,0,0,0,"Sarltooth - On Reset - Cast 'Thrash'"),
|
||||
(1353,0,1,0,0,0,100,0,5000,9000,12000,16000,0,11,3427,0,0,0,0,0,2,0,0,0,0,0,0,0,"Sarltooth - In Combat - Cast 'Infected Wound'");
|
||||
|
||||
-- Bluegill Forager
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1026 AND `source_type`=0 AND `id` IN (0,1);
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(1026,0,0,0,25,0,100,0,0,0,0,0,0,11,3616,0,0,0,0,0,1,0,0,0,0,0,0,0,"Bluegill Forager - On Reset - Cast 'Poison Proc'"),
|
||||
(1026,0,1,0,0,0,100,0,5000,11000,13000,19000,0,11,14873,0,0,0,0,0,2,0,0,0,0,0,0,0,"Bluegill Forager - In Combat - Cast 'Sinister Strike'");
|
||||
|
||||
-- Bluegill Warrior
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1027 AND `source_type`=0 AND `id`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1027,0,0,0,4,0,100,0,0,0,0,0,0,11,7165,0,0,0,0,0,1,0,0,0,0,0,0,0,"Bluegill Warrior - On Aggro - Cast 'Battle Stance'");
|
||||
|
||||
-- Bluegill Muckdweller
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1028 AND `source_type`=0 AND `id`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(1028,0,0,0,0,0,100,0,5000,7000,11000,14000,0,11,1777,2,0,0,0,0,2,0,0,0,0,0,0,0,"Bluegill Muckdweller - In Combat - Cast 'Gouge'");
|
||||
|
||||
-- Bluegill Oracle
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1029 AND `source_type`=0 AND `id`=1;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1029,0,1,0,14,0,100,0,350,40,12000,24000,0,11,939,0,0,0,0,0,7,0,0,0,0,0,0,0,"Bluegill Oracle - Friendly At 350 Health - Cast 'Healing Wave'");
|
||||
|
||||
-- Giant Wetlands Crocolisk
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=2089 AND `source_type`=0 AND `id`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(2089,0,0,0,0,0,100,0,6000,9000,12000,18000,0,11,3604,2,0,0,0,0,2,0,0,0,0,0,0,0,"Giant Wetlands Crocolisk - In Combat - Cast 'Tendon Rip'");
|
||||
|
||||
-- Cursed Sailor
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1157 AND `source_type`=0 AND `id`=1;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(1157,0,1,0,0,0,100,0,4000,15000,25000,32000,0,11,10651,0,0,0,0,0,2,0,0,0,0,0,0,0,"Cursed Sailor - In Combat - Cast 'Curse of the Eye'");
|
||||
|
||||
-- Cursed Marine
|
||||
UPDATE `smart_scripts` SET `event_param1`=4000, `event_param2`=15000, `event_param3`=25000, `event_param4`=32000, `action_param2`=0 WHERE `entryorguid`=1158 AND `source_type`=0 AND `id`=1;
|
||||
|
||||
-- First Mate Snellig
|
||||
UPDATE `smart_scripts` SET `event_param1`=6000, `event_param2`=9000, `event_param3`=11000, `event_param4`=14000 WHERE `entryorguid`=1159 AND `source_type`=0 AND `id`=0;
|
||||
UPDATE `smart_scripts` SET `event_param1`=5000, `event_param2`=11000, `event_param3`=9000, `event_param4`=15000 WHERE `entryorguid`=1159 AND `source_type`=0 AND `id`=2;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1159 AND `source_type`=0 AND `id`=3;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1159,0,3,0,4,0,20,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"First Mate Snellig - On Aggro - Say Line 0");
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`=1159;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(1159,0,0,"Time to join us, $c.",12,0,100,0,0,0,1942,0,"First Mate Snellig"),
|
||||
(1159,0,1,"Brains...",12,0,100,0,0,0,1940,0,"First Mate Snellig"),
|
||||
(1159,0,2,"A living $r... soon to be a dead like me.",12,0,100,0,0,0,1941,0,"First Mate Snellig");
|
||||
|
||||
-- Mirelow
|
||||
UPDATE `smart_scripts` SET `event_param1`=6000, `event_param2`=9000, `event_param3`=11000, `event_param4`=17000 WHERE `entryorguid`=14424 AND `source_type`=0 AND `id`=0;
|
||||
|
||||
-- Red Wyrmkin
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1046 AND `source_type`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1046,0,0,0,0,0,100,0,1000,2000,4000,6000,0,11,15242,64,0,0,0,0,2,0,0,0,0,0,0,0,"Red Wyrmkin - In Combat - Cast 'Fireball'"),
|
||||
(1046,0,1,0,0,0,100,0,8000,16000,21000,26000,0,11,18399,0,0,0,0,0,5,0,0,0,0,0,0,0,"Red Wyrmkin - In Combat - Cast 'Flamestrike'"),
|
||||
(1046,0,2,0,0,0,100,0,4000,7000,16000,24000,0,11,14145,0,0,0,0,0,5,0,0,0,0,0,0,0,"Red Wyrmkin - In Combat - Cast 'Fire Blast'"),
|
||||
(1046,0,3,0,0,0,100,0,7000,12000,8000,20000,0,11,15230,0,0,0,0,0,5,0,0,0,0,0,0,0,"Red Wyrmkin - In Combat - Cast 'Arcane Bolt'");
|
||||
|
||||
-- Fix bytes2 for some range-attacking creatures
|
||||
UPDATE `creature_addon` SET `bytes2`=2 WHERE `guid` IN (SELECT `guid` FROM `creature` WHERE `id` IN (2103,6523));
|
||||
UPDATE `creature_template_addon` SET `bytes2`=2 WHERE `entry` IN (2103,6523);
|
||||
|
||||
-- Fix spawn position for one creature
|
||||
-- UPDATE `creature` SET `position_z`=40.336 WHERE `guid`=10886;
|
||||
@@ -0,0 +1,7 @@
|
||||
--
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=22 AND `SourceEntry` IN(7053) AND `SourceGroup`=4;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(22, 4, 7053, 0, 0, 1, 0, 1784, 0, 0, 0, 0, 0, '', 'Klaven Mortwake - run SAI event 4 only if the player is stealthed');
|
||||
-- (22, 4, 7053, 0, 1, 1, 0, 1785, 0, 0, 0, 0, 0, '', 'Klaven Mortwake - run SAI event 4 only if the player is stealthed'),
|
||||
-- (22, 4, 7053, 0, 2, 1, 0, 1786, 0, 0, 0, 0, 0, '', 'Klaven Mortwake - run SAI event 4 only if the player is stealthed'),
|
||||
-- (22, 4, 7053, 0, 3, 1, 0, 1787, 0, 0, 0, 0, 0, '', 'Klaven Mortwake - run SAI event 4 only if the player is stealthed');
|
||||
@@ -0,0 +1,4 @@
|
||||
--
|
||||
DELETE FROM `disables` WHERE `sourceType`=1 AND `entry`=526;
|
||||
INSERT INTO `disables` (`sourceType`, `entry`, `flags`, `params_0`, `params_1`, `comment`) VALUES
|
||||
(1,526,0,"","","Deprecated quest");
|
||||
@@ -0,0 +1,159 @@
|
||||
-- Quest "The Greenwarden"
|
||||
DELETE FROM `quest_details` WHERE `ID`=463;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(463,1,0,0,0,0,0,0,0,0);
|
||||
|
||||
-- Quest "Daily Delivery"
|
||||
DELETE FROM `quest_details` WHERE `ID`=469;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(469,3,1,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=6 WHERE `ID`=469;
|
||||
|
||||
-- Quest "In Search of The Excavation Team"
|
||||
DELETE FROM `quest_details` WHERE `ID`=305;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(305,5,1,5,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=5 WHERE `ID`=305;
|
||||
|
||||
-- Quest "In Search of The Excavation Team"
|
||||
DELETE FROM `quest_details` WHERE `ID`=306;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(306,5,1,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=6, `EmoteOnComplete`=6 WHERE `ID`=306;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=5, `Emote2`=6, `Emote3`=1 WHERE `ID`=306;
|
||||
|
||||
-- Quest "Uncovering the Past"
|
||||
DELETE FROM `quest_details` WHERE `ID`=299;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(299,1,1,5,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=6, `EmoteOnComplete`=6 WHERE `ID`=299;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=299;
|
||||
|
||||
-- Quest "Ormer's Revenge"
|
||||
DELETE FROM `quest_details` WHERE `ID`=294;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(294,1,1,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=294;
|
||||
|
||||
-- Quest "Ormer's Revenge (Part 2)"
|
||||
DELETE FROM `quest_details` WHERE `ID`=295;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(295,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=21 WHERE `ID`=295;
|
||||
|
||||
-- Quest "Ormer's Revenge (Part 3)"
|
||||
DELETE FROM `quest_details` WHERE `ID`=296;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(296,1,5,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=6, `EmoteOnComplete`=6 WHERE `ID`=296;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=2 WHERE `ID`=296;
|
||||
|
||||
-- Quest "Digging Through the Ooze"
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=470;
|
||||
|
||||
-- Quest "The Third Fleet"
|
||||
DELETE FROM `quest_details` WHERE `ID`=288;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(288,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=1 WHERE `ID`=288;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=4 WHERE `ID`=288;
|
||||
|
||||
-- Quest "The Cursed Crew"
|
||||
DELETE FROM `quest_details` WHERE `ID`=289;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(289,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=20, `EmoteOnComplete`=20 WHERE `ID`=296;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=2 WHERE `ID`=289;
|
||||
|
||||
-- Quest "Lifting the Curse"
|
||||
DELETE FROM `quest_details` WHERE `ID`=290;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(290,1,1,0,0,0,0,0,0,0);
|
||||
|
||||
-- Quest "The Eye of Paleth"
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=6 WHERE `ID`=292;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=292;
|
||||
|
||||
-- Quest "Cleansing the Eye"
|
||||
DELETE FROM `quest_details` WHERE `ID`=293;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(293,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=6 WHERE `ID`=293;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=293;
|
||||
|
||||
-- Quest "Young Crocolisk Skins"
|
||||
DELETE FROM `quest_details` WHERE `ID`=484;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(484,2,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=6, `EmoteOnComplete`=6 WHERE `ID`=484;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=21 WHERE `ID`=484;
|
||||
|
||||
-- Quest "Apprentice's Duties"
|
||||
DELETE FROM `quest_details` WHERE `ID`=471;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(471,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=18, `EmoteOnComplete`=18 WHERE `ID`=471;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=6, `Emote2`=11 WHERE `ID`=471;
|
||||
|
||||
-- Quest "Apprentice's Duties"
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=279;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=21 WHERE `ID`=279;
|
||||
|
||||
-- Quest "Return the Statuette"
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=286;
|
||||
|
||||
-- Quest "Report to Captain Stoutfist"
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=66 WHERE `ID`=473;
|
||||
|
||||
-- Quest "War Banners"
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=464;
|
||||
|
||||
-- Quest "Defeat Nek'rosh"
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=474;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=66 WHERE `ID`=474;
|
||||
|
||||
-- Quest "Fall of Dun Modr"
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=6, `Emote2`=1 WHERE `ID`=472;
|
||||
|
||||
-- Quest "A Grim Task"
|
||||
DELETE FROM `quest_details` WHERE `ID`=304;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(304,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=6, `EmoteOnComplete`=6 WHERE `ID`=304;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1, `Emote2`=1, `Emote3`=2 WHERE `ID`=304;
|
||||
|
||||
-- Quest "The Dark Iron War"
|
||||
DELETE FROM `quest_details` WHERE `ID`=303;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(303,1,1,5,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=1 WHERE `ID`=303;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=66 WHERE `ID`=303;
|
||||
|
||||
-- Quest "The Fury Runs Deep"
|
||||
DELETE FROM `quest_details` WHERE `ID`=378;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(378,1,1,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=1, `EmoteOnComplete`=1 WHERE `ID`=378;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1, `Emote2`=1 WHERE `ID`=378;
|
||||
|
||||
-- Quest "The Thandol Span"
|
||||
DELETE FROM `quest_details` WHERE `ID`=631;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(631,5,1,6,0,0,0,0,0,0);
|
||||
|
||||
-- Quest "The Thandol Span (Part 2)"
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=6 WHERE `ID`=632;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=18 WHERE `ID`=632;
|
||||
|
||||
-- Quest "The Thandol Span (Part 3)"
|
||||
DELETE FROM `quest_details` WHERE `ID`=633;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(633,5,1,5,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=5 WHERE `ID`=633;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=21 WHERE `ID`=633;
|
||||
|
||||
-- Quest "Plea To The Alliance"
|
||||
DELETE FROM `quest_details` WHERE `ID`=634;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(634,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=634;
|
||||
@@ -0,0 +1,15 @@
|
||||
-- Inspector Tarem
|
||||
DELETE FROM `gossip_menu` WHERE `MenuID`=8761 AND `TextID`=11127;
|
||||
INSERT INTO `gossip_menu` (`MenuID`, `TextID`, `VerifiedBuild`) VALUES
|
||||
(8761,11127,0);
|
||||
|
||||
DELETE FROM `npc_text` WHERE `ID`=11127;
|
||||
INSERT INTO `npc_text` (`ID`, `BroadcastTextID0`, `Probability0`) VALUES
|
||||
(11127,22040,1);
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=14 AND `SourceGroup`=8761;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(14,8761,11127,0,0,6,0,67,0,0,0,0,0,"","Show text 11127 if Player is Horde"),
|
||||
(14,8761,11126,0,0,6,0,469,0,0,0,0,0,"","Show text 11126 if Player is Alliance");
|
||||
|
||||
UPDATE `smart_scripts` SET `target_type`=1, `target_param1`=0, `target_param2`=0 WHERE `entryorguid`=23567 AND `source_type`=0 AND `id`=2;
|
||||
@@ -0,0 +1,16 @@
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=7665 AND `source_type`=0 AND `id`=2;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=7666 AND `source_type`=0 AND `id`=6;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=7667 AND `source_type`=0 AND `id`=5;
|
||||
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(7665, 0, 2, 0, 8, 0, 100, 0, 12938, 0, 0, 0, 0, 11, 12941, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Grol the Destroyer - On Spellhit Fel Curse - Cast Fel Curse Effect'),
|
||||
(7666, 0, 6, 0, 8, 0, 100, 0, 12938, 0, 0, 0, 0, 11, 12942, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Archmage Allistarj - On Spellhit Fel Curse - Cast Fel Curse Effect'),
|
||||
(7667, 0, 5, 0, 8, 0, 100, 0, 12938, 0, 0, 0, 0, 11, 12943, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Lady Sevine - On Spellhit Fel Curse - Cast Fel Curse Effect');
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry`=12938;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(13, 1, 12938, 0, 0, 31, 0, 3, 7665, 0, 0, 0, 0, '', 'Fel Curse Targets Grol the Destroyer'),
|
||||
(13, 1, 12938, 0, 1, 31, 0, 3, 7666, 0, 0, 0, 0, '', 'Fel Curse Targets Archmage Allistarj'),
|
||||
(13, 1, 12938, 0, 2, 31, 0, 3, 7667, 0, 0, 0, 0, '', 'Fel Curse Targets Lady Sevine'),
|
||||
(13, 1, 12938, 0, 3, 31, 0, 3, 7664, 0, 0, 0, 0, '', 'Fel Curse Targets Razelikh the Defiler'),
|
||||
(13, 1, 12938, 0, 4, 31, 0, 3, 7668, 0, 0, 0, 0, '', 'Fel Curse Targets Servent of Razelikh');
|
||||
@@ -0,0 +1,4 @@
|
||||
--
|
||||
UPDATE `smart_scripts` SET `action_type`=134 WHERE `action_type` IN (85) AND `target_type` =1;
|
||||
UPDATE `smart_scripts` SET `event_flags`=1 WHERE `entryorguid` IN (27202) AND `source_type`=0 AND `id` IN (4,10);
|
||||
UPDATE `smart_scripts` SET `action_param2`=2 WHERE `entryorguid` IN (27202) AND `source_type`=0 AND `id` IN (7);
|
||||
@@ -0,0 +1,5 @@
|
||||
--
|
||||
UPDATE `smart_scripts` SET `target_type`=7 WHERE `entryorguid` IN (25416, 25418) AND `source_type`=0 AND `id` IN (4);
|
||||
UPDATE `smart_scripts` SET `target_type`=7 WHERE `entryorguid` IN (20749) AND `source_type`=0 AND `id` IN (1);
|
||||
UPDATE `smart_scripts` SET `target_type`=7 WHERE `entryorguid` IN (27229) AND `source_type`=0 AND `id` IN (0);
|
||||
UPDATE `smart_scripts` SET `target_type`=7 WHERE `entryorguid` IN (18955) AND `source_type`=0 AND `id` IN (1);
|
||||
@@ -0,0 +1,2 @@
|
||||
--
|
||||
UPDATE `smart_scripts` SET `target_type`=23, target_param1=0 WHERE `entryorguid` IN (27899, 32331, 28665, 27959) AND `source_type`=0 AND `action_type` IN (1);
|
||||
@@ -0,0 +1,2 @@
|
||||
--
|
||||
UPDATE `smart_scripts` SET `target_type`=24 WHERE `entryorguid` IN (25416,25418) AND `source_type`=0 AND `id` IN (4);
|
||||
@@ -0,0 +1,5 @@
|
||||
-- Apprentice Kryten
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=14 AND `SourceGroup`=2601;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(14,2601,3294,0,0,8,0,690,0,0,0,0,0,"","Show gossip text 3294 if quest 'Malin's Request' is rewarded"),
|
||||
(14,2601,3294,0,0,14,0,691,0,0,0,0,0,"","Show gossip text 3294 if quest 'Worth Its Weight in Gold' is not taken");
|
||||
@@ -0,0 +1,10 @@
|
||||
--
|
||||
DELETE FROM `quest_template_addon` WHERE `ID`=1268;
|
||||
INSERT INTO `quest_template_addon` (`ID`, `MaxLevel`, `AllowableClasses`, `SourceSpellID`, `PrevQuestID`, `NextQuestID`, `ExclusiveGroup`, `RewardMailTemplateID`, `RewardMailDelay`, `RequiredSkillID`, `RequiredSkillPoints`, `RequiredMinRepFaction`, `RequiredMaxRepFaction`, `RequiredMinRepValue`, `RequiredMaxRepValue`, `ProvidedItemCount`, `SpecialFlags`) VALUES
|
||||
(1268,0,0,0,0,1276,-1323,0,0,0,0,0,0,0,0,0,0); -- Quest "Suspicious Hoofprints"
|
||||
|
||||
UPDATE `quest_template_addon` SET `ExclusiveGroup`=-1323, `NextQuestID`=1276 WHERE `ID` IN (1323,1273); -- Quests "The Black Shield (Part 4)" / "Questioning Reethe"
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID`=0 WHERE `ID`=1276; -- Quest "The Black Shield (Part 5)"
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID`=1276 WHERE `ID`=11204; -- Quest "Return to Krog"
|
||||
UPDATE `quest_template_addon` SET `ExclusiveGroup`=-11201, `NextQuestID`=11203 WHERE `ID` IN (11201,11200); -- Quests "The Grimtotem Plot" / "More than Coincidence"
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID`=0 WHERE `ID`=11203; -- Quest "Seek Out Tabetha"
|
||||
@@ -0,0 +1,17 @@
|
||||
-- Smiling Jim
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=4895;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=4895 AND `source_type`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=489500 AND `source_type`=9;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(4895,0,0,0,1,0,100,0,45000,60000,150000,180000,80,489500,0,0,0,0,0,1,0,0,0,0,0,0,0,"Smiling Jim - Out of Combat - Run Script"),
|
||||
(489500,9,0,0,0,0,100,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Smiling Jim - On Script - Say Line 0"),
|
||||
(489500,9,1,0,0,0,100,0,5000,5000,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Smiling Jim - On Script - Say Line 1"),
|
||||
(489500,9,2,0,0,0,100,0,5000,5000,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Smiling Jim - On Script - Say Line 2"),
|
||||
(489500,9,3,0,0,0,100,0,5000,5000,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,"Smiling Jim - On Script - Say Line 3");
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`=4895;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(4895,0,0,"He'll bring you mead, he'll bring you beer...",12,7,100,0,0,0,1632,0,"Smiling Jim"),
|
||||
(4895,1,0,"A grinning face from ear to ear...",12,7,100,0,0,0,1633,0,"Smiling Jim"),
|
||||
(4895,2,0,"He's served us all from year to year...",12,7,100,0,0,0,1634,0,"Smiling Jim"),
|
||||
(4895,3,0,"We call him Smiling Jim...",12,7,100,11,0,0,1635,0,"Smiling Jim");
|
||||
@@ -0,0 +1,35 @@
|
||||
-- Calia Hastings
|
||||
-- UPDATE `creature_template` SET `npcflag`=2, `gossip_menu_id`=0 WHERE `entry`=23566; -- She didn't have a gossip text in WotLK. Current text was added in Cata when she became a rogue trainer.
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`=23566;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(23566,0,0,"It would be a shame to let these leaflets go to waste, wouldn't it?",12,7,100,0,0,0,22105,0,"Calia Hastings"),
|
||||
(23566,1,0,"With just a little creative editing, these are much more useful...",12,7,100,0,0,0,22107,0,"Calia Hastings");
|
||||
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=23566;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=23566 AND `source_type`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (2356600,2356601,2356602) AND `source_type`=9;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(23566,0,0,0,20,0,100,0,11128,0,0,0,80,2356600,0,0,0,0,0,1,0,0,0,0,0,0,0,"Calia Hastings - On Quest 'Propaganda War' Finished - Run Script"),
|
||||
(23566,0,1,0,40,0,100,0,3,23566,0,0,80,2356601,0,0,0,0,0,1,0,0,0,0,0,0,0,"Calia Hastings - On Waypoint 3 Reached - Run Script"),
|
||||
(23566,0,2,0,40,0,100,0,7,23566,0,0,80,2356602,0,0,0,0,0,1,0,0,0,0,0,0,0,"Calia Hastings - On Waypoint 7 Reached - Run Script"),
|
||||
(2356600,9,0,0,0,0,100,0,0,0,0,0,83,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Calia Hastings - On Script - Remove Npc Flag Questgiver"),
|
||||
(2356600,9,1,0,0,0,100,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Calia Hastings - On Script - Say Line 0"),
|
||||
(2356600,9,2,0,0,0,100,0,5000,5000,0,0,53,0,23566,0,0,0,0,1,0,0,0,0,0,0,0,"Calia Hastings - On Script - Start Waypoint"),
|
||||
(2356601,9,0,0,0,0,100,0,0,0,0,0,54,8000,0,0,0,0,0,1,0,0,0,0,0,0,0,"Calia Hastings - On Script - Pause Waypoint"),
|
||||
(2356601,9,1,0,0,0,100,0,0,0,0,0,66,0,0,0,0,0,0,8,0,0,0,0,0,0,1.27885,"Calia Hastings - On Script - Set Orientation"),
|
||||
(2356601,9,2,0,0,0,100,0,1000,1000,0,0,17,69,0,0,0,0,0,1,0,0,0,0,0,0,0,"Calia Hastings - On Script - Set Emote State 69"),
|
||||
(2356601,9,3,0,0,0,100,0,6000,6000,0,0,17,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Calia Hastings - On Script - Set Emote State 0"),
|
||||
(2356602,9,0,0,0,0,100,0,0,0,0,0,66,0,0,0,0,0,0,8,0,0,0,0,0,0,2.40855,"Calia Hastings - On Script - Set Orientation"),
|
||||
(2356602,9,1,0,0,0,100,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Calia Hastings - On Script - Say Line 1"),
|
||||
(2356602,9,2,0,0,0,100,0,3000,3000,0,0,82,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Calia Hastings - On Script - Add Npc Flag Questgiver");
|
||||
|
||||
DELETE FROM `waypoints` WHERE `entry`=23566;
|
||||
INSERT INTO `waypoints` (`entry`, `pointid`, `position_x`, `position_y`, `position_z`, `point_comment`) VALUES
|
||||
(23566,1,-3818.89,-4564.21,8.92453,""),
|
||||
(23566,2,-3817,-4566.21,8.84672,""),
|
||||
(23566,3,-3816.71,-4564.26,8.97426,""),
|
||||
(23566,4,-3817,-4566.21,8.84672,""),
|
||||
(23566,5,-3818.89,-4564.21,8.92453,""),
|
||||
(23566,6,-3817.87,-4561.44,9.11807,""),
|
||||
(23566,7,-3819.74,-4562.35,9.14216,"");
|
||||
@@ -0,0 +1,59 @@
|
||||
-- World Invisible Trigger
|
||||
SET @GUID1 := 3828;
|
||||
SET @GUID2 := 37624;
|
||||
SET @GUID3 := 38824;
|
||||
SET @GUID4 := 30458;
|
||||
DELETE FROM `creature` WHERE `guid` IN (@GUID1,@GUID2,@GUID3,@GUID4,296493);
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `phaseId`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `ScriptName`, `VerifiedBuild`) VALUES
|
||||
(@GUID1,12999,1,0,0,'',0,0,0,-3759.97,-4557.44,9.0761,5.34286,300,0,0,7212,0,0,0,0,0,"",0),
|
||||
(@GUID2,12999,1,0,0,'',0,0,0,-3758.24,-4556.73,11.3539,2.10228,300,0,0,7212,0,0,0,0,0,"",0),
|
||||
(@GUID3,12999,1,0,0,'',0,0,0,-3758.42,-4551.63,10.8395,2.1337,300,0,0,7212,0,0,0,0,0,"",0),
|
||||
(@GUID4,4973, 1,0,0,'',0,0,1,-3772.62,-4533.36,11.5873,5.28602,300,0,0,2769,0,0,0,0,0,"",0);
|
||||
|
||||
-- Guard Lasiter
|
||||
DELETE FROM `creature_addon` WHERE `guid` IN (@GUID4,296493);
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `visibilityDistanceType`, `auras`) VALUES
|
||||
(@GUID4,0,0,0,2,0,0,'');
|
||||
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=4973;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=4973 AND `source_type`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (497300,497301,497302,497303) AND `source_type`=9;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(4973,0,0,0,25,0,100,0,0,0,0,0,0,53,0,4973,1,0,0,2,1,0,0,0,0,0,0,0,"Guard Lasiter - On Reset - Start Waypoint"),
|
||||
(4973,0,1,0,40,0,100,0,1,4973,0,0,0,80,497300,0,0,0,0,0,1,0,0,0,0,0,0,0,"Guard Lasiter - On Waypoint 1 Reached - Run Script"),
|
||||
(4973,0,2,0,40,0,100,0,2,4973,0,0,0,80,497301,0,0,0,0,0,1,0,0,0,0,0,0,0,"Guard Lasiter - On Waypoint 2 Reached - Run Script"),
|
||||
(4973,0,3,0,40,0,100,0,3,4973,0,0,0,80,497302,0,0,0,0,0,1,0,0,0,0,0,0,0,"Guard Lasiter - On Waypoint 3 Reached - Run Script"),
|
||||
(4973,0,4,0,40,0,100,0,4,4973,0,0,0,80,497303,0,0,0,0,0,1,0,0,0,0,0,0,0,"Guard Lasiter - On Waypoint 4 Reached - Run Script"),
|
||||
(4973,0,5,0,0,0,100,0,0,0,2000,4000,0,11,6660,64,0,0,0,0,2,0,0,0,0,0,0,0,"Guard Lasiter - In Combat - Cast Shoot"),
|
||||
(4973,0,6,0,2,0,100,1,0,15,0,0,0,25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guard Lasiter - Between 0-15% Health - Flee For Assist (No Repeat)"),
|
||||
(497300,9,0,0,0,0,100,0,0,0,0,0,0,54,18000,0,0,0,0,0,1,0,0,0,0,0,0,0,"Guard Lasiter - On Script - Pause Waypoint"),
|
||||
(497300,9,1,0,0,0,100,0,0,0,0,0,0,66,0,0,0,0,0,0,8,0,0,0,0,0,0,5.36274,"Guard Lasiter - On Script - Set Orientation"),
|
||||
(497300,9,2,0,0,0,100,0,2000,2000,0,0,0,11,45425,0,0,0,0,0,10,@GUID1,0,0,0,0,0,0,"Guard Lasiter - On Script - Cast 'Shoot'"),
|
||||
(497300,9,3,0,0,0,100,0,6000,6000,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Guard Lasiter - On Script - Say Line 0"),
|
||||
(497301,9,0,0,0,0,100,0,0,0,0,0,0,54,18000,0,0,0,0,0,1,0,0,0,0,0,0,0,"Guard Lasiter - On Script - Pause Waypoint"),
|
||||
(497301,9,1,0,0,0,100,0,0,0,0,0,0,66,0,0,0,0,0,0,8,0,0,0,0,0,0,5.36274,"Guard Lasiter - On Script - Set Orientation"),
|
||||
(497301,9,2,0,0,0,100,0,2000,2000,0,0,0,11,45425,0,0,0,0,0,10,@GUID2,0,0,0,0,0,0,"Guard Lasiter - On Script - Cast 'Shoot'"),
|
||||
(497301,9,3,0,0,0,100,0,6000,6000,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Guard Lasiter - On Script - Say Line 1"),
|
||||
(497302,9,0,0,0,0,100,0,0,0,0,0,0,54,18000,0,0,0,0,0,1,0,0,0,0,0,0,0,"Guard Lasiter - On Script - Pause Waypoint"),
|
||||
(497302,9,1,0,0,0,100,0,0,0,0,0,0,66,0,0,0,0,0,0,8,0,0,0,0,0,0,5.36274,"Guard Lasiter - On Script - Set Orientation"),
|
||||
(497302,9,2,0,0,0,100,0,2000,2000,0,0,0,11,45425,0,0,0,0,0,10,@GUID3,0,0,0,0,0,0,"Guard Lasiter - On Script - Cast 'Shoot'"),
|
||||
(497302,9,3,0,0,0,100,0,6000,6000,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Guard Lasiter - On Script - Say Line 2"),
|
||||
(497303,9,0,0,0,0,100,0,0,0,0,0,0,54,18000,0,0,0,0,0,1,0,0,0,0,0,0,0,"Guard Lasiter - On Script - Pause Waypoint"),
|
||||
(497303,9,1,0,0,0,100,0,0,0,0,0,0,66,0,0,0,0,0,0,8,0,0,0,0,0,0,5.36274,"Guard Lasiter - On Script - Set Orientation"),
|
||||
(497303,9,2,0,0,0,100,0,2000,2000,0,0,0,11,45425,0,0,0,0,0,10,30524,0,0,0,0,0,0,"Guard Lasiter - On Script - Cast 'Shoot'"),
|
||||
(497303,9,3,0,0,0,100,0,6000,6000,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,"Guard Lasiter - On Script - Say Line 3");
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`=4973;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(4973,0,0,"Oops! That was a bit off. I didn't even hit the target!",12,7,100,0,0,0,1792,0,"Guard Lasiter"),
|
||||
(4973,1,0,"That was a nice shot... but not perfect. Maybe a bit more to the left.",12,7,100,0,0,0,1789,0,"Guard Lasiter"),
|
||||
(4973,2,0,"Barely hit the target that time. Hmmm,... maybe I need to adjust back to the right.",12,7,100,0,0,0,1790,0,"Guard Lasiter"),
|
||||
(4973,3,0,"Whoa! Look at that bullseye!",12,7,100,0,0,0,1791,0,"Guard Lasiter");
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id`=304580;
|
||||
DELETE FROM `waypoints` WHERE `entry`=4973;
|
||||
INSERT INTO `waypoints` (`entry`, `pointid`, `position_x`, `position_y`, `position_z`, `point_comment`) VALUES
|
||||
(4973,1,-3775.88,-4535.66,11.7979,""),
|
||||
(4973,2,-3772.62,-4533.36,11.5873,""),
|
||||
(4973,3,-3770.08,-4531.74,11.5426,""),
|
||||
(4973,4,-3772.62,-4533.36,11.5873,"");
|
||||
@@ -0,0 +1,30 @@
|
||||
-- Evidence Marker --> Add missing spawns
|
||||
-- SET @GUID1 := 38851;
|
||||
-- SET @GUID2 := 42847;
|
||||
-- SET @GUID3 := 42850;
|
||||
-- DELETE FROM `creature` WHERE `guid` IN (@GUID1,@GUID2,@GUID3);
|
||||
-- INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnMask`, `phaseMask`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `ScriptName`, `VerifiedBuild`) VALUES
|
||||
-- (@GUID1,23583,1,0,0,1,1,0,0,-3700.58,-2534.09,68.7248,3.05433,300,0,0,41,0,0,0,0,0,"",0),
|
||||
-- (@GUID2,23583,1,0,0,1,1,0,0,-3721.85,-2541.17,69.7589,3.05433,300,0,0,41,0,0,0,0,0,"",0),
|
||||
-- (@GUID3,23583,1,0,0,1,1,0,0,-3734.45,-2530.79,73.2862,3.30957,300,0,0,41,0,0,0,0,0,"",0);
|
||||
|
||||
DELETE FROM `creature_template_movement` WHERE `CreatureId`=23567;
|
||||
INSERT INTO `creature_template_movement` (`CreatureId`, `Ground`, `Swim`, `Flight`, `Rooted`) VALUES
|
||||
(23567,1,1,2,0);
|
||||
|
||||
-- Fix "Reflective Dust"
|
||||
UPDATE `creature_template_addon` SET `auras`="42171 42175" WHERE `entry`=23583;
|
||||
|
||||
-- Fix rotation for some objects
|
||||
-- restore 3.3.5 guids
|
||||
DELETE FROM `gameobject` WHERE `id` IN (21042,20992);
|
||||
DELETE FROM `gameobject` WHERE `guid` IN (6376,6821);
|
||||
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
|
||||
(6376,21042,1,15,403,'0',0,0,-3721.850341796875,-2541.166259765625,69.7589111328125,0,0.556656837463378906,-0.43478775024414062,0.431009292602539062,0.561536967754364013,120,255,1,40593), -- Theramore Guard Badge
|
||||
(6821,20992,1,15,403,'0',0,0,-3734.911376953125,-2530.625,73.28624725341796875,5.480335712432861328,-0.10538148880004882,0.677423477172851562,0.042206764221191406,0.726781070232391357,120,255,1,40593); -- Black Shield
|
||||
|
||||
-- Add condition for Inspector Tarem's gossip option
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=8761;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(15,8761,0,0,0,8,0,11123,0,0,0,0,0,"","Show gossip option if quest 'Inspecting the Ruins' is rewarded"),
|
||||
(15,8761,0,0,1,8,0,11124,0,0,0,0,0,"","Show gossip option if quest 'Inspecting the Ruins' is rewarded");
|
||||
@@ -0,0 +1,262 @@
|
||||
-- Spirit Healer (Area: Sunstrider Isle - Difficulty: 0)
|
||||
UPDATE `creature_template` SET `minlevel`=60, `VerifiedBuild`=40120 WHERE `entry`=6491;
|
||||
UPDATE `creature_template_model` SET `VerifiedBuild`=40120 WHERE `CreatureID`=6491 AND `Idx`=0;
|
||||
UPDATE `creature_model_info` SET `VerifiedBuild`=40120 WHERE `DisplayID`=5233;
|
||||
UPDATE `creature_template_addon` SET `auras`='9036 10848' WHERE `entry`=6491;
|
||||
UPDATE `gossip_menu` SET `VerifiedBuild`=40120 WHERE `MenuId`=83 AND `TextId`=580;
|
||||
UPDATE `npc_text` SET `VerifiedBuild`=40120 WHERE `ID`=580;
|
||||
UPDATE `gossip_menu_option` SET `VerifiedBuild`=40120 WHERE `MenuId`=83 AND `OptionIndex`=0;
|
||||
|
||||
-- Jessel (Area: Sunstrider Isle - Difficulty: 0)
|
||||
UPDATE `creature_template` SET `minlevel`=20, `maxlevel`=20, `VerifiedBuild`=40120 WHERE `entry`=20100;
|
||||
UPDATE `creature_template_model` SET `VerifiedBuild`=40120 WHERE `CreatureID`=20100 AND `Idx`=0;
|
||||
UPDATE `creature_model_info` SET `VerifiedBuild`=40120 WHERE `DisplayID`=19336;
|
||||
UPDATE `creature` SET `curhealth`=622, `VerifiedBuild`=40120 WHERE `guid`=71602;
|
||||
UPDATE `creature_text` SET `Emote`=6 WHERE `CreatureID`=20100 AND `GroupID`=0 AND `ID`=0;
|
||||
UPDATE `creature_text` SET `Emote`=6 WHERE `CreatureID`=20100 AND `GroupID`=2 AND `ID`=0;
|
||||
|
||||
-- Jane (Area: Sunstrider Isle - Difficulty: 0)
|
||||
UPDATE `creature_template` SET `minlevel`=20, `maxlevel`=20, `VerifiedBuild`=40120 WHERE `entry`=20098;
|
||||
UPDATE `creature_template_model` SET `VerifiedBuild`=40120 WHERE `CreatureID`=20098 AND `Idx`=0;
|
||||
UPDATE `creature` SET `VerifiedBuild`=40120 WHERE `guid`=71601;
|
||||
UPDATE `creature_text` SET `Emote`=0 WHERE `CreatureID`=20098 AND `GroupID`=0 AND `ID`=0;
|
||||
|
||||
-- Nova (Area: Sunstrider Isle - Difficulty: 0)
|
||||
UPDATE `creature_template` SET `minlevel`=20, `maxlevel`=20, `VerifiedBuild`=40120 WHERE `entry`=20244;
|
||||
UPDATE `creature_template_model` SET `VerifiedBuild`=40120 WHERE `CreatureID`=20244 AND `Idx`=0;
|
||||
UPDATE `creature_model_info` SET `VerifiedBuild`=40120 WHERE `DisplayID`=19315;
|
||||
UPDATE `creature` SET `VerifiedBuild`=40120 WHERE `guid`=71940;
|
||||
UPDATE `creature_text` SET `Emote`=0 WHERE `CreatureID`=20244 AND `GroupID`=1 AND `ID`=0;
|
||||
UPDATE `creature_text` SET `Emote`=0 WHERE `CreatureID`=20244 AND `GroupID`=1 AND `ID`=1;
|
||||
|
||||
-- Well Watcher Solanian (Area: Sunstrider Isle - Difficulty: 0)
|
||||
UPDATE `creature_template` SET `minlevel`=20, `maxlevel`=20, `VerifiedBuild`=40120 WHERE `entry`=15295;
|
||||
UPDATE `creature_template_model` SET `VerifiedBuild`=40120 WHERE `CreatureID`=15295 AND `Idx`=0;
|
||||
UPDATE `creature_model_info` SET `VerifiedBuild`=40120 WHERE `DisplayID`=15517;
|
||||
UPDATE `gossip_menu` SET `VerifiedBuild`=40120 WHERE `MenuId`=6569 AND `TextId`=7784;
|
||||
UPDATE `npc_text` SET `VerifiedBuild`=40120 WHERE `ID`=7784;
|
||||
-- This quest was marked obsolete by Blizzard and cannot be obtained or completed.
|
||||
DELETE FROM `creature_questender` WHERE `id`=15295 AND `quest`=37441;
|
||||
UPDATE `creature` SET `curhealth`=522, `curmana`=1202, `VerifiedBuild`=40120 WHERE `guid`=55053;
|
||||
|
||||
-- Cat (Area: Sunstrider Isle - Difficulty: 0)
|
||||
UPDATE `creature_template` SET `VerifiedBuild`=40120 WHERE `entry`=6368;
|
||||
UPDATE `creature_template_model` SET `VerifiedBuild`=40120 WHERE `CreatureID`=6368 AND `Idx` IN (0,1,2,3);
|
||||
UPDATE `creature_model_info` SET `VerifiedBuild`=40120 WHERE `DisplayID` IN (5555,5556,5585,5586);
|
||||
|
||||
-- Shara Sunwing (Area: Sunstrider Isle - Difficulty: 0)
|
||||
UPDATE `creature_template` SET `minlevel`=20, `maxlevel`=20, `VerifiedBuild`=40120 WHERE `entry`=15287;
|
||||
UPDATE `creature_template_model` SET `VerifiedBuild`=40120 WHERE `CreatureID`=15287 AND `Idx`=0;
|
||||
UPDATE `creature_model_info` SET `VerifiedBuild`=40120 WHERE `DisplayID`=15527;
|
||||
UPDATE `creature` SET `curhealth`=622, `VerifiedBuild`=40120 WHERE `guid`=54993;
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15287 AND `item`=159 AND `ExtendedCost`=0 AND `type`=1; -- Refreshing Spring Water
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15287 AND `item`=20857 AND `ExtendedCost`=0 AND `type`=1; -- Honey Bread
|
||||
|
||||
-- Pao (Area: Sunstrider Isle - Difficulty: 0)
|
||||
UPDATE `creature_template` SET `minlevel`=20, `maxlevel`=20, `VerifiedBuild`=40120 WHERE `entry`=63332;
|
||||
UPDATE `creature_template_model` SET `VerifiedBuild`=40120 WHERE `CreatureID`=63332 AND `Idx`=0;
|
||||
UPDATE `creature_model_info` SET `VerifiedBuild`=40120 WHERE `DisplayID`=42947;
|
||||
UPDATE `gossip_menu` SET `VerifiedBuild`=40120 WHERE `MenuId`=13895 AND `TextId`=19889;
|
||||
UPDATE `npc_text` SET `VerifiedBuild`=40120 WHERE `ID`=19889;
|
||||
UPDATE `creature` SET `curhealth`=622, `VerifiedBuild`=40120 WHERE `guid`=452381;
|
||||
|
||||
-- Pathstalker Kariel (Area: Sunstrider Isle - Difficulty: 0)
|
||||
UPDATE `creature_template` SET `minlevel`=20, `maxlevel`=20, `VerifiedBuild`=40120 WHERE `entry`=15285;
|
||||
UPDATE `creature_model_info` SET `VerifiedBuild`=40120 WHERE `DisplayID`=15519;
|
||||
UPDATE `creature_template_model` SET `VerifiedBuild`=40120 WHERE `CreatureID`=15285 AND `Idx`=0;
|
||||
UPDATE `gossip_menu` SET `VerifiedBuild`=40120 WHERE `MenuId`=14140 AND `TextId`=9187;
|
||||
UPDATE `npc_text` SET `VerifiedBuild`=40120 WHERE `ID`=9187;
|
||||
UPDATE `creature` SET `curhealth`=622, `VerifiedBuild`=40120 WHERE `guid`=54991;
|
||||
|
||||
-- Ranger Sallina (Area: Sunstrider Isle - Difficulty: 0)
|
||||
UPDATE `creature_template` SET `minlevel`=20, `maxlevel`=20, `VerifiedBuild`=40120 WHERE `entry`=15513;
|
||||
UPDATE `creature_model_info` SET `VerifiedBuild`=40120 WHERE `DisplayID`=15513;
|
||||
UPDATE `creature_template_model` SET `VerifiedBuild`=40120 WHERE `CreatureID`=15513 AND `Idx`=0;
|
||||
UPDATE `gossip_menu` SET `VerifiedBuild`=40120 WHERE `MenuId`=14141 AND `TextId`=9189;
|
||||
UPDATE `npc_text` SET `VerifiedBuild`=40120 WHERE `ID`=9189;
|
||||
UPDATE `creature` SET `curhealth`=653, `curmana`=490, `VerifiedBuild`=40120 WHERE `guid`=55431;
|
||||
|
||||
-- Delios Silverblade (Area: Sunstrider Isle - Difficulty: 0)
|
||||
UPDATE `creature_template` SET `minlevel`=20, `maxlevel`=20, `VerifiedBuild`=40120 WHERE `entry`=43010;
|
||||
UPDATE `creature_template_model` SET `VerifiedBuild`=40120 WHERE `CreatureID`=43010 AND `Idx`=0;
|
||||
UPDATE `creature_model_info` SET `VerifiedBuild`=40120 WHERE `DisplayID`=33190;
|
||||
UPDATE `creature` SET `curhealth`=622, `VerifiedBuild`=40120 WHERE `guid`=250000;
|
||||
UPDATE `gossip_menu` SET `VerifiedBuild`=40120 WHERE `MenuId`=14199 AND `TextId`=16540;
|
||||
UPDATE `npc_text` SET `VerifiedBuild`=40120 WHERE `ID`=16540;
|
||||
|
||||
-- Matron Arena (Area: Sunstrider Isle - Difficulty: 0)
|
||||
UPDATE `creature_template` SET `minlevel`=20, `maxlevel`=20, `VerifiedBuild`=40120 WHERE `entry`=15284;
|
||||
UPDATE `creature_template_model` SET `VerifiedBuild`=40120 WHERE `CreatureID`=15284 AND `Idx`=0;
|
||||
UPDATE `creature_model_info` SET `VerifiedBuild`=40120 WHERE `DisplayID`=15518;
|
||||
UPDATE `gossip_menu` SET `VerifiedBuild`=40120 WHERE `MenuId`=14139 AND `TextId`=9186;
|
||||
UPDATE `npc_text` SET `VerifiedBuild`=40120 WHERE `ID`=9186;
|
||||
UPDATE `creature` SET `curhealth`=497, `curmana`=1202, `VerifiedBuild`=40120 WHERE `guid`=54990;
|
||||
|
||||
-- Jesthenis Sunstriker (Area: Sunstrider Isle - Difficulty: 0)
|
||||
UPDATE `creature_template` SET `minlevel`=20, `maxlevel`=20, `VerifiedBuild`=40120 WHERE `entry`=15280;
|
||||
UPDATE `creature_template_model` SET `VerifiedBuild`=40120 WHERE `CreatureID`=15280 AND `Idx`=0;
|
||||
UPDATE `creature_model_info` SET `VerifiedBuild`=40120 WHERE `DisplayID`=15521;
|
||||
UPDATE `gossip_menu` SET `VerifiedBuild`=40120 WHERE `MenuId`=14137 AND `TextId`=9193;
|
||||
UPDATE `npc_text` SET `VerifiedBuild`=40120 WHERE `ID`=9193;
|
||||
UPDATE `creature` SET `curhealth`=653, `curmana`=490, `VerifiedBuild`=40120 WHERE `guid`=54986;
|
||||
|
||||
-- Julia Sunstriker (Area: Sunstrider Isle - Difficulty: 0)
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=20690, `minlevel`=20, `maxlevel`=20, `VerifiedBuild`=40120 WHERE `entry`=15279;
|
||||
UPDATE `gossip_menu` SET `VerifiedBuild`=40120 WHERE `MenuId`=20690 AND `TextId`=31032;
|
||||
UPDATE `gossip_menu` SET `VerifiedBuild`=40120 WHERE `MenuId`=14136 AND `TextId`=9192;
|
||||
UPDATE `npc_text` SET `VerifiedBuild`=40120 WHERE `ID`=31032;
|
||||
UPDATE `npc_text` SET `VerifiedBuild`=40120 WHERE `ID`=9192;
|
||||
UPDATE `gossip_menu_option` SET `VerifiedBuild`=40120 WHERE `MenuId`=20690 AND `OptionIndex` IN (0,1);
|
||||
UPDATE `gossip_menu_option` SET `VerifiedBuild`=40120 WHERE `MenuId`=14136 AND `OptionIndex`=9;
|
||||
UPDATE `creature_template_addon` SET `auras`='56384' WHERE `entry`=15279;
|
||||
UPDATE `creature_template_model` SET `VerifiedBuild`=40120 WHERE `CreatureID`=15279 AND `Idx`=0;
|
||||
UPDATE `creature_model_info` SET `VerifiedBuild`=40120 WHERE `DisplayID`=15522;
|
||||
UPDATE `creature` SET `curhealth`=522, `curmana`=1202, `VerifiedBuild`=40120 WHERE `guid`=54985;
|
||||
|
||||
-- Summoner Teli'Larien (Area: Sunstrider Isle - Difficulty: 0)
|
||||
UPDATE `creature_template` SET `minlevel`=20, `maxlevel`=20, `VerifiedBuild`=40120 WHERE `entry`=15283;
|
||||
UPDATE `creature_template_model` SET `VerifiedBuild`=40120 WHERE `CreatureID`=15283 AND `Idx`=0;
|
||||
UPDATE `creature_model_info` SET `VerifiedBuild`=40120 WHERE `DisplayID`=15524;
|
||||
UPDATE `gossip_menu` SET `VerifiedBuild`=40120 WHERE `MenuId`=14138 AND `TextId`=7903;
|
||||
UPDATE `npc_text` SET `VerifiedBuild`=40120 WHERE `ID`=7903;
|
||||
UPDATE `creature` SET `curhealth`=497, `curmana`=1202, `VerifiedBuild`=40120 WHERE `guid`=54989;
|
||||
|
||||
-- Imp Minion
|
||||
UPDATE `creature_template` SET `VerifiedBuild`=40120 WHERE `entry`=12922;
|
||||
UPDATE `creature_template_model` SET `VerifiedBuild`=40120 WHERE `CreatureID`=12922 AND `Idx`=0;
|
||||
|
||||
-- Yasmine Teli'Larien (Area: Sunstrider Isle - Difficulty: 0)
|
||||
UPDATE `creature_template` SET `minlevel`=20, `maxlevel`=20, `VerifiedBuild`=40120 WHERE `entry`=15494;
|
||||
UPDATE `creature_template_model` SET `VerifiedBuild`=40120 WHERE `CreatureID`=15494 AND `Idx`=0;
|
||||
UPDATE `creature_model_info` SET `VerifiedBuild`=40120 WHERE `DisplayID`=15523;
|
||||
UPDATE `gossip_menu` SET `VerifiedBuild`=40120 WHERE `MenuId`=12670 AND `TextId`=12549;
|
||||
UPDATE `npc_text` SET `VerifiedBuild`=40120 WHERE `ID`=12549;
|
||||
UPDATE `creature` SET `curhealth`=497, `curmana`=1202, `VerifiedBuild`=40120 WHERE `guid`=55416;
|
||||
|
||||
-- Wounded Outrunner (Area: Sunstrider Isle - Difficulty: 0)
|
||||
UPDATE `creature_template` SET `minlevel`=20, `maxlevel`=20, `VerifiedBuild`=40120 WHERE `entry`=44857;
|
||||
UPDATE `creature_template_model` SET `VerifiedBuild`=40120 WHERE `CreatureID`=44857 AND `Idx` IN (0,1,2,3);
|
||||
UPDATE `creature_model_info` SET `VerifiedBuild`=40120 WHERE `DisplayID` IN (34190,34191,34192);
|
||||
UPDATE `creature` SET `curhealth`=1244, `VerifiedBuild`=40120 WHERE `guid` BETWEEN 250893 AND 250898;
|
||||
|
||||
-- Faraden Thelryn (Area: Sunstrider Isle - Difficulty: 0)
|
||||
UPDATE `creature_template` SET `minlevel`=20, `maxlevel`=20, `VerifiedBuild`=40120 WHERE `entry`=15292;
|
||||
UPDATE `creature_template_model` SET `VerifiedBuild`=40120 WHERE `CreatureID`=15292 AND `Idx`=0;
|
||||
UPDATE `creature_model_info` SET `VerifiedBuild`=40120 WHERE `DisplayID`=15510;
|
||||
UPDATE `creature` SET `curhealth`=622, `curmana`=490, `VerifiedBuild`=40120 WHERE `guid`=54998;
|
||||
UPDATE `npc_vendor` SET `IgnoreFiltering`=0, `VerifiedBuild`=40120 WHERE `entry`=15292 AND `item`=20912 AND `ExtendedCost`=0 AND `type`=1; -- Large Shield
|
||||
UPDATE `npc_vendor` SET `IgnoreFiltering`=0, `VerifiedBuild`=40120 WHERE `entry`=15292 AND `item`=20911 AND `ExtendedCost`=0 AND `type`=1; -- Light Guard
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15292 AND `item`=20916 AND `ExtendedCost`=0 AND `type`=1; -- Unadorned Chain Bracers
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15292 AND `item`=20917 AND `ExtendedCost`=0 AND `type`=1; -- Unadorned Chain Gloves
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15292 AND `item`=20915 AND `ExtendedCost`=0 AND `type`=1; -- Unadorned Chain Boots
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15292 AND `item`=20914 AND `ExtendedCost`=0 AND `type`=1; -- Unadorned Chain Belt
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15292 AND `item`=20918 AND `ExtendedCost`=0 AND `type`=1; -- Unadorned Chain Leggings
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15292 AND `item`=20919 AND `ExtendedCost`=0 AND `type`=1; -- Unadorned Chain Vest
|
||||
|
||||
-- Raelis Dawnstar (Area: Sunstrider Isle - Difficulty: 0)
|
||||
UPDATE `creature_template` SET `minlevel`=20, `maxlevel`=20, `VerifiedBuild`=40120 WHERE `entry`=15289;
|
||||
UPDATE `creature_template_model` SET `VerifiedBuild`=40120 WHERE `CreatureID`=15289 AND `Idx`=0;
|
||||
UPDATE `creature_model_info` SET `VerifiedBuild`=40120 WHERE `DisplayID`=15526;
|
||||
UPDATE `creature` SET `curhealth`=622, `VerifiedBuild`=40120 WHERE `guid`=54995;
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15289 AND `item`=20910 AND `ExtendedCost`=0 AND `type`=1; -- Stiff Shortbow
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15289 AND `item`=20853 AND `ExtendedCost`=0 AND `type`=1; -- Mana Gathering Staff
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15289 AND `item`=20849 AND `ExtendedCost`=0 AND `type`=1; -- Arcane Forged Shortsword
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15289 AND `item`=20851 AND `ExtendedCost`=0 AND `type`=1; -- Arcane Forged Mace
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15289 AND `item`=20852 AND `ExtendedCost`=0 AND `type`=1; -- Arcane Forged Dirk
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15289 AND `item`=20850 AND `ExtendedCost`=0 AND `type`=1; -- Arcane Forged Axe
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15289 AND `item`=20910 AND `ExtendedCost`=0 AND `type`=1; -- Stiff Shortbow
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15289 AND `item`=20853 AND `ExtendedCost`=0 AND `type`=1; -- Mana Gathering Staff
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15289 AND `item`=20849 AND `ExtendedCost`=0 AND `type`=1; -- Arcane Forged Shortsword
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15289 AND `item`=20851 AND `ExtendedCost`=0 AND `type`=1; -- Arcane Forged Mace
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15289 AND `item`=20852 AND `ExtendedCost`=0 AND `type`=1; -- Arcane Forged Dirk
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15289 AND `item`=20850 AND `ExtendedCost`=0 AND `type`=1; -- Arcane Forged Axe
|
||||
|
||||
-- Jainthess Thelryn (Area: Sunstrider Isle - Difficulty: 0)
|
||||
UPDATE `creature_template` SET `minlevel`=20, `maxlevel`=20, `VerifiedBuild`=40120 WHERE `entry`=15291;
|
||||
UPDATE `creature_template_model` SET `VerifiedBuild`=40120 WHERE `CreatureID`=15291 AND `Idx`=0;
|
||||
UPDATE `creature_model_info` SET `VerifiedBuild`=40120 WHERE `DisplayID`=15529;
|
||||
UPDATE `creature` SET `curhealth`=497, `curmana`=1202, `VerifiedBuild`=40120 WHERE `guid`=54997;
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20923 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Gloves
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20922 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Bracers
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20921 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Boots
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20924 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Pants
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20920 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Belt
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20925 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Vest
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20987 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Gloves
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20988 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Bracers
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20985 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Shoes
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20986 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Pants
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20989 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Belt
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20990 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Armor
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20923 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Gloves
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20922 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Bracers
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20921 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Boots
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20924 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Pants
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20920 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Belt
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20925 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Vest
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20987 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Gloves
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20988 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Bracers
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20985 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Shoes
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20986 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Pants
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20989 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Belt
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20990 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Armor
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20923 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Gloves
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20922 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Bracers
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20921 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Boots
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20924 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Pants
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20920 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Belt
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20925 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Vest
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20987 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Gloves
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20988 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Bracers
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20985 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Shoes
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20986 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Pants
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20989 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Belt
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20990 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Armor
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20923 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Gloves
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20922 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Bracers
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20921 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Boots
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20924 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Pants
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20920 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Belt
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20925 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Vest
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20987 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Gloves
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20988 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Bracers
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20985 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Shoes
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20986 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Pants
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20989 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Belt
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20990 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Armor
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20923 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Gloves
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20922 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Bracers
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20921 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Boots
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20924 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Pants
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20920 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Belt
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20925 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Vest
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20987 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Gloves
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20988 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Bracers
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20985 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Shoes
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20986 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Pants
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20989 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Belt
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20990 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Armor
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20923 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Gloves
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20922 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Bracers
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20921 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Boots
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20924 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Pants
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20920 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Belt
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20925 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Vest
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20987 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Gloves
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20988 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Bracers
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20985 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Shoes
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20986 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Pants
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20989 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Belt
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20990 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Armor
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20923 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Gloves
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20922 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Bracers
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20921 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Boots
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20924 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Pants
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20920 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Belt
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20925 AND `ExtendedCost`=0 AND `type`=1; -- Sun Cured Vest
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20987 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Gloves
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20988 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Bracers
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20985 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Shoes
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20986 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Pants
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20989 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Belt
|
||||
UPDATE `npc_vendor` SET `VerifiedBuild`=40120 WHERE `entry`=15291 AND `item`=20990 AND `ExtendedCost`=0 AND `type`=1; -- Light Cloth Armor
|
||||
@@ -0,0 +1,25 @@
|
||||
-- Add Conversation Stuff
|
||||
DELETE FROM `conversation_actors` WHERE (`ConversationId`=6798 AND `Idx` IN (0,1));
|
||||
INSERT INTO `conversation_actors`(`ConversationId`, `ConversationActorId`, `ConversationActorGuid`, `Idx`, `CreatureId`, `CreatureDisplayInfoId`, `VerifiedBuild`) VALUES
|
||||
(6798, 62451, 650011, 0, 0, 0, 40593),
|
||||
(6798, 62619, 650035, 1, 0, 0, 40593);
|
||||
|
||||
DELETE FROM `conversation_line_template` WHERE `Id` IN (15509, 15508, 15507, 15506, 15505);
|
||||
INSERT INTO `conversation_line_template` (`Id`, `StartTime`, `UiCameraID`, `ActorIdx`, `Flags`, `VerifiedBuild`) VALUES
|
||||
(15509, 33213, 0, 0, 0, 40593),
|
||||
(15508, 28181, 0, 1, 0, 40593),
|
||||
(15507, 15696, 0, 1, 0, 40593),
|
||||
(15506, 8589, 0, 0, 0, 40593),
|
||||
(15505, 0, 0, 0, 0, 40593);
|
||||
|
||||
DELETE FROM `conversation_template` WHERE `Id`=6798;
|
||||
INSERT INTO `conversation_template` (`Id`, `FirstLineID`, `LastLineEndTime`, `TextureKitId`, `VerifiedBuild`) VALUES
|
||||
(6798, 15505, 43909, 0, 40593);
|
||||
|
||||
-- Update SAI in Template
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry` = 131345;
|
||||
|
||||
-- SAI Conversation Script for Alleria GUID: 650011
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = -650011 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_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(-650011, 0, 0, 0, 19, 0, 100, 0, 49788, 0, 0, 0, 0, '', 143, 6798, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Alleria - On Quest accept 49788 - Start Conversation 6798 - To Invoker');
|
||||
@@ -0,0 +1,75 @@
|
||||
-- Texts
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` IN (4962,4971,4963);
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(4962,0,0,"Oh, it's on now! Bet you thought I'd be alone too, huh?!",12,7,100,0,0,0,5827,0,"Tapoke \"Slim\" Jahn"),
|
||||
(4962,1,0,"Okay, okay! No need to get all violent. I'll talk. I'll talk!",12,7,100,0,0,0,1743,0,"Tapoke \"Slim\" Jahn"),
|
||||
(4962,2,0,"I have a few notes from the job back at my place. I'll get them and then meet you back in the inn.",12,7,100,0,0,0,1744,0,"Tapoke \"Slim\" Jahn"),
|
||||
(4971,0,0,"Whoa! This is way more than what I bargained for, you're on your own, Slim!",12,7,100,0,0,0,5828,0,"Slim's Friend"),
|
||||
(4963,0,0,"I'm glad the commotions died down some around here. The last thing this place needs is another brawl.",12,7,100,0,0,0,4169,0,"Mikhail");
|
||||
|
||||
-- Waypoint
|
||||
DELETE FROM `script_waypoint` WHERE `entry`=4962;
|
||||
DELETE FROM `waypoints` WHERE `entry`=4962;
|
||||
INSERT INTO `waypoints` (`entry`,`pointid`,`position_x`,`position_y`,`position_z`,`point_comment`) VALUES
|
||||
(4962,1,-3804.44,-828.048,10.0931,""),
|
||||
(4962,2,-3803.93,-835.772,10.0777,""),
|
||||
(4962,3,-3792.63,-835.671,9.65566,""),
|
||||
(4962,4,-3772.43,-835.346,10.869,""),
|
||||
(4962,5,-3765.94,-840.129,10.8856,""),
|
||||
(4962,6,-3738.63,-830.997,11.0574,""),
|
||||
(4962,7,-3690.22,-862.262,9.96045,"");
|
||||
|
||||
-- Mikhail
|
||||
UPDATE `creature` SET `guid`=9432 WHERE `guid`=260760;
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI", `ScriptName`="" WHERE `entry`=4963;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=4963 AND `source_type`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=496300 AND `source_type`=9;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(4963,0,0,0,11,0,100,0,0,0,0,0,0,81,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Mikhail - On Respawn - Set Npc Flag Questgiver"),
|
||||
(4963,0,1,0,19,0,100,0,1249,0,0,0,0,81,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Mikhail - On Quest 'The Missing Diplomat (Part 11)' Taken - Set Npc Flag Gossip"),
|
||||
(4963,0,2,0,19,0,100,0,1249,0,0,0,0,45,1,1,0,0,0,0,10,10873,0,0,0,0,0,0,"Mikhail - On Quest 'The Missing Diplomat (Part 11)' Taken - Set Data to Tapoke \"Slim\" Jahn"),
|
||||
(4963,0,3,0,19,0,100,0,1249,0,0,0,0,64,1,0,0,0,0,0,7,0,0,0,0,0,0,0,"Mikhail - On Quest 'The Missing Diplomat (Part 11)' Taken - Store Target"),
|
||||
(4963,0,4,0,19,0,100,0,1249,0,0,0,0,100,1,0,0,0,0,0,10,10873,0,0,0,0,0,0,"Mikhail - On Quest 'The Missing Diplomat (Part 11)' Taken - Send Target to Tapoke \"Slim\" Jahn"),
|
||||
(4963,0,5,0,38,0,100,0,1,1,0,0,0,80,496300,2,0,0,0,0,1,0,0,0,0,0,0,0,"Mikhail - On Data Set - Run Script"),
|
||||
(496300,9,0,0,0,0,100,0,10000,10000,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Mikhail - On Script - Say Line 0"),
|
||||
(496300,9,1,0,0,0,100,0,0,0,0,0,0,81,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Mikhail - On Script - Set Npc Flag Questgiver");
|
||||
|
||||
-- Tapoke "Slim" Jahn
|
||||
UPDATE `creature` SET `guid`=10873 WHERE `guid`=260757;
|
||||
UPDATE `creature` SET `spawntimesecs`=10 WHERE `guid`=10873;
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI", `ScriptName`="" WHERE `entry`=4962;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=4962 AND `source_type`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=496200 AND `source_type`=9;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(4962,0,0,0,38,0,100,1,1,1,0,0,0,11,1785,0,0,0,0,0,1,0,0,0,0,0,0,0,"Tapoke \"Slim\" Jahn - On Data Set - Cast 'Stealth'"),
|
||||
(4962,0,1,0,38,0,100,1,1,1,0,0,0,53,0,4962,0,0,0,2,1,0,0,0,0,0,0,0,"Tapoke \"Slim\" Jahn - On Data Set - Start Waypoint"),
|
||||
(4962,0,2,0,38,0,100,1,1,1,0,0,0,42,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Tapoke \"Slim\" Jahn - On Data Set - Set Invincibility at 1 HP"),
|
||||
(4962,0,3,0,40,0,100,0,3,4962,0,0,0,28,1785,0,0,0,0,0,1,0,0,0,0,0,0,0,"Tapoke \"Slim\" Jahn - On Waypoint 3 Reached - Remove Aura 'Stealth'"),
|
||||
(4962,0,4,0,40,0,100,0,3,4962,0,0,0,2,168,0,0,0,0,0,1,0,0,0,0,0,0,0,"Tapoke \"Slim\" Jahn - On Waypoint 3 Reached - Set Faction 168"),
|
||||
(4962,0,5,0,40,0,100,0,7,4962,0,0,0,6,1249,0,0,0,0,0,12,1,0,0,0,0,0,0,"Tapoke \"Slim\" Jahn - On Waypoint 7 Reached - Fail Quest 'The Missing Diplomat (Part 11)'"),
|
||||
(4962,0,6,0,40,0,100,0,7,4962,0,0,0,45,1,1,0,0,0,0,10,9432,0,0,0,0,0,0,"Tapoke \"Slim\" Jahn - On Waypoint 7 Reached - Set Data to Mikhail"),
|
||||
(4962,0,7,0,40,0,100,0,7,4962,0,0,0,41,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Tapoke \"Slim\" Jahn - On Waypoint 7 Reached - Despawn"),
|
||||
(4962,0,8,0,4,0,100,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Tapoke \"Slim\" Jahn - On Aggro - Say Line 0"),
|
||||
(4962,0,9,0,4,0,100,0,0,0,0,0,0,11,16457,0,0,0,0,0,1,0,0,0,0,0,0,0,"Tapoke \"Slim\" Jahn - On Aggro - Cast 'Call Friends'"),
|
||||
(4962,0,10,0,2,0,100,1,0,20,0,0,0,80,496200,2,0,0,0,0,1,0,0,0,0,0,0,0,"Tapoke \"Slim\" Jahn - Between 0-20% Health - Run Script"),
|
||||
(496200,9,0,0,0,0,100,0,0,0,0,0,0,45,1,1,0,0,0,0,19,4971,0,0,0,0,0,0,"Tapoke \"Slim\" Jahn - On Script - Set Data to Slim's Friend"),
|
||||
(496200,9,1,0,0,0,100,0,0,0,0,0,0,2,123,0,0,0,0,0,1,0,0,0,0,0,0,0,"Tapoke \"Slim\" Jahn - On Script - Set Faction 123"),
|
||||
(496200,9,2,0,0,0,100,0,0,0,0,0,0,27,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Tapoke \"Slim\" Jahn - On Script - Stop Combat"),
|
||||
(496200,9,3,0,0,0,100,0,5000,5000,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Tapoke \"Slim\" Jahn - On Script - Say Line 1"),
|
||||
(496200,9,4,0,0,0,100,0,5000,5000,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Tapoke \"Slim\" Jahn - On Script - Say Line 2"),
|
||||
(496200,9,5,0,0,0,100,0,6000,6000,0,0,0,15,1249,0,0,0,0,0,12,1,0,0,0,0,0,0,"Tapoke \"Slim\" Jahn - On Script - Complete Quest 'The Missing Diplomat (Part 11)'"),
|
||||
(496200,9,6,0,0,0,100,0,1000,1000,0,0,0,45,1,1,0,0,0,0,10,9432,0,0,0,0,0,0,"Tapoke \"Slim\" Jahn - On Script - Set Data to Mikhail"),
|
||||
(496200,9,7,0,0,0,100,0,0,0,0,0,0,41,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Tapoke \"Slim\" Jahn - On Script - Despawn");
|
||||
|
||||
-- Slim's Friend
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=4971 AND `source_type`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=497100 AND `source_type`=9;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(4971,0,0,0,25,0,100,0,0,0,0,0,0,11,3616,0,0,0,0,0,1,0,0,0,0,0,0,0,"Slim's Friend - On Reset - Cast 'Poison Proc'"),
|
||||
(4971,0,1,0,25,0,100,0,0,0,0,0,0,11,8601,0,0,0,0,0,1,0,0,0,0,0,0,0,"Slim's Friend - On Reset - Cast 'Slowing Poison'"),
|
||||
(4971,0,2,0,67,0,100,0,3000,6000,0,0,0,11,2589,0,0,0,0,0,2,0,0,0,0,0,0,0,"Slim's Friend - On Behind Target - Cast Backstab"),
|
||||
(4971,0,3,0,38,0,100,1,1,1,0,0,0,80,497100,2,0,0,0,0,1,0,0,0,0,0,0,0,"Slim's Friend - On Data Set - Run Script"),
|
||||
(497100,9,0,0,0,0,100,0,0,0,0,0,0,24,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Slim's Friend - On Script - Evade"),
|
||||
(497100,9,1,0,0,0,100,0,0,0,0,0,0,2,123,0,0,0,0,0,1,0,0,0,0,0,0,0,"Slim's Friend - On Script - Set Faction 123"),
|
||||
(497100,9,2,0,0,0,100,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Slim's Friend - On Script - Say Line 0"),
|
||||
(497100,9,3,0,0,0,100,0,6000,6000,0,0,0,41,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Slim's Friend - On Script - Despawn");
|
||||
@@ -0,0 +1,3 @@
|
||||
--
|
||||
UPDATE `quest_template_addon` SET `NextQuestID`=1250 WHERE `ID`=1249;
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID`=1250 WHERE `ID`=1264;
|
||||
@@ -0,0 +1,30 @@
|
||||
-- Renn McGill
|
||||
UPDATE `creature_template` SET `unit_flags`=33536 WHERE `entry`=23569;
|
||||
|
||||
DELETE FROM `gossip_menu_option` WHERE `MenuID`=8837;
|
||||
INSERT INTO `gossip_menu_option` (`MenuID`, `OptionIndex`, `OptionIcon`, `OptionText`, `OptionBroadcastTextID`, `OptionType`, `OptionNpcFlag`, `VerifiedBuild`) VALUES
|
||||
(8837,0,0,"I don't have the Repaired Diving Gear anymore. Do you have a spare?",22482,1,1,0);
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=8837;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(15,8837,0,0,0,9,0,11140,0,0,0,0,0,"","Show gossip option if quest 'Recover the Cargo!' is taken"),
|
||||
(15,8837,0,0,0,2,0,33040,1,1,1,0,0,"","Show gossip option if player does not have item 'Repaired Diving Gear'");
|
||||
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=23569;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=23569 AND `source_type`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=2356900 AND `source_type`=9;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(23569,0,0,1,62,0,100,0,8837,0,0,0,85,42670,0,0,0,0,0,7,0,0,0,0,0,0,0,"Renn McGill - On Gossip Option 0 Selected - Invoker Cast 'Replace Repaired Diving Gear'"),
|
||||
(23569,0,1,0,61,0,100,0,0,0,0,0,72,0,0,0,0,0,0,7,0,0,0,0,0,0,0,"Renn McGill - On Gossip Option 0 Selected - Close Gossip"),
|
||||
(23569,0,2,0,20,0,100,0,11140,0,0,0,80,2356900,0,0,0,0,0,1,0,0,0,0,0,0,0,"Renn McGill - On Quest 'Recover the Cargo!' Finished - Run Script"),
|
||||
(2356900,9,0,0,0,0,100,0,0,0,0,0,83,3,0,0,0,0,0,1,0,0,0,0,0,0,0,"Renn McGill - On Script - Remove Npc Flag Questgiver+Gossip"),
|
||||
(2356900,9,1,0,0,0,100,0,1000,1000,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Renn McGill - On Script - Say Line 0"),
|
||||
(2356900,9,2,0,0,0,100,0,4000,4000,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Renn McGill - On Script - Say Line 1"),
|
||||
(2356900,9,3,0,0,0,100,0,5000,5000,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Renn McGill - On Script - Say Line 2"),
|
||||
(2356900,9,4,0,0,0,100,0,6000,6000,0,0,82,3,0,0,0,0,0,1,0,0,0,0,0,0,0,"Renn McGill - On Script - Add Npc Flag Questgiver+Gossip");
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`=23569;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(23569,0,0,"Hmm... old coins... ugly jewelry...",12,7,100,0,0,0,22160,0,"Renn McGill"),
|
||||
(23569,1,0,"More ugly jewelry... letters home... I'm beginning to give up hope!",12,7,100,0,0,0,22161,0,"Renn McGill"),
|
||||
(23569,2,0,"Hey... what's this? A pair of manacles and not just any. These are enchanted. This cargo, it wasn't a thing... it was a person!",12,7,100,0,0,0,22162,0,"Renn McGill");
|
||||
@@ -0,0 +1,18 @@
|
||||
-- Shipwreck Debris
|
||||
UPDATE `gameobject_template` SET `AIName`="SmartGameObjectAI" WHERE `entry`=186283;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=186283 AND `source_type`=1;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (18628300,18628301) AND `source_type`=9;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(186283,1,0,0,8,0,100,0,42287,0,0,0,0,41,0,120,0,0,0,0,1,0,0,0,0,0,0,0,"Shipwreck Debris - On Spellhit 'Salvage Wreckage' - Despawn"),
|
||||
(186283,1,1,0,8,0,100,0,42287,0,0,0,0,41,0,120,0,0,0,0,20,186278,0,0,0,0,0,0,"Shipwreck Debris - On Spellhit 'Salvage Wreckage' - Despawn Closest Gameobject 'Burning Wreckage'"),
|
||||
(186283,1,2,0,8,0,100,0,42287,0,0,0,0,87,18628300,18628301,0,0,0,0,1,0,0,0,0,0,0,0,"Shipwreck Debris - On Spellhit 'Salvage Wreckage' - Run Random Script"),
|
||||
(18628300,9,0,0,0,0,100,0,0,0,0,0,0,85,42289,0,0,0,0,0,7,0,0,0,0,0,0,0,"Shipwreck Debris - On Script - Invoker Cast 'Summon Mirefin Burrower'"),
|
||||
(18628301,9,0,0,0,0,100,0,0,0,0,0,0,85,42288,0,0,0,0,0,7,0,0,0,0,0,0,0,"Shipwreck Debris - On Script - Invoker Cast 'Summon Salvaged Lockbox'");
|
||||
|
||||
DELETE FROM `spell_scripts` WHERE `id`=42287;
|
||||
|
||||
-- Mirefin Ambusher
|
||||
UPDATE `creature_template` SET `unit_flags`=32768, `AIName`="SmartAI" WHERE `entry`=23701;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=23701 AND `source_type`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(23701,0,0,0,2,0,100,1,0,15,0,0,0,25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mirefin Ambusher - Between 0-15% Health - Flee For Assist (No Repeat)");
|
||||
@@ -0,0 +1,5 @@
|
||||
-- Apprentice Kryten
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=2788;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=2788 AND `source_type`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(2788,0,0,0,20,0,100,0,694,0,0,0,11,4319,0,0,0,0,0,1,0,0,0,0,0,0,0,"Apprentice Kryten - On Quest 'Trelane's Defenses' Finished - Cast 'Enchant Azure Agate'");
|
||||
@@ -0,0 +1,2 @@
|
||||
--
|
||||
UPDATE `smart_scripts` SET `target_param1`=191124 WHERE `entryorguid`=2902800 AND `source_type`=9 AND `id`=3;
|
||||
@@ -0,0 +1,48 @@
|
||||
-- Witchbane Torch
|
||||
SET @GUID := 5160;
|
||||
DELETE FROM `gameobject` WHERE `guid`=@GUID;
|
||||
INSERT INTO `gameobject` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `phaseId`, `position_x`, `position_y`, `position_z`, `orientation`, `rotation0`, `rotation1`, `rotation2`, `rotation3`, `spawntimesecs`, `animprogress`, `state`, `ScriptName`, `VerifiedBuild`) VALUES
|
||||
(@GUID,186425,1,0,0,'',0,-2967.03,-3872.18,33.0928,2.24779,-0,-0,-0.90179,-0.432175,-20,255,1,"",0);
|
||||
|
||||
DELETE FROM `event_scripts` WHERE `id`=15452;
|
||||
INSERT INTO `event_scripts` (`id`, `delay`, `command`, `datalong`, `datalong2`, `dataint`, `x`, `y`, `z`, `o`) VALUES
|
||||
(15452,0,9,@GUID,20,0,0,0,0,0);
|
||||
|
||||
UPDATE `gameobject_template` SET `AIName`="SmartGameObjectAI" WHERE `entry`=186425;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=186425 AND `source_type`=1;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(186425,1,0,0,70,0,100,0,1,0,0,0,0,45,1,1,0,0,0,0,19,4792,0,0,0,0,0,0,"Witchbane Torch - On State Changed - Set Data to \"Swamp Eye\" Jarl");
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry` IN (42517,42515);
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(13,1,42517,0,0,31,0,3,23869,0,0,0,0,"","Spell 'Beam to Zelfrax' can only target 'Invis Zelfrax Origin'"),
|
||||
(13,1,42515,0,0,31,0,3,23868,0,0,0,0,"","Spell 'Jarl Beam' can only target 'Invis Zelfrax Target'");
|
||||
|
||||
-- "Swamp Eye" Jarl
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=4792;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=4792 AND `source_type`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=479200 AND `source_type`=9;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(4792,0,0,0,38,0,100,0,1,1,0,0,0,80,479200,0,0,0,0,0,1,0,0,0,0,0,0,0,"\"Swamp Eye\" Jarl - On Data Set - Run Script"),
|
||||
(479200,9,0,0,0,0,100,0,0,0,0,0,0,11,42515,0,0,0,0,0,1,0,0,0,0,0,0,0,"\"Swamp Eye\" Jarl - On Script - Cast 'Jarl Beam'"),
|
||||
(479200,9,1,0,0,0,100,0,8000,8000,0,0,0,86,42517,0,19,23868,0,0,1,0,0,0,0,0,0,0,"\"Swamp Eye\" Jarl - On Script - Cross Cast 'Beam to Zelfrax'"),
|
||||
(479200,9,2,0,0,0,100,0,7000,7000,0,0,0,12,23864,3,300000,0,0,0,8,23869,0,0,-2984.98,-3853.72,45.7142,5.44525,"\"Swamp Eye\" Jarl - On Script - Summon Creature 'Zelfrax'");
|
||||
|
||||
-- Zelfrax
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI", `ScriptName`="" WHERE `entry`=23864;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=23864 AND `source_type`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (2386400,2386401) AND `source_type`=9;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(23864,0,0,0,54,0,100,0,0,0,0,0,0,18,768,0,0,0,0,0,1,0,0,0,0,0,0,0,"Zelfrax - Just Summoned - Add Unit Flags 'Immune to NPC'+'Immune to PC'"),
|
||||
(23864,0,1,0,54,0,100,0,0,0,0,0,0,80,2386400,0,0,0,0,0,1,0,0,0,0,0,0,0,"Zelfrax - Just Summoned - Run Script"),
|
||||
(23864,0,2,0,40,0,100,0,1,23864,0,0,0,80,2386401,0,0,0,0,0,1,0,0,0,0,0,0,0,"Zelfrax - On Waypoint 1 Reached - Run Script"),
|
||||
(2386400,9,0,0,0,0,100,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Zelfrax - On Script - Say Line 0"),
|
||||
(2386400,9,1,0,0,0,100,0,5000,5000,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Zelfrax - On Script - Say Line 1"),
|
||||
(2386400,9,2,0,0,0,100,0,0,0,0,0,0,53,1,23864,0,0,0,2,1,0,0,0,0,0,0,0,"Zelfrax - On Script - Start Waypoint"),
|
||||
(2386401,9,0,0,0,0,100,0,0,0,0,0,0,101,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Zelfrax - On Script - Set Home Position"),
|
||||
(2386401,9,1,0,0,0,100,0,0,0,0,0,0,19,768,0,0,0,0,0,1,0,0,0,0,0,0,0,"Zelfrax - On Script - Remove 'Immune to NPC'+'Immune to PC'"),
|
||||
(2386401,9,2,0,0,0,100,0,0,0,0,0,0,49,0,0,0,0,0,0,21,30,0,0,0,0,0,0,"Zelfrax - On Script - Start Attacking");
|
||||
|
||||
DELETE FROM `waypoints` WHERE `entry`=23864;
|
||||
INSERT INTO `waypoints` (`entry`, `pointid`, `position_x`, `position_y`, `position_z`, `point_comment`) VALUES
|
||||
(23864,1,-2965.74,-3873.83,33.3183,"");
|
||||
@@ -0,0 +1,5 @@
|
||||
--
|
||||
DELETE FROM `trinity_string` WHERE `entry` IN (848,882);
|
||||
INSERT INTO `trinity_string` (`entry`,`content_default`) VALUES
|
||||
(848,'│ Map: %s, Zone: %s'),
|
||||
(882,'│ Map: %s, Zone: %s, Area: %s');
|
||||
@@ -0,0 +1,2 @@
|
||||
--
|
||||
UPDATE `gossip_menu_option` SET `OptionIcon`=0, `OptionType`=1, `OptionNpcFlag`=1 WHERE `MenuID` IN (7938,7939) AND `OptionIndex`=1;
|
||||
@@ -0,0 +1,3 @@
|
||||
--
|
||||
UPDATE `quest_template_addon` SET `ExclusiveGroup`=-11144, `NextQuestID`=11149 WHERE `ID` IN (11144,11148); -- Quests "Confirming the Suspicion" / "Arms of the Grimtotems"
|
||||
UPDATE `quest_template_addon` SET `PrevQuestID`=0 WHERE `ID`=11149; -- Quest "Tabetha's Assistance"
|
||||
@@ -0,0 +1,18 @@
|
||||
--
|
||||
DELETE FROM `disables` WHERE `sourceType`=1 AND `entry` IN (8123,8160,8161,8162,8299,8300,8298,8124,8081,8163,8157,8164,8159,8165,8158);
|
||||
INSERT INTO `disables` (`sourceType`, `entry`, `flags`, `params_0`, `params_1`, `comment`) VALUES
|
||||
(1,8123,0,"","","Deprecated quest"),
|
||||
(1,8160,0,"","","Deprecated quest"),
|
||||
(1,8161,0,"","","Deprecated quest"),
|
||||
(1,8162,0,"","","Deprecated quest"),
|
||||
(1,8299,0,"","","Deprecated quest"),
|
||||
(1,8300,0,"","","Deprecated quest"),
|
||||
(1,8298,0,"","","Deprecated quest"),
|
||||
(1,8124,0,"","","Deprecated quest"),
|
||||
(1,8081,0,"","","Deprecated quest"),
|
||||
(1,8163,0,"","","Deprecated quest"),
|
||||
(1,8157,0,"","","Deprecated quest"),
|
||||
(1,8164,0,"","","Deprecated quest"),
|
||||
(1,8159,0,"","","Deprecated quest"),
|
||||
(1,8165,0,"","","Deprecated quest"),
|
||||
(1,8158,0,"","","Deprecated quest");
|
||||
@@ -0,0 +1,273 @@
|
||||
--
|
||||
-- Quest "To Steal From Thieves"
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=5 WHERE `ID`=1164;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1, `Emote2`=2 WHERE `ID`=1164;
|
||||
|
||||
-- Quest "The Hammer May Fall"
|
||||
DELETE FROM `quest_details` WHERE `ID`=676;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(676,5,1,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=5 WHERE `ID`=676;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=6, `Emote2`=1 WHERE `ID`=676;
|
||||
|
||||
-- Quest "Call to Arms"
|
||||
DELETE FROM `quest_details` WHERE `ID`=677;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(677,1,1,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=25 WHERE `ID`=677;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=677;
|
||||
|
||||
-- Quest "Call to Arms (Part 2)"
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=6 WHERE `ID`=678;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=21 WHERE `ID`=678;
|
||||
|
||||
-- Quest "Call to Arms (Part 3)"
|
||||
DELETE FROM `quest_details` WHERE `ID`=679;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(679,1,1,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=4 WHERE `ID`=679;
|
||||
|
||||
-- Quest "Trollbane"
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=2 WHERE `ID`=638;
|
||||
|
||||
-- Quest "Sigil of Strom"
|
||||
DELETE FROM `quest_details` WHERE `ID`=639;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(639,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=6, `EmoteOnComplete`=6 WHERE `ID`=639;
|
||||
|
||||
-- Quest "The Broken Sigil"
|
||||
DELETE FROM `quest_details` WHERE `ID`=640;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(640,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=66, `EmoteOnComplete`=66 WHERE `ID`=640;
|
||||
|
||||
-- Quest "Sigil of Thoradin"
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=6 WHERE `ID`=641;
|
||||
|
||||
-- Quest "Sigil of Arathor"
|
||||
DELETE FROM `quest_details` WHERE `ID`=643;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(643,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=643;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=643;
|
||||
|
||||
-- Quest "Sigil of Trollbane"
|
||||
DELETE FROM `quest_details` WHERE `ID`=644;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(644,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=6, `EmoteOnComplete`=6 WHERE `ID`=644;
|
||||
|
||||
-- Quest "Trol'kalar"
|
||||
DELETE FROM `quest_details` WHERE `ID`=645;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(645,6,1,0,0,0,0,0,0,0);
|
||||
|
||||
-- Quest "Trol'kalar (Part 2)"
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=6, `EmoteOnComplete`=6 WHERE `ID`=646;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1, `Emote2`=1, `Emote3`=2 WHERE `ID`=646;
|
||||
|
||||
-- Quest "Hammerfall"
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=655;
|
||||
|
||||
-- Quest "Raising Spirits"
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=672;
|
||||
|
||||
-- Quest "Raising Spirits (Part 3)"
|
||||
DELETE FROM `quest_details` WHERE `ID`=675;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(675,61,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=6 WHERE `ID`=675;
|
||||
|
||||
-- Quest "Guile of the Raptor (Part 1)"
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=701;
|
||||
|
||||
-- Quest "Guile of the Raptor (Part 3)"
|
||||
DELETE FROM `quest_details` WHERE `ID`=847;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(847,23,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1, `Emote2`=1 WHERE `ID`=847;
|
||||
|
||||
-- Quests "Foul Magics"
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID` IN (671, 672, 673, 674, 701, 702);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=2 WHERE `ID`=673;
|
||||
|
||||
-- Quest "Horde Trauma"
|
||||
-- DELETE FROM `quest_details` WHERE `ID`=6623;
|
||||
-- INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
-- (6623,1,1,5,0,0,0,0,0,0);
|
||||
-- UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=6623;
|
||||
|
||||
-- Quest "Triage"
|
||||
-- DELETE FROM `quest_details` WHERE `ID`=6622;
|
||||
-- INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
-- (6622,1,1,1,1,0,0,0,0,0);
|
||||
-- UPDATE `quest_offer_reward` SET `Emote1`=2 WHERE `ID`=6622;
|
||||
|
||||
-- Quest "The Real Threat"
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=680;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=2 WHERE `ID`=680;
|
||||
|
||||
-- Quest "Myzrael's Allies"
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=2 WHERE `ID` IN (688,653);
|
||||
|
||||
-- Quest "Theldurin the Lost"
|
||||
DELETE FROM `quest_details` WHERE `ID`=687;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(687,1,1,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=3, `Emote2`=5, `Emote3`=1 WHERE `ID`=687;
|
||||
|
||||
-- Quest "The Lost Fragments"
|
||||
DELETE FROM `quest_details` WHERE `ID`=692;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(692,6,5,1,5,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=5, `EmoteOnComplete`=5 WHERE `ID`=692;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=692;
|
||||
|
||||
-- Quest "Summoning the Princess"
|
||||
DELETE FROM `quest_details` WHERE `ID`=656;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(656,1,5,6,1,0,0,0,0,0);
|
||||
|
||||
-- Quest "Elemental Leatherworking"
|
||||
DELETE FROM `quest_details` WHERE `ID`=5146;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(5146,1,25,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=1, `EmoteOnComplete`=1 WHERE `ID`=5146;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=25, `Emote2`=1 WHERE `ID`=5146;
|
||||
|
||||
-- Quest "The Battle for Arathi Basin!"
|
||||
DELETE FROM `quest_details` WHERE `ID` IN (8120,8169,8170,8171,8105,8166,8167,8168);
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(8120,1,0,0,0,0,0,0,0,0),
|
||||
(8169,1,0,0,0,0,0,0,0,0),
|
||||
(8170,1,0,0,0,0,0,0,0,0),
|
||||
(8171,1,0,0,0,0,0,0,0,0),
|
||||
(8105,1,0,0,0,0,0,0,0,0),
|
||||
(8166,1,0,0,0,0,0,0,0,0),
|
||||
(8167,1,0,0,0,0,0,0,0,0),
|
||||
(8168,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=66 WHERE `ID` IN (8120,8169,8170,8171,8105,8166,8167,8168);
|
||||
|
||||
-- Quest "Take Four Bases" / "Take Five Bases"
|
||||
DELETE FROM `quest_details` WHERE `ID` IN (8121,8122);
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(8121,1,0,0,0,0,0,0,0,0),
|
||||
(8122,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=66 WHERE `ID` IN (8121,8122);
|
||||
|
||||
-- Quest "Control Four Bases" / "Control Five Bases"
|
||||
DELETE FROM `quest_details` WHERE `ID` IN (8114,8115);
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(8114,1,0,0,0,0,0,0,0,0),
|
||||
(8115,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=66 WHERE `ID` IN (8114,8115);
|
||||
|
||||
-- Quest "Arathor Basic Care Package"
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=2 WHERE `ID` IN (8260,8261,8262,8263,8264,8265);
|
||||
|
||||
-- Quest "Arathi Basin Resources!"
|
||||
DELETE FROM `quest_details` WHERE `ID` IN (8080,8154,8155,8156,8297);
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(8080,1,0,0,0,0,0,0,0,0),
|
||||
(8154,1,0,0,0,0,0,0,0,0),
|
||||
(8155,1,0,0,0,0,0,0,0,0),
|
||||
(8156,1,0,0,0,0,0,0,0,0),
|
||||
(8297,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=6, `EmoteOnComplete`=6 WHERE `ID` IN (8080,8154,8155,8156,8297);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=21 WHERE `ID` IN (8080,8154,8155,8156,8297);
|
||||
|
||||
-- Quest "Wanted! Marez Cowl"
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=6, `EmoteOnComplete`=6 WHERE `ID`=684;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=21 WHERE `ID`=684;
|
||||
|
||||
-- Quest "Wanted! Otto and Falconcrest"
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=6, `EmoteOnComplete`=6 WHERE `ID`=685;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=21 WHERE `ID`=685;
|
||||
|
||||
-- Quest "Northfold Manor"
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=681;
|
||||
|
||||
-- Quest "Stromgarde Badges"
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=682;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=66 WHERE `ID`=682;
|
||||
|
||||
-- Quest "Worth Its Weight in Gold"
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=6, `EmoteOnComplete`=6 WHERE `ID`=691;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=5, `Emote2`=1, `Emote3`=1 WHERE `ID`=691;
|
||||
|
||||
-- Quest "Wand over Fist"
|
||||
DELETE FROM `quest_details` WHERE `ID`=693;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(693,1,1,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=1, `EmoteOnComplete`=1 WHERE `ID`=693;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=5, `Emote2`=1 WHERE `ID`=693;
|
||||
|
||||
-- Quest "Trelane's Defenses"
|
||||
DELETE FROM `quest_details` WHERE `ID`=694;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(694,6,1,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=6, `EmoteOnComplete`=6 WHERE `ID`=694;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=694;
|
||||
|
||||
-- Quest "Attack on the Tower"
|
||||
DELETE FROM `quest_details` WHERE `ID`=696;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(696,1,1,1,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=1, `EmoteOnComplete`=1 WHERE `ID`=696;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=21 WHERE `ID`=696;
|
||||
|
||||
-- Quest "Malin's Request"
|
||||
DELETE FROM `quest_details` WHERE `ID`=697;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(697,1,2,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=6, `EmoteOnComplete`=6 WHERE `ID`=697;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=5, `Emote2`=1, `Emote3`=1, `Emote4`=2, `EmoteDelay1`=1000 WHERE `ID`=697;
|
||||
|
||||
-- Quest "Land Ho!"
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=3, `Emote2`=1, `Emote3`=1 WHERE `ID`=663;
|
||||
|
||||
-- Quest "Sunken Treasure"
|
||||
DELETE FROM `quest_details` WHERE `ID`=665;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(665,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=21 WHERE `ID`=665;
|
||||
|
||||
-- Quest "Sunken Treasure (Part 2)"
|
||||
DELETE FROM `quest_details` WHERE `ID`=666;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(666,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=6, `EmoteOnComplete`=6 WHERE `ID`=666;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=4 WHERE `ID`=666;
|
||||
|
||||
-- Quest "Sunken Treasure (Part 3)"
|
||||
DELETE FROM `quest_details` WHERE `ID`=668;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(668,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=668;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=11 WHERE `ID`=668;
|
||||
|
||||
-- Quest "Sunken Treasure (Part 4)"
|
||||
DELETE FROM `quest_details` WHERE `ID`=669;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(669,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=6 WHERE `ID`=669;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=273 WHERE `ID`=669;
|
||||
|
||||
-- Quest "Sunken Treasure (Part 5)"
|
||||
DELETE FROM `quest_details` WHERE `ID`=670;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(670,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=2 WHERE `ID`=670;
|
||||
|
||||
-- Quest "Drowned Sorrows"
|
||||
DELETE FROM `quest_details` WHERE `ID`=664;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(664,1,1,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=664;
|
||||
|
||||
-- Quest "Death From Below"
|
||||
DELETE FROM `quest_details` WHERE `ID`=667;
|
||||
INSERT INTO `quest_details` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `VerifiedBuild`) VALUES
|
||||
(667,5,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=4 WHERE `ID`=667;
|
||||
@@ -0,0 +1,3 @@
|
||||
DELETE FROM `command` WHERE `permission` = 882;
|
||||
INSERT INTO `command` (`name`,`permission`,`help`) VALUES
|
||||
('reload spell_script_names', 882, 'Syntax: .reload spell_script_names\nReload spell_script_names table.');
|
||||
@@ -0,0 +1,8 @@
|
||||
--
|
||||
DELETE FROM `instance_template` WHERE `map` IN(1771, 1841, 1862, 1864, 1877);
|
||||
INSERT INTO `instance_template` (`map`, `parent`, `script`, `allowMount`) VALUES
|
||||
(1771, 0, '', 1), -- Tol Dagor
|
||||
(1841, 0, '', 1), -- The Underrot
|
||||
(1862, 0, '', 1), -- Waycrest Manor
|
||||
(1864, 0, '', 1), -- Shrine of the Storm
|
||||
(1877, 0, '', 1); -- Temple of Sethraliss
|
||||
@@ -0,0 +1,38 @@
|
||||
--
|
||||
-- Apprentice Morlann
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` IN (23600,23601);
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(23600,0,0,"Hmm... I wonder...",12,0,100,0,0,0,22042,0,"Apprentice Morlann"),
|
||||
(23600,1,0,"Now, where is it?",12,0,100,6,0,0,22045,0,"Apprentice Morlann"),
|
||||
(23600,2,0,"Stupid mages... always using the last of a reagent and never replacing it.",12,0,100,1,0,0,22043,0,"Apprentice Morlann"),
|
||||
(23601,0,0,"Is he complaining about the reagents again? Does he even remember how he left the summoning tomes last time?",12,0,100,6,0,0,22044,0,"Apprentice Garion");
|
||||
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=23600;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=23600 AND `source_type`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (2360000,2360001) AND `source_type`=9;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(23600,0,0,0,25,0,100,0,0,0,0,0,0,53,0,23600,1,0,0,0,1,0,0,0,0,0,0,0,"Apprentice Garion - On Reset - Start Waypoint"),
|
||||
(23600,0,1,0,40,0,100,0,1,23600,0,0,0,80,2360000,0,0,0,0,0,1,0,0,0,0,0,0,0,"Apprentice Garion - On Waypoint 1 Reached - Run Script"),
|
||||
(23600,0,2,0,40,0,100,0,4,23600,0,0,0,80,2360001,0,0,0,0,0,1,0,0,0,0,0,0,0,"Apprentice Garion - On Waypoint 4 Reached - Run Script"),
|
||||
(23600,0,3,0,40,0,100,0,6,23600,0,0,0,54,180000,0,0,0,0,0,1,0,0,0,0,0,0,0,"Apprentice Garion - On Waypoint 6 Reached - Pause Waypoint"),
|
||||
(2360000,9,0,0,0,0,100,0,0,0,0,0,0,54,6000,0,0,0,0,0,1,0,0,0,0,0,0,0,"Apprentice Garion - On Script - Pause Waypoint"),
|
||||
(2360000,9,1,0,0,0,100,0,1000,1000,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Apprentice Garion - On Script - Say Line 0"),
|
||||
(2360000,9,2,0,0,0,100,0,5000,5000,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Apprentice Garion - On Script - Say Line 1"),
|
||||
(2360001,9,0,0,0,0,100,0,0,0,0,0,0,54,14000,0,0,0,0,0,1,0,0,0,0,0,0,0,"Apprentice Garion - On Script - Pause Waypoint"),
|
||||
(2360001,9,1,0,0,0,100,0,2000,2000,0,0,0,5,16,0,0,0,0,0,1,0,0,0,0,0,0,0,"Apprentice Garion - On Script - Play Emote 'Kneel'"),
|
||||
(2360001,9,2,0,0,0,100,0,6000,6000,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Apprentice Garion - On Script - Say Line 2"),
|
||||
(2360001,9,3,0,0,0,100,0,6000,6000,0,0,0,1,0,0,0,0,0,0,19,23601,0,0,0,0,0,0,"Apprentice Garion - On Script - Say Line 0 (Apprentice Garion)");
|
||||
|
||||
DELETE FROM `waypoints` WHERE `entry`=23600;
|
||||
INSERT INTO `waypoints` (`entry`, `pointid`, `position_x`, `position_y`, `position_z`, `point_comment`) VALUES
|
||||
(23600,1,-4044.27,-3393.28,38.1284,""),
|
||||
(23600,2,-4045.51,-3394.92,38.1749,""),
|
||||
(23600,3,-4042.77,-3396.91,38.1887,""),
|
||||
(23600,4,-4040.72,-3397.23,38.1476,""),
|
||||
(23600,5,-4043.21,-3395.28,38.1581,""),
|
||||
(23600,6,-4043.43,-3395.4,38.2663,"");
|
||||
|
||||
UPDATE `creature` SET `guid`=18604,`MovementType`=0 WHERE `guid`=297962;
|
||||
UPDATE `creature_addon` SET `guid`=18604,`path_id`=0 WHERE `guid`=297962;
|
||||
DELETE FROM `waypoint_data` WHERE `id`=186040;
|
||||
DELETE FROM `waypoint_scripts` WHERE `id` IN (1006,1007,1008);
|
||||
@@ -0,0 +1,18 @@
|
||||
--
|
||||
-- Stonemaul Spirit
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=23786;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=23786 AND `source_type`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=2378600 AND `source_type`=9;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(23786,0,0,0,11,0,100,0,0,0,0,0,80,2378600,0,0,0,0,0,1,0,0,0,0,0,0,0,"Stonemaul Spirit - On Spawn - Run Script"),
|
||||
(2378600,9,0,0,0,0,100,0,0,0,0,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,"Stonemaul Spirit - On Script - Say Line 0"),
|
||||
(2378600,9,1,0,0,0,100,0,2000,2000,0,0,49,0,0,0,0,0,0,23,0,0,0,0,0,0,0,"Stonemaul Spirit - On Script - Start Attacking");
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`=23786;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(23786,0,0,"Me crush puny friend of dragons!",12,0,100,15,0,0,22416,0,"Stonemaul Spirit"),
|
||||
(23786,0,1,"You leave Stonemaul lands now!",12,0,100,15,0,0,22417,0,"Stonemaul Spirit"),
|
||||
(23786,0,2,"Why you wake ghost? Where other Stonemauls?!",12,0,100,15,0,0,22418,0,"Stonemaul Spirit"),
|
||||
(23786,0,3,"Raaar!!! Me smash $r!",12,0,100,15,0,0,1925,0,"Stonemaul Spirit"),
|
||||
(23786,0,4,"Me smash! You die!",12,0,100,15,0,0,1926,0,"Stonemaul Spirit"),
|
||||
(23786,0,5,"I'll crush you!",12,0,100,15,0,0,1927,0,"Stonemaul Spirit");
|
||||
@@ -0,0 +1,144 @@
|
||||
-- Suntara Stones
|
||||
UPDATE `creature_template` SET `AIName`= 'SmartAI' WHERE `entry` IN (8284,/*8338,*/8337);
|
||||
-- UPDATE `creature_addon` SET `bytes1`= 0 WHERE `guid`= 6823;
|
||||
UPDATE `gameobject_template` SET `AIName`='SmartGameObjectAI' WHERE `entry` IN (147516,147517);
|
||||
UPDATE `gameobject` SET `spawntimesecs`=100 WHERE `id` IN (147516, 147517);
|
||||
DELETE FROM `gameobject_addon` WHERE `guid` IN (SELECT `guid` FROM `gameobject` WHERE `id`=175704);
|
||||
DELETE FROM `gameobject` WHERE `id`=175704;
|
||||
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`IN (828400,828401,828402,828403,828404,828405,833800,14751700) AND `source_type`=9;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (8337,8284/*,8338*/) AND `source_type`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (147516,147517) AND `source_type`=1;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(8284, 0, 0,1, 11, 0,100,0, 0, 0,0,0, 18, 768, 0,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dorius Stonetender - On Spawn - Add Unit Flag'),
|
||||
(8284, 0, 1,0, 61, 0,100,0, 0, 0,0,0, 90, 7, 0,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dorius Stonetender - On Spawn - Add Bytes1 death State'),
|
||||
(8284, 0, 2,3, 19, 0,100,0, 3367, 0,0,0, 53, 0,82840,0,0,30000,1, 1, 0,0,0,0,0,0,0, 'Dorius Stonetender - On Quest Accept - Start WP movement'),
|
||||
(8284, 0, 3,4, 61, 0,100,0, 0, 0,0,0, 19, 768, 0,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dorius Stonetender - On Quest Accept - Remove Unit Flag'),
|
||||
(8284, 0, 4,5, 61, 0,100,0, 0, 0,0,0, 91, 7, 0,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dorius Stonetender - On Quest Accept - Remove Bytes1 Death State'),
|
||||
(8284, 0, 5,6, 61, 0,100,0, 0, 0,0,0, 64, 1, 0,0, 0, 0,0, 7, 0,0,0,0,0,0,0, 'Dorius Stonetender - On Quest Accept - Store target'),
|
||||
(8284, 0, 6,0, 61, 0,100,0, 0, 0,0,0, 2, 250, 0,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dorius Stonetender - On Quest Accept - Set faction'),
|
||||
(8284, 0, 7,0, 40, 0,100,0, 17, 82840,0,0, 80,828400, 2,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dorius Stonetender - On WP Reached - Start Action List'),
|
||||
(8284, 0, 8,0, 40, 0,100,0, 25, 82840,0,0, 80,828401, 2,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dorius Stonetender - On WP Reached - Start Action List'),
|
||||
(8284, 0, 9,0, 40, 0,100,0, 33, 82840,0,0, 80,828402, 2,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dorius Stonetender - On WP Reached - Start Action List'),
|
||||
(8284, 0, 10,0, 40, 0,100,0, 37, 82840,0,0, 80,828403, 2,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dorius Stonetender - On WP Reached - Start Action List'),
|
||||
(8284, 0, 11,0, 40, 0,100,0, 50, 82840,0,0, 80,828404, 2,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dorius Stonetender - On WP Reached - Start Action List'),
|
||||
(8284, 0, 12,0, 38, 0,100,0, 1, 1,0,0, 80,828405, 2,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dorius Stonetender - On data set - Start Action List'),
|
||||
(8284, 0, 13,0, 40, 0,100,0, 15, 82840,0,0, 45,2, 2,0, 0, 0,0, 15, 147516,50,0,0,0,0,0, 'Dorius Stonetender - On WP Reached - Set data'),
|
||||
(8284, 0, 14,0, 4, 0,50,0, 0, 0,0,0, 1,8, 0,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dorius Stonetender - On aggro - Say text'),
|
||||
-- first stop
|
||||
(828400,9, 0,0, 0, 0,100,0, 0, 0,0,0, 1, 0, 0,0, 0, 0,0,12, 1,0,0,0,0,0,0, 'Dorius Stonetender - Action List - Say Line 0'),
|
||||
(828400,9, 1,0, 0, 0,100,0, 0, 0,0,0, 54, 10000, 0,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dorius Stonetender - Action List - Pause WP (10 seconds)'),
|
||||
(828400,9, 2,0, 0, 0,100,0, 500, 500,0,0, 90, 8, 0,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dorius Stonetender - Action List - Add Bytes1 Stand State (Kneel)'),
|
||||
(828400,9, 3,0, 0, 0,100,0, 10000,10000,0,0, 91, 8, 0,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dorius Stonetender - Action List - Remove Bytes1 Stand State'),
|
||||
-- second stop
|
||||
(828401,9, 0,0, 0, 0,100,0, 0, 0,0,0, 54, 12000, 0,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dorius Stonetender - Action List - Pause WP (12 seconds)'),
|
||||
(828401,9, 1,0, 0, 0,100,0, 500, 500,0,0, 90, 8, 0,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dorius Stonetender - Action List - Add Bytes1 Stand State (Kneel)'),
|
||||
(828401,9, 2,0, 0, 0,100,0, 2000,2000,0,0, 91, 8, 0,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dorius Stonetender - Action List - Remove Bytes1 Stand State'),
|
||||
(828401,9, 3,0, 0, 0,100,0, 0,0,0,0, 1, 1, 0,0, 0, 0,0,12, 1,0,0,0,0,0,0, 'Dorius Stonetender - Action List - Say Line 1'),
|
||||
(828401,9, 4,0, 0, 0,100,0, 9000,9000,0,0, 1, 9, 0,0, 0, 0,0,12, 1,0,0,0,0,0,0, 'Dorius Stonetender - Action List - Say Line 9'),
|
||||
-- third stop + spawns
|
||||
(828402,9, 0,0, 0, 0,100,0, 0, 0,0,0, 1, 2, 0,0, 0, 0,0,12, 1,0,0,0,0,0,0, 'Dorius Stonetender - Action List - Say Line 2'),
|
||||
(828402,9, 1,0, 0, 0,100,0, 0, 0,0,0, 54, 10000, 0,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dorius Stonetender - Action List - Pause WP (10 seconds)'),
|
||||
(828402,9, 2,0, 0, 0,100,0, 500, 500,0,0, 90, 8, 0,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dorius Stonetender - Action List - Add Bytes1 Stand State (Kneel)'),
|
||||
(828402,9, 3,0, 0, 0,100,0, 9000,9000,0,0, 91, 8, 0,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dorius Stonetender - Action List - Remove Bytes1 Stand State'),
|
||||
(828402,9, 4,0, 0, 0,100,0, 0, 0,0,0, 45, 2, 2,0, 0, 0,0, 15, 147517,50,0,0,0,0,0, 'Dorius Stonetender - Action List - Set data'),
|
||||
-- start run
|
||||
(828403,9, 0,0, 0, 0,100,0, 0, 0,0,0, 1, 3, 0,0, 0, 0,0,12, 1,0,0,0,0,0,0, 'Dorius Stonetender - Action List - Say Line 3'),
|
||||
(828403,9, 1,0, 0, 0,100,0, 0, 0,0,0, 54, 3000, 0,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dorius Stonetender - Action List - Pause WP (3 seconds)'),
|
||||
(828403,9, 2,0, 0, 0,100,0, 0, 0,0,0, 59, 1, 0,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dorius Stonetender - Action List - Set Run On'),
|
||||
-- start finale event
|
||||
(828404,9, 0,0, 0, 0,100,0, 0, 0,0,0, 54, 30000, 0,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dorius Stonetender - Action List - Pause WP (30000 seconds)'),
|
||||
(828404,9, 1,0, 0, 0,100,0, 0, 0,0,0, 1,4, 0,0, 0, 0,0, 12, 1,0,0,0,0,0,0, 'Dorius Stonetender - Action List - Say text'),
|
||||
(828404,9, 2,0, 0, 0,100,0, 0, 0,0,0, 12, 8338, 8,0, 1, 0,0, 8, 0,0,0,-6370.26,-1974.93,256.79,3.55, 'Dorius Stonetender - Action List - Summon Dark Iron Marksman'),
|
||||
-- end finale event
|
||||
(828405,9, 0,0, 0, 0,100,0, 0, 0,0,0, 1, 5, 0,0, 0, 0,0,1, 0,0,0,0,0,0,0, 'Dorius Stonetender - Action List - Say Line 5'),
|
||||
(828405,9, 1,0, 0, 0,100,0, 0, 0,0,0, 11, 12218, 2,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dorius Stonetender - Action List - Cast Spell Man Down!'),
|
||||
(828405,9, 2,0, 0, 0,100,0, 0, 0,0,0, 90, 7, 0,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dorius Stonetender - Action List - Add Bytes1 Death State'),
|
||||
(828405,9, 3,0, 0, 0,100,0, 0, 0,0,0, 50, 175704, 60,1, 0, 0,0, 8, 0,0,0,-6386.8901, -1984.05, 246.7299,0, 'Dorius Stonetender - Action List - Summon '),
|
||||
(828405,9, 4,0, 0, 0,100,0, 0, 0,0,0, 15, 3367, 0,0, 0, 0,0,12, 1,0,0,0,0,0,0, 'Dorius Stonetender - Action List - Quest explored'),
|
||||
(828405,9, 5,0, 0, 0,100,0, 2000, 2000,0,0, 1, 6, 0,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dorius Stonetender - Action List - Say Line 6'),
|
||||
(828405,9, 6,0, 0, 0,100,0, 1000, 1000,0,0, 1, 7, 0,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dorius Stonetender - Action List - Say Line 7'),
|
||||
(828405,9, 7,0, 0, 0,100,0, 0, 0,0,0, 37, 0, 0,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dorius Stonetender - Action List - Die'),
|
||||
-- Dark Iron Marksman
|
||||
-- (8338, 0, 0,0, 54, 0,100,0, 0, 0,0,0, 80,833800, 2,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dark Iron Marksman - On just summoned - Call Action List'),
|
||||
(833800,9, 0,0, 0, 0,100,0, 1500, 1500,0,0, 1, 0, 0,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dark Iron Marksman - Action List - Say Line 0'),
|
||||
(833800,9, 1,0, 0, 0,100,0, 0, 0,0,0, 11, 12198, 0,0, 0, 0,0,19,8284,50,0,0,0,0,0, 'Dark Iron Marksman - Action List - Cast Marksman Hit'),
|
||||
(833800,9, 2,0, 0, 0,100,0, 2000, 2000,0,0, 45, 1, 1,0, 0, 0,0,19,8284,50,0,0,0,0,0, 'Dark Iron Marksman - Action List - set data Marksman Hit'),
|
||||
(833800,9, 3,0, 0, 0,100,0, 1000, 1000,0,0, 41, 0, 0,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dark Iron Marksman - Action List - Despawn'),
|
||||
(8337, 0, 0,0, 63, 0,100,0, 0, 0,0,0, 49,0, 0,0, 0, 0,0, 19, 8284,70,0,0,0,0,0, 'Dark Iron Steelshifter - On just Created - Start attack'),
|
||||
(8337, 0, 1,0, 4, 0,50,0, 0, 0,0,0, 1, 0, 0,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dark Iron Steelshifter - On aggro - Say Line 0'),
|
||||
(147516, 1, 0,0, 38, 0,100,0, 2, 2,0,0, 80,14751700, 0,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dark Iron - On data set - action list'),
|
||||
(147517, 1, 0,0, 38, 0,100,0, 2, 2,0,0, 80,14751700, 0,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dark Iron - On data set - action list'),
|
||||
(14751700,9, 0,0, 0, 0,100,0, 0, 0,0,0, 118, 2, 0,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dark Iron - Action List - set gob state'),
|
||||
(14751700,9, 1,0, 0, 0,100,0, 0, 0,0,0, 11, 12168, 0,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dark Iron - Action List - cast'),
|
||||
(14751700,9, 2,0, 0, 0,100,0, 1000, 1000,0,0, 41, 0, 0,0, 0, 0,0, 1, 0,0,0,0,0,0,0, 'Dark Iron - Action List - Despawn');
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` IN (8284,8337,8338);
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(8284,0,0,"Stop... need to catch.... my breath.",12,0,100,0,0,0,4345,0,"Dorius Stonetender"),
|
||||
(8284,1,0,"This is the place, $r: The Cauldron! Mark it on a map or do something so that you don''t forget. If anything ever happened to me, my team would be stuck in that mine forever.",12,0,100,25,0,0,4354,0,"Dorius Stonetender"),
|
||||
(8284,2,0,"I''ve got to quit smoking! Give me a minute to catch my breath.",12,0,100,0,0,0,4356,0,"Dorius Stonetender"),
|
||||
(8284,3,0,"We''re almost to safety. From here, we run. Try not to get too far behind! GO!",12,0,100,0,0,0,4357,0,"Dorius Stonetender"),
|
||||
(8284,4,0,"The gate is in sight! We''re going to make it! But first, I need to take a breather.",12,0,100,0,0,0,4363,0,"Dorius Stonetender"),
|
||||
(8284,5,0,"ARRRRRGH! He got me!",12,0,100,0,0,0,4359,0,"Dorius Stonetender"),
|
||||
(8284,6,0,"%s points to the parchment on the ground.",16,0,100,0,0,0,5944,0,"Dorius Stonetender"),
|
||||
(8284,7,0,"%s disappears in a cloud of dust.",16,0,100,0,0,0,4362,0,"Dorius Stonetender"),
|
||||
(8284,8,0,"Are you going to let an injured dwarf do all the work for you?",12,0,100,0,0,0,4352,0,"Dorius Stonetender"),
|
||||
(8284,8,1,"It's on! $n, meet my fists. Fists, say hello to $n.",12,0,100,0,0,0,4353,0,"Dorius Stonetender"),
|
||||
(8284,9,0,"Onward! And be on guard this time! I'm not going to carry anymore fights.",12,0,100,0,0,0,4355,0,"Dorius Stonetender"),
|
||||
(8337,0,0,"The secrets of Suntara will not leave these lands.", 14,0,100,0,0,0,4346,0,"Summon Dark Iron Steelshifter"),
|
||||
(8338,0,0,"He''s mine...",14,0,100,0,0,0,4358,0,"Dark Iron Marksman");
|
||||
|
||||
DELETE FROM `waypoints` WHERE `entry`=82840;
|
||||
INSERT INTO `waypoints` (`entry`,`pointid`,`position_x`,`position_y`,`position_z`) VALUES
|
||||
(82840, 1, -7005.02, -1742.09, 234.09),
|
||||
(82840, 2, -7007.01, -1730.48, 234.09),
|
||||
(82840, 3, -7004.89, -1726.50, 234.25),
|
||||
(82840, 4, -7000.51, -1727.69, 235.47),
|
||||
(82840, 5, -6989.39, -1737.25, 240.65),
|
||||
(82840, 6, -6976.65, -1737.33, 241.83),
|
||||
(82840, 7, -6954.92, -1742.04, 241.66),
|
||||
(82840, 8, -6933.73, -1730.35, 241.70),
|
||||
(82840, 9, -6931.64, -1719.75, 242.27),
|
||||
(82840, 10, -6909.71, -1714.02, 241.26),
|
||||
(82840, 11, -6898.56, -1723.56, 243.11),
|
||||
(82840, 12, -6883.09, -1728.15, 241.00),
|
||||
(82840, 13, -6879.24, -1737.66, 242.25),
|
||||
(82840, 14, -6875.63, -1738.84, 244.00),
|
||||
(82840, 15, -6868.03, -1745.78, 248.92),
|
||||
(82840, 16, -6865.56, -1747.40, 250.42),
|
||||
(82840, 17, -6857.70, -1748.29, 251.52), -- first stop
|
||||
(82840, 18, -6853.29, -1745.18, 251.52),
|
||||
(82840, 19, -6861.59, -1732.91, 251.66),
|
||||
(82840, 20, -6860.00, -1723.85, 252.05),
|
||||
(82840, 21, -6857.88, -1715.04, 251.52),
|
||||
(82840, 22, -6850.99, -1698.89, 250.48),
|
||||
(82840, 23, -6830.43, -1675.30, 251.52),
|
||||
(82840, 24, -6818.79, -1674.68, 251.31),
|
||||
(82840, 25, -6814.35, -1671.13, 250.31), -- second stop
|
||||
(82840, 26, -6809.37, -1680.91, 250.10),
|
||||
(82840, 27, -6801.58, -1695.83, 258.82),
|
||||
(82840, 28, -6790.76, -1703.73, 259.55),
|
||||
(82840, 29, -6781.22, -1715.15, 259.55),
|
||||
(82840, 30, -6778.56, -1727.06, 259.55),
|
||||
(82840, 31, -6777.09, -1744.06, 259.54),
|
||||
(82840, 32, -6775.59, -1761.05, 257.50),
|
||||
(82840, 33, -6777.40, -1780.64, 256.85), -- next break
|
||||
(82840, 34, -6776.03, -1781.77, 256.85),
|
||||
(82840, 35, -6728.56, -1814.42, 253.44),
|
||||
(82840, 36, -6700.18, -1814.54, 250.46),
|
||||
(82840, 37, -6677.81, -1821.25, 250.28), -- start run
|
||||
(82840, 38, -6640.54, -1884.70, 244.27),
|
||||
(82840, 39, -6612.79, -1916.98, 244.15),
|
||||
(82840, 40, -6569.94, -1922.81, 244.16),
|
||||
(82840, 41, -6540.13, -1938.87, 244.15),
|
||||
(82840, 42, -6520.90, -1946.45, 244.15),
|
||||
(82840, 43, -6504.90, -1955.36, 244.15),
|
||||
(82840, 44, -6483.21, -1965.20, 244.24),
|
||||
(82840, 45, -6471.10, -1968.55, 244.27),
|
||||
(82840, 46, -6451.37, -1976.94, 244.45),
|
||||
(82840, 47, -6405.94, -1974.30, 248.94),
|
||||
(82840, 48, -6395.49, -1977.74, 247.89),
|
||||
(82840, 49, -6389.20, -1978.71, 247.48),
|
||||
(82840, 50, -6388.39, -1983.85, 246.72),
|
||||
(82840, 51, -6388.39, -1983.85, 246.72);
|
||||
@@ -0,0 +1,5 @@
|
||||
--
|
||||
SET @SPELL_ATTR0_CU_ALLOW_INFLIGHT_TARGET := 262144;
|
||||
DELETE FROM `spell_custom_attr` WHERE `entry`=66717;
|
||||
INSERT INTO `spell_custom_attr` (`entry`, `attributes`) VALUES
|
||||
(66717, @SPELL_ATTR0_CU_ALLOW_INFLIGHT_TARGET);
|
||||
@@ -0,0 +1,4 @@
|
||||
--
|
||||
UPDATE `creature` SET `position_x`=-327.646, `position_y`=-127.406, `position_z`=-8.013, `orientation`=1.941862 WHERE `guid`=12607;
|
||||
DELETE FROM `creature` WHERE `guid` IN (12605,12606);
|
||||
DELETE FROM `creature_addon` WHERE `guid` IN (12605,12606);
|
||||
@@ -0,0 +1,4 @@
|
||||
--
|
||||
UPDATE `creature` SET `MovementType`=0, `spawndist`=0 WHERE `id` IN (27401,27403);
|
||||
DELETE FROM `creature_template_addon` WHERE `entry`=27401;
|
||||
INSERT INTO `creature_template_addon` (`entry`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES (27401,0,0,0,1,233 , '');
|
||||
@@ -0,0 +1,18 @@
|
||||
-- Stonemaul Spirit
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=23786;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=23786 AND `source_type`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=2378600 AND `source_type`=9;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(23786,0,0,0,11,0,100,0,0,0,0,0,80,2378600,0,0,0,0,0,1,0,0,0,0,0,0,0,"Stonemaul Spirit - On Spawn - Run Script"),
|
||||
(23786,0,1,0,4,0,15,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Stonemaul Spirit - On Aggro - Say Line 1"),
|
||||
(2378600,9,0,0,0,0,100,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Stonemaul Spirit - On Script - Say Line 0"),
|
||||
(2378600,9,1,0,0,0,100,0,2000,2000,0,0,49,0,0,0,0,0,0,23,0,0,0,0,0,0,0,"Stonemaul Spirit - On Script - Start Attacking");
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`=23786;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(23786,0,0,"Me crush puny friend of dragons!",12,0,100,15,0,0,22416,0,"Stonemaul Spirit"),
|
||||
(23786,0,1,"You leave Stonemaul lands now!",12,0,100,15,0,0,22417,0,"Stonemaul Spirit"),
|
||||
(23786,0,2,"Why you wake ghost? Where other Stonemauls?!",12,0,100,15,0,0,22418,0,"Stonemaul Spirit"),
|
||||
(23786,1,0,"Raaar!!! Me smash $r!",12,0,100,0,0,0,1925,0,"Stonemaul Spirit"),
|
||||
(23786,1,1,"Me smash! You die!",12,0,100,0,0,0,1926,0,"Stonemaul Spirit"),
|
||||
(23786,1,2,"I'll crush you!",12,0,100,0,0,0,1927,0,"Stonemaul Spirit");
|
||||
@@ -0,0 +1,60 @@
|
||||
-- Professor Phizzlethorpe
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI", `ScriptName`="" WHERE `entry`=2768;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=2768 AND `source_type`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (276800,276801,276802,276803) AND `source_type`=9;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(2768,0,0,1,19,0,100,0,665,0,0,0,0,64,1,0,0,0,0,0,7,0,0,0,0,0,0,0,"Professor Phizzlethorpe - On Quest 'Sunken Treasure' Taken - Store Targetlist"),
|
||||
(2768,0,1,2,61,0,100,0,0,0,0,0,0,83,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Professor Phizzlethorpe - On Quest 'Sunken Treasure' Taken - Remove Npc Flag Questgiver"),
|
||||
(2768,0,2,3,61,0,100,0,0,0,0,0,0,80,276800,0,0,0,0,0,1,0,0,0,0,0,0,0,"Professor Phizzlethorpe - On Quest 'Sunken Treasure' Taken - Run Script"),
|
||||
(2768,0,3,0,61,0,100,0,0,0,0,0,0,2,113,0,0,0,0,0,1,0,0,0,0,0,0,0,"Professor Phizzlethorpe - On Quest 'Sunken Treasure' Taken - Set Faction 113"),
|
||||
(2768,0,4,0,6,0,100,0,0,0,0,0,0,6,665,0,0,0,0,0,12,1,0,0,0,0,0,0,"Professor Phizzlethorpe - On Just Died - Fail Quest 'Sunken Treasure'"),
|
||||
(2768,0,5,0,4,0,100,0,0,0,0,0,0,1,4,0,0,0,0,0,1,0,0,0,0,0,0,0,"Professor Phizzlethorpe - On Aggro - Say Line 4"),
|
||||
(2768,0,6,0,40,0,100,0,5,276800,0,0,0,80,276801,0,0,0,0,0,1,0,0,0,0,0,0,0,"Professor Phizzlethorpe - On Waypoint 5 Reached - Run Script"),
|
||||
(2768,0,7,0,40,0,100,0,8,276800,0,0,0,80,276802,0,0,0,0,0,1,0,0,0,0,0,0,0,"Professor Phizzlethorpe - On Waypoint 8 Reached - Run Script"),
|
||||
(2768,0,8,0,40,0,100,0,8,276801,0,0,0,80,276803,0,0,0,0,0,1,0,0,0,0,0,0,0,"Professor Phizzlethorpe - On Waypoint 8 Reached - Run Script"),
|
||||
(276800,9,0,0,0,0,100,0,0,0,0,0,0,1,0,0,0,0,0,0,12,1,0,0,0,0,0,0,"Professor Phizzlethorpe - On Script - Say Line 0"),
|
||||
(276800,9,1,0,0,0,100,0,4000,4000,0,0,0,53,0,276800,0,0,0,2,1,0,0,0,0,0,0,0,"Professor Phizzlethorpe - On Script - Start Waypoint"),
|
||||
(276801,9,0,0,0,0,100,0,0,0,0,0,0,54,7000,0,0,0,0,0,1,0,0,0,0,0,0,0,"Professor Phizzlethorpe - On Script - Pause Waypoint"),
|
||||
(276801,9,1,0,0,0,100,0,0,0,0,0,0,1,1,0,0,0,0,0,12,1,0,0,0,0,0,0,"Professor Phizzlethorpe - On Script - Say Line 1"),
|
||||
(276801,9,2,0,0,0,100,0,7000,7000,0,0,0,1,2,0,0,0,0,0,12,1,0,0,0,0,0,0,"Professor Phizzlethorpe - On Script - Say Line 2"),
|
||||
(276802,9,0,0,0,0,100,0,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,"Professor Phizzlethorpe - On Script - Say Line 3"),
|
||||
(276802,9,1,0,0,0,100,0,10000,10000,0,0,0,107,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Professor Phizzlethorpe - On Script - Summon Group"),
|
||||
(276802,9,2,0,0,0,100,0,15000,15000,0,0,0,1,5,0,0,0,0,0,12,1,0,0,0,0,0,0,"Professor Phizzlethorpe - On Script - Say Line 5"),
|
||||
(276802,9,3,0,0,0,100,0,10000,10000,0,0,0,1,6,0,0,0,0,0,12,1,0,0,0,0,0,0,"Professor Phizzlethorpe - On Script - Say Line 6"),
|
||||
(276802,9,4,0,0,0,100,0,3000,3000,0,0,0,53,0,276801,0,0,0,2,1,0,0,0,0,0,0,0,"Professor Phizzlethorpe - On Script - Start Waypoint"),
|
||||
(276803,9,0,0,0,0,100,0,0,0,0,0,0,1,7,0,0,0,0,0,12,1,0,0,0,0,0,0,"Professor Phizzlethorpe - On Script - Say Line 7"),
|
||||
(276803,9,1,0,0,0,100,0,5000,5000,0,0,0,1,8,0,0,0,0,0,1,0,0,0,0,0,0,0,"Professor Phizzlethorpe - On Script - Say Line 8"),
|
||||
(276803,9,2,0,0,0,100,0,0,0,0,0,0,1,9,0,0,0,0,0,12,1,0,0,0,0,0,0,"Professor Phizzlethorpe - On Script - Say Line 9"),
|
||||
(276803,9,3,0,0,0,100,0,0,0,0,0,0,15,665,0,0,0,0,0,12,1,0,0,0,0,0,0,"Professor Phizzlethorpe - On Script - Complete Quest 'Sunken Treasure'"),
|
||||
(276803,9,4,0,0,0,100,0,0,0,0,0,0,82,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Professor Phizzlethorpe - On Script - Add Npc Flag Questgiver"),
|
||||
(276803,9,5,0,0,0,100,0,0,0,0,0,0,2,35,0,0,0,0,0,1,0,0,0,0,0,0,0,"Professor Phizzlethorpe - On Script - Set Faction 35");
|
||||
|
||||
DELETE FROM `creature_summon_groups` WHERE `summonerId`=2768;
|
||||
INSERT INTO `creature_summon_groups` (`summonerId`, `summonerType`, `groupId`, `entry`, `position_x`, `position_y`, `position_z`, `orientation`, `summonType`, `summonTime`) VALUES
|
||||
(2768,0,1,2776,-2056.19,-2143.23,20.4528,5.61003,5,3000),
|
||||
(2768,0,1,2776,-2052.2,-2139.68,19.6804,5.31158,5,3000);
|
||||
|
||||
DELETE FROM `script_waypoint` WHERE `entry`=2768;
|
||||
DELETE FROM `waypoints` WHERE `entry` IN (276800, 276801);
|
||||
INSERT INTO `waypoints` (`entry`,`pointid`,`position_x`,`position_y`,`position_z`,`point_comment`) VALUES
|
||||
(276800,1,-2077.73,-2091.17,9.49,""),
|
||||
(276800,2,-2077.99,-2105.33,13.24,""),
|
||||
(276800,3,-2074.6,-2109.67,14.24,""),
|
||||
(276800,4,-2076.6,-2117.46,16.67,""),
|
||||
(276800,5,-2073.51,-2123.46,18.42,""),
|
||||
(276800,6,-2066.6,-2131.85,21.56,""),
|
||||
(276800,7,-2053.85,-2143.19,20.31,""),
|
||||
(276800,8,-2043.49,-2153.73,20.2,""),
|
||||
(276801,1,-2053.85,-2143.19,20.31,""),
|
||||
(276801,2,-2063.52,-2131.57,21.22,""),
|
||||
(276801,3,-2073.51,-2123.46,18.42,""),
|
||||
(276801,4,-2076.6,-2117.46,16.67,""),
|
||||
(276801,5,-2074.6,-2109.67,14.24,""),
|
||||
(276801,6,-2077.99,-2105.33,13.24,""),
|
||||
(276801,7,-2077.73,-2091.17,9.49,""),
|
||||
(276801,8,-2066.41,-2086.21,8.97,"");
|
||||
|
||||
-- Vengeful Surge
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=2776 AND `source_type`=0 AND `id`=1;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(2776,0,1,0,54,0,100,0,0,0,0,0,0,49,0,0,0,0,0,0,19,2768,0,0,0,0,0,0,"Vengeful Surge - Just Summoned - Start Attacking");
|
||||
@@ -0,0 +1,83 @@
|
||||
-- Add some missing gameobjects
|
||||
DELETE FROM `gameobject` WHERE `guid` IN (5111,5117,5122,5126,5131,5140,5144,5155,5160,5165,5171,5210,5217,5224,5230,5232,5234,5255,5315,5332,5334,5339,5341,5345,5349,5350,5357,5367,5373,5395,5397,5402);
|
||||
INSERT INTO `gameobject` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `phaseId`, `position_x`, `position_y`, `position_z`, `orientation`, `rotation0`, `rotation1`, `rotation2`, `rotation3`, `spawntimesecs`, `animprogress`, `state`, `ScriptName`, `VerifiedBuild`) VALUES
|
||||
(5111,21148,0,0,0,'',0,-9072.17,837.258,109.424,0.299373,-0,-0,-0.149128,-0.988818,-120,255,1,"",0),
|
||||
(5117,21148,0,0,0,'',0,-9072.82,829.589,109.478,5.99743,-0,-0,-0.14239,0.989811,-120,255,1,"",0),
|
||||
(5122,21148,0,0,0,'',0,-9059.47,838.004,110.215,0.377914,-0,-0,-0.187835,-0.982201,-120,255,1,"",0),
|
||||
(5126,21148,0,0,0,'',0,-9059.77,838.776,110.215,0.381841,-0,-0,-0.189763,-0.98183,-120,255,1,"",0),
|
||||
(5131,21148,0,0,0,'',0,-9085.29,832.499,109.61,3.58633,-0,-0,-0.975378,0.220539,-120,255,1,"",0),
|
||||
(5140,21148,0,0,0,'',0,-9085.65,833.289,109.61,3.53135,-0,-0,-0.981071,0.193647,-120,255,1,"",0),
|
||||
(5144,21148,0,0,0,'',0,-9081.83,823.735,109.61,3.4803,-0,-0,-0.985694,0.168543,-120,255,1,"",0),
|
||||
(5155,21148,0,0,0,'',0,-9081.1,828.544,109.432,1.763,-0,-0,-0.771693,-0.635995,-120,255,1,"",0),
|
||||
(5160,21148,0,0,0,'',0,-9082.12,830.655,109.429,5.3287,-0,-0,-0.459332,0.888265,-120,255,1,"",0),
|
||||
(5165,21148,0,0,0,'',0,-9069.05,828.82,109.428,1.8533,-0,-0,-0.799613,-0.600515,-120,255,1,"",0),
|
||||
(5171,21148,0,0,0,'',0,-9075.97,820.033,109.55,4.11132,-0,-0,-0.884738,0.466088,-120,255,1,"",0),
|
||||
(5210,21148,0,0,0,'',0,-9070.79,828.253,109.431,0.334503,-0,-0,-0.166473,-0.986046,-120,255,1,"",0),
|
||||
(5217,21148,0,0,0,'',0,-9075.04,838.185,109.463,5.08008,-0,-0,-0.565921,0.824459,-120,255,1,"",0),
|
||||
(5224,21148,0,0,0,'',0,-9076.71,818.742,109.55,0.407534,-0,-0,-0.20236,-0.979311,-120,255,1,"",0),
|
||||
(5230,21148,0,0,0,'',0,-9079.45,828.87,109.436,3.40383,-0,-0,-0.991416,0.130743,-120,255,1,"",0),
|
||||
(5232,21148,0,0,0,'',0,-9073.03,838.268,109.432,0.345678,-0,-0,-0.17198,-0.985101,-120,255,1,"",0),
|
||||
(5234,21148,0,0,0,'',0,-9085.74,814.883,116.796,3.49512,-0,-0,-0.984418,0.175845,-120,255,1,"",0),
|
||||
(5255,21148,0,0,0,'',0,-9087.04,830.81,116.825,5.06286,-0,-0,-0.57-1201,0.819555,-120,255,1,"",0),
|
||||
(5315,21148,0,0,0,'',0,-9094.68,836.463,116.795,1.10446,-0,-0,-0.524585,-0.851358,-120,255,1,"",0),
|
||||
(5332,21148,0,0,0,'',0,-9084.5,824.882,116.825,5.65584,-0,-0,-0.308554,0.951207,-120,255,1,"",0),
|
||||
(5334,21147,0,0,0,'',0,-9081.3,822.651,109.61,3.55732,-0,-0,-0.978474,0.206371,-120,255,1,"",0),
|
||||
(5339,21147,0,0,0,'',0,-9072.24,828.632,109.453,0.376773,-0,-0,-0.187274,-0.982308,-120,255,1,"",0),
|
||||
(5341,21147,0,0,0,'',0,-9083.98,828.135,109.61,3.50271,-0,-0,-0.983743,0.17958,-120,255,1,"",0),
|
||||
(5345,21146,0,0,0,'',0,-9075.14,836.495,109.436,1.95635,-0,-0,-0.82948,-0.558537,-120,255,1,"",0),
|
||||
(5349,21146,0,0,0,'',0,-9069.89,830.264,109.432,0.954968,-0,-0,-0.459546,-0.888154,-120,255,1,"",0),
|
||||
(5350,21146,0,0,0,'',0,-9079.88,818.003,109.61,5.10492,-0,-0,-0.555639,0.831424,-120,255,1,"",0),
|
||||
(5357,21146,0,0,0,'',0,-9080.54,819.582,109.61,5.10492,-0,-0,-0.555639,0.831424,-120,255,1,"",0),
|
||||
(5367,21146,0,0,0,'',0,-9058.49,837.482,110.219,1.94478,-0,-0,-0.826236,-0.563325,-120,255,1,"",0),
|
||||
(5373,21146,0,0,0,'',0,-9081.2,821.143,109.61,5.1167,-0,-0,-0.550732,0.834682,-120,255,1,"",0),
|
||||
(5395,21145,0,0,0,'',0,-9083.11,825.766,109.61,3.52235,-0,-0,-0.981933,0.189231,-120,255,1,"",0),
|
||||
(5397,21145,0,0,0,'',0,-9084.98,830.42,109.61,0.354403,-0,-0,-0.176275,-0.984341,-120,255,1,"",0),
|
||||
(5402,21145,0,0,0,'',0,-9059.28,840.347,110.239,5.05895,-0,-0,-0.574602,0.818433,-120,255,1,"",0);
|
||||
|
||||
-- Texts
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` IN (1141,3628,1311);
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(1141,0,0,"All hail $n, a $c of worth!",12,7,100,22,0,0,1718,0,"Angus Stern"),
|
||||
(1141,1,0,"Behold! The Blue Recluse holds a feast in $g his:her; honor!",12,7,100,25,0,0,1719,0,"Angus Stern"),
|
||||
(3628,0,0,"Here here!",12,7,100,5,0,0,1735,0,"Steven Lohan"),
|
||||
(1311,0,0,"Hooray, $n!",12,7,100,4,0,0,1733,0,"Joachim Brenlow"),
|
||||
(1311,0,1,"Long live $n!",12,7,100,4,0,0,1736,0,"Joachim Brenlow");
|
||||
|
||||
-- Angus Stern
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=1141;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1141 AND `source_type`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=114100 AND `source_type`=9;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1141,0,0,0,20,0,100,0,1271,0,0,0,80,114100,0,0,0,0,0,1,0,0,0,0,0,0,0,"Angus Stern - On Quest 'Feast at the Blue Recluse' Finished - Run Script"),
|
||||
(1141,0,1,0,20,0,100,0,1271,0,0,0,64,1,0,0,0,0,0,7,0,0,0,0,0,0,0,"Angus Stern - On Quest 'Feast at the Blue Recluse' Finished - Store Target"),
|
||||
(114100,9,0,0,0,0,100,0,0,0,0,0,83,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Angus Stern - On Script - Remove Npc Flag Questgiver"),
|
||||
(114100,9,1,0,0,0,100,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Angus Stern - On Script - Say Line 0"),
|
||||
(114100,9,2,0,0,0,100,0,0,0,0,0,70,120,0,0,0,0,0,15,0,100,0,0,0,0,0,"Angus Stern - On Script - Respawn All Gameobjects"),
|
||||
(114100,9,3,0,0,0,100,0,5000,5000,0,0,66,0,0,0,0,0,0,8,0,0,0,0,0,0,1.02834,"Angus Stern - On Script - Set Orientation"),
|
||||
(114100,9,4,0,0,0,100,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Angus Stern - On Script - Say Line 1"),
|
||||
(114100,9,5,0,0,0,100,0,6000,6000,0,0,100,1,0,0,0,0,0,19,3628,0,0,0,0,0,0,"Angus Stern - On Script - Send Target to Steven Lohan"),
|
||||
(114100,9,6,0,0,0,100,0,0,0,0,0,45,1,1,0,0,0,0,19,3628,0,0,0,0,0,0,"Angus Stern - On Script - Set Data to Steven Lohan"),
|
||||
(114100,9,7,0,0,0,100,0,4000,4000,0,0,82,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Angus Stern - On Script - Add Npc Flag Questgiver"),
|
||||
(114100,9,8,0,0,0,100,0,0,0,0,0,66,0,0,0,0,0,0,8,0,0,0,0,0,0,0.558505,"Angus Stern - On Script - Set Orientation");
|
||||
|
||||
-- Steven Lohan
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=3628;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=3628 AND `source_type`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=362800 AND `source_type`=9;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(3628,0,0,0,38,0,100,0,1,1,0,0,80,362800,0,0,0,0,0,1,0,0,0,0,0,0,0,"Steven Lohan - On Data Set - Run Script"),
|
||||
(362800,9,0,0,0,0,100,0,0,0,0,0,1,0,0,0,0,0,0,12,1,0,0,0,0,0,0,"Steven Lohan - On Script - Say Line 0"),
|
||||
(362800,9,1,0,0,0,100,0,2000,2000,0,0,100,1,0,0,0,0,0,19,1311,0,0,0,0,0,0,"Steven Lohan - On Script - Send Target to Steven Lohan"),
|
||||
(362800,9,2,0,0,0,100,0,0,0,0,0,45,1,1,0,0,0,0,19,1311,0,0,0,0,0,0,"Steven Lohan - On Script - Set Data to Joachim Brenlow");
|
||||
|
||||
-- Joachim Brenlow
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=1311;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=1311 AND `source_type`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(1311,0,0,0,38,0,100,0,1,1,0,0,1,0,0,0,0,0,0,12,1,0,0,0,0,0,0,"Joachim Brenlow - On Data Set - Say Line 0");
|
||||
|
||||
-- Fix looting
|
||||
UPDATE `gameobject_loot_template` SET `LootMode`=1 WHERE `Entry` IN (3458,3459,3460,3461);
|
||||
|
||||
-- Add quest emotes
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1, `Emote2`=2 WHERE `ID`=1271;
|
||||
@@ -0,0 +1,16 @@
|
||||
--
|
||||
DELETE FROM `gameobject` WHERE `guid` IN (/*5404,5419,5427,5429,5431,5433,5443,5446,*/5448);
|
||||
INSERT INTO `gameobject` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `phaseId`, `position_x`, `position_y`, `position_z`, `orientation`, `rotation0`, `rotation1`, `rotation2`, `rotation3`, `spawntimesecs`, `animprogress`, `state`, `ScriptName`, `VerifiedBuild`) VALUES
|
||||
-- (5404, 180867, 1, 0, 0, 1, 1, 7603.94, -2211.17, 471.606, 3.78647, 0, 0, 0.948466, -0.316878, 25, 100, 1, "", 0),
|
||||
-- (5419, 180867, 1, 0, 0, 1, 1, 7575.26, -2238.68, 469.858, 1.03679, 0, 0, 0.495486, 0.868616, 25, 100, 1, "", 0),
|
||||
-- (5427, 180867, 1, 0, 0, 1, 1, 7595.67, -2246.32, 466.965, 1.30382, 0, 0, 0.606707, 0.794925, 25, 100, 1, "", 0),
|
||||
-- (5429, 180867, 1, 0, 0, 1, 1, 7610.97, -2228.92, 468.71, 2.96651, 0, 0, 0.996171, 0.0874282, 25, 100, 1, "", 0),
|
||||
-- (5431, 180867, 1, 0, 0, 1, 1, 7570.31, -2220.8, 473.445, 0.357419, 0, 0, 0.17776, 0.984074, 25, 100, 1, "", 0),
|
||||
-- (5433, 180867, 1, 0, 0, 1, 1, 7585.47, -2205.31, 475.281, 4.91744, 0, 0, 0.631024, -0.775763, 25, 100, 1, "", 0),
|
||||
-- (5443, 180867, 530, 0, 0, 1, 1, -1804.27, 5492.68, -12.4278, 5.1019, 0, 0, 0.631024, -0.775763, 25, 100, 1, "", 0),
|
||||
-- (5446, 180867, 530, 0, 0, 1, 1, -1778.08, 5439.71, -12.4276, 1.53108, 0, 0, 0.631024, -0.775763, 25, 100, 1, "", 0),
|
||||
(5448, 186425, 1, 0, 0, '', 0, -2967.03, -3872.18, 33.0928, 2.24779, 0, 0, -0.90179, -0.432175, -20, 255, 1, "", 0);
|
||||
|
||||
-- DELETE FROM `game_event_gameobject` WHERE `eventEntry`=7 AND `guid` IN (5404,5419,5427,5429,5431,5433,5443,5446);
|
||||
-- INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES
|
||||
-- (7,5404),(7,5419),(7,5427),(7,5429),(7,5431),(7,5433),(7,5443),(7,5446);
|
||||
@@ -0,0 +1,2 @@
|
||||
--
|
||||
UPDATE `smart_scripts` SET `target_type`=0 WHERE `action_type` IN (38,39);
|
||||
@@ -0,0 +1,3 @@
|
||||
DELETE FROM `creature_template_addon` WHERE `entry` IN(23069,23336);
|
||||
UPDATE `creature_template` SET `AIName`='', `ScriptName`='npc_illidan_generic_fire' WHERE `entry` IN (23069,23259,23336);
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (23259,23069,23336) AND `source_type`=0;
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user