mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-22 18:15:31 +01:00
Merge branch '4.3.4' of https://gitlab.com/trinitycore/TrinityCore_434 into 4.3.4
This commit is contained in:
@@ -38,7 +38,7 @@ CREATE TABLE `account` (
|
||||
`failed_logins` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`locked` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`lock_country` varchar(2) NOT NULL DEFAULT '00',
|
||||
`last_login` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
|
||||
`last_login` timestamp NULL,
|
||||
`online` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`expansion` tinyint(3) unsigned NOT NULL DEFAULT '3',
|
||||
`mutetime` bigint(20) NOT NULL DEFAULT '0',
|
||||
@@ -212,7 +212,7 @@ CREATE TABLE `battlenet_accounts` (
|
||||
`failed_logins` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`locked` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`lock_country` varchar(2) NOT NULL DEFAULT '00',
|
||||
`last_login` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
|
||||
`last_login` timestamp NULL,
|
||||
`online` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`locale` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`os` varchar(3) NOT NULL DEFAULT '',
|
||||
@@ -1998,7 +1998,9 @@ INSERT INTO `updates` VALUES
|
||||
('2017_11_08_00_auth.sql','DB37CC4B077D6C2413F4091E48C3382411F59228','ARCHIVED','2017-11-08 01:40:04',0),
|
||||
('2017_11_15_00_auth.sql','BF17A1BAF2C3B5A64AEB4DC9C0E46508AA704129','ARCHIVED','2017-10-16 01:40:04',0),
|
||||
('2017_11_16_00_auth.sql','A53D70B4DB8686AB3A0B0E62471717F4F3902ADD','ARCHIVED','2017-11-16 01:40:04',0),
|
||||
('2017_12_17_00_auth.sql','E2EC5999D5305FC12EA576D08EFB95D1660DCF4D','ARCHIVED','2017-12-17 01:40:04',0);
|
||||
('2017_12_17_00_auth.sql','E2EC5999D5305FC12EA576D08EFB95D1660DCF4D','ARCHIVED','2017-12-17 01:40:04',0),
|
||||
('2018_01_06_00_auth.sql','CD9B826B9D95697DC412DEF780E814FA3991D6CD','ARCHIVED','2018-01-06 01:40:04',0),
|
||||
('2018_01_15_00_auth.sql','1C5C28490B27D86EBC14F6034AA4D34E66D5545D','ARCHIVED','2018-01-15 01:40:04',0);
|
||||
/*!40000 ALTER TABLE `updates` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
|
||||
@@ -2874,7 +2874,8 @@ INSERT INTO `updates` VALUES
|
||||
('2017_11_15_00_characters.sql','22D0C3854EE6D0983CD8C43DF0AC4269386F587C','ARCHIVED','2017-11-15 00:00:00',0),
|
||||
('2017_11_26_00_characters.sql','4609CDC122E0A7F27A09C2605B329A06FC7FB7C2','ARCHIVED','2017-11-27 00:00:00',0),
|
||||
('2017_11_28_00_characters.sql','6FF1F84B8985ADFC7FF97F0BF8E53403CF13C320','ARCHIVED','2017-11-28 00:00:00',0),
|
||||
('2017_12_17_00_characters.sql','937E8F51DC74AC41FF8F213CE36C69DDEB878D6A','ARCHIVED','2017-12-17 00:00:00',0);
|
||||
('2017_12_17_00_characters.sql','937E8F51DC74AC41FF8F213CE36C69DDEB878D6A','ARCHIVED','2017-12-17 00:00:00',0),
|
||||
('2018_01_15_00_characters.sql','43C8E4549E1AA9610B377BC7139C88C63D0DC193','ARCHIVED','2018-01-15 00:00:00',0);
|
||||
/*!40000 ALTER TABLE `updates` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
|
||||
@@ -785,6 +785,7 @@ CREATE TABLE `game_event` (
|
||||
`occurence` bigint(20) unsigned NOT NULL DEFAULT '5184000' COMMENT 'Delay in minutes between occurences of the event',
|
||||
`length` bigint(20) unsigned NOT NULL DEFAULT '2592000' COMMENT 'Length in minutes of the event',
|
||||
`holiday` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Client side holiday id',
|
||||
`holidayStage` TINYINT UNSIGNED NOT NULL DEFAULT '0' COMMENT '',
|
||||
`description` varchar(255) DEFAULT NULL COMMENT 'Description of the event displayed in console',
|
||||
`world_event` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '0 if normal event, 1 if world event',
|
||||
`announce` tinyint(3) unsigned DEFAULT '2' COMMENT '0 dont announce, 1 announce, 2 value from config',
|
||||
|
||||
14
sql/old/4.3.4/auth/25_2018_01_15/2018_01_06_00_auth.sql
Normal file
14
sql/old/4.3.4/auth/25_2018_01_15/2018_01_06_00_auth.sql
Normal file
@@ -0,0 +1,14 @@
|
||||
SET @sql_mode = @@session.sql_mode;
|
||||
SET SESSION sql_mode = '';
|
||||
|
||||
ALTER TABLE `account`
|
||||
CHANGE `last_login` `last_login` TIMESTAMP NULL;
|
||||
|
||||
UPDATE `account` SET `last_login`=NULL WHERE `last_login`='0000-00-00 00:00:00';
|
||||
|
||||
ALTER TABLE `battlenet_accounts`
|
||||
CHANGE `last_login` `last_login` TIMESTAMP NULL;
|
||||
|
||||
UPDATE `battlenet_accounts` SET `last_login`=NULL WHERE `last_login`='0000-00-00 00:00:00';
|
||||
|
||||
SET SESSION sql_mode = @@sql_mode;
|
||||
@@ -0,0 +1,11 @@
|
||||
-- Restore deleted pool
|
||||
SET @POOL_1 := 382;
|
||||
|
||||
DELETE FROM `pool_template` WHERE `entry`=@POOL_1;
|
||||
INSERT INTO `pool_template` VALUES
|
||||
(@POOL_1, 1, "Eye of DarKhan/Wailer Spawn 1");
|
||||
|
||||
DELETE FROM `pool_creature` WHERE `guid` IN (82897, 85744);
|
||||
INSERT INTO `pool_creature` VALUES
|
||||
(82897, @POOL_1, 0, "Wailer Spawn 1"),
|
||||
(85744, @POOL_1, 0, "Eye of DarKhan Spawn 1");
|
||||
@@ -0,0 +1,4 @@
|
||||
DELETE FROM `lfg_dungeon_template` WHERE `dungeonId` IN (30, 276);
|
||||
INSERT INTO `lfg_dungeon_template` (`dungeonId`, `name`, `position_x`, `position_y`, `position_z`, `orientation`, `VerifiedBuild`) VALUES
|
||||
(30, 'Blackrock Depths - Prison', 456.929, 34.0923, -68.0896, 4.712389, 11159),
|
||||
(276, 'Blackrock Depths - Upper City', 456.929, 34.0923, -68.0896, 4.712389, 11159);
|
||||
@@ -0,0 +1,6 @@
|
||||
DELETE FROM `spell_area` WHERE `spell` IN (30550, 30557, 30562, 30567);
|
||||
INSERT INTO `spell_area` (`spell`, `area`, `quest_start`, `quest_end`, `aura_spell`, `raceMask`, `gender`, `autocast`, `quest_start_status`, `quest_end_status`) VALUES
|
||||
(30550, 3457, 0, 0, 0, 0, 2, 0, 64, 11),
|
||||
(30557, 3457, 0, 0, 0, 0, 2, 0, 64, 11),
|
||||
(30562, 3457, 0, 0, 0, 0, 2, 0, 64, 11),
|
||||
(30567, 3457, 0, 0, 0, 0, 2, 0, 64, 11);
|
||||
@@ -0,0 +1 @@
|
||||
UPDATE `creature_template` SET `flags_extra`=128 WHERE `entry`=23224;
|
||||
@@ -0,0 +1 @@
|
||||
UPDATE `reference_loot_template` SET `Chance` = 40 WHERE `Entry` IN (34278,34279) AND `Item` IN (52025,52028);
|
||||
@@ -0,0 +1,3 @@
|
||||
DELETE FROM `gameobject` WHERE `id` = 190557 AND `map` = 631;
|
||||
INSERT INTO `gameobject` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnMask`, `phaseMask`, `position_x`, `position_y`, `position_z`, `orientation`, `rotation0`, `rotation1`, `rotation2`, `rotation3`, `spawntimesecs`, `animprogress`, `state`, `VerifiedBuild`) VALUES
|
||||
(1498,190557,631,0,0,15,1,-59.4583,2157.47,30.6542,2.75761,0,0,0,1,6000,100,1,0);
|
||||
@@ -0,0 +1,3 @@
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_hor_quel_delars_will';
|
||||
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
|
||||
(70698, 'spell_hor_quel_delars_will');
|
||||
@@ -0,0 +1,2 @@
|
||||
-- Update spells for Thunder Bluff Kodo
|
||||
UPDATE `creature_template` SET `spell1`=62544, `spell3`=62960 WHERE `entry`=33322;
|
||||
@@ -0,0 +1,3 @@
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_item_valanyr_hammer_of_ancient_kings';
|
||||
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
|
||||
(64415,'spell_item_valanyr_hammer_of_ancient_kings');
|
||||
@@ -0,0 +1 @@
|
||||
UPDATE `creature_template` SET `mechanic_immune_mask` = `mechanic_immune_mask` & 0xFFFFFF7F;
|
||||
@@ -0,0 +1,2 @@
|
||||
--
|
||||
UPDATE `creature` SET `MovementType` = 0 WHERE `guid` = 82823;
|
||||
@@ -0,0 +1,5 @@
|
||||
--
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=27283 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
|
||||
(27283, 0, 0, 0, 0, 0, 100, 0, 1000, 2000, 3400, 4800, 11, 9672, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Risen Wintergarde Mage - IC - Cast 'Frostbolt'"),
|
||||
(27283, 0, 1, 0, 0, 0, 100, 0, 8000, 12000, 9000, 14000, 11, 13339, 65, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, "Risen Wintergarde Mage - In Combat - Cast 'Fire Blast'");
|
||||
@@ -0,0 +1,2 @@
|
||||
--
|
||||
UPDATE `creature` SET `position_x`=469.25, `position_y`=12.05, `position_z`=49.299, `orientation`=1.5708 WHERE `guid`=10997 AND `id`=21962;
|
||||
@@ -0,0 +1,2 @@
|
||||
--
|
||||
UPDATE `creature_template` SET `unit_flags`=`unit_flags`|768 WHERE `entry` IN(40495);
|
||||
@@ -0,0 +1 @@
|
||||
UPDATE `spell_proc` SET `SpellPhaseMask`=0x1,`AttributesMask`=0x2 WHERE `SpellId` IN (44543,44545);
|
||||
@@ -0,0 +1,12 @@
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` IN (13,17) AND `SourceEntry`=32307;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(13, 3, 32307, 0, 0, 31, 0, 3, 17148, 0, 0, 0, 0, '', 'Spell Plant Warmaul Ogre Banner (effects 0 & 1) will hit the potential target of the spell if target is unit Kil''sorrow Deathsworn.'),
|
||||
(13, 3, 32307, 0, 0, 36, 0, 0, 0, 0, 1, 0, 0, '', 'Spell Plant Warmaul Ogre Banner (effects 0 & 1) will hit the potential target of the spell if target is dead'),
|
||||
(13, 3, 32307, 0, 1, 31, 0, 3, 18658, 0, 0, 0, 0, '', 'Spell Plant Warmaul Ogre Banner (effects 0 & 1) will hit the potential target of the spell if target is unit Kil''sorrow Ritualist.'),
|
||||
(13, 3, 32307, 0, 1, 36, 0, 0, 0, 0, 1, 0, 0, '', 'Spell Plant Warmaul Ogre Banner (effects 0 & 1) will hit the potential target of the spell if target is dead'),
|
||||
(13, 3, 32307, 0, 2, 31, 0, 3, 17147, 0, 0, 0, 0, '', 'Spell Plant Warmaul Ogre Banner (effects 0 & 1) will hit the potential target of the spell if target is unit Kil''sorrow Cultist.'),
|
||||
(13, 3, 32307, 0, 2, 36, 0, 0, 0, 0, 1, 0, 0, '', 'Spell Plant Warmaul Ogre Banner (effects 0 & 1) will hit the potential target of the spell if target is dead'),
|
||||
(13, 3, 32307, 0, 3, 31, 0, 3, 17146, 0, 0, 0, 0, '', 'Spell Plant Warmaul Ogre Banner (effects 0 & 1) will hit the potential target of the spell if target is unit Kil''sorrow Spellbinder.'),
|
||||
(13, 3, 32307, 0, 3, 36, 0, 0, 0, 0, 1, 0, 0, '', 'Spell Plant Warmaul Ogre Banner (effects 0 & 1) will hit the potential target of the spell if target is dead'),
|
||||
(13, 3, 32307, 0, 4, 31, 0, 3, 18391, 0, 0, 0, 0, '', 'Spell Plant Warmaul Ogre Banner (effects 0 & 1) will hit the potential target of the spell if target is unit Giselda the Crone.'),
|
||||
(13, 3, 32307, 0, 4, 36, 0, 0, 0, 0, 1, 0, 0, '', 'Spell Plant Warmaul Ogre Banner (effects 0 & 1) will hit the potential target of the spell if target is dead');
|
||||
@@ -0,0 +1,4 @@
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_yogg_saron_squeeze';
|
||||
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
|
||||
(64125, 'spell_yogg_saron_squeeze'),
|
||||
(64126, 'spell_yogg_saron_squeeze');
|
||||
@@ -0,0 +1,3 @@
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_item_power_circle';
|
||||
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
|
||||
(45043, 'spell_item_power_circle');
|
||||
@@ -0,0 +1 @@
|
||||
DELETE FROM `spell_group` WHERE `spell_id`=17624;
|
||||
@@ -0,0 +1,46 @@
|
||||
--
|
||||
-- ELM General Purpose Bunny
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=23837 AND `source_type`=0 AND `id` IN (7,8);
|
||||
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
|
||||
(23837,0,7,0,38,0,100,0,29,29,0,0,11,40163,2,0,0,0,0,1,0,0,0,0,0,0,0,"ELM General Purpose Bunny - On Data Set - Cast Teleport"),
|
||||
(23837,0,8,0,38,0,100,0,29,29,0,0,50,186943,30,0,0,0,0,1,0,0,0,0,0,0,0,"ELM General Purpose Bunny - On Data Set - Summon Gameobject 'Scuttle's Mop and Bucket'");
|
||||
|
||||
-- Scuttle Frostprow
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=24784;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=24784 AND `source_type`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=2478400 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
|
||||
(24784,0,0,0,20,0,100,0,11469,0,0,0,80,2478400,0,0,0,0,0,1,0,0,0,0,0,0,0,"Scuttle Frostprow - On Quest 'Swabbin' Soap' Finished - Run Script"),
|
||||
(2478400,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,"Scuttle Frostprow - On Script - Remove Npc Flag Questgiver"),
|
||||
(2478400,9,1,0,0,0,100,0,500,500,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,"Scuttle Frostprow - On Script - Say Line 0"),
|
||||
(2478400,9,2,0,0,0,100,0,2000,2000,0,0,11,44433,0,0,0,0,0,1,0,0,0,0,0,0,0,"Scuttle Frostprow - On Script - Cast Summon Swabbin' Mops and Buckets"),
|
||||
(2478400,9,3,0,0,0,100,0,3000,3000,0,0,45,29,29,0,0,0,0,11,23837,30,0,0,0,0,0,"Scuttle Frostprow - On Script - Set Data to ELM General Purpose Bunny"),
|
||||
(2478400,9,4,0,0,0,100,0,0,0,0,0,45,1,1,0,0,0,0,10,102072,24642,0,0,0,0,0,"Scuttle Frostprow - On Script - Set Data to Drunken Northsea Pirate"),
|
||||
(2478400,9,5,0,0,0,100,0,6000,6000,0,0,1,1,0,0,0,0,0,7,0,0,0,0,0,0,0,"Scuttle Frostprow - On Script - Say Line 1"),
|
||||
(2478400,9,6,0,0,0,100,0,24000,24000,0,0,82,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Scuttle Frostprow - On Script - Add Npc Flag Questgiver");
|
||||
|
||||
-- Drunken Northsea Pirate
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=-102072 AND `source_type`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=2464200 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
|
||||
(-102072,0,0,0,1,1,50,0,0,45000,90000,180000,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drunken Northsea Pirate - Out of Combat - Say Line 0'),
|
||||
(-102072,0,1,0,11,0,100,0,0,0,0,0,22,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drunken Northsea Pirate - On Respawn - Set Event Phase 1'),
|
||||
(-102072,0,2,0,38,0,100,0,1,1,0,0,80,2464200,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drunken Northsea Pirate - On Data Set - Run Script'),
|
||||
(2464200,9,0,0,0,0,100,0,0,0,0,0,22,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Drunken Northsea Pirate - On Script - Set Event Phase 0"),
|
||||
(2464200,9,1,0,0,0,100,0,3000,3000,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Drunken Northsea Pirate - On Script - Say Line 1"),
|
||||
(2464200,9,2,0,0,0,100,0,7000,7000,0,0,66,0,0,0,0,0,0,8,0,0,0,0,0,0,1.64061,"Drunken Northsea Pirate - On Script - Set Orientation"),
|
||||
(2464200,9,3,0,0,0,100,0,1000,1000,0,0,11,44435,0,0,0,0,0,1,0,0,0,0,0,0,0,"Drunken Northsea Pirate - On Script - Cast 'Swabbin' Soap: Drunken Northsea Pirate Throws Bottle'"),
|
||||
(2464200,9,4,0,0,0,100,0,0,0,0,0,40,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Drunken Northsea Pirate - On Script - Set Sheath Unarmed"),
|
||||
(2464200,9,5,0,0,0,100,0,4000,4000,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Drunken Northsea Pirate - On Script - Say Line 2"),
|
||||
(2464200,9,6,0,0,0,100,0,15000,15000,0,0,66,0,0,0,0,0,0,8,0,0,0,0,0,0,4.18879,"Drunken Northsea Pirate - On Script - Set Orientation"),
|
||||
(2464200,9,7,0,0,0,100,0,0,0,0,0,40,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Drunken Northsea Pirate - On Script - Set Sheath Melee"),
|
||||
(2464200,9,8,0,0,0,100,0,0,0,0,0,22,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Drunken Northsea Pirate - On Script - Set Event Phase 0");
|
||||
|
||||
-- Texts
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`=24784;
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`=24642 AND `GroupID` IN (1,2);
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(24784,0,0,"There we go, $n! This fat'll do the trick fer sure! And now for some real swabbin'!",12,0,100,1,0,0,23831,0,"Scuttle Frostprow"),
|
||||
(24784,1,0,"Look at 'em go! Spotless!",12,0,100,4,0,0,23832,0,"Scuttle Frostprow"),
|
||||
(24642,1,0,"What ...hic?!",12,0,100,5,0,0,23834,0,"Drunken Northsea Pirate"),
|
||||
(24642,2,0,"That's it... no more grog for me!",12,0,100,1,0,0,23835,0,"Drunken Northsea Pirate");
|
||||
@@ -0,0 +1,2 @@
|
||||
-- Dream Vision
|
||||
UPDATE `creature_template` SET `unit_flags`=`unit_flags`|768 WHERE `entry`=7863;
|
||||
@@ -0,0 +1,2 @@
|
||||
-- 'Cabal Agent' is not a CIVILIAN
|
||||
UPDATE `creature_template` SET `flags_extra`=`flags_extra`&(~2) WHERE `entry`=19503;
|
||||
@@ -0,0 +1,5 @@
|
||||
-- Add condition to gossip text of Thassarian
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=14 AND `SourceGroup`=9840;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(14, 9840, 13609, 0, 0, 8, 0, 12019, 0, 0, 0, 0, 0, "", "Gossip if quest=12019 is completed"),
|
||||
(14, 9840, 13608, 0, 0, 8, 0, 12019, 0, 0, 1, 0, 0, "", "Gossip if quest=12019 isn't completed");
|
||||
@@ -0,0 +1 @@
|
||||
UPDATE `spell_proc` SET `SpellPhaseMask`=0x1 WHERE `SpellId`=-51521;
|
||||
11
sql/old/4.3.4/world/25_2018_01_15/2018_01_06_00_world.sql
Normal file
11
sql/old/4.3.4/world/25_2018_01_15/2018_01_06_00_world.sql
Normal file
@@ -0,0 +1,11 @@
|
||||
SET @sql_mode = @@session.sql_mode;
|
||||
SET SESSION sql_mode = '';
|
||||
|
||||
ALTER TABLE `game_event`
|
||||
CHANGE `start_time` `start_time` TIMESTAMP NULL COMMENT 'Absolute start date, the event will never start before',
|
||||
CHANGE `end_time` `end_time` TIMESTAMP NULL COMMENT 'Absolute end date, the event will never start after';
|
||||
|
||||
UPDATE `game_event` SET `start_time`=NULL WHERE `start_time`='0000-00-00 00:00:00';
|
||||
UPDATE `game_event` SET `end_time`=NULL WHERE `end_time`='0000-00-00 00:00:00';
|
||||
|
||||
SET SESSION sql_mode = @@sql_mode;
|
||||
@@ -0,0 +1,4 @@
|
||||
--
|
||||
DELETE FROM `event_scripts` WHERE `id`=17209 AND `command`=8;
|
||||
INSERT INTO `event_scripts` (`id`, `delay`, `command`, `datalong`, `datalong2`, `dataint`, `x`, `y`, `z`, `o`) VALUES
|
||||
(17209, 1, 8, 27995, 1, 0, 0, 0, 0, 0);
|
||||
@@ -0,0 +1,9 @@
|
||||
--
|
||||
DELETE FROM `quest_template_addon` WHERE `ID` IN (26150, 46);
|
||||
INSERT INTO `quest_template_addon` (`ID`, `MaxLevel`, `AllowableClasses`, `SourceSpellID`, `PrevQuestID`, `NextQuestID`, `ExclusiveGroup`, `RewardMailTemplateID`, `RewardMailDelay`, `RequiredSkillID`, `RequiredSkillPoints`, `RequiredMinRepFaction`, `RequiredMaxRepFaction`, `RequiredMinRepValue`, `RequiredMaxRepValue`, `ProvidedItemCount`, `SpecialFlags`) VALUES
|
||||
(26150,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0),
|
||||
(46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0);
|
||||
|
||||
DELETE FROM `creature_loot_template` WHERE `Entry`=13159 AND `Item`=1307;
|
||||
INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
|
||||
(13159,1307,0,100,0,1,0,1,1,NULL);
|
||||
@@ -0,0 +1,19 @@
|
||||
/*
|
||||
-- Remove unique items from reference table 24077
|
||||
DELETE FROM `reference_loot_template` WHERE `Entry`=24077 AND `Item` IN (827, 1214, 1219, 1405, 1925, 1928, 1958, 1959, 4676);
|
||||
-- Add former items from reference table 24077 to their proper NPCs
|
||||
DELETE FROM `creature_loot_template` WHERE `Item` IN (827, 1214, 1219, 1405, 1925, 1928, 1958, 1959, 4676);
|
||||
INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Chance`, `LootMode`, `MinCount`, `MaxCount`, `GroupId`, `Comment`) VALUES
|
||||
(122, 827, 0.1, 1, 1, 1, 0, 'Defias Highwayman - Wicked Blackjack'),
|
||||
(449, 827, 0.1, 1, 1, 1, 0, 'Defias Knuckleduster - Wicked Blackjack'),
|
||||
(426, 1214, 0.1, 1, 1, 1, 0, 'Redridge Brute - Gnoll Punisher'),
|
||||
(424, 1219, 0.1, 1, 1, 1, 0, 'Redridge Poacher - Redridge Machete'),
|
||||
(517, 1405, 0.1, 1, 1, 1, 0, 'Murloc Oracle - Foamspittle Staff'),
|
||||
(1725, 1925, 0.1, 1, 1, 1, 0, 'Defias Watchman - Defias Rapier'),
|
||||
(1726, 1928, 0.1, 1, 1, 1, 0, 'Defias Magician - Defias Mage Staff'),
|
||||
(623, 1958, 0.1, 1, 1, 1, 2, 'Skeletal Miner - Petrified Shinbone'),
|
||||
(623, 1959, 0.1, 1, 1, 1, 2, 'Skeletal Miner - Cold Iron Pick'),
|
||||
(624, 1958, 0.1, 1, 1, 1, 2, 'Undead Excavator - Petrified Shinbone'),
|
||||
(624, 4676, 0.1, 1, 1, 1, 2, 'Undead Excavator - Skeletal Gauntlets'),
|
||||
(625, 1958, 0.1, 1, 1, 1, 0, 'Undead Dynamiter - Petrified Shinbone');
|
||||
*/
|
||||
@@ -0,0 +1,3 @@
|
||||
-- Stabled Argent Warhorse
|
||||
DELETE FROM `conditions` WHERE `SourceGroup`=33870 AND `SourceTypeOrReferenceId`=18 AND SourceEntry=63663;
|
||||
INSERT INTO `conditions` VALUES (18,33870,63663,0,0,9,0,13664,0,0,0,0,0,'','Spellclick requires quest 13664 active');
|
||||
@@ -0,0 +1,32 @@
|
||||
-- Ruby Sanctum white damage update
|
||||
UPDATE `creature_template` SET `DamageModifier`=114 WHERE `entry` IN (39863,40142); -- Halion/Halion Twilight 10N
|
||||
UPDATE `creature_template` SET `DamageModifier`=172 WHERE `entry` IN (39864,40143); -- Halion/Halion Twilight 25N
|
||||
UPDATE `creature_template` SET `DamageModifier`=172 WHERE `entry` IN (39944,40144); -- Halion/Halion Twilight 10H
|
||||
UPDATE `creature_template` SET `DamageModifier`=257 WHERE `entry` IN (39945,40145); -- Halion/Halion Twilight 25H
|
||||
|
||||
UPDATE `creature_template` SET `DamageModifier`= 86 WHERE `entry`=39746; -- General Zarithrian 10
|
||||
UPDATE `creature_template` SET `DamageModifier`=129 WHERE `entry`=39805; -- General Zarithrian 25
|
||||
|
||||
UPDATE `creature_template` SET `DamageModifier`= 86 WHERE `entry`=39747; -- Saviana Ragefire 10
|
||||
UPDATE `creature_template` SET `DamageModifier`=129 WHERE `entry`=39823; -- Saviana Ragefire 25
|
||||
|
||||
UPDATE `creature_template` SET `DamageModifier`= 86 WHERE `entry`=39751; -- Baltharus the Warborn 10
|
||||
UPDATE `creature_template` SET `DamageModifier`=129 WHERE `entry`=39920; -- Baltharus the Warborn 25
|
||||
|
||||
UPDATE `creature_template` SET `DamageModifier`= 86 WHERE `entry`=39899; -- Baltharus Clone 10
|
||||
UPDATE `creature_template` SET `DamageModifier`=129 WHERE `entry`=39922; -- Baltharus Clone 25
|
||||
|
||||
UPDATE `creature_template` SET `DamageModifier`= 20 WHERE `entry` IN (40429); -- Sanctum Guardian Xerestrasza
|
||||
|
||||
-- Trash Mobs: Charscale Invoker, Charscale Assaulter, Charscale Elite, Charscale Commander
|
||||
UPDATE `creature_template` SET `DamageModifier`= 20 WHERE `entry` IN (40417,40419,40421,40423); -- 10
|
||||
UPDATE `creature_template` SET `DamageModifier`= 40 WHERE `entry` IN (40418,40420,40422,40424); -- 25
|
||||
|
||||
-- Ruby Drakonid, Ruby Drake, Ruby Scalebane, Ruby Dragon
|
||||
UPDATE `creature_template` SET `DamageModifier`= 20 WHERE `entry` IN (40626,40627,40628,40870);
|
||||
|
||||
UPDATE `creature_template` SET `DamageModifier`= 14 WHERE `entry`=40683; -- Living Ember 10
|
||||
UPDATE `creature_template` SET `DamageModifier`= 22 WHERE `entry`=40684; -- Living Ember 25
|
||||
|
||||
UPDATE `creature_template` SET `DamageModifier`= 86 WHERE `entry`=40681; -- Living Inferno 10
|
||||
UPDATE `creature_template` SET `DamageModifier`=129 WHERE `entry`=40682; -- Living Inferno 25
|
||||
@@ -0,0 +1,2 @@
|
||||
--
|
||||
DELETE FROM `linked_respawn` WHERE `guid`=79370 AND `linkedGuid`=79336;
|
||||
@@ -0,0 +1,2 @@
|
||||
--
|
||||
UPDATE `creature_template_addon` SET `auras`='32811' WHERE `entry` IN (20882,21613); -- Skulking Witch (Normal,Heroic)
|
||||
@@ -0,0 +1,44 @@
|
||||
/*
|
||||
-- Chemist Cuely
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`=8390;
|
||||
INSERT INTO `creature_text` (`CreatureID`,`GroupID`,`ID`,`Text`,`Type`,`Language`,`Probability`,`Emote`,`Duration`,`Sound`,`BroadcastTextId`,`TextRange`,`comment`) VALUES
|
||||
(8390,0,0,"There! Job's done.",12,0,100,1,0,0,4522,0,'Chemist Cuely');
|
||||
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=8390;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=8390 AND `source_type`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=839000 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
|
||||
(8390,0,0,0,20,0,100,0,3568,0,0,0,80,839000,0,0,0,0,0,1,0,0,0,0,0,0,0,"Chemist Cuely - On Quest 'Seeping Corruption' Finished - Run Script"),
|
||||
(839000,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,"Chemist Cuely - On Script - Remove Npc Flag Questgiver"),
|
||||
(839000,9,1,0,0,0,100,0,0,0,0,0,17,133,0,0,0,0,0,1,0,0,0,0,0,0,0,"Chemist Cuely - On Script - Set Emote State 133"),
|
||||
(839000,9,2,0,0,0,100,0,5000,5000,0,0,17,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Chemist Cuely - On Script - Set Emote State 0"),
|
||||
(839000,9,3,0,0,0,100,0,500,500,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Chemist Cuely - On Script - Say Line 0"),
|
||||
(839000,9,4,0,0,0,100,0,0,0,0,0,82,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Chemist Cuely - On Script - Add Npc Flag Questgiver");
|
||||
|
||||
-- Thersa Windsong
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`=8393;
|
||||
INSERT INTO `creature_text` (`CreatureID`,`GroupID`,`ID`,`Text`,`Type`,`Language`,`Probability`,`Emote`,`Duration`,`Sound`,`BroadcastTextId`,`TextRange`,`comment`) VALUES
|
||||
(8393,0,0,"Wha... what's happening?",12,0,100,15,0,0,4533,0,'Thersa Windsong');
|
||||
|
||||
UPDATE `creature` SET `spawntimesecs`= 30 WHERE `guid`=31905;
|
||||
UPDATE `creature_addon` SET `auras`=19502 WHERE `guid`=31905;
|
||||
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=8393;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=8393 AND `source_type`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=839300 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
|
||||
(8393,0,0,0,20,0,100,0,3569,0,0,0,80,839300,0,0,0,0,0,1,0,0,0,0,0,0,0,"Thersa Windsong - On Quest 'Seeping Corruption (Part 2)' Finished - Run Script"),
|
||||
(8393,0,1,0,6,0,100,0,0,0,0,0,41,5000,0,0,0,0,0,1,0,0,0,0,0,0,0,"Thersa Windsong - On Just Died - Despawn In 5000 ms"),
|
||||
(839300,9,0,0,0,0,100,0,0,0,0,0,5,7,0,0,0,0,0,1,0,0,0,0,0,0,0,"Thersa Windsong - On Script - Play Emote 7"),
|
||||
(839300,9,1,0,0,0,100,0,3000,3000,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Thersa Windsong - On Script - Say Line 0"),
|
||||
(839300,9,2,0,0,0,100,0,3000,3000,0,0,37,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Thersa Windsong - On Script - Kill Self");
|
||||
|
||||
-- Quest "Seeping Corruption (Part 2)"
|
||||
DELETE FROM `quest_details` WHERE `ID`=3569;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(3569,1,11,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=3569;
|
||||
|
||||
-- Quest "Seeping Corruption (Part 3)"
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=4, `Emote2`=11, `RewardText`="I never dreamed the elixir would take hold that quickly. Thank you, $n. I will get to work on the rest of these samples right away. I'm sure they'll be usable by the Lady Sylvanas and the Forsaken soon enough." WHERE `ID`=3570;
|
||||
*/
|
||||
@@ -0,0 +1,762 @@
|
||||
/*
|
||||
-- Quest: Alliance Relations
|
||||
DELETE FROM `quest_details` WHERE `ID`=1431;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(1431,1,1,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=2, `Emote2`=1 WHERE `ID`=1431;
|
||||
|
||||
-- Quest: Alliance Relations (Part 2)
|
||||
DELETE FROM `quest_details` WHERE `ID`=1432;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(1432,1,1,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=2, `Emote2`=1 WHERE `ID`=1432;
|
||||
|
||||
-- Quest: Alliance Relations (Part 3)
|
||||
DELETE FROM `quest_details` WHERE `ID`=1433;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(1433,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=2, `Emote2`=1 WHERE `ID`=1433;
|
||||
|
||||
-- Quest: The Burning of Spirits
|
||||
DELETE FROM `quest_details` WHERE `ID`=1435;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(1435,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=1435;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=1435;
|
||||
|
||||
-- Quest: Alliance Relations (Part 4)
|
||||
DELETE FROM `quest_details` WHERE `ID`=1436;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(1436,1,1,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1, `Emote2`=1 WHERE `ID`=1436;
|
||||
|
||||
-- Quest: Catch of the Day
|
||||
DELETE FROM `quest_details` WHERE `ID`=5386;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(5386,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=1 WHERE `ID`=5386;
|
||||
|
||||
-- Quest: Befouled by Satyr
|
||||
DELETE FROM `quest_details` WHERE `ID`=1434;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(1434,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=2, `Emote2`=1 WHERE `ID`=1434;
|
||||
|
||||
-- Quest: Kodo Roundup
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=5561;
|
||||
|
||||
-- Quest: Bone Collector
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=5501;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=4 WHERE `ID`=5501;
|
||||
|
||||
-- Quest: Khan Dez'hepah
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=1365;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=1365;
|
||||
|
||||
-- Quest: Centaur Bounty
|
||||
DELETE FROM `quest_details` WHERE `ID`=1366;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(1366,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=1366;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1, `Emote2`=66 WHERE `ID`=1366;
|
||||
|
||||
-- Quest: The Corrupter
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=1480;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=1480;
|
||||
|
||||
-- Quest: The Corrupter (Part 2)
|
||||
DELETE FROM `quest_details` WHERE `ID`=1481;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(1481,1,1,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=1481;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=1481;
|
||||
|
||||
-- Quest: The Corrupter (Part 3)
|
||||
DELETE FROM `quest_details` WHERE `ID`=1482;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(1482,1,1,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=1482;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=1482;
|
||||
|
||||
-- Quest: The Corrupter (Part 4)
|
||||
DELETE FROM `quest_details` WHERE `ID`=1484;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(1484,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=1484;
|
||||
|
||||
-- Quest: The Corrupter (Part 5)
|
||||
DELETE FROM `quest_details` WHERE `ID`=1488;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(1488,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=15 WHERE `ID`=1488;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=4, `Emote2`=1 WHERE `ID`=1488;
|
||||
|
||||
-- Quest: Hunting in Stranglethorn
|
||||
DELETE FROM `quest_details` WHERE `ID`=5763;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(5763,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=6 WHERE `ID`=5763;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=5763;
|
||||
|
||||
-- Quest: Hand of Iruxos
|
||||
DELETE FROM `quest_details` WHERE `ID`=5381;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(5381,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=5381;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=5381;
|
||||
|
||||
-- Quest: Portals of the Legion
|
||||
DELETE FROM `quest_details` WHERE `ID`=5581;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(5581,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=6, `EmoteOnIncomplete`=6 WHERE `ID`=5581;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=2 WHERE `ID`=5581;
|
||||
|
||||
-- Quest: Other Fish to Fry
|
||||
DELETE FROM `quest_details` WHERE `ID`=6143;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(6143,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=6143;
|
||||
|
||||
-- Quest: Clam Bait
|
||||
DELETE FROM `quest_details` WHERE `ID`=6142;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(6142,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=6142;
|
||||
|
||||
-- Quest: Fish in a Bucket
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=1, `EmoteOnIncomplete`=1 WHERE `ID`=5421;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=5421;
|
||||
|
||||
-- Quest: Sceptre of Light
|
||||
UPDATE `quest_details` SET `Emote1`=1, `Emote2`=1 WHERE `ID`=5741;
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=6, `EmoteOnIncomplete`=6, `CompletionText`="Do you have the Sceptre of Light?" WHERE `ID`=5741;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=5741;
|
||||
|
||||
-- Quest: Book of the Ancients
|
||||
DELETE FROM `quest_details` WHERE `ID`=6027;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(6027,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=1, `CompletionText`="Ah, $N! It's good to see you again. Do you have the Book of the Ancients?" WHERE `ID`=6027;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=5, `Emote2`=1 WHERE `ID`=6027;
|
||||
|
||||
-- Quest: Twisted Evils
|
||||
UPDATE `quest_details` SET `Emote1`=1, `Emote2`=1 WHERE `ID`=7028;
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=25 WHERE `ID`=7028;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=11 WHERE `ID`=7028;
|
||||
|
||||
-- Quest: Ghost-o-plasm Round Up
|
||||
DELETE FROM `quest_details` WHERE `ID`=6134;
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=6134;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=4, `Emote2`=1 WHERE `ID`=6134;
|
||||
|
||||
-- Quest: Get Me Out of Here!
|
||||
DELETE FROM `quest_details` WHERE `ID`=6132;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(6132,5,0,0,0,0,0,0,0,0);
|
||||
|
||||
-- Quest: Vyletongue Corruption
|
||||
DELETE FROM `quest_details` WHERE `ID`=7029;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(7029,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=1 WHERE `ID`=7029;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=2, `Emote2`=1 WHERE `ID`=7029;
|
||||
|
||||
-- Quest: Steelsnap
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=1131;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=2 WHERE `ID`=1131;
|
||||
|
||||
-- Quest: The Sacred Flame
|
||||
DELETE FROM `quest_details` WHERE `ID`=1195;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(1195,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=1 WHERE `ID`=1195;
|
||||
|
||||
-- Quest: The Sacred Flame (Part 2)
|
||||
DELETE FROM `quest_details` WHERE `ID`=1196;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(1196,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=6 WHERE `ID`=1196;
|
||||
|
||||
-- Quest: The Sacred Flame (Part 3)
|
||||
DELETE FROM `quest_details` WHERE `ID`=1197;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(1197,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=6, `EmoteOnComplete`=6 WHERE `ID`=1197;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=1197;
|
||||
|
||||
-- Quest: Message to Freewind Post
|
||||
DELETE FROM `quest_details` WHERE `ID`=4542;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(4542,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=6 WHERE `ID`=4542;
|
||||
|
||||
-- Quest: Pacify the Centaur
|
||||
DELETE FROM `quest_details` WHERE `ID`=4841;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(4841,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=25 WHERE `ID`=4841;
|
||||
|
||||
-- Quest: Grimtotem Spying
|
||||
DELETE FROM `quest_details` WHERE `ID`=5064;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(5064,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=6, `EmoteOnComplete`=6 WHERE `ID`=5064;
|
||||
|
||||
-- Quest: Alien Egg
|
||||
DELETE FROM `quest_details` WHERE `ID`=4821;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(4821,2,1,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=1 WHERE `ID`=4821;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=4821;
|
||||
|
||||
-- Quest: Serpent Wild
|
||||
DELETE FROM `quest_details` WHERE `ID`=4865;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(4865,1,5,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=5 WHERE `ID`=4865;
|
||||
|
||||
-- Quest: Sacred Fire
|
||||
DELETE FROM `quest_details` WHERE `ID`=5062;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(5062,1,1,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=5062;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=5062;
|
||||
|
||||
-- Quest: Arikara
|
||||
DELETE FROM `quest_details` WHERE `ID`=5088;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(5088,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=1 WHERE `ID`=5088;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=6, `Emote2`=2 WHERE `ID`=5088;
|
||||
|
||||
-- Quest: Wind Rider
|
||||
DELETE FROM `quest_details` WHERE `ID`=4767;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(4767,1,1,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=6, `EmoteOnComplete`=6 WHERE `ID`=4767;
|
||||
|
||||
-- Quest: A Different Approach
|
||||
DELETE FROM `quest_details` WHERE `ID`=9431;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(9431,6,1,1,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=9431;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=9431;
|
||||
|
||||
-- Quest: A Dip in the Moonwell
|
||||
DELETE FROM `quest_details` WHERE `ID`=9433;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(9433,5,1,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=9433;
|
||||
|
||||
-- Quest: Testing the Tonic
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=6 WHERE `ID`=9434;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=4 WHERE `ID`=9434;
|
||||
|
||||
-- Quest: Test of Faith
|
||||
DELETE FROM `quest_details` WHERE `ID`=1149;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(1149,2,1,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=1149;
|
||||
|
||||
-- Quest: Test of Endurance
|
||||
DELETE FROM `quest_details` WHERE `ID`=1150;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(1150,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=1 WHERE `ID`=1150;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=1150;
|
||||
|
||||
-- Quest: Test of Strength
|
||||
DELETE FROM `quest_details` WHERE `ID`=1151;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(1151,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=1 WHERE `ID`=1151;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=1151;
|
||||
|
||||
-- Quest: Test of Lore
|
||||
UPDATE `quest_details` SET `Emote1`=1 WHERE `ID`=1152;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=1152;
|
||||
|
||||
-- Quest: Test of Lore (Part 2)
|
||||
DELETE FROM `quest_details` WHERE `ID`=1154;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(1154,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=1 WHERE `ID`=1154;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=1154;
|
||||
|
||||
-- Quest: Test of Lore (Part 3)
|
||||
DELETE FROM `quest_details` WHERE `ID`=6627;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(6627,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=1 WHERE `ID`=6627;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=6627;
|
||||
|
||||
-- Quest: Test of Lore (Part 4)
|
||||
DELETE FROM `quest_details` WHERE `ID`=1159;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(1159,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=6, `Emote2`=274, `EmoteDelay2`=2000 WHERE `ID`=1159;
|
||||
|
||||
-- Quest: Test of Lore (Part 5)
|
||||
DELETE FROM `quest_details` WHERE `ID`=1160;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(1160,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=1 WHERE `ID`=1160;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=1160;
|
||||
|
||||
-- Quest: Test of Lore (Part 6)
|
||||
DELETE FROM `quest_details` WHERE `ID`=6628;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(6628,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=1 WHERE `ID`=6628;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=21 WHERE `ID`=6628;
|
||||
|
||||
-- Quest: Final Passage
|
||||
DELETE FROM `quest_details` WHERE `ID`=1394;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(1394,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1, `Emote2`=1 WHERE `ID`=1394;
|
||||
|
||||
-- Quest: Homeward Bound
|
||||
UPDATE `quest_details` SET `Emote1`=20 WHERE `ID`=4770;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=5, `Emote2`=1 WHERE `ID`=4770;
|
||||
|
||||
-- Quest: Free at Last
|
||||
DELETE FROM `quest_details` WHERE `ID`=4904;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(4904,1,0,0,0,0,0,0,0,0);
|
||||
|
||||
-- Quest: Assassination Plot
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=11, `EmoteDelay1`=1000 WHERE `ID`=4881;
|
||||
|
||||
-- Quest: Protect Kanati Greycloud
|
||||
DELETE FROM `quest_details` WHERE `ID`=4966;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(4966,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=4966;
|
||||
|
||||
-- Quest: Hypercapacitor Gizmo
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=5151;
|
||||
|
||||
-- Quest: Wanted - Arnak Grimtotem
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=5147;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=5147;
|
||||
|
||||
-- Quest: Family Tree
|
||||
DELETE FROM `quest_details` WHERE `ID`=5361;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(5361,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=5361;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=5361;
|
||||
|
||||
-- Quest: A Bump in the Road
|
||||
DELETE FROM `quest_details` WHERE `ID`=1175;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(1175,1,1,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=1175;
|
||||
|
||||
-- Quest: Hardened Shells
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=1 WHERE `ID`=1105;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=2, `Emote2`=5, `Emote3`=11, `RewardText`="You got them! Thanks, $N!$B$BWow, these shells are harder than I thought! When I work with them I'll probably need a whole box full of tools!" WHERE `ID`=1105;
|
||||
|
||||
-- Quest: Salt Flat Venom
|
||||
DELETE FROM `quest_details` WHERE `ID`=1104;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(1104,5,1,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=6, `EmoteOnIncomplete`=6 WHERE `ID`=1104;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=4 WHERE `ID`=1104;
|
||||
|
||||
-- Quest: Wharfmaster Dizzywig
|
||||
DELETE FROM `quest_details` WHERE `ID`=1111;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(1111,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=1111;
|
||||
|
||||
-- Quest: Parts for Kravel
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=1112;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=4 WHERE `ID`=1112;
|
||||
|
||||
-- Quest: Delivery to the Gnomes
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=1114;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=4 WHERE `ID`=1114;
|
||||
|
||||
-- Quest: Rocket Car Parts
|
||||
DELETE FROM `quest_details` WHERE `ID`=1110;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(1110,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=6, `EmoteOnIncomplete`=6 WHERE `ID`=1110;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=1110;
|
||||
|
||||
-- Quest: Hemet Nesingwary Jr.
|
||||
DELETE FROM `quest_details` WHERE `ID`=5762;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(5762,1,0,0,0,0,0,0,0,0);
|
||||
|
||||
-- Quest: Load Lightening
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=6 WHERE `ID`=1176;
|
||||
|
||||
-- Quest: Encrusted Tail Fins
|
||||
UPDATE `quest_details` SET `Emote1`=5, `Emote2`=1 WHERE `ID`=1107;
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=6, `EmoteOnIncomplete`=6 WHERE `ID`=1107;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=2, `Emote2`=1 WHERE `ID`=1107;
|
||||
|
||||
-- Quest: Martek the Exiled
|
||||
UPDATE `quest_details` SET `Emote1`=1 WHERE `ID`=1106;
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=35 WHERE `ID`=1106;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=1106;
|
||||
|
||||
-- Quest: Indurium
|
||||
DELETE FROM `quest_details` WHERE `ID`=1108;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(1108,1,1,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=6, `EmoteOnIncomplete`=6 WHERE `ID`=1108;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=1108;
|
||||
|
||||
-- Quest: News for Fizzle
|
||||
DELETE FROM `quest_details` WHERE `ID`=1137;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(1137,5,1,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=5 WHERE `ID`=1137;
|
||||
|
||||
-- Quest: The Swarm Grows (Part 2)
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=1 WHERE `ID`=1146;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=2 WHERE `ID`=1146;
|
||||
|
||||
-- Quest: The Swarm Grows (Part 3)
|
||||
UPDATE `quest_offer_reward` SET `Emote3`=1, `Emote4`=2 WHERE `ID`=1147;
|
||||
|
||||
-- Quest: Parts of the Swarm
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=1 WHERE `ID`=1148;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=1148;
|
||||
|
||||
-- Quest: Parts of the Swarm (Part 2)
|
||||
DELETE FROM `quest_details` WHERE `ID`=1184;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(1184,1,0,0,0,0,0,0,0,0);
|
||||
|
||||
-- Quest: The Brassbolts Brothers
|
||||
DELETE FROM `quest_details` WHERE `ID`=2769;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(2769,6,1,1,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=5 WHERE `ID`=2769;
|
||||
|
||||
-- Quest: Gahz'rilla
|
||||
DELETE FROM `quest_details` WHERE `ID`=2770;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(2770,1,1,5,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=6, `EmoteOnComplete`=6 WHERE `ID`=2770;
|
||||
|
||||
-- Quest: The Rumormonger
|
||||
DELETE FROM `quest_details` WHERE `ID`=1115;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(1115,1,0,0,0,0,0,0,0,0);
|
||||
|
||||
-- Quest: Dream Dust in the Swamp
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=6, `EmoteOnComplete`=6 WHERE `ID`=1116;
|
||||
|
||||
-- Quest: Rumors for Kravel
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=6 WHERE `ID`=1117;
|
||||
|
||||
-- Quest: Back to Booty Bay
|
||||
DELETE FROM `quest_details` WHERE `ID`=1118;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(1118,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=3 WHERE `ID`=1118;
|
||||
|
||||
-- Quest: Zanzil's Mixture and a Fool's Stout
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=3 WHERE `ID`=1119;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=4 WHERE `ID`=1119;
|
||||
|
||||
-- Quest: Get the Goblins Drunk
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=6 WHERE `ID`=1121;
|
||||
|
||||
-- Quest: Get the Gnomes Drunk
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=6 WHERE `ID`=1120;
|
||||
|
||||
-- Quest: Report Back to Fizzlebub
|
||||
DELETE FROM `quest_details` WHERE `ID`=1122;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(1122,11,1,0,0,0,0,0,0,0);
|
||||
|
||||
-- Quest: Goblin Sponsorship
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=1180;
|
||||
|
||||
-- Quest: Goblin Sponsorship (Part 3)
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=1182;
|
||||
|
||||
-- Quest: The Eighteenth Pilot
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=1186;
|
||||
|
||||
-- Quest: Razzeric's Tweaking
|
||||
DELETE FROM `quest_details` WHERE `ID`=1187;
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=1187;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=4 WHERE `ID`=1187;
|
||||
|
||||
-- Quest: Safety First
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=1188;
|
||||
|
||||
-- Quest: Welcome to the Jungle
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=2, `Emote2`=1 WHERE `ID`=583;
|
||||
|
||||
-- Quest: Raptor Mastery
|
||||
DELETE FROM `quest_details` WHERE `ID`=194;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(194,6,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=21 WHERE `ID`=194;
|
||||
|
||||
-- Quest: Raptor Mastery (Part 2)
|
||||
DELETE FROM `quest_details` WHERE `ID`=195;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(195,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=21 WHERE `ID`=195;
|
||||
|
||||
-- Quest: Raptor Mastery (Part 3)
|
||||
DELETE FROM `quest_details` WHERE `ID`=196;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(196,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=21 WHERE `ID`=196;
|
||||
|
||||
-- Quest: Raptor Mastery (Part 4)
|
||||
DELETE FROM `quest_details` WHERE `ID`=197;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(197,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=6, `EmoteOnIncomplete`=6 WHERE `ID`=197;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=21 WHERE `ID`=197;
|
||||
|
||||
-- Quest: Tiger Mastery
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=21 WHERE `ID`=185;
|
||||
|
||||
-- Quest: Tiger Mastery (Part 2)
|
||||
DELETE FROM `quest_details` WHERE `ID`=186;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(186,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=21 WHERE `ID`=186;
|
||||
|
||||
-- Quest: Tiger Mastery (Part 3)
|
||||
DELETE FROM `quest_details` WHERE `ID`=187;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(187,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=21 WHERE `ID`=187;
|
||||
|
||||
-- Quest: Tiger Mastery (Part 4)
|
||||
DELETE FROM `quest_details` WHERE `ID`=188;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(188,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=6, `EmoteOnIncomplete`=6 WHERE `ID`=188;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=21 WHERE `ID`=188;
|
||||
|
||||
-- Quest: Panther Mastery
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=21 WHERE `ID`=190;
|
||||
|
||||
-- Quest: Panther Mastery (Part 2)
|
||||
DELETE FROM `quest_details` WHERE `ID`=191;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(191,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=21 WHERE `ID`=191;
|
||||
|
||||
-- Quest: Panther Mastery (Part 3)
|
||||
DELETE FROM `quest_details` WHERE `ID`=192;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(192,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=21 WHERE `ID`=192;
|
||||
|
||||
-- Quest: Panther Mastery (Part 4)
|
||||
DELETE FROM `quest_details` WHERE `ID`=193;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(193,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=6, `EmoteOnIncomplete`=6 WHERE `ID`=193;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=21 WHERE `ID`=193;
|
||||
|
||||
-- Quest: Big Game Hunter
|
||||
DELETE FROM `quest_details` WHERE `ID`=208;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(208,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=1 WHERE `ID`=208;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=21, `Emote2`=1, `Emote3`=1, `Emote4`=4 WHERE `ID`=208;
|
||||
|
||||
-- Quest: The Green Hills of Stranglethorn
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=6, `EmoteOnIncomplete`=6 WHERE `ID`=338;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=4 WHERE `ID`=338;
|
||||
|
||||
-- Quest: Mok'thardin's Enchantment
|
||||
DELETE FROM `quest_details` WHERE `ID`=570;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(570,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=6, `EmoteOnIncomplete`=6 WHERE `ID`=570;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=570;
|
||||
|
||||
-- Quest: Mok'thardin's Enchantment (Part 2)
|
||||
DELETE FROM `quest_details` WHERE `ID`=572;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(572,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=6, `EmoteOnIncomplete`=6 WHERE `ID`=572;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=572;
|
||||
|
||||
-- Quest: Mok'thardin's Enchantment (Part 3)
|
||||
DELETE FROM `quest_details` WHERE `ID`=571;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(571,1,1,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=6, `EmoteOnIncomplete`=6 WHERE `ID`=571;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=571;
|
||||
|
||||
-- Quest: Mok'thardin's Enchantment (Part 4)
|
||||
DELETE FROM `quest_details` WHERE `ID`=573;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(573,1,1,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=6, `EmoteOnIncomplete`=6 WHERE `ID`=573;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1, `Emote2`=66 WHERE `ID`=573;
|
||||
|
||||
-- Quest: The Defense of Grom'gol
|
||||
DELETE FROM `quest_details` WHERE `ID`=568;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(568,66,1,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=66 WHERE `ID`=568;
|
||||
|
||||
-- Quest: The Defense of Grom'gol (Part 2)
|
||||
DELETE FROM `quest_details` WHERE `ID`=569;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(569,1,1,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=6 WHERE `ID`=569;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=66 WHERE `ID`=569;
|
||||
|
||||
-- Quest: Grim Message
|
||||
DELETE FROM `quest_details` WHERE `ID`=2932;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(2932,1,5,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=2932;
|
||||
|
||||
-- Quest: Hunt for Yenniku
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=581;
|
||||
|
||||
-- Quest: Bloody Bone Necklaces
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=596;
|
||||
|
||||
-- Quest: The Vile Reef
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=629;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1, `Emote1`=2 WHERE `ID`=629;
|
||||
|
||||
-- Quest: Venture Company Mining
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=600;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=4 WHERE `ID`=600;
|
||||
|
||||
-- Quest: Scaring Shaky
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=25, `EmoteOnIncomplete`=25 WHERE `ID`=606;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=6 WHERE `ID`=606;
|
||||
|
||||
-- Quest: Return to MacKinley
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=607;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=11 WHERE `ID`=607;
|
||||
|
||||
-- Quest: The Bloodsail Buccaneers (Part 1)
|
||||
DELETE FROM `quest_details` WHERE `ID`=595;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(595,1,0,0,0,0,0,0,0,0);
|
||||
|
||||
-- Quest: The Bloodsail Buccaneers (Part 3)
|
||||
DELETE FROM `quest_details` WHERE `ID`=599;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(599,5,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=6 WHERE `ID`=599;
|
||||
|
||||
-- Quest: The Bloodsail Buccaneers (Part 4)
|
||||
DELETE FROM `quest_details` WHERE `ID`=604;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(604,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=6, `EmoteOnIncomplete`=6 WHERE `ID`=604;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=604;
|
||||
|
||||
-- Quest: The Bloodsail Buccaneers (Part 5)
|
||||
DELETE FROM `quest_details` WHERE `ID`=608;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(608,5,1,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=21 WHERE `ID`=608;
|
||||
|
||||
-- Quest: Whiskey Slim's Lost Grog
|
||||
UPDATE `quest_details` SET `Emote1`=1 WHERE `ID`=580;
|
||||
UPDATE `quest_request_items` SET `EmoteOnIncomplete`=5 WHERE `ID`=580;
|
||||
|
||||
-- Quest: Stoley's Debt
|
||||
DELETE FROM `quest_details` WHERE `ID`=2872;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(2872,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=2872;
|
||||
|
||||
-- Quest: Stoley's Shipment
|
||||
DELETE FROM `quest_details` WHERE `ID`=2873;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(2873,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=6, `EmoteOnIncomplete`=6 WHERE `ID`=2873;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=4 WHERE `ID`=2873;
|
||||
|
||||
-- Quest: Deliver to MacKinley
|
||||
DELETE FROM `quest_details` WHERE `ID`=2874;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(2874,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=6 WHERE `ID`=2874;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=2874;
|
||||
|
||||
-- Quest: Keep An Eye Out
|
||||
DELETE FROM `quest_details` WHERE `ID`=576;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(576,6,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=3, `EmoteOnIncomplete`=3 WHERE `ID`=576;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=4 WHERE `ID`=576;
|
||||
|
||||
-- Quest: Up to Snuff
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=6, `EmoteOnIncomplete`=6 WHERE `ID`=587;
|
||||
|
||||
-- Quest: Hostile Takeover
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=5, `EmoteOnIncomplete`=5 WHERE `ID`=213;
|
||||
|
||||
-- Quest: Bloodscalp Ears
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=189;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=21 WHERE `ID`=189;
|
||||
|
||||
-- Quest: Skullsplitter Tusks
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=6, `EmoteOnIncomplete`=6 WHERE `ID`=209;
|
||||
|
||||
-- Quest: Akiris by the Bundle
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=617;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=617;
|
||||
|
||||
-- Quest: Split Bone Necklace
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=598;
|
||||
|
||||
-- Quest: Message in a Bottle
|
||||
DELETE FROM `quest_details` WHERE `ID`=630;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(630,1,0,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=0 WHERE `ID`=630;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=1 WHERE `ID`=630;
|
||||
|
||||
-- Quest: The Captain's Chest
|
||||
DELETE FROM `quest_details` WHERE `ID`=614;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(614,1,5,0,0,0,2000,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=3, `EmoteOnIncomplete`=3 WHERE `ID`=614;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=4 WHERE `ID`=614;
|
||||
|
||||
-- Quest: The Monogrammed Sash
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=6, `EmoteOnIncomplete`=6 WHERE `ID`=8552;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=5, `Emote2`=1 WHERE `ID`=8552;
|
||||
|
||||
-- Quest: The Captain's Cutlass
|
||||
DELETE FROM `quest_details` WHERE `ID`=8553;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(8553,1,1,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=3 WHERE `ID`=8553;
|
||||
|
||||
-- Quest: Facing Negolash
|
||||
DELETE FROM `quest_details` WHERE `ID`=8554;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(8554,1,1,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=6, `EmoteOnIncomplete`=6 WHERE `ID`=8554;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=5, `Emote2`=1, `Emote3`=2 WHERE `ID`=8554;
|
||||
|
||||
-- Quest: Cracking Maury's Foot
|
||||
DELETE FROM `quest_details` WHERE `ID`=613;
|
||||
INSERT INTO `quest_details` (`ID`,`Emote1`,`Emote2`,`Emote3`,`Emote4`,`EmoteDelay1`,`EmoteDelay2`,`EmoteDelay3`,`EmoteDelay4`,`VerifiedBuild`) VALUES
|
||||
(613,5,1,0,0,0,0,0,0,0);
|
||||
UPDATE `quest_request_items` SET `EmoteOnComplete`=6, `EmoteOnIncomplete`=6 WHERE `ID`=613;
|
||||
UPDATE `quest_offer_reward` SET `Emote1`=4 WHERE `ID`=613;
|
||||
*/
|
||||
@@ -0,0 +1,26 @@
|
||||
/*
|
||||
-- Witch Doctor Uzer'i
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`=8115 AND `GroupID` IN (0,1);
|
||||
INSERT INTO `creature_text` (`CreatureID`,`GroupID`,`ID`,`Text`,`Type`,`Language`,`Probability`,`Emote`,`Duration`,`Sound`,`BroadcastTextId`,`TextRange`,`comment`) VALUES
|
||||
(8115,0,0,"%s begins the ritual.",16,0,100,0,0,0,4181,0,"Witch Doctor Uzer'i"),
|
||||
(8115,1,0,"The muisek vessels are now ready, $n.",12,0,100,0,0,0,4180,0,"Witch Doctor Uzer'i");
|
||||
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=8115;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=8115 AND `source_type`=0 AND `id`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=811500 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
|
||||
(8115,0,0,0,20,0,100,0,3122,0,0,0,80,811500,0,0,0,0,0,1,0,0,0,0,0,0,0,"Witch Doctor Uzer'i - On Quest 'Return to Witch Doctor Uzer'i' Finished - Run Script"),
|
||||
(811500,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,"Witch Doctor Uzer'i - On Script - Remove Npc Flag Questgiver+Gossip"),
|
||||
(811500,9,1,0,0,0,100,0,1000,1000,0,0,69,0,0,0,0,0,0,8,0,0,0,-4388.65,274.297,25.4396,0,"Witch Doctor Uzer'i - On Script - Move to Position"),
|
||||
(811500,9,2,0,0,0,100,0,3000,3000,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,"Witch Doctor Uzer'i - On Script - Say Line 0"),
|
||||
(811500,9,3,0,0,0,100,0,0,0,0,0,17,4,0,0,0,0,0,1,0,0,0,0,0,0,0,"Witch Doctor Uzer'i - On Script - Set Emote State 'Cheer'"),
|
||||
(811500,9,4,0,0,0,100,0,6500,6500,0,0,17,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Witch Doctor Uzer'i - On Script - Set Emote State 'None'"),
|
||||
(811500,9,5,0,0,0,100,0,0,0,0,0,69,0,0,0,0,0,0,8,0,0,0,-4391.53,274.703,25.6304,0,"Witch Doctor Uzer'i - On Script - Move to Position"),
|
||||
(811500,9,6,0,0,0,100,0,1500,1500,0,0,66,0,0,0,0,0,0,8,0,0,0,0,0,0,5.59658,"Witch Doctor Uzer'i - On Script - Set Orientation"),
|
||||
(811500,9,7,0,0,0,100,0,500,500,0,0,17,10,0,0,0,0,0,1,0,0,0,0,0,0,0,"Witch Doctor Uzer'i - On Script - Set Emote State 'Dance'"),
|
||||
(811500,9,8,0,0,0,100,0,10000,10000,0,0,17,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Witch Doctor Uzer'i - On Script - Set Emote State 'None'"),
|
||||
(811500,9,9,0,0,0,100,0,0,0,0,0,69,0,0,0,0,0,0,8,0,0,0,-4375.68,269.717,25.4947,0,"Witch Doctor Uzer'i - On Script - Move to Position"),
|
||||
(811500,9,10,0,0,0,100,0,3000,3000,0,0,1,1,0,0,0,0,0,7,0,0,0,0,0,0,0,"Witch Doctor Uzer'i - On Script - Say Line 1"),
|
||||
(811500,9,11,0,0,0,100,0,0,0,0,0,66,0,0,0,0,0,0,8,0,0,0,0,0,0,4.72984,"Witch Doctor Uzer'i - On Script - Set Orientation"),
|
||||
(811500,9,12,0,0,0,100,0,0,0,0,0,82,3,0,0,0,0,0,1,0,0,0,0,0,0,0,"Witch Doctor Uzer'i - On Script - Add Npc Flag Questgiver+Gossip");
|
||||
*/
|
||||
@@ -0,0 +1,2 @@
|
||||
--
|
||||
UPDATE `creature_template` SET `unit_flags2` = `unit_flags2`|0x8000 WHERE `entry`=32930;
|
||||
@@ -0,0 +1,2 @@
|
||||
--
|
||||
UPDATE `creature_template` SET `unit_flags2` = `unit_flags2`|0x8000 WHERE `entry`=33909;
|
||||
@@ -0,0 +1,10 @@
|
||||
/*
|
||||
-- Witch Doctor Uzer'i --> Add Gossip Option
|
||||
DELETE FROM `gossip_menu` WHERE `MenuID`=1289;
|
||||
INSERT INTO `gossip_menu` (`MenuID`, `TextID`, `VerifiedBuild`) VALUES
|
||||
(1289,1924,0);
|
||||
|
||||
DELETE FROM `gossip_menu_option` WHERE `MenuID`=1141;
|
||||
INSERT INTO `gossip_menu_option` (`MenuID`, `OptionID`, `OptionIcon`, `OptionText`, `OptionBroadcastTextID`, `OptionType`, `OptionNpcFlag`, `ActionMenuID`, `ActionPoiID`, `BoxCoded`, `BoxMoney`, `BoxText`, `BoxBroadcastTextID`, `VerifiedBuild`) VALUES
|
||||
(1141,0,0,"Tell me more about muisek.",4419,1,1,1289,0,0,0,"",0,0);
|
||||
*/
|
||||
@@ -0,0 +1,2 @@
|
||||
-- Ag'tor Bloodfist --> Fix Gossip Text
|
||||
-- UPDATE `gossip_menu` SET `TextID`=2033 WHERE `MenuID`=1401;
|
||||
@@ -0,0 +1,128 @@
|
||||
/*
|
||||
-- Zukk'ash Stinger
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=5244 AND `source_type`=0 AND `id` IN (1,2);
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `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
|
||||
(5244,0,1,0,2,0,100,1,0,15,0,0,11,17170,0,0,0,0,0,2,0,0,0,0,0,0,0,"Zukk'ash Stinger - Between 0-15% Health - Cast Fatal Sting (No Repeat)"),
|
||||
(5244,0,2,0,2,0,100,1,0,15,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Zukk'ash Stinger - Between 0-15% Health - Say Line 0 (No Repeat)");
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`=5244;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(5244,0,0,"%s prepares to sting its victim as a last desperate move!",16,0,100,0,0,0,3713,0,"Zukk'ash Stinger");
|
||||
|
||||
-- Krellack
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=14476 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
|
||||
(14476,0,0,0,2,0,100,0,0,15,8000,12000,11,17170,0,0,0,0,0,2,0,0,0,0,0,0,0,"Krellack - Between 0-15% Health - Cast Fatal Sting");
|
||||
|
||||
-- Silvermane Howler
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=2925 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`, `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
|
||||
(2925,0,2,0,2,0,100,1,0,50,0,0,39,30,1,0,0,0,0,1,0,0,0,0,0,0,0,"Silvermane Howler - Between 0-50% Health - Call For Help (No Repeat)");
|
||||
|
||||
-- Vicious Owlbeast
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=2927 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
|
||||
(2927,0,0,0,12,0,100,0,0,20,14000,18000,11,7938,0,0,0,0,0,2,0,0,0,0,0,0,0,"Vicious Owlbeast - Target Between 0-20% Health - Cast Fatal Bite");
|
||||
|
||||
-- Savage Owlbeast
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=2929;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=2929 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
|
||||
(2929,0,0,0,12,0,100,0,0,20,14000,18000,11,7938,0,0,0,0,0,2,0,0,0,0,0,0,0,"Savage Owlbeast - Target Between 0-20% Health - Cast Fatal Bite");
|
||||
|
||||
-- Jalinde Summerdrake
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=8214;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=8214 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
|
||||
(8214,0,0,0,0,0,100,0,0,0,2300,3900,11,6660,64,0,0,0,0,2,0,0,0,0,0,0,0,"Jalinde Summerdrake - In Combat CMC - Cast Shoot"),
|
||||
(8214,0,1,0,9,0,100,0,5,30,9000,13000,11,15495,0,0,0,0,0,5,0,0,0,0,0,0,0,"Jalinde Summerdrake - Within 5-30 Range - Cast Explosive Shot"),
|
||||
(8214,0,2,0,0,0,100,0,3000,5000,15000,21000,11,8806,32,0,0,0,0,5,0,0,0,0,0,0,0,"Jalinde Summerdrake - In Combat - Cast Poisoned Shot");
|
||||
|
||||
-- Highvale Ranger
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=2694 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`, `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
|
||||
(2694,0,1,0,2,0,100,1,0,15,0,0,25,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Highvale Ranger - Between 0-15% Health - Flee For Assist (No Repeat)");
|
||||
|
||||
-- Witherbark Zealot
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=2650 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
|
||||
(2650,0,0,0,2,0,100,1,0,50,0,0,11,8599,0,0,0,0,0,1,0,0,0,0,0,0,0,"Witherbark Zealot - Between 0-50% Health - Cast Enrage (No Repeat)"),
|
||||
(2650,0,1,0,2,0,100,1,0,50,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Witherbark Zealot - Between 0-50% Health - Say Line 0 (No Repeat)");
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`=2650;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(2650,0,0,"%s becomes enraged!",16,0,100,0,0,0,10677,0,"Witherbark Zealot");
|
||||
|
||||
-- Razorbeak Skylord
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=2659;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=2659 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
|
||||
(2659,0,0,0,0,0,100,0,8000,12000,12000,16000,11,11019,0,0,0,0,0,1,0,0,0,0,0,0,0,"Razorbeak Skylord - In Combat - Cast Wing Flap"),
|
||||
(2659,0,1,0,9,0,100,0,0,5,15000,19000,11,3147,0,0,0,0,0,2,0,0,0,0,0,0,0,"Razorbeak Skylord - Within 0-5 Range - Cast Rend Flesh");
|
||||
|
||||
-- Grimungous
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=8215;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=8215 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
|
||||
(8215,0,0,0,0,0,100,0,6000,9000,9000,13000,11,5568,0,0,0,0,0,1,0,0,0,0,0,0,0,"Grimungous - In Combat - Cast Trample"),
|
||||
(8215,0,1,0,9,0,100,0,0,5,14000,20000,11,11876,0,0,0,0,0,1,0,0,0,0,0,0,0,"Grimungous - Within 0-5 Range - Cast War Stomp");
|
||||
|
||||
-- Shadra
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=2707;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=2707 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
|
||||
(2707,0,0,0,25,0,100,0,0,0,0,0,11,13299,0,0,0,0,0,1,0,0,0,0,0,0,0,"Shadra - On Reset - Cast Poison Proc"),
|
||||
(2707,0,1,0,25,0,100,0,0,0,0,0,11,8601,0,0,0,0,0,1,0,0,0,0,0,0,0,"Shadra - On Reset - Cast Slowing Poison"),
|
||||
(2707,0,2,0,9,0,100,0,0,10,9000,10000,11,28991,0,0,0,0,0,5,0,0,0,0,0,0,0,"Shadra - Within 0-10 Range - Cast Web");
|
||||
|
||||
-- Fix bytes2 for some creatures
|
||||
UPDATE `creature_template_addon` SET `bytes2`=2 WHERE `entry` IN (2693,2691);
|
||||
|
||||
-- Fix wrong spawn for Elder Gray Bear
|
||||
UPDATE `creature` SET `position_x`=-598.9, `position_y`=-1604.41, `position_z`=61.6481 WHERE `guid`=14873 AND `id`=2356;
|
||||
|
||||
-- Add random movement for some creatures
|
||||
UPDATE `creature` SET `spawndist`=5, `MovementType`=1 WHERE `guid` IN (69119,69117);
|
||||
|
||||
-- Pathing for Witherheart the Stalker
|
||||
UPDATE `creature` SET `MovementType`=2 WHERE `guid`=85478;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=85478;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `auras`) VALUES
|
||||
(85478,854780,0,0,1,0,"");
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id`=854780;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`, `action`, `action_chance`, `wpguid`) VALUES
|
||||
(854780,1,-336.731,-2833.29,77.0363,0,0,0,0,100,0),
|
||||
(854780,2,-334.463,-2814.89,80.383,0,0,0,0,100,0),
|
||||
(854780,3,-348.051,-2805.34,80.0625,0,0,0,0,100,0),
|
||||
(854780,4,-364.007,-2805.31,76.9893,0,0,0,0,100,0),
|
||||
(854780,5,-376.958,-2796.97,77.4724,0,0,0,0,100,0),
|
||||
(854780,6,-394.72,-2805.83,77.8546,0,0,0,0,100,0),
|
||||
(854780,7,-390.019,-2822.94,74.1284,0,0,0,0,100,0),
|
||||
(854780,8,-389.906,-2837.06,74.2824,0,0,0,0,100,0),
|
||||
(854780,9,-402.354,-2843.73,76.9459,0,0,0,0,100,0),
|
||||
(854780,10,-416.467,-2844.41,79.3868,0,0,0,0,100,0),
|
||||
(854780,11,-421.565,-2852.64,79.3284,0,0,0,0,100,0),
|
||||
(854780,12,-421.623,-2874.12,83.6468,0,0,0,0,100,0),
|
||||
(854780,13,-428.279,-2885.91,84.8522,0,0,0,0,100,0),
|
||||
(854780,14,-417.871,-2899.71,83.2011,0,0,0,0,100,0),
|
||||
(854780,15,-421.714,-2912.49,82.035,0,0,0,0,100,0),
|
||||
(854780,16,-409.008,-2915.46,80.4308,0,0,0,0,100,0),
|
||||
(854780,17,-398.058,-2912.56,79.2019,0,0,0,0,100,0),
|
||||
(854780,18,-388.929,-2926.26,77.9069,0,0,0,0,100,0),
|
||||
(854780,19,-376.519,-2927.69,75.9121,0,0,0,0,100,0),
|
||||
(854780,20,-372.09,-2931.3,75.3061,0,0,0,0,100,0),
|
||||
(854780,21,-354.46,-2929.29,75.2535,0,0,0,0,100,0),
|
||||
(854780,22,-339.972,-2930.95,76.0707,0,0,0,0,100,0),
|
||||
(854780,23,-326.085,-2943.36,78.7858,0,0,0,0,100,0),
|
||||
(854780,24,-313.89,-2944.59,80.8206,0,0,0,0,100,0),
|
||||
(854780,25,-305.916,-2935.44,82.1426,0,0,0,0,100,0),
|
||||
(854780,26,-307.534,-2917.76,80.3467,0,0,0,0,100,0),
|
||||
(854780,27,-298.165,-2903.94,81.5407,0,0,0,0,100,0),
|
||||
(854780,28,-301.296,-2890.28,81.1735,0,0,0,0,100,0),
|
||||
(854780,29,-310.921,-2881.96,79.6081,0,0,0,0,100,0),
|
||||
(854780,30,-313.692,-2872.43,80.082,0,0,0,0,100,0),
|
||||
(854780,31,-312.576,-2859.04,80.4389,0,0,0,0,100,0),
|
||||
(854780,32,-320.584,-2852.24,78.3489,0,0,0,0,100,0),
|
||||
(854780,33,-336.88,-2851.17,77.2118,0,0,0,0,100,0);
|
||||
*/
|
||||
@@ -0,0 +1,49 @@
|
||||
--
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (-82874,-60777,-60792, -82906, -82903, -52640) AND `source_type`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (16318) 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`, `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
|
||||
(16318, 0, 3, 0, 25, 0, 100, 0, 0, 0, 0, 0, 11, 28729, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,"Deatholme Darkmage - On reset - Cast Ribbon of Souls"),
|
||||
(-82906, 0, 0, 0, 25, 0, 100, 0, 0, 0, 0, 0, 11, 28729, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,"Deatholme Necromancer - On reset - Cast Ribbon of Souls"),
|
||||
(-82906, 0, 1, 0, 0, 0, 100, 0, 0, 0, 3400, 4800, 11, 9613, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Deatholme Necromancer - In Combat CMC - Cast 'Shadow Bolt'"),
|
||||
(-82906, 0, 2, 0, 2, 0, 100, 0, 0, 20, 8000, 12000, 11, 29067, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Deatholme Necromancer - Between 0-20% Health - Cast 'Slave Drain'"),
|
||||
(-82906, 0, 3, 0, 2, 0, 100, 1, 0, 15, 0, 0, 25, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Deatholme Necromancer - Between 0-15% Health - Flee For Assist (No Repeat)"),
|
||||
(-82903, 0, 0, 0, 25, 0, 100, 0, 0, 0, 0, 0, 11, 28729, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,"Deatholme Necromancer - On reset - Cast Ribbon of Souls"),
|
||||
(-82903, 0, 1, 0, 0, 0, 100, 0, 0, 0, 3400, 4800, 11, 9613, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Deatholme Necromancer - In Combat CMC - Cast 'Shadow Bolt'"),
|
||||
(-82903, 0, 2, 0, 2, 0, 100, 0, 0, 20, 8000, 12000, 11, 29067, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Deatholme Necromancer - Between 0-20% Health - Cast 'Slave Drain'"),
|
||||
(-82903, 0, 3, 0, 2, 0, 100, 1, 0, 15, 0, 0, 25, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Deatholme Necromancer - Between 0-15% Health - Flee For Assist (No Repeat)"),
|
||||
(-82874, 0, 0, 0, 25, 0, 100, 0, 0, 0, 0, 0, 11, 28729, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,"Deatholme Necromancer - On reset - Cast Ribbon of Souls"),
|
||||
(-82874, 0, 1, 0, 0, 0, 100, 0, 0, 0, 3400, 4800, 11, 9613, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Deatholme Necromancer - In Combat CMC - Cast 'Shadow Bolt'"),
|
||||
(-82874, 0, 2, 0, 2, 0, 100, 0, 0, 20, 8000, 12000, 11, 29067, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Deatholme Necromancer - Between 0-20% Health - Cast 'Slave Drain'"),
|
||||
(-82874, 0, 3, 0, 2, 0, 100, 1, 0, 15, 0, 0, 25, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Deatholme Necromancer - Between 0-15% Health - Flee For Assist (No Repeat)"),
|
||||
(-52640, 0, 0, 0, 25, 0, 100, 0, 0, 0, 0, 0, 11, 28729, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,"Deatholme Necromancer - On reset - Cast Ribbon of Souls"),
|
||||
(-52640, 0, 1, 0, 0, 0, 100, 0, 0, 0, 3400, 4800, 11, 9613, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Deatholme Necromancer - In Combat CMC - Cast 'Shadow Bolt'"),
|
||||
(-52640, 0, 2, 0, 2, 0, 100, 0, 0, 20, 8000, 12000, 11, 29067, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Deatholme Necromancer - Between 0-20% Health - Cast 'Slave Drain'"),
|
||||
(-52640, 0, 3, 0, 2, 0, 100, 1, 0, 15, 0, 0, 25, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Deatholme Necromancer - Between 0-15% Health - Flee For Assist (No Repeat)"),
|
||||
(-60777, 0, 0, 0, 25, 0, 100, 0, 0, 0, 0, 0, 11, 28729, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,"Deatholme Necromancer - On reset - Cast Ribbon of Souls"),
|
||||
(-60777, 0, 1, 0, 0, 0, 100, 0, 0, 0, 3400, 4800, 11, 9613, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Deatholme Necromancer - In Combat CMC - Cast 'Shadow Bolt'"),
|
||||
(-60777, 0, 2, 0, 2, 0, 100, 0, 0, 20, 8000, 12000, 11, 29067, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Deatholme Necromancer - Between 0-20% Health - Cast 'Slave Drain'"),
|
||||
(-60777, 0, 3, 0, 2, 0, 100, 1, 0, 15, 0, 0, 25, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Deatholme Necromancer - Between 0-15% Health - Flee For Assist (No Repeat)"),
|
||||
(-60792, 0, 0, 0, 25, 0, 100, 0, 0, 0, 0, 0, 11, 28729, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,"Deatholme Necromancer - On reset - Cast Ribbon of Souls"),
|
||||
(-60792, 0, 1, 0, 0, 0, 100, 0, 0, 0, 3400, 4800, 11, 9613, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Deatholme Necromancer - In Combat CMC - Cast 'Shadow Bolt'"),
|
||||
(-60792, 0, 2, 0, 2, 0, 100, 0, 0, 20, 8000, 12000, 11, 29067, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Deatholme Necromancer - Between 0-20% Health - Cast 'Slave Drain'"),
|
||||
(-60792, 0, 3, 0, 2, 0, 100, 1, 0, 15, 0, 0, 25, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Deatholme Necromancer - Between 0-15% Health - Flee For Assist (No Repeat)");
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry` IN (28731);
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(13,1,28731,0,0, 31,0,3,10415,0,0,0,'','Ribbon of Souls');
|
||||
|
||||
UPDATE `creature` SET `position_x`=6317.244141, `position_y`=-6241.477051 WHERE `guid`=60792 AND `id`=16317;
|
||||
UPDATE `creature` SET `position_x`=6302.362793, `position_y`=-6241.597168 WHERE `guid`=60777 AND `id`=16317;
|
||||
UPDATE `creature` SET `position_x`=6302.773438, `position_y`=-6255.696289 WHERE `guid`=52640 AND `id`=16317;
|
||||
UPDATE `creature` SET `position_x`=6311.409668, `position_y`=-6472.390625 WHERE `guid`=82906 AND `id`=16317;
|
||||
UPDATE `creature` SET `position_x`=6297.720703, `position_y`=-6471.333008 WHERE `guid`=82903 AND `id`=16317;
|
||||
UPDATE `creature` SET `position_x`=6298.272949, `position_y`=-6457.236328 WHERE `guid`=82874 AND `id`=16317;
|
||||
UPDATE `creature` SET `position_x`=7220.31, `position_y`=-6406.11, `position_z`=56.1661, `orientation`=4.77281, spawndist=0, MovementType=0 WHERE `guid`=82656 AND `id`=16318;
|
||||
UPDATE `creature` SET `position_x`=7216.75, `position_y`=-6415.47, `position_z`=59.2486, `orientation`=0.10472, spawndist=0, MovementType=0 WHERE `guid`=82657 AND `id`=16318;
|
||||
UPDATE `creature` SET `position_x`=7229.53, `position_y`=-6415.04, `position_z`=56.1660, `orientation`=3.16177, spawndist=0, MovementType=0 WHERE `guid`=82658 AND `id`=16318;
|
||||
UPDATE `creature` SET `position_x`=7220.87, `position_y`=-6424.45, `position_z`=56.1659, `orientation`=1.64359, spawndist=0, MovementType=0 WHERE `guid`=82665 AND `id`=16318;
|
||||
UPDATE `creature` SET `position_x`=7161.33, `position_y`=-6612.54, `position_z`=60.6584, `orientation`=6.04004, spawndist=0, MovementType=0 WHERE `guid`=82741 AND `id`=16318;
|
||||
UPDATE `creature` SET `position_x`=7171.98, `position_y`=-6606.72, `position_z`=60.6584, `orientation`=4.43751, spawndist=0, MovementType=0 WHERE `guid`=82742 AND `id`=16318;
|
||||
UPDATE `creature` SET `position_x`=7173.00, `position_y`=-6615.81, `position_z`=63.7428, `orientation`=2.95281, spawndist=0, MovementType=0 WHERE `guid`=82743 AND `id`=16318;
|
||||
UPDATE `creature` SET `position_x`=7167.75, `position_y`=-6623.78, `position_z`=60.6587, `orientation`=1.37635, spawndist=0, MovementType=0 WHERE `guid`=82770 AND `id`=16318;
|
||||
UPDATE `creature` SET `position_x`=7207.989258, `position_y`=-6662.287109, `position_z`=48.618168 WHERE `guid`=82767;
|
||||
@@ -0,0 +1,381 @@
|
||||
SET @GUID := 84493;
|
||||
SET @POOL := 383;
|
||||
|
||||
-- Update existing spawns
|
||||
UPDATE `creature` SET `spawndist`=0, `MovementType`=0 WHERE `guid` IN (82665, 82656);
|
||||
UPDATE `creature` SET `spawndist`=0, `MovementType`=2 WHERE `guid` IN (82863, 82918, 82866, 82817, 82890, 82878);
|
||||
UPDATE `creature` SET `spawndist`=5, `MovementType`=1 WHERE `guid` IN (82824, 82820, 82926, 82860, 82930, 82857, 82911, 82885, 82858, 82828);
|
||||
UPDATE `creature` SET `orientation`=4.7037 WHERE `guid`=82656;
|
||||
UPDATE `creature` SET `position_x`=6313.952, `position_y`=-6456.592, `position_z`=86.010, `orientation`=0.7696 WHERE `guid`=82866;
|
||||
UPDATE `creature` SET `position_x`=6465.840, `position_y`=-6433.699, `position_z`=50.330, `orientation`=1.7237 WHERE `guid`=39681;
|
||||
UPDATE `creature` SET `position_x`=6632.847, `position_y`=-6334.324, `position_z`=29.980, `orientation`=3.1317 WHERE `guid`=82821;
|
||||
UPDATE `creature` SET `position_x`=6634.258, `position_y`=-6321.420, `position_z`=29.694, `orientation`=3.0571 WHERE `guid`=82872;
|
||||
UPDATE `creature` SET `position_x`=6648.481, `position_y`=-6379.550, `position_z`=32.274, `orientation`=3.4340 WHERE `guid`=82851;
|
||||
UPDATE `creature` SET `position_x`=6645.707, `position_y`=-6293.447, `position_z`=29.268, `orientation`=3.1262 WHERE `guid`=82914;
|
||||
UPDATE `creature` SET `position_x`=6427.863, `position_y`=-6653.198, `position_z`=108.56, `orientation`=1.0551 WHERE `guid`=82858;
|
||||
UPDATE `creature` SET `position_x`=6611.074, `position_y`=-6442.624, `position_z`=29.296, `orientation`=1.5043 WHERE `guid`=82817;
|
||||
UPDATE `creature` SET `position_x`=6454.949, `position_y`=-6647.249, `position_z`=108.56, `orientation`=2.6108 WHERE `guid`=82857;
|
||||
UPDATE `creature` SET `position_x`=6521.936, `position_y`=-6349.830, `position_z`=44.203, `orientation`=3.7672 WHERE `guid`=82923;
|
||||
UPDATE `creature` SET `position_x`=6420.697, `position_y`=-6293.954, `position_z`=61.144, `orientation`=3.4361 WHERE `guid`=82868;
|
||||
UPDATE `creature` SET `position_x`=6296.796, `position_y`=-6303.080, `position_z`=79.898, `orientation`=4.7771 WHERE `guid`=82867;
|
||||
UPDATE `creature` SET `position_x`=6267.040, `position_y`=-6292.856, `position_z`=80.604, `orientation`=0.5556 WHERE `guid`=82910;
|
||||
UPDATE `creature` SET `position_x`=6272.511, `position_y`=-6257.678, `position_z`=80.570, `orientation`=1.4195 WHERE `guid`=82852;
|
||||
UPDATE `creature` SET `position_x`=6307.016, `position_y`=-6213.658, `position_z`=80.417, `orientation`=6.1398 WHERE `guid`=82850;
|
||||
UPDATE `creature` SET `position_x`=6360.072, `position_y`=-6227.810, `position_z`=72.586, `orientation`=2.1303 WHERE `guid`=82909;
|
||||
UPDATE `creature` SET `position_x`=6398.821, `position_y`=-6243.595, `position_z`=68.761, `orientation`=2.2183 WHERE `guid`=82900;
|
||||
UPDATE `creature` SET `position_x`=6395.926, `position_y`=-6213.756, `position_z`=71.929, `orientation`=2.2285 WHERE `guid`=82887;
|
||||
UPDATE `creature` SET `position_x`=6422.431, `position_y`=-6229.785, `position_z`=66.734, `orientation`=1.9065 WHERE `guid`=82888;
|
||||
UPDATE `creature` SET `position_x`=6629.632, `position_y`=-6246.243, `position_z`=36.022, `orientation`=3.6383 WHERE `guid`=82892;
|
||||
UPDATE `creature` SET `position_x`=6554.866, `position_y`=-6290.081, `position_z`=44.863, `orientation`=1.1604 WHERE `guid`=82884;
|
||||
UPDATE `creature` SET `position_x`=6608.253, `position_y`=-6260.457, `position_z`=39.272, `orientation`=3.8926 WHERE `guid`=82926;
|
||||
UPDATE `creature` SET `position_x`=6526.996, `position_y`=-6298.201, `position_z`=46.122, `orientation`=1.4706 WHERE `guid`=82860;
|
||||
UPDATE `creature` SET `position_x`=6580.820, `position_y`=-6316.210, `position_z`=35.502, `orientation`=6.1693 WHERE `guid`=82930;
|
||||
UPDATE `creature` SET `position_x`=6509.947, `position_y`=-6259.630, `position_z`=52.218, `orientation`=2.8620 WHERE `guid`=82890;
|
||||
UPDATE `creature` SET `position_x`=6509.947, `position_y`=-6259.630, `position_z`=52.218, `orientation`=2.8620 WHERE `guid`=82878;
|
||||
|
||||
-- Add 7 Deatholme Necromancers, 4 Nerubis Centurions and one Wailer
|
||||
-- Delete unnecessary spawns
|
||||
DELETE FROM `creature` WHERE `guid` IN (82827, 82822, 82826, 82919, 82841, 82916, 82864, 82932, @GUID, @GUID + 1, @GUID + 2, @GUID + 3);
|
||||
DELETE FROM `creature_addon` WHERE `guid` IN (82841, 82916);
|
||||
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
|
||||
(@GUID , 16317, 530, 0, 0, 1, 1, 0, 1, 6639.734, -6308.425, 29.309, 3.5275, 300, 5, 0, 377, 408, 1, 0, 0, 0, '', 0),
|
||||
(@GUID + 1, 16317, 530, 0, 0, 0, 0, 1, 1, 6300.696, -6240.295, 77.814, 5.5458, 300, 0, 0, 377, 408, 0, 0, 0, 0, '', 0),
|
||||
(@GUID + 2, 16317, 530, 0, 0, 0, 0, 1, 1, 6318.298, -6239.599, 77.814, 3.9632, 300, 0, 0, 377, 408, 0, 0, 0, 0, '', 0),
|
||||
(@GUID + 3, 16321, 530, 0, 0, 0, 0, 0, 0, 6313.952, -6456.592, 86.010, 0.7696, 300, 0, 0, 417, 0, 2, 0, 0, 0, '', 0),
|
||||
(82827, 16317, 530, 0, 0, 0, 0, 1, 1, 6301.783, -6257.833, 77.814, 0.8059, 300, 0, 0, 377, 408, 0, 0, 0, 0, '', 0),
|
||||
(82822, 16317, 530, 0, 0, 1, 1, 0, 1, 6487.521, -6220.514, 52.843, 5.2114, 300, 3, 0, 377, 408, 1, 0, 0, 0, '', 0),
|
||||
(82826, 16317, 530, 0, 0, 1, 1, 0, 1, 6503.702, -6231.611, 53.441, 4.9601, 300, 3, 0, 377, 408, 1, 0, 0, 0, '', 0),
|
||||
(82919, 16317, 530, 0, 0, 1, 1, 0, 1, 6479.111, -6289.687, 48.879, 3.1081, 300, 0, 0, 377, 408, 0, 0, 0, 0, '', 0),
|
||||
(82841, 16319, 530, 0, 0, 1, 1, 0, 0, 6455.776, -6221.851, 63.585, 4.6828, 300, 5, 0, 417, 0, 1, 0, 0, 0, '', 0),
|
||||
(82916, 16319, 530, 0, 0, 1, 1, 0, 0, 6553.187, -6229.246, 54.462, 4.8863, 300, 5, 0, 417, 0, 1, 0, 0, 0, '', 0),
|
||||
(82864, 16319, 530, 0, 0, 1, 1, 0, 0, 6587.955, -6204.042, 52.907, 4.1519, 300, 5, 0, 417, 0, 1, 0, 0, 0, '', 0),
|
||||
(82932, 16319, 530, 0, 0, 1, 1, 0, 0, 6591.726, -6242.592, 45.860, 4.5061, 300, 5, 0, 417, 0, 1, 0, 0, 0, '', 0);
|
||||
|
||||
-- Add pool to either spawn Eye of Dar'Khan or Wailer
|
||||
DELETE FROM `pool_template` WHERE `entry`IN (@POOL, @POOL + 1);
|
||||
INSERT INTO `pool_template` (`entry`, `max_limit`, `description`) VALUES
|
||||
(@POOL, 1, "Eye of Dar'Khan/Wailer 3"),
|
||||
(@POOL + 1, 1, "Eye of Dar'Khan/Wailer 4");
|
||||
|
||||
DELETE FROM `pool_creature` WHERE `guid` IN (82890, 82878, 82866, @GUID + 3);
|
||||
INSERT INTO `pool_creature` (`guid`, `pool_entry`, `chance`, `description`) VALUES
|
||||
(82890, @POOL, 0, "Wailer Spawn 3"),
|
||||
(82878, @POOL, 0, "Eye of Dar'Khan Spawn 3"),
|
||||
(82866, @POOL + 1, 0, "Eye of Dar'Khan Spawn 4"),
|
||||
(@GUID + 3, @POOL + 1, 0, "Wailer Spawn 4");
|
||||
|
||||
-- Add waypoints
|
||||
SET @PATHID_1 := 828170;
|
||||
SET @PATHID_2 := 828630;
|
||||
SET @PATHID_3 := 828660;
|
||||
SET @PATHID_4 := 828780;
|
||||
SET @PATHID_5 := 828900;
|
||||
SET @PATHID_6 := 829180;
|
||||
SET @PATHID_7 := (@GUID + 3) * 10;
|
||||
|
||||
DELETE FROM `creature_addon` WHERE `guid` IN (82817, 82863, 82866, 82878, 82890, 82918, 82919, @GUID + 3);
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `auras`) VALUES
|
||||
(82817, @PATHID_1, 0, 0, 4097, 0, ''),
|
||||
(82863, @PATHID_2, 0, 0, 4097, 0, ''),
|
||||
(82866, @PATHID_3, 0, 0, 4097, 0, ''),
|
||||
(82878, @PATHID_4, 0, 0, 4097, 0, ''),
|
||||
(82890, @PATHID_5, 0, 0, 4097, 0, ''),
|
||||
(82918, @PATHID_6, 0, 0, 4097, 0, ''),
|
||||
(@GUID + 3, @PATHID_7, 0, 0, 4097, 0, ''),
|
||||
(82919, 0, 0, 8, 4097, 0, '');
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id` IN (@PATHID_1, @PATHID_2, @PATHID_3, @PATHID_4, @PATHID_5, @PATHID_6, @PATHID_7);
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`, `action`, `action_chance`, `wpguid`) VALUES
|
||||
(@PATHID_1, 1 , 6611.96, -6425.78, 29.015, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_1, 2 , 6612.37, -6403.64, 29.795, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_1, 3 , 6612.751, -6373.300, 31.285, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_1, 4 , 6607.327, -6340.160, 32.998, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_1, 5 , 6633.636, -6327.645, 29.859, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_1, 6 , 6662.058, -6331.109, 20.892, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_1, 7 , 6660.822, -6345.714, 15.346, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_1, 8 , 6642.960, -6344.136, 8.9457, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_1, 9 , 6660.822, -6345.714, 15.346, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_1, 10, 6662.058, -6331.109, 20.892, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_1, 11, 6633.636, -6327.645, 29.859, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_1, 12, 6607.327, -6340.160, 32.998, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_1, 13, 6612.751, -6373.300, 31.285, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_1, 14, 6612.133, -6403.323, 29.817, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_1, 15, 6611.742, -6424.312, 29.100, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_1, 16, 6611.074, -6442.624, 29.296, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_1, 17, 6638.616, -6450.047, 29.260, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_1, 18, 6682.422, -6468.475, 29.258, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_1, 19, 6638.616, -6450.047, 29.260, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_1, 20, 6611.074, -6442.624, 29.296, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 1 , 6377.080, -6418.936, 69.218, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 2 , 6398.718, -6453.004, 65.142, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 3 , 6427.659, -6481.115, 58.952, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 4 , 6421.906, -6506.947, 64.563, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 5 , 6401.373, -6516.191, 72.359, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 6 , 6414.936, -6552.770, 89.385, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 7 , 6429.261, -6587.137, 106.91, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 8 , 6433.487, -6608.261, 112.12, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 9 , 6440.302, -6609.170, 111.31, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 10, 6443.041, -6612.974, 109.86, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 11, 6440.646, -6616.693, 108.16, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 12, 6435.418, -6617.644, 107.43, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 13, 6437.832, -6631.190, 107.43, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 14, 6443.814, -6630.771, 107.43, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 15, 6445.875, -6637.555, 107.43, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 16, 6433.196, -6640.240, 107.43, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 17, 6431.258, -6632.428, 107.43, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 18, 6437.832, -6631.190, 107.43, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 19, 6435.418, -6617.644, 107.43, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 20, 6429.785, -6618.460, 108.16, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 21, 6426.261, -6614.584, 110.20, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 22, 6428.508, -6610.895, 111.86, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 23, 6433.487, -6608.261, 112.12, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 24, 6429.261, -6587.137, 106.91, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 25, 6414.936, -6552.770, 89.385, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 26, 6401.373, -6516.191, 72.359, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 27, 6421.906, -6506.947, 64.563, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 28, 6427.659, -6481.115, 58.952, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 29, 6398.718, -6453.004, 65.142, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 30, 6377.080, -6418.936, 69.218, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 31, 6363.169, -6422.522, 72.021, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 32, 6352.583, -6418.915, 74.820, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 33, 6343.597, -6402.317, 76.704, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 34, 6341.153, -6368.378, 78.169, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 35, 6314.771, -6365.563, 82.710, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 36, 6312.752, -6371.422, 82.168, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 37, 6308.715, -6372.937, 80.597, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 38, 6305.466, -6369.537, 78.590, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 39, 6305.905, -6364.626, 78.025, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 40, 6292.153, -6362.942, 78.020, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 41, 6291.132, -6369.037, 78.018, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 42, 6283.469, -6368.633, 78.018, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 43, 6284.680, -6356.278, 78.018, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 44, 6292.802, -6356.765, 78.018, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 45, 6292.153, -6362.942, 78.020, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 46, 6305.905, -6364.626, 78.025, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 47, 6306.756, -6359.130, 78.733, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 48, 6309.865, -6356.616, 80.466, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 49, 6314.133, -6359.876, 82.436, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 50, 6314.771, -6365.563, 82.710, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 51, 6341.153, -6368.378, 78.169, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 52, 6333.770, -6348.563, 76.818, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 53, 6333.767, -6327.803, 74.552, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 54, 6338.590, -6314.027, 74.010, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 55, 6357.218, -6299.626, 70.514, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 56, 6375.088, -6303.510, 67.412, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 57, 6372.027, -6331.164, 67.791, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 58, 6372.056, -6370.585, 68.288, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_2, 59, 6373.919, -6399.319, 68.697, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 1 , 6330.639, -6441.106, 86.010, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 2 , 6352.536, -6421.323, 74.822, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 3 , 6343.770, -6402.389, 76.696, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 4 , 6341.206, -6368.728, 78.164, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 5 , 6324.463, -6366.408, 82.699, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 6 , 6313.788, -6365.322, 82.710, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 7 , 6314.150, -6359.148, 82.244, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 8 , 6311.043, -6356.015, 80.682, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 9 , 6306.164, -6359.391, 78.562, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 10, 6305.445, -6364.378, 78.025, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 11, 6291.851, -6362.960, 78.020, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 12, 6292.496, -6356.788, 78.018, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 13, 6285.575, -6355.713, 78.018, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 14, 6283.279, -6367.917, 78.018, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 15, 6290.895, -6368.846, 78.018, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 16, 6291.851, -6362.960, 78.020, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 17, 6305.445, -6364.378, 78.025, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 18, 6305.421, -6370.855, 79.300, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 19, 6309.991, -6373.575, 80.873, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 20, 6313.490, -6370.015, 82.593, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 21, 6313.788, -6365.322, 82.710, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 22, 6324.463, -6366.408, 82.699, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 23, 6341.206, -6368.728, 78.164, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 24, 6334.457, -6350.810, 77.142, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 25, 6334.189, -6326.300, 74.539, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 26, 6342.840, -6311.019, 73.289, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 27, 6358.172, -6298.210, 70.389, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 28, 6347.737, -6282.332, 73.269, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 29, 6332.741, -6269.205, 80.814, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 30, 6316.709, -6254.649, 80.813, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 31, 6332.741, -6269.205, 80.814, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 32, 6347.737, -6282.332, 73.269, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 33, 6358.172, -6298.210, 70.389, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 34, 6342.840, -6311.019, 73.289, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 35, 6334.189, -6326.300, 74.539, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 36, 6334.457, -6350.810, 77.142, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 37, 6341.206, -6368.728, 78.164, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 38, 6324.463, -6366.408, 82.699, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 39, 6313.788, -6365.322, 82.710, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 40, 6313.490, -6370.015, 82.593, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 41, 6309.991, -6373.575, 80.873, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 42, 6305.421, -6370.855, 79.300, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 43, 6305.445, -6364.378, 78.025, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 44, 6291.851, -6362.960, 78.020, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 45, 6290.895, -6368.846, 78.018, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 46, 6283.279, -6367.917, 78.018, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 47, 6285.575, -6355.713, 78.018, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 48, 6292.496, -6356.788, 78.018, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 49, 6291.851, -6362.960, 78.020, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 50, 6305.445, -6364.378, 78.025, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 51, 6306.164, -6359.391, 78.562, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 52, 6311.043, -6356.015, 80.682, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 53, 6314.150, -6359.148, 82.244, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 54, 6313.788, -6365.322, 82.710, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 55, 6324.463, -6366.408, 82.699, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 56, 6341.206, -6368.728, 78.164, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 57, 6343.770, -6402.389, 76.696, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 58, 6352.536, -6421.323, 74.822, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 59, 6330.639, -6441.106, 86.010, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_3, 60, 6313.952, -6456.592, 86.010, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_4, 1 , 6488.539, -6253.512, 54.803, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_4, 2 , 6454.999, -6247.834, 59.668, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_4, 3 , 6428.734, -6251.192, 62.728, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_4, 4 , 6407.557, -6264.989, 64.431, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_4, 5 , 6377.234, -6302.075, 67.330, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_4, 6 , 6371.789, -6333.094, 67.813, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_4, 7 , 6372.280, -6373.574, 68.195, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_4, 8 , 6375.288, -6416.049, 69.208, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_4, 9 , 6397.393, -6451.178, 65.380, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_4, 10, 6420.690, -6474.398, 60.630, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_4, 11, 6438.690, -6482.448, 56.147, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_4, 12, 6457.238, -6482.606, 52.163, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_4, 13, 6492.921, -6473.459, 46.546, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_4, 14, 6532.628, -6472.347, 40.189, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_4, 15, 6552.782, -6479.319, 36.314, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_4, 16, 6567.054, -6476.944, 34.800, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_4, 17, 6584.220, -6464.868, 31.281, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_4, 18, 6611.095, -6446.294, 29.289, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_4, 19, 6612.964, -6415.944, 29.393, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_4, 20, 6612.262, -6369.374, 31.552, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_4, 21, 6607.229, -6339.476, 33.038, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_4, 22, 6607.060, -6307.095, 35.684, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_4, 23, 6600.841, -6288.766, 38.173, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_4, 24, 6577.676, -6266.068, 43.243, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_4, 25, 6556.293, -6256.180, 47.430, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_4, 26, 6531.748, -6256.037, 50.964, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_4, 27, 6509.947, -6259.630, 52.218, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_5, 1 , 6488.539, -6253.512, 54.803, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_5, 2 , 6454.999, -6247.834, 59.668, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_5, 3 , 6428.734, -6251.192, 62.728, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_5, 4 , 6407.557, -6264.989, 64.431, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_5, 5 , 6377.234, -6302.075, 67.330, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_5, 6 , 6371.789, -6333.094, 67.813, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_5, 7 , 6372.280, -6373.574, 68.195, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_5, 8 , 6375.288, -6416.049, 69.208, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_5, 9 , 6397.393, -6451.178, 65.380, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_5, 10, 6420.690, -6474.398, 60.630, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_5, 11, 6438.690, -6482.448, 56.147, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_5, 12, 6457.238, -6482.606, 52.163, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_5, 13, 6492.921, -6473.459, 46.546, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_5, 14, 6532.628, -6472.347, 40.189, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_5, 15, 6552.782, -6479.319, 36.314, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_5, 16, 6567.054, -6476.944, 34.800, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_5, 17, 6584.220, -6464.868, 31.281, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_5, 18, 6611.095, -6446.294, 29.289, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_5, 19, 6612.964, -6415.944, 29.393, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_5, 20, 6612.262, -6369.374, 31.552, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_5, 21, 6607.229, -6339.476, 33.038, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_5, 22, 6607.060, -6307.095, 35.684, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_5, 23, 6600.841, -6288.766, 38.173, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_5, 24, 6577.676, -6266.068, 43.243, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_5, 25, 6556.293, -6256.180, 47.430, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_5, 26, 6531.748, -6256.037, 50.964, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_5, 27, 6509.947, -6259.630, 52.218, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 1 , 6419.647, -6507.635, 65.668, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 2 , 6404.997, -6527.250, 76.185, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 3 , 6417.598, -6554.907, 90.450, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 4 , 6429.581, -6587.663, 107.14, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 5 , 6433.624, -6609.415, 112.12, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 6 , 6428.771, -6610.919, 111.92, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 7 , 6425.644, -6614.498, 110.22, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 8 , 6430.408, -6618.958, 107.91, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 9 , 6435.195, -6617.991, 107.43, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 10, 6437.642, -6631.544, 107.43, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 11, 6431.639, -6632.799, 107.43, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 12, 6432.430, -6640.100, 107.43, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 13, 6445.388, -6638.985, 107.43, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 14, 6444.346, -6630.780, 107.43, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 15, 6437.681, -6631.792, 107.43, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 16, 6435.195, -6617.991, 107.43, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 17, 6441.831, -6615.938, 108.81, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 18, 6442.822, -6611.981, 110.09, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 19, 6438.264, -6608.972, 112.03, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 20, 6433.624, -6609.415, 112.12, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 21, 6429.581, -6587.663, 107.14, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 22, 6417.598, -6554.907, 90.450, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 23, 6404.997, -6527.250, 76.185, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 24, 6419.647, -6507.635, 65.668, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 25, 6439.412, -6483.352, 55.986, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 26, 6456.798, -6482.650, 52.260, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 27, 6471.180, -6480.312, 49.019, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 28, 6474.134, -6507.354, 43.687, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 29, 6491.953, -6512.302, 43.764, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 30, 6489.284, -6527.174, 43.762, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 31, 6511.797, -6547.596, 43.762, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 32, 6540.833, -6538.003, 43.763, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 33, 6547.380, -6508.357, 43.763, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 34, 6524.278, -6487.136, 43.762, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 35, 6495.589, -6496.744, 43.762, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 36, 6491.953, -6512.302, 43.764, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 37, 6474.134, -6507.354, 43.687, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 38, 6471.180, -6480.312, 49.019, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 39, 6456.798, -6482.650, 52.260, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_6, 40, 6439.412, -6483.352, 55.986, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 1 , 6330.639, -6441.106, 86.010, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 2 , 6352.536, -6421.323, 74.822, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 3 , 6343.770, -6402.389, 76.696, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 4 , 6341.206, -6368.728, 78.164, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 5 , 6324.463, -6366.408, 82.699, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 6 , 6313.788, -6365.322, 82.710, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 7 , 6314.150, -6359.148, 82.244, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 8 , 6311.043, -6356.015, 80.682, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 9 , 6306.164, -6359.391, 78.562, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 10, 6305.445, -6364.378, 78.025, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 11, 6291.851, -6362.960, 78.020, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 12, 6292.496, -6356.788, 78.018, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 13, 6285.575, -6355.713, 78.018, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 14, 6283.279, -6367.917, 78.018, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 15, 6290.895, -6368.846, 78.018, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 16, 6291.851, -6362.960, 78.020, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 17, 6305.445, -6364.378, 78.025, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 18, 6305.421, -6370.855, 79.300, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 19, 6309.991, -6373.575, 80.873, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 20, 6313.490, -6370.015, 82.593, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 21, 6313.788, -6365.322, 82.710, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 22, 6324.463, -6366.408, 82.699, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 23, 6341.206, -6368.728, 78.164, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 24, 6334.457, -6350.810, 77.142, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 25, 6334.189, -6326.300, 74.539, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 26, 6342.840, -6311.019, 73.289, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 27, 6358.172, -6298.210, 70.389, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 28, 6347.737, -6282.332, 73.269, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 29, 6332.741, -6269.205, 80.814, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 30, 6316.709, -6254.649, 80.813, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 31, 6332.741, -6269.205, 80.814, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 32, 6347.737, -6282.332, 73.269, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 33, 6358.172, -6298.210, 70.389, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 34, 6342.840, -6311.019, 73.289, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 35, 6334.189, -6326.300, 74.539, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 36, 6334.457, -6350.810, 77.142, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 37, 6341.206, -6368.728, 78.164, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 38, 6324.463, -6366.408, 82.699, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 39, 6313.788, -6365.322, 82.710, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 40, 6313.490, -6370.015, 82.593, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 41, 6309.991, -6373.575, 80.873, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 42, 6305.421, -6370.855, 79.300, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 43, 6305.445, -6364.378, 78.025, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 44, 6291.851, -6362.960, 78.020, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 45, 6290.895, -6368.846, 78.018, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 46, 6283.279, -6367.917, 78.018, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 47, 6285.575, -6355.713, 78.018, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 48, 6292.496, -6356.788, 78.018, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 49, 6291.851, -6362.960, 78.020, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 50, 6305.445, -6364.378, 78.025, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 51, 6306.164, -6359.391, 78.562, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 52, 6311.043, -6356.015, 80.682, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 53, 6314.150, -6359.148, 82.244, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 54, 6313.788, -6365.322, 82.710, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 55, 6324.463, -6366.408, 82.699, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 56, 6341.206, -6368.728, 78.164, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 57, 6343.770, -6402.389, 76.696, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 58, 6352.536, -6421.323, 74.822, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 59, 6330.639, -6441.106, 86.010, 0, 0, 0, 0, 100, 0),
|
||||
(@PATHID_7, 60, 6313.952, -6456.592, 86.010, 0, 0, 0, 0, 100, 0);
|
||||
@@ -0,0 +1,2 @@
|
||||
--
|
||||
UPDATE `creature` SET `modelid`=0, `phaseMask`=1, `spawnMask`=1 WHERE `guid` IN (84494,84495,84496,82827);
|
||||
@@ -0,0 +1,338 @@
|
||||
UPDATE `creature_template` SET `ScriptName`='npc_watch_commander_leonus' WHERE `entry`=19392;
|
||||
UPDATE `creature_template` SET `ScriptName`='npc_fear_controller' WHERE `entry`=19393;
|
||||
UPDATE `creature_template` SET `InhabitType`=4, `unit_flags`=33554688, `unit_flags2`=2099200, `mechanic_immune_mask`=16, `ScriptName`='npc_infernal_rain_hellfire' WHERE `entry`=18729;
|
||||
|
||||
SET @CGUID:=86515;
|
||||
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+14;
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `spawnMask`, `phaseMask`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES
|
||||
(@CGUID+0 , 18729, 530, 1, 1, 0, 0, -683.1428, 2622.864, 89.59037, 5.80891, 120, 0, 0, 0, 0, 0, 0, 0, 0), -- 18729 (Area: 3538)
|
||||
(@CGUID+1 , 18729, 530, 1, 1, 0, 0, -713.3168, 2651.34, 93.92698, 5.471165, 120, 0, 0, 0, 0, 0, 0, 0, 0), -- 18729 (Area: 3538)
|
||||
(@CGUID+2 , 18729, 530, 1, 1, 0, 0, -741.99, 2684.844, 102.0951, 4.382171, 120, 0, 0, 0, 0, 0, 0, 0, 0), -- 18729 (Area: 3538)
|
||||
(@CGUID+3 , 18729, 530, 1, 1, 0, 0, -693.7301, 2633.678, 90.98701, 0.2279181, 120, 0, 0, 0, 0, 0, 0, 0, 0), -- 18729 (Area: 3538)
|
||||
(@CGUID+4 , 18729, 530, 1, 1, 0, 0, -735.713, 2694.272, 104.4392, 0.5298103, 120, 0, 0, 0, 0, 0, 0, 0, 0), -- 18729 (Area: 3538)
|
||||
(@CGUID+5 , 18729, 530, 1, 1, 0, 0, -681.5517, 2599.244, 87.77497, 0.3001323, 120, 0, 0, 0, 0, 0, 0, 0, 0), -- 18729 (Area: 3538)
|
||||
(@CGUID+6 , 18729, 530, 1, 1, 0, 0, -642.3084, 2637.57, 86.72314, 0.4260551, 120, 0, 0, 0, 0, 0, 0, 0, 0), -- 18729 (Area: 3538)
|
||||
(@CGUID+7 , 18729, 530, 1, 1, 0, 0, -659.7936, 2608.224, 86.08431, 2.401085, 120, 0, 0, 0, 0, 0, 0, 0, 0), -- 18729 (Area: 3538)
|
||||
(@CGUID+8 , 18729, 530, 1, 1, 0, 0, -623.8005, 2710.563, 87.20694, 0.7798759, 120, 0, 0, 0, 0, 0, 0, 0, 0), -- 18729 (Area: 3538)
|
||||
(@CGUID+9 , 18729, 530, 1, 1, 0, 0, -641.7952, 2562.457, 80.51072, 4.093502, 120, 0, 0, 0, 0, 0, 0, 0, 0), -- 18729 (Area: 3538)
|
||||
(@CGUID+10, 18729, 530, 1, 1, 0, 0, -691.3125, 2778.354, 146.9783, 0.1396263, 120, 0, 0, 0, 0, 0, 0, 0, 0), -- 18729 (Area: 3538)
|
||||
(@CGUID+11, 18729, 530, 1, 1, 0, 0, -722.2483, 2568.132, 143.0607, 1.291544, 120, 0, 0, 0, 0, 0, 0, 0, 0), -- 18729 (Area: 3538)
|
||||
(@CGUID+12, 18729, 530, 1, 1, 0, 0, -649.1522, 2588.543, 125.6584, 6.195919, 120, 0, 0, 0, 0, 0, 0, 0, 0), -- 18729 (Area: 3538)
|
||||
(@CGUID+13, 18729, 530, 1, 1, 0, 0, -774.342, 2746.167, 185.9423, 4.572762, 120, 0, 0, 0, 0, 0, 0, 0, 0), -- 18729 (Area: 3538)
|
||||
(@CGUID+14, 18729, 530, 1, 1, 0, 0, -588.2762, 2632.034, 146.1269, 4.29351, 120, 0, 0, 0, 0, 0, 0, 0, 0); -- 18729 (Area: 3538)
|
||||
|
||||
-- Pathing for INFERNAL RAIN (Hellfire) Entry: 18729 'TDB FORMAT'
|
||||
SET @NPC := @CGUID+0;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=-698.8525,`position_y`=2632.825,`position_z`=91.81726 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES (@NPC,@PATH,0,0,1,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,1,-698.8525,2632.825,91.81726,0,0,0,0,100,0), -- 15:21:08
|
||||
(@PATH,2,-677.9506,2644.509,90.49536,0,0,0,0,100,0), -- 15:21:10
|
||||
(@PATH,3,-676.4061,2653.433,90.78812,0,0,0,0,100,0), -- 15:21:18
|
||||
(@PATH,4,-681.5089,2671.245,91.57988,0,0,0,0,100,0), -- 15:21:11
|
||||
(@PATH,5,-687.4851,2676.51,93.05498,0,0,0,0,100,0), -- 15:21:27
|
||||
(@PATH,6,-698.7255,2680.534,94.95392,0,0,0,0,100,0), -- 15:21:12
|
||||
(@PATH,7,-719.0013,2673.964,96.20638,0,0,0,0,100,0), -- 15:21:13
|
||||
(@PATH,8,-724.5556,2664.502,95.43507,0,0,0,0,100,0), -- 15:21:22
|
||||
(@PATH,9,-724.8938,2656.548,95.15915,0,0,0,0,100,0), -- 15:21:14
|
||||
(@PATH,10,-717.3865,2639.541,93.57843,0,0,0,0,100,0), -- 15:21:23
|
||||
(@PATH,11,-708.137,2634.875,92.46405,0,0,0,0,100,0); -- 15:21:16
|
||||
-- 0x203CC84240124A400000440000351C35 .go -698.8525 2632.825 91.81726
|
||||
|
||||
-- Pathing for Infernal Rain (Hellfire) Entry: 18729 'TDB FORMAT'
|
||||
SET @NPC := @CGUID+1;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=-656.7727,`position_y`=2602.906,`position_z`=85.797 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES (@NPC,@PATH,0,0,1,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,1,-656.7727,2602.906,85.797,0,0,0,0,100,0), -- 15:22:43
|
||||
(@PATH,2,-678.8431,2618.197,88.64764,0,0,0,0,100,0), -- 15:22:44
|
||||
(@PATH,3,-675.5577,2630.384,88.95792,0,0,0,0,100,0), -- 15:22:46
|
||||
(@PATH,4,-656.4027,2644.927,87.55663,0,0,0,0,100,0), -- 15:22:47
|
||||
(@PATH,5,-648.3109,2634.846,86.95815,0,0,0,0,100,0), -- 15:22:48
|
||||
(@PATH,6,-647.9454,2635.122,87.21871,0,0,0,0,100,0), -- 15:22:49
|
||||
(@PATH,7,-636.1139,2640.37,86.79756,0,0,0,0,100,0), -- 15:22:49
|
||||
(@PATH,8,-626.1254,2626.464,85.096,0,0,0,0,100,0), -- 15:22:50
|
||||
(@PATH,9,-647.9573,2611.305,86.06158,0,0,0,0,100,0); -- 15:22:52
|
||||
-- 0x203CC84240124A400000440000B51C35 .go -656.7727 2602.906 85.797
|
||||
|
||||
-- Pathing for Infernal Rain (Hellfire) Entry: 18729 'TDB FORMAT'
|
||||
SET @NPC := @CGUID+2;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=-613.5233,`position_y`=2568.954,`position_z`=81.81258 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES (@NPC,@PATH,0,0,1,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,1,-613.5233,2568.954,81.81258,0,0,0,0,100,0), -- 15:21:22
|
||||
(@PATH,2,-629.8984,2569.196,81.15677,0,0,0,0,100,0), -- 15:21:23
|
||||
(@PATH,3,-654.4181,2550.052,78.73563,0,0,0,0,100,0), -- 15:21:24
|
||||
(@PATH,4,-658.7616,2530.438,73.62208,0,0,0,0,100,0), -- 15:21:27
|
||||
(@PATH,5,-636.1871,2545.187,77.4874,0,0,0,0,100,0), -- 15:21:28
|
||||
(@PATH,6,-631.4529,2548.692,77.04776,0,0,0,0,100,0), -- 15:21:29
|
||||
(@PATH,7,-584.7521,2568.345,76.42328,0,0,0,0,100,0), -- 15:21:30
|
||||
(@PATH,8,-586.6555,2596.958,88.95888,0,0,0,0,100,0), -- 15:21:33
|
||||
(@PATH,9,-591.6433,2598.593,87.90211,0,0,0,0,100,0), -- 15:21:34
|
||||
(@PATH,10,-600.2521,2585.858,82.3437,0,0,0,0,100,0), -- 15:21:35
|
||||
(@PATH,11,-613.5173,2569.089,81.87325,0,0,0,0,100,0), -- 15:21:36
|
||||
(@PATH,12,-643.5018,2559.942,80.45127,0,0,0,0,100,0), -- 15:21:38
|
||||
(@PATH,13,-654.5405,2550.142,78.79336,0,0,0,0,100,0), -- 15:21:39
|
||||
(@PATH,14,-669.284,2539.369,74.70662,0,0,0,0,100,0), -- 15:21:40
|
||||
(@PATH,15,-658.7957,2530.59,73.66014,0,0,0,0,100,0), -- 15:21:41
|
||||
(@PATH,16,-636.2113,2545.337,77.37846,0,0,0,0,100,0), -- 15:21:42
|
||||
(@PATH,17,-631.4822,2548.737,76.93141,0,0,0,0,100,0), -- 15:21:44
|
||||
(@PATH,18,-584.7199,2568.445,76.33899,0,0,0,0,100,0), -- 15:21:45
|
||||
(@PATH,19,-582.5537,2571.944,76.96735,0,0,0,0,100,0), -- 15:21:46
|
||||
(@PATH,20,-586.6714,2596.896,88.93387,0,0,0,0,100,0), -- 15:21:47
|
||||
(@PATH,21,-600.2708,2585.577,82.16212,0,0,0,0,100,0), -- 15:21:48
|
||||
(@PATH,22,-613.3537,2569.01,81.93314,0,0,0,0,100,0), -- 15:21:50
|
||||
(@PATH,23,-615.0601,2567.808,81.13249,0,0,0,0,100,0), -- 15:21:51
|
||||
(@PATH,24,-643.3428,2559.926,80.59372,0,0,0,0,100,0), -- 15:21:52
|
||||
(@PATH,25,-654.5143,2549.978,78.61452,0,0,0,0,100,0), -- 15:21:53
|
||||
(@PATH,26,-669.2421,2538.915,74.92723,0,0,0,0,100,0), -- 15:21:55
|
||||
(@PATH,27,-658.9216,2530.562,73.78191,0,0,0,0,100,0), -- 15:21:56
|
||||
(@PATH,28,-636.2302,2545.251,77.44119,0,0,0,0,100,0), -- 15:21:57
|
||||
(@PATH,29,-631.1454,2548.875,76.91211,0,0,0,0,100,0), -- 15:21:58
|
||||
(@PATH,30,-584.6096,2568.467,76.48515,0,0,0,0,100,0), -- 15:21:59
|
||||
(@PATH,31,-582.5697,2571.928,76.96999,0,0,0,0,100,0), -- 15:22:01
|
||||
(@PATH,32,-591.4938,2598.523,88.00578,0,0,0,0,100,0), -- 15:22:02
|
||||
(@PATH,33,-600.2296,2585.605,82.09475,0,0,0,0,100,0), -- 15:22:03
|
||||
(@PATH,34,-613.3531,2569.051,81.79434,0,0,0,0,100,0); -- 15:22:04
|
||||
-- 0x203CC84240124A400000440001B51C35 .go -613.5233 2568.954 81.81258
|
||||
|
||||
-- Pathing for Infernal Rain (Hellfire) Entry: 18729 'TDB FORMAT'
|
||||
SET @NPC := @CGUID+3;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=-620.3628,`position_y`=2564.344,`position_z`=79.32322 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES (@NPC,@PATH,0,0,1,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,1,-620.3628,2564.344,79.32322,0,0,0,0,100,0), -- 15:21:33
|
||||
(@PATH,2,-634.0519,2571.64,81.53027,0,0,0,0,100,0), -- 15:21:34
|
||||
(@PATH,3,-649.1782,2594.351,84.73848,0,0,0,0,100,0), -- 15:21:35
|
||||
(@PATH,4,-664.6262,2612.697,86.85725,0,0,0,0,100,0), -- 15:21:36
|
||||
(@PATH,5,-665.9905,2624.81,87.50397,0,0,0,0,100,0), -- 15:21:38
|
||||
(@PATH,6,-674.386,2625.81,88.74261,0,0,0,0,100,0), -- 15:21:39
|
||||
(@PATH,7,-660.9735,2608.719,86.27945,0,0,0,0,100,0), -- 15:21:40
|
||||
(@PATH,8,-645.7166,2575.045,83.09628,0,0,0,0,100,0), -- 15:21:41
|
||||
(@PATH,9,-632.8522,2543.363,77.10129,0,0,0,0,100,0), -- 15:21:42
|
||||
(@PATH,10,-610.8413,2554.551,75.4816,0,0,0,0,100,0), -- 15:21:44
|
||||
(@PATH,11,-600.859,2562.016,78.13591,0,0,0,0,100,0), -- 15:21:45
|
||||
(@PATH,12,-596.7775,2586.915,82.92734,0,0,0,0,100,0), -- 15:21:46
|
||||
(@PATH,13,-609.1469,2570.99,81.41309,0,0,0,0,100,0); -- 15:21:47
|
||||
-- 0x203CC84240124A400000440003351C35 .go -620.3628 2564.344 79.32322
|
||||
|
||||
-- Pathing for Infernal Rain (Hellfire) Entry: 18729 'TDB FORMAT'
|
||||
SET @NPC := @CGUID+4;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=-689.8017,`position_y`=2595.023,`position_z`=89.04801 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES (@NPC,@PATH,0,0,1,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,1,-689.8017,2595.023,89.04801,0,0,0,0,100,0), -- 15:23:08
|
||||
(@PATH,2,-694.9512,2616.941,90.54378,0,0,0,0,100,0), -- 15:23:09
|
||||
(@PATH,3,-677.0544,2619.867,88.82404,0,0,0,0,100,0), -- 15:23:10
|
||||
(@PATH,4,-676.0784,2598.351,87.68272,0,0,0,0,100,0), -- 15:23:11
|
||||
(@PATH,5,-695.2137,2603.727,90.68155,0,0,0,0,100,0), -- 15:23:13
|
||||
(@PATH,6,-688.4651,2622.775,90.59154,0,0,0,0,100,0), -- 15:23:14
|
||||
(@PATH,7,-671.8881,2610.943,87.61096,0,0,0,0,100,0), -- 15:23:15
|
||||
(@PATH,8,-682.2012,2594.566,88.13221,0,0,0,0,100,0), -- 15:23:16
|
||||
(@PATH,9,-695.6737,2608.772,90.66994,0,0,0,0,100,0), -- 15:23:18
|
||||
(@PATH,10,-677.1846,2619.737,88.83925,0,0,0,0,100,0), -- 15:23:19
|
||||
(@PATH,11,-676.1918,2598.365,87.90189,0,0,0,0,100,0), -- 15:23:20
|
||||
(@PATH,12,-695.1645,2603.547,90.49475,0,0,0,0,100,0), -- 15:23:21
|
||||
(@PATH,13,-688.2673,2622.599,90.37753,0,0,0,0,100,0), -- 15:23:22
|
||||
(@PATH,14,-671.6782,2610.918,87.62653,0,0,0,0,100,0), -- 15:23:23
|
||||
(@PATH,15,-682.1849,2594.786,88.28103,0,0,0,0,100,0), -- 15:23:25
|
||||
(@PATH,16,-695.7292,2608.76,90.58568,0,0,0,0,100,0), -- 15:23:26
|
||||
(@PATH,17,-683.2664,2622.867,89.8029,0,0,0,0,100,0), -- 15:23:27
|
||||
(@PATH,18,-672.1084,2603.935,87.34198,0,0,0,0,100,0), -- 15:23:28
|
||||
(@PATH,19,-695.3795,2603.66,90.5396,0,0,0,0,100,0), -- 15:23:30
|
||||
(@PATH,20,-694.9478,2616.933,90.5663,0,0,0,0,100,0), -- 15:23:31
|
||||
(@PATH,21,-677.1843,2619.85,88.79141,0,0,0,0,100,0), -- 15:23:32
|
||||
(@PATH,22,-682.2476,2594.647,88.20087,0,0,0,0,100,0), -- 15:23:33
|
||||
(@PATH,23,-695.7581,2608.89,90.5127,0,0,0,0,100,0), -- 15:23:35
|
||||
(@PATH,24,-683.1781,2622.934,89.70201,0,0,0,0,100,0), -- 15:23:36
|
||||
(@PATH,25,-672.0298,2603.892,87.34035,0,0,0,0,100,0), -- 15:23:37
|
||||
(@PATH,26,-689.723,2595.061,88.93065,0,0,0,0,100,0), -- 15:23:38
|
||||
(@PATH,27,-694.8854,2616.875,90.43231,0,0,0,0,100,0), -- 15:23:39
|
||||
(@PATH,28,-677.0415,2619.769,88.80734,0,0,0,0,100,0), -- 15:23:40
|
||||
(@PATH,29,-682.0645,2594.695,88.17558,0,0,0,0,100,0), -- 15:23:42
|
||||
(@PATH,30,-695.1677,2603.533,90.49393,0,0,0,0,100,0), -- 15:23:43
|
||||
(@PATH,31,-683.2116,2622.866,89.75854,0,0,0,0,100,0), -- 15:23:44
|
||||
(@PATH,32,-671.9715,2603.812,87.33574,0,0,0,0,100,0); -- 15:23:46
|
||||
-- 0x203CC84240124A400000440003B51C35 .go -689.8017 2595.023 89.04801
|
||||
|
||||
-- Pathing for Infernal Rain (Hellfire) Entry: 18729 'TDB FORMAT'
|
||||
SET @NPC := @CGUID+5;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=-700.4591,`position_y`=2581.236,`position_z`=89.85777 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES (@NPC,@PATH,0,0,1,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,1,-700.4591,2581.236,89.85777,0,0,0,0,100,0), -- 15:21:00
|
||||
(@PATH,2,-686.7537,2594.742,88.65184,0,0,0,0,100,0), -- 15:21:01
|
||||
(@PATH,3,-681.7879,2599.051,87.94156,0,0,0,0,100,0), -- 15:21:03
|
||||
(@PATH,4,-645.0184,2615.645,85.78815,0,0,0,0,100,0), -- 15:21:04
|
||||
(@PATH,5,-652.3442,2621.35,87.0186,0,0,0,0,100,0), -- 15:21:05
|
||||
(@PATH,6,-677.1797,2618.292,88.59647,0,0,0,0,100,0), -- 15:21:06
|
||||
(@PATH,7,-692.8289,2608.688,90.29023,0,0,0,0,100,0), -- 15:21:08
|
||||
(@PATH,8,-694.9995,2595.214,89.93396,0,0,0,0,100,0); -- 15:21:09
|
||||
-- 0x203CC84240124A400000440004351C35 .go -700.4591 2581.236 89.85777
|
||||
|
||||
-- Pathing for Infernal Rain (Hellfire) Entry: 18729 'TDB FORMAT'
|
||||
SET @NPC := @CGUID+6;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=-630.4395,`position_y`=2714.029,`position_z`=88.03479 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES (@NPC,@PATH,0,0,1,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,1,-630.4395,2714.029,88.03479,0,0,0,0,100,0), -- 15:20:57
|
||||
(@PATH,2,-639.6129,2702.679,89.08209,0,0,0,0,100,0), -- 15:20:58
|
||||
(@PATH,3,-653.7972,2691.186,89.59717,0,0,0,0,100,0), -- 15:20:59
|
||||
(@PATH,4,-676.4966,2688.914,93.74294,0,0,0,0,100,0), -- 15:21:00
|
||||
(@PATH,5,-668.0986,2710.315,95.53355,0,0,0,0,100,0), -- 15:21:02
|
||||
(@PATH,6,-678.1981,2712.437,96.50993,0,0,0,0,100,0), -- 15:21:03
|
||||
(@PATH,7,-689.6499,2683.876,94.61096,0,0,0,0,100,0), -- 15:21:04
|
||||
(@PATH,8,-676.4872,2670.626,91.28802,0,0,0,0,100,0), -- 15:21:06
|
||||
(@PATH,9,-648.0355,2690.657,89.56966,0,0,0,0,100,0), -- 15:21:07
|
||||
(@PATH,10,-641.1539,2694.737,89.20296,0,0,0,0,100,0), -- 15:21:08
|
||||
(@PATH,11,-622.3976,2712.029,87.43461,0,0,0,0,100,0), -- 15:21:09
|
||||
(@PATH,12,-618.0607,2730.373,86.00659,0,0,0,0,100,0), -- 15:21:10
|
||||
(@PATH,13,-639.5991,2702.866,89.00571,0,0,0,0,100,0), -- 15:21:12
|
||||
(@PATH,14,-653.4491,2691.407,89.64917,0,0,0,0,100,0), -- 15:21:13
|
||||
(@PATH,15,-675.2776,2686.989,92.92959,0,0,0,0,100,0), -- 15:21:14
|
||||
(@PATH,16,-668.0339,2710.14,95.59471,0,0,0,0,100,0), -- 15:21:15
|
||||
(@PATH,17,-678.3527,2712.485,96.54314,0,0,0,0,100,0), -- 15:21:16
|
||||
(@PATH,18,-689.8736,2688.418,95.18272,0,0,0,0,100,0), -- 15:21:18
|
||||
(@PATH,19,-680.2233,2671.275,91.65306,0,0,0,0,100,0), -- 15:21:19
|
||||
(@PATH,20,-647.9753,2690.686,89.70755,0,0,0,0,100,0), -- 15:21:20
|
||||
(@PATH,21,-641.0308,2694.546,89.32167,0,0,0,0,100,0), -- 15:21:21
|
||||
(@PATH,22,-622.1934,2711.996,87.52415,0,0,0,0,100,0), -- 15:21:23
|
||||
(@PATH,23,-618.2394,2730.46,85.93001,0,0,0,0,100,0), -- 15:21:24
|
||||
(@PATH,24,-630.5289,2714.474,87.94388,0,0,0,0,100,0), -- 15:21:25
|
||||
(@PATH,25,-653.4489,2691.482,89.69986,0,0,0,0,100,0), -- 15:21:26
|
||||
(@PATH,26,-675.2495,2687.212,92.96544,0,0,0,0,100,0), -- 15:21:27
|
||||
(@PATH,27,-668.3044,2701.24,94.87445,0,0,0,0,100,0), -- 15:21:28
|
||||
(@PATH,28,-672.5935,2718.499,95.4474,0,0,0,0,100,0), -- 15:21:30
|
||||
(@PATH,29,-689.8506,2688.373,95.21011,0,0,0,0,100,0), -- 15:21:31
|
||||
(@PATH,30,-689.2906,2680.638,93.79676,0,0,0,0,100,0), -- 15:21:32
|
||||
(@PATH,31,-647.8615,2690.679,89.63545,0,0,0,0,100,0), -- 15:21:33
|
||||
(@PATH,32,-622.1901,2712.1,87.35561,0,0,0,0,100,0), -- 15:21:36
|
||||
(@PATH,33,-613.1973,2727.032,85.68462,0,0,0,0,100,0), -- 15:21:37
|
||||
(@PATH,34,-630.4551,2714.255,87.89551,0,0,0,0,100,0); -- 15:21:38
|
||||
-- 0x203CC84240124A400000440005351C34 .go -630.4395 2714.029 88.03479
|
||||
|
||||
-- Pathing for Infernal Rain (Hellfire) Entry: 18729 'TDB FORMAT'
|
||||
SET @NPC := @CGUID+7;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=-761.1827,`position_y`=2701.847,`position_z`=108.3081 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES (@NPC,@PATH,0,0,1,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,1,-761.1827,2701.847,108.3081,0,0,0,0,100,0), -- 15:21:41
|
||||
(@PATH,2,-763.432,2721.831,117.5021,0,0,0,0,100,0), -- 15:21:42
|
||||
(@PATH,3,-773.3309,2720.005,117.13,0,0,0,0,100,0), -- 15:21:43
|
||||
(@PATH,4,-788.311,2733.121,117.8913,0,0,0,0,100,0), -- 15:21:44
|
||||
(@PATH,5,-758.8734,2722.237,116.7121,0,0,0,0,100,0), -- 15:21:46
|
||||
(@PATH,6,-750.6326,2715.539,113.1729,0,0,0,0,100,0), -- 15:21:47
|
||||
(@PATH,7,-740.0147,2690.306,104.178,0,0,0,0,100,0), -- 15:21:48
|
||||
(@PATH,8,-752.843,2679.486,101.8023,0,0,0,0,100,0), -- 15:21:49
|
||||
(@PATH,9,-784.1663,2686.454,104.5872,0,0,0,0,100,0), -- 15:21:50
|
||||
(@PATH,10,-795.9035,2686.967,105.288,0,0,0,0,100,0), -- 15:21:52
|
||||
(@PATH,11,-807.5844,2704.689,108.8084,0,0,0,0,100,0), -- 15:21:53
|
||||
(@PATH,12,-790.9392,2709.087,109.056,0,0,0,0,100,0), -- 15:21:54
|
||||
(@PATH,13,-783.5266,2701.725,107.6792,0,0,0,0,100,0), -- 15:21:55
|
||||
(@PATH,14,-762.7386,2720.122,116.8518,0,0,0,0,100,0), -- 15:21:57
|
||||
(@PATH,15,-773.3821,2719.644,116.9987,0,0,0,0,100,0), -- 15:21:58
|
||||
(@PATH,16,-797.9175,2733.678,117.4854,0,0,0,0,100,0), -- 15:21:59
|
||||
(@PATH,17,-758.7566,2722.274,116.7635,0,0,0,0,100,0), -- 15:22:00
|
||||
(@PATH,18,-750.7303,2715.479,113.2036,0,0,0,0,100,0), -- 15:22:01
|
||||
(@PATH,19,-742.5223,2706.447,109.2216,0,0,0,0,100,0), -- 15:22:03
|
||||
(@PATH,20,-753.0249,2679.495,101.9872,0,0,0,0,100,0), -- 15:22:04
|
||||
(@PATH,21,-767.0206,2684.747,103.4404,0,0,0,0,100,0), -- 15:22:05
|
||||
(@PATH,22,-795.8685,2687.028,105.4345,0,0,0,0,100,0), -- 15:22:06
|
||||
(@PATH,23,-807.5786,2704.569,108.8766,0,0,0,0,100,0), -- 15:22:08
|
||||
(@PATH,24,-806.0139,2706.778,109.1797,0,0,0,0,100,0), -- 15:22:09
|
||||
(@PATH,25,-783.2947,2701.656,107.6781,0,0,0,0,100,0), -- 15:22:10
|
||||
(@PATH,26,-762.7495,2720.095,116.9874,0,0,0,0,100,0), -- 15:22:11
|
||||
(@PATH,27,-773.2406,2719.672,116.9973,0,0,0,0,100,0), -- 15:22:12
|
||||
(@PATH,28,-795.0907,2729.675,117.6628,0,0,0,0,100,0), -- 15:22:14
|
||||
(@PATH,29,-788.4598,2733.199,117.8639,0,0,0,0,100,0), -- 15:22:15
|
||||
(@PATH,30,-754.7383,2719.982,115.1603,0,0,0,0,100,0), -- 15:22:16
|
||||
(@PATH,31,-742.5227,2706.411,109.1998,0,0,0,0,100,0), -- 15:22:17
|
||||
(@PATH,32,-740.782,2688.58,103.606,0,0,0,0,100,0), -- 15:22:18
|
||||
(@PATH,33,-767.0979,2684.736,103.8746,0,0,0,0,100,0), -- 15:22:20
|
||||
(@PATH,34,-784.1396,2686.581,104.4419,0,0,0,0,100,0), -- 15:22:21
|
||||
(@PATH,35,-802.2366,2687.199,105.5248,0,0,0,0,100,0), -- 15:22:22
|
||||
(@PATH,36,-805.9133,2706.766,109.1137,0,0,0,0,100,0), -- 15:22:23
|
||||
(@PATH,37,-783.6552,2701.552,107.567,0,0,0,0,100,0); -- 15:22:25
|
||||
-- 0x203CC84240124A400000440005B51C34 .go -761.1827 2701.847 108.3081
|
||||
|
||||
-- Pathing for Infernal Rain (Hellfire) Entry: 18729 'TDB FORMAT'
|
||||
SET @NPC := @CGUID+8;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=-696.4537,`position_y`=2672.248,`position_z`=94.02368 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES (@NPC,@PATH,0,0,1,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,1,-696.4537,2672.248,94.02368,0,0,0,0,100,0), -- 15:22:22
|
||||
(@PATH,2,-715.4374,2665.521,94.87578,0,0,0,0,100,0), -- 15:22:23
|
||||
(@PATH,3,-691.6254,2645.292,93.06143,0,0,0,0,100,0), -- 15:22:25
|
||||
(@PATH,4,-687.4556,2661.372,93.48894,0,0,0,0,100,0), -- 15:22:26
|
||||
(@PATH,5,-696.2938,2672.279,94.02504,0,0,0,0,100,0), -- 15:22:27
|
||||
(@PATH,6,-715.679,2654.232,94.33944,0,0,0,0,100,0), -- 15:22:28
|
||||
(@PATH,7,-691.636,2645.265,93.06179,0,0,0,0,100,0), -- 15:22:29
|
||||
(@PATH,8,-687.5698,2661.478,93.46684,0,0,0,0,100,0), -- 15:22:31
|
||||
(@PATH,9,-706.7507,2672.399,94.58054,0,0,0,0,100,0), -- 15:22:32
|
||||
(@PATH,10,-715.6765,2654.364,94.39523,0,0,0,0,100,0), -- 15:22:33
|
||||
(@PATH,11,-691.6421,2645.341,93.04417,0,0,0,0,100,0), -- 15:22:34
|
||||
(@PATH,12,-687.571,2661.364,93.44951,0,0,0,0,100,0); -- 15:22:35
|
||||
-- 0x203CC84240124A400000440006351C34 .go -696.4537 2672.248 94.02368
|
||||
|
||||
-- Pathing for Infernal Rain (Hellfire) Entry: 18729 'TDB FORMAT'
|
||||
SET @NPC := @CGUID+9;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=-736.5909,`position_y`=2643.926,`position_z`=99.57889 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES (@NPC,@PATH,0,0,1,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,1,-736.5909,2643.926,99.57889,0,0,0,0,100,0), -- 15:21:12
|
||||
(@PATH,2,-739.5054,2650.205,101.1051,0,0,0,0,100,0), -- 15:21:13
|
||||
(@PATH,3,-751.2732,2672.356,100.7091,0,0,0,0,100,0), -- 15:21:14
|
||||
(@PATH,4,-739.7455,2691.94,104.7795,0,0,0,0,100,0), -- 15:21:15
|
||||
(@PATH,5,-725.373,2704.028,98.12045,0,0,0,0,100,0), -- 15:21:31
|
||||
(@PATH,6,-719.1994,2702.7,96.82434,0,0,0,0,100,0), -- 15:21:16
|
||||
(@PATH,7,-704.6559,2687.181,95.32121,0,0,0,0,100,0), -- 15:21:18
|
||||
(@PATH,8,-725.9246,2683.021,99.72587,0,0,0,0,100,0), -- 15:21:19
|
||||
(@PATH,9,-741.8126,2673.67,98.87859,0,0,0,0,100,0), -- 15:21:20
|
||||
(@PATH,10,-734.7253,2659.843,97.42217,0,0,0,0,100,0), -- 15:21:21
|
||||
(@PATH,11,-720.5742,2666.832,95.61575,0,0,0,0,100,0), -- 15:21:23
|
||||
(@PATH,12,-731.9807,2650.673,97.47429,0,0,0,0,100,0), -- 15:21:24
|
||||
(@PATH,13,-715.4817,2625.815,91.41167,0,0,0,0,100,0); -- 15:21:25
|
||||
-- 0x203CC84240124A400000440007351C34 .go -736.5909 2643.926 99.57889
|
||||
|
||||
-- Add text for watch_commander_leonus
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`=19392;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(19392, 0, 0, 'WE''RE UNDER ATTACK! RUN FOR COVER!', 14, 0, 100, 0, 0, 0, 16575, 0, 'Watch Commander Leonus'),
|
||||
(19392, 0, 1, 'INFERNALS! CLEAR THE COURTYARD!', 14, 0, 100, 0, 0, 0, 16574, 0, 'Watch Commander Leonus'),
|
||||
(19392, 0, 2, 'INFERNAL RAIN ON THE RISE! TAKE COVER!', 14, 0, 100, 0, 0, 0, 16573, 0, 'Watch Commander Leonus');
|
||||
|
||||
-- Condition for source Spell implicit target condition type Near creature
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceGroup`=2 AND `SourceEntry`=33814 AND `SourceId`=0;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(13, 2, 33814, 0, 0, 29, 0, 18729, 1000, 0, 0, 0, 0, '', 'Spell SPELL_INFERNAL_RAIN (effect 1) will hit the potential target of the spell if target is unit NPC_INFERNAL_RAIN within 1000 yards.');
|
||||
@@ -0,0 +1 @@
|
||||
ALTER TABLE `smart_scripts` ADD COLUMN `event_param5` INT(10) UNSIGNED DEFAULT 0 NOT NULL AFTER `event_param4`;
|
||||
@@ -0,0 +1,198 @@
|
||||
--
|
||||
DELETE FROM `game_event` WHERE `eventEntry`=76;
|
||||
INSERT INTO `game_event` (`eventEntry`, `start_time`, `end_time`, `occurence`, `length`, `holiday`, `holidayStage`, `description`, `world_event`, `announce`) VALUES
|
||||
(76, '2018-01-01 07:00:00', '2020-01-01 08:00:00', 1440, 60, 0, 0, 'Childeren of Goldshire', 0, 2);
|
||||
|
||||
UPDATE `creature_template` SET `ScriptName`='npc_cameron' WHERE `entry`=805;
|
||||
|
||||
DELETE FROM `creature_formations` WHERE `leaderGUID`=280697;
|
||||
INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`) VALUES
|
||||
(280697, 280697, 0, 0, 515), -- Cameron
|
||||
(280697, 280040, 3, 230, 515), -- John
|
||||
(280697, 280043, 3, 180, 515), -- Dana
|
||||
(280697, 280042, 3, 130, 515), -- Jose
|
||||
(280697, 280696, 3, 310, 515), -- Lisa
|
||||
(280697, 280041, 3, 50, 515); -- Aaron
|
||||
|
||||
-- STORMWIND_PATH
|
||||
SET @ENTRY := 80500;
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@ENTRY;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`, `action`, `action_chance`, `wpguid`) VALUES
|
||||
(@ENTRY,1 ,-9372.823,-66.29554,69.201859, 0, 0, 1, 0, 100, 0),
|
||||
(@ENTRY,2 ,-9375.251,-70.71793,69.201691, 0, 0, 1, 0, 100, 0),
|
||||
(@ENTRY,3 ,-9377.161,-72.19738,69.198997, 0, 0, 1, 0, 100, 0),
|
||||
(@ENTRY,4 ,-9382.018,-76.88008,69.164696, 0, 0, 1, 0, 100, 0),
|
||||
(@ENTRY,5 ,-9385.052,-76.36288,69.202148, 0, 0, 1, 0, 100, 0),
|
||||
(@ENTRY,6 ,-9392.218,-71.91143,64.437691, 0, 0, 1, 0, 100, 0),
|
||||
(@ENTRY,7 ,-9390.718,-68.80339,64.437691, 0, 0, 1, 0, 100, 0),
|
||||
(@ENTRY,8 ,-9380.336,-78.55399,64.437691, 0, 0, 1, 0, 100, 0),
|
||||
(@ENTRY,9 ,-9383.135,-84.98008,63.336449, 0, 0, 1, 0, 100, 0),
|
||||
(@ENTRY,10,-9376.598,-89.94442,63.722805, 0, 0, 1, 0, 100, 0),
|
||||
(@ENTRY,11,-9372.031,-87.89227,64.235367, 0, 0, 1, 0, 100, 0),
|
||||
(@ENTRY,12,-9357.252,-67.5625,65.31458, 0, 0, 1, 0, 100, 0), -- 07:00:21
|
||||
(@ENTRY,13,-9357.252,-67.5625,65.31458, 0, 0, 1, 0, 100, 0), -- 07:00:21
|
||||
(@ENTRY,14,-9356.818,-59.81693,66.47333, 0, 0, 1, 0, 100, 0), -- 07:00:23
|
||||
(@ENTRY,15,-9359.703,-40.74677,64.90179, 0, 0, 1, 0, 100, 0), -- 07:00:24
|
||||
(@ENTRY,16,-9366.912,-26.63774,63.58042, 0, 0, 1, 0, 100, 0), -- 07:00:27
|
||||
(@ENTRY,17,-9376.815,-16.4907,62.47466, 0, 0, 1, 0, 100, 0), -- 07:00:29
|
||||
(@ENTRY,18,-9390.682,0.2398973,60.84456, 0, 0, 1, 0, 100, 0), -- 07:00:30
|
||||
(@ENTRY,19,-9402.53,14.60529,59.79248, 0, 0, 1, 0, 100, 0), -- 07:00:34
|
||||
(@ENTRY,20,-9419.141,34.55973,57.84264, 0, 0, 1, 0, 100, 0), -- 07:00:35
|
||||
(@ENTRY,21,-9426.896,43.84751,57.06255, 0, 0, 1, 0, 100, 0), -- 07:00:40
|
||||
(@ENTRY,22,-9433.867,53.78213,56.78226, 0, 0, 1, 0, 100, 0), -- 07:00:41
|
||||
(@ENTRY,23,-9438.548,61.02147,56.39376, 0, 0, 1, 0, 100, 0), -- 07:00:42
|
||||
(@ENTRY,24,-9436.482,68.04466,56.42494, 0, 0, 1, 0, 100, 0), -- 07:00:44
|
||||
(@ENTRY,25,-9415.27,87.07191,57.30513, 0, 0, 1, 0, 100, 0), -- 07:00:45
|
||||
(@ENTRY,26,-9396.235,98.29691,59.15154, 0, 0, 1, 0, 100, 0), -- 07:00:47
|
||||
(@ENTRY,27,-9375.271,106.7702,60.70432, 0, 0, 1, 0, 100, 0), -- 07:00:51
|
||||
(@ENTRY,28,-9364.256,110.7547,61.50436, 0, 0, 1, 0, 100, 0), -- 07:00:53
|
||||
(@ENTRY,29,-9344.307,120.2394,63.43427, 0, 0, 1, 0, 100, 0), -- 07:00:55
|
||||
(@ENTRY,30,-9332.738,126.8489,63.9777, 0, 0, 1, 0, 100, 0), -- 07:00:57
|
||||
(@ENTRY,31,-9308.697,137.7139,65.57498, 0, 0, 1, 0, 100, 0), -- 07:00:59
|
||||
(@ENTRY,32,-9292.605,144.2936,66.53963, 0, 0, 1, 0, 100, 0), -- 07:01:03
|
||||
(@ENTRY,33,-9271.355,152.9366,67.37766, 0, 0, 1, 0, 100, 0), -- 07:01:04
|
||||
(@ENTRY,34,-9258.908,158.3268,67.75345, 0, 0, 1, 0, 100, 0), -- 07:01:07
|
||||
(@ENTRY,35,-9258.107,158.9872,67.80977, 0, 0, 1, 0, 100, 0), -- 07:01:08
|
||||
(@ENTRY,36,-9245.959,170.1512,68.25052, 0, 0, 1, 0, 100, 0), -- 07:01:10
|
||||
(@ENTRY,37,-9219.314,201.358,69.06726, 0, 0, 1, 0, 100, 0), -- 07:01:13
|
||||
(@ENTRY,38,-9208.215,212.5414,70.81392, 0, 0, 1, 0, 100, 0), -- 07:01:17
|
||||
(@ENTRY,39,-9198.92,222.5978,71.63802, 0, 0, 1, 0, 100, 0), -- 07:01:18
|
||||
(@ENTRY,40, -9194.827, 227.36, 71.91199, 0, 0, 1, 0, 100, 0), -- 07:01:20
|
||||
(@ENTRY,41,-9187.375,241.8835,72.91473, 0, 0, 1, 0, 100, 0), -- 07:01:21
|
||||
(@ENTRY,42,-9184.045,254.7417,73.77821, 0, 0, 1, 0, 100, 0), -- 07:01:23
|
||||
(@ENTRY,43,-9182.289,274.1739,75.36765, 0, 0, 1, 0, 100, 0), -- 07:01:25
|
||||
(@ENTRY,44,-9181.092,289.6617,77.20319, 0, 0, 1, 0, 100, 0), -- 07:01:26
|
||||
(@ENTRY,45,-9180.633,300.7958,78.49542, 0, 0, 1, 0, 100, 0), -- 07:01:29
|
||||
(@ENTRY,46,-9178.008,326.7234,81.67275, 0, 0, 1, 0, 100, 0), -- 07:01:31
|
||||
(@ENTRY,47,-9174.055,336.8582,84.08626, 0, 0, 1, 0, 100, 0), -- 07:01:34
|
||||
(@ENTRY,48,-9163.633,351.4775,87.70863, 0, 0, 1, 0, 100, 0), -- 07:01:35
|
||||
(@ENTRY,49,-9153.682,362.516,90.23949, 0, 0, 1, 0, 100, 0), -- 07:01:37
|
||||
(@ENTRY,50,-9148.218,368.3586,90.66177, 0, 0, 1, 0, 100, 0), -- 07:01:40
|
||||
(@ENTRY,51,-9125.46,390.1248,91.81776, 0, 0, 1, 0, 100, 0), -- 07:01:43
|
||||
(@ENTRY,52,-9115.926,397.5776,92.71513, 0, 0, 1, 0, 100, 0), -- 07:01:45
|
||||
(@ENTRY,53,-9095.435,413.1418,92.21481, 0, 0, 1, 0, 100, 0), -- 07:01:46
|
||||
(@ENTRY,54,-9088.044,418.7169,92.44129, 0, 0, 1, 0, 100, 0), -- 07:01:49
|
||||
(@ENTRY,55,-9058.086,439.64,93.14257, 0, 0, 1, 0, 100, 0), -- 07:01:52
|
||||
(@ENTRY,56,-9045.07,450.092,93.28775, 0, 0, 1, 0, 100, 0), -- 07:01:54
|
||||
(@ENTRY,57,-9040.674,453.6961,93.05584, 0, 0, 0, 0, 100, 0);
|
||||
|
||||
-- GOLDSHIRE_PATH
|
||||
SET @ENTRY := 80501;
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@ENTRY;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`, `action`, `action_chance`, `wpguid`) VALUES
|
||||
(@ENTRY, 1 ,-9057.086,442.696,93.05582, 0, 0, 1, 0, 100, 0), -- 07:13:02
|
||||
(@ENTRY, 2 ,-9074.805,431.4119,93.05582, 0, 0, 1, 0, 100, 0), -- 07:13:03
|
||||
(@ENTRY, 3 ,-9077.455,426.727,92.54478, 0, 0, 1, 0, 100, 0), -- 07:13:05
|
||||
(@ENTRY, 4 ,-9130.008,384.1526,91.08342, 0, 0, 1, 0, 100, 0), -- 07:13:11
|
||||
(@ENTRY, 5 ,-9138.167,378.1005,90.83872, 0, 0, 1, 0, 100, 0), -- 07:13:14
|
||||
(@ENTRY, 6 ,-9170.719,340.1506,85.00079, 0, 0, 1, 0, 100, 0), -- 07:13:17
|
||||
(@ENTRY, 7 ,-9177.553,324.4485,81.63397, 0, 0, 1, 0, 100, 0), -- 07:13:22
|
||||
(@ENTRY, 8 ,-9179.79,302.5313,78.90688, 0, 0, 1, 0, 100, 0), -- 07:13:24
|
||||
(@ENTRY, 9 ,-9180.076,284.7124,76.62807, 0, 0, 1, 0, 100, 0), -- 07:13:26
|
||||
(@ENTRY, 10 ,-9180.527,273.4619,75.51992, 0, 0, 1, 0, 100, 0), -- 07:13:29
|
||||
(@ENTRY, 11 ,-9181.712,261.4136,74.55137, 0, 0, 1, 0, 100, 0), -- 07:13:30
|
||||
(@ENTRY, 12 ,-9187.871,242.3035,72.95731, 0, 0, 1, 0, 100, 0), -- 07:13:32
|
||||
(@ENTRY, 13 ,-9199.146,222.4604,71.7192, 0, 0, 1, 0, 100, 0), -- 07:13:35
|
||||
(@ENTRY, 14 ,-9217.201,203.2024,69.32413, 0, 0, 1, 0, 100, 0), -- 07:13:37
|
||||
(@ENTRY, 15 ,-9230.155,189.5526,68.19696, 0, 0, 1, 0, 100, 0), -- 07:13:41
|
||||
(@ENTRY, 16 ,-9241.491,176.5851,67.95673, 0, 0, 1, 0, 100, 0), -- 07:13:45
|
||||
(@ENTRY, 17 ,-9263.844,156.9561,67.57113, 0, 0, 1, 0, 100, 0), -- 07:13:46
|
||||
(@ENTRY, 18 ,-9267.183,155.5535,67.38669, 0, 0, 1, 0, 100, 0), -- 07:13:48
|
||||
(@ENTRY, 19 ,-9276.685,152.7653,67.1469, 0, 0, 1, 0, 100, 0), -- 07:13:50
|
||||
(@ENTRY, 20 ,-9299.891,144.6541,66.28534, 0, 0, 1, 0, 100, 0), -- 07:13:52
|
||||
(@ENTRY, 21 ,-9319.277,135.1606,65.03548, 0, 0, 1, 0, 100, 0), -- 07:13:53
|
||||
(@ENTRY, 22 ,-9332.896,126.1193,63.87636, 0, 0, 1, 0, 100, 0), -- 07:13:57
|
||||
(@ENTRY, 23 ,-9352.381,116.5327,62.6504, 0, 0, 1, 0, 100, 0), -- 07:13:58
|
||||
(@ENTRY, 24 ,-9372.848,108.2433,60.93748, 0, 0, 1, 0, 100, 0), -- 07:14:02
|
||||
(@ENTRY, 25 ,-9390.894,102.341,59.62895, 0, 0, 1, 0, 100, 0), -- 07:14:04
|
||||
(@ENTRY, 26 ,-9395.941,100.5215,59.13963, 0, 0, 1, 0, 100, 0), -- 07:14:07
|
||||
(@ENTRY, 27 ,-9409.482,92.83659,58.09391, 0, 0, 1, 0, 100, 0), -- 07:14:08
|
||||
(@ENTRY, 28 ,-9417.838,86.17823,57.23439, 0, 0, 1, 0, 100, 0), -- 07:14:09
|
||||
(@ENTRY, 29 ,-9433.703,74.28316,56.51966, 0, 0, 1, 0, 100, 0), -- 07:14:10
|
||||
(@ENTRY, 30 ,-9435.221,73.19769,56.34148, 0, 0, 1, 0, 100, 0), -- 07:14:13
|
||||
(@ENTRY, 31 ,-9448.541,67.65511,56.51829, 0, 0, 1, 0, 100, 0), -- 07:14:14
|
||||
(@ENTRY, 32 ,-9460.035,63.37641,55.895, 0, 0, 0, 0, 100, 0);
|
||||
|
||||
-- WOODS_PATH
|
||||
SET @ENTRY := 80502;
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@ENTRY;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`, `action`, `action_chance`, `wpguid`) VALUES
|
||||
(@ENTRY, 1 ,-9445.364,58.4987,55.97727, 0, 0, 1, 0, 100, 0), -- 07:31:27
|
||||
(@ENTRY, 2 ,-9445.032,58.55785,56.2136, 0, 0, 1, 0, 100, 0), -- 07:31:28
|
||||
(@ENTRY, 3 ,-9427.596,41.84236,57.21891, 0, 0, 1, 0, 100, 0), -- 07:31:30
|
||||
(@ENTRY, 4 ,-9410.779,22.67539,58.65345, 0, 0, 1, 0, 100, 0), -- 07:31:32
|
||||
(@ENTRY, 5 ,-9391.792,0.02795124,60.67725, 0, 0, 1, 0, 100, 0), -- 07:31:34
|
||||
(@ENTRY, 6 ,-9377.568,-14.63209,62.37714, 0, 0, 1, 0, 100, 0), -- 07:31:38
|
||||
(@ENTRY, 7 ,-9363.139,-29.04746,63.92186, 0, 0, 1, 0, 100, 0), -- 07:31:41
|
||||
(@ENTRY, 8 ,-9348.428,-41.40288,65.24854, 0, 0, 1, 0, 100, 0), -- 07:31:43
|
||||
(@ENTRY, 9 ,-9333.074,-51.61682,66.22433, 0, 0, 1, 0, 100, 0), -- 07:31:46
|
||||
(@ENTRY, 10,-9324.543,-55.41918,66.51912, 0, 0, 1, 0, 100, 0), -- 07:31:49
|
||||
(@ENTRY, 11,-9306.514,-57.01295,66.98401, 0, 0, 1, 0, 100, 0), -- 07:31:51
|
||||
(@ENTRY, 12,-9288.65,-65.67791,67.9245, 0, 0, 1, 0, 100, 0), -- 07:31:53
|
||||
(@ENTRY, 13,-9266.111,-81.1689,69.09925, 0, 0, 1, 0, 100, 0), -- 07:31:55
|
||||
(@ENTRY, 14,-9246.279,-94.43002,70.69906, 0, 0, 1, 0, 100, 0), -- 07:31:57
|
||||
(@ENTRY, 15,-9241.527,-97.61461,70.86122, 0, 0, 1, 0, 100, 0), -- 07:32:01
|
||||
(@ENTRY, 16,-9228.587,-103.1802,71.24693, 0, 0, 1, 0, 100, 0), -- 07:32:02
|
||||
(@ENTRY, 17,-9202.936,-110.5503,71.32005, 0, 0, 1, 0, 100, 0), -- 07:32:06
|
||||
(@ENTRY, 18,-9189.19,-111.8865,71.32235, 0, 0, 1, 0, 100, 0), -- 07:32:07
|
||||
(@ENTRY, 19,-9164.87,-117.8934,73.10243, 0, 0, 1, 0, 100, 0), -- 07:32:10
|
||||
(@ENTRY, 20,-9164.276,-118.5964,73.10841, 0, 0, 1, 0, 100, 0), -- 07:32:11
|
||||
(@ENTRY, 21,-9157.389,-130.045,74.83447, 0, 0, 1, 0, 100, 0), -- 07:32:12
|
||||
(@ENTRY, 22,-9155.88,-137.6466,74.73592, 0, 0, 0, 0, 100, 0);
|
||||
|
||||
-- HOUSE_PATH
|
||||
SET @ENTRY := 80503;
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@ENTRY;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`, `action`, `action_chance`, `wpguid`) VALUES
|
||||
(@ENTRY, 1 ,-9158.411,-126.9952,74.33096, 0, 0, 0, 0, 100, 0), -- 07:38:14
|
||||
(@ENTRY, 2 ,-9161.936,-122.2632,73.48005, 0, 0, 0, 0, 100, 0), -- 07:38:18
|
||||
(@ENTRY, 3 ,-9171.188,-116.403,72.13133, 0, 0, 0, 0, 100, 0), -- 07:38:23
|
||||
(@ENTRY, 4 ,-9175.792,-115.2302,71.66595, 0, 0, 0, 0, 100, 0), -- 07:38:26
|
||||
(@ENTRY, 5 ,-9188.126,-113.6762,71.1235, 0, 0, 0, 0, 100, 0), -- 07:38:31
|
||||
(@ENTRY, 6 ,-9198.314,-111.6536,71.19713, 0, 0, 0, 0, 100, 0), -- 07:38:36
|
||||
(@ENTRY, 7 ,-9212.777,-108.1362,71.49892, 0, 0, 0, 0, 100, 0), -- 07:38:41
|
||||
(@ENTRY, 8 ,-9221.962,-106.0956,71.29646, 0, 0, 0, 0, 100, 0), -- 07:38:46
|
||||
(@ENTRY, 9 ,-9238.102,-98.25057,71.02353, 0, 0, 0, 0, 100, 0), -- 07:38:52
|
||||
(@ENTRY, 10,-9255.748,-87.4807,70.21791, 0, 0, 0, 0, 100, 0), -- 07:38:55
|
||||
(@ENTRY, 11,-9262.821,-82.41038,69.39944, 0, 0, 0, 0, 100, 0), -- 07:39:01
|
||||
(@ENTRY, 12,-9267.083,-79.06253,68.88945, 0, 0, 0, 0, 100, 0), -- 07:39:06
|
||||
(@ENTRY, 13,-9277.369,-71.58946,68.45795, 0, 0, 0, 0, 100, 0), -- 07:39:11
|
||||
(@ENTRY, 14,-9294.043,-62.51098,67.73149, 0, 0, 0, 0, 100, 0), -- 07:39:15
|
||||
(@ENTRY, 15,-9296.369,-61.36803,67.39666, 0, 0, 0, 0, 100, 0), -- 07:39:20
|
||||
(@ENTRY, 16,-9306.391,-58.70887,67.12717, 0, 0, 0, 0, 100, 0), -- 07:39:23
|
||||
(@ENTRY, 17,-9314.822,-57.41774,66.82509, 0, 0, 0, 0, 100, 0), -- 07:39:27
|
||||
(@ENTRY, 18,-9336.649,-53.8809,66.1555, 0, 0, 0, 0, 100, 0), -- 07:39:31
|
||||
(@ENTRY, 19,-9337.359,-53.52038,65.92425, 0, 0, 0, 0, 100, 0), -- 07:39:37
|
||||
(@ENTRY, 20,-9350.479,-55.02436,66.34923, 0, 0, 0, 0, 100, 0), -- 07:39:40
|
||||
(@ENTRY, 21,-9351.158,-55.39683,66.35679, 0, 0, 0, 0, 100, 0), -- 07:39:43
|
||||
(@ENTRY, 22,-9359.373,-69.76035,64.45229, 0, 0, 0, 0, 100, 0), -- 07:39:44
|
||||
(@ENTRY, 23,-9360.618,-71.72406,64.24545, 0, 0, 0, 0, 100, 0), -- 07:39:50
|
||||
(@ENTRY, 24,-9366.256,-80.96321,64.52115, 0, 0, 0, 0, 100, 0), -- 07:39:54
|
||||
(@ENTRY, 25,-9372.031,-87.89227,64.235367, 0, 0, 0, 0, 100, 0),
|
||||
(@ENTRY, 26,-9376.598,-89.94442,63.722805, 0, 0, 0, 0, 100, 0),
|
||||
(@ENTRY, 27,-9383.135,-84.98008,63.336449, 0, 0, 0, 0, 100, 0),
|
||||
(@ENTRY, 28,-9380.336,-78.55399,64.437691, 0, 0, 0, 0, 100, 0),
|
||||
(@ENTRY, 29,-9390.718,-68.80339,64.437691, 0, 0, 0, 0, 100, 0),
|
||||
(@ENTRY, 30,-9392.218,-71.91143,64.437691, 0, 0, 0, 0, 100, 0),
|
||||
(@ENTRY, 31,-9385.052,-76.36288,69.202148, 0, 0, 0, 0, 100, 0),
|
||||
(@ENTRY, 32,-9382.018,-76.88008,69.164696, 0, 0, 0, 0, 100, 0),
|
||||
(@ENTRY, 33,-9377.161,-72.19738,69.198997, 0, 0, 0, 0, 100, 0),
|
||||
(@ENTRY, 34,-9375.251,-70.71793,69.201691, 0, 0, 0, 0, 100, 0),
|
||||
(@ENTRY, 35,-9372.823,-66.29554,69.201859, 0, 0, 0, 0, 100, 0);
|
||||
|
||||
-- Lisa run away waypoints
|
||||
SET @ENTRY := 80700;
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@ENTRY;
|
||||
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`, `action`, `action_chance`, `wpguid`) VALUES
|
||||
(@ENTRY, 1,-9154.618,-134.9246,75.17611, 0, 0, 1, 0, 100, 0), -- 07:32:15
|
||||
(@ENTRY, 2,-9155.719,-132.458,75.17039, 0, 0, 1, 0, 100, 0), -- 07:32:15
|
||||
(@ENTRY, 3,-9340.689,-89.09771,66.49249, 0, 0, 1, 0, 100, 0), -- 07:32:27
|
||||
(@ENTRY, 4,-9353.076,-86.58789,65.68958, 0, 0, 0, 0, 100, 0); -- 07:33:47
|
||||
|
||||
-- Correct position for each child
|
||||
UPDATE `creature` SET `position_x`=-9373.521, `position_y`=-67.71767, `position_z`=69.201965, `orientation`=1.117011 WHERE `guid`=280696;
|
||||
UPDATE `creature` SET `position_x`=-9374.94, `position_y`=-62.51654, `position_z`=69.201965, `orientation`=5.201081 WHERE `guid`=280041;
|
||||
UPDATE `creature` SET `position_x`=-9371.013, `position_y`=-71.20811, `position_z`=69.201965, `orientation`=1.937315 WHERE `guid`=280042;
|
||||
UPDATE `creature` SET `position_x`=-9368.419, `position_y`=-66.47543, `position_z`=69.201965, `orientation`=3.141593 WHERE `guid`=280697;
|
||||
UPDATE `creature` SET `position_x`=-9372.376, `position_y`=-65.49946, `position_z`=69.201965, `orientation`=4.206244 WHERE `guid`=280043;
|
||||
UPDATE `creature` SET `position_x`=-9377.477, `position_y`=-67.8297, `position_z`=69.201965, `orientation`=0.296706 WHERE `guid`=280040;
|
||||
2
sql/updates/auth/4.3.4/2018_01_15_00_auth.sql
Normal file
2
sql/updates/auth/4.3.4/2018_01_15_00_auth.sql
Normal file
@@ -0,0 +1,2 @@
|
||||
-- TDB 4.3.4-26 auth database
|
||||
UPDATE `updates` SET `state`='ARCHIVED';
|
||||
@@ -0,0 +1,2 @@
|
||||
-- TDB 4.3.4-26 characters database
|
||||
UPDATE `updates` SET `state`='ARCHIVED';
|
||||
3
sql/updates/world/4.3.4/2018_01_15_00_world.sql
Normal file
3
sql/updates/world/4.3.4/2018_01_15_00_world.sql
Normal file
@@ -0,0 +1,3 @@
|
||||
UPDATE `version` SET `db_version`='TDB 434.26', `cache_id`=26 LIMIT 1;
|
||||
|
||||
UPDATE `updates` SET `state`='ARCHIVED';
|
||||
1
sql/updates/world/4.3.4/custom_2018_01_15_01_world.sql
Normal file
1
sql/updates/world/4.3.4/custom_2018_01_15_01_world.sql
Normal file
@@ -0,0 +1 @@
|
||||
ALTER TABLE `gameobject_template` CHANGE `unkInt32` `RequiredLevel` int(10) NOT NULL DEFAULT '0';
|
||||
Reference in New Issue
Block a user