diff options
author | TDB Release <tdb-release@build.bot> | 2019-07-15 05:59:57 +0000 |
---|---|---|
committer | TDB Release <tdb-release@build.bot> | 2019-07-15 05:59:57 +0000 |
commit | f46644c92585c5bccc612363d1b8aae5d0667960 (patch) | |
tree | 197d1eddb89478d66e87aac0b6c726806921ac5b /sql/old/3.3.5a | |
parent | 374597c8e96c886f1e3647d405bf3160c8b98bf8 (diff) |
TDB 335.19071 - 2019/07/15TDB335.19071
Diffstat (limited to 'sql/old/3.3.5a')
129 files changed, 5348 insertions, 0 deletions
diff --git a/sql/old/3.3.5a/auth/19061_2019_07_15/2019_06_15_00_auth.sql b/sql/old/3.3.5a/auth/19061_2019_07_15/2019_06_15_00_auth.sql new file mode 100644 index 00000000000..fc5c617d408 --- /dev/null +++ b/sql/old/3.3.5a/auth/19061_2019_07_15/2019_06_15_00_auth.sql @@ -0,0 +1,2 @@ +-- TDB 335.19061 auth +UPDATE `updates` SET `state`='ARCHIVED'; diff --git a/sql/old/3.3.5a/auth/19061_2019_07_15/2019_06_16_00_auth.sql b/sql/old/3.3.5a/auth/19061_2019_07_15/2019_06_16_00_auth.sql new file mode 100644 index 00000000000..627e4dcab5d --- /dev/null +++ b/sql/old/3.3.5a/auth/19061_2019_07_15/2019_06_16_00_auth.sql @@ -0,0 +1,10 @@ +DELETE FROM `rbac_permissions` WHERE `id` IN (875, 876, 877); +INSERT INTO `rbac_permissions` (`id`, `name`) VALUES +(875, "Command: lookup map id"), +(876, "Command: lookup item id"), +(877, "Command: lookup quest id"); + +INSERT INTO `rbac_linked_permissions` (`id`, `linkedId`) VALUES +(196, 875), +(196, 876), +(196, 877); diff --git a/sql/old/3.3.5a/auth/19061_2019_07_15/2019_06_21_00_auth.sql b/sql/old/3.3.5a/auth/19061_2019_07_15/2019_06_21_00_auth.sql new file mode 100644 index 00000000000..1db042a632f --- /dev/null +++ b/sql/old/3.3.5a/auth/19061_2019_07_15/2019_06_21_00_auth.sql @@ -0,0 +1,7 @@ +DELETE FROM `rbac_permissions` WHERE `id` IN (8, 9); +INSERT INTO `rbac_permissions` (`id`, `name`) VALUES +(8, "Cannot earn achievements"), +(9, "Cannot earn realm first achievements"); + +INSERT INTO `rbac_linked_permissions` (`id`, `linkedId`) VALUES +(194, 9); diff --git a/sql/old/3.3.5a/characters/19061_2019_07_15/2019_06_15_00_characters.sql b/sql/old/3.3.5a/characters/19061_2019_07_15/2019_06_15_00_characters.sql new file mode 100644 index 00000000000..96e266d212b --- /dev/null +++ b/sql/old/3.3.5a/characters/19061_2019_07_15/2019_06_15_00_characters.sql @@ -0,0 +1,2 @@ +-- TDB 335.19061 characters +UPDATE `updates` SET `state`='ARCHIVED'; diff --git a/sql/old/3.3.5a/characters/19061_2019_07_15/2019_07_14_00_characters.sql b/sql/old/3.3.5a/characters/19061_2019_07_15/2019_07_14_00_characters.sql new file mode 100644 index 00000000000..24fc278db61 --- /dev/null +++ b/sql/old/3.3.5a/characters/19061_2019_07_15/2019_07_14_00_characters.sql @@ -0,0 +1,20 @@ +-- +DROP TABLE IF EXISTS `respawn`; +CREATE TABLE `respawn` ( + `type` smallint(10) unsigned NOT NULL, + `spawnId` int(10) unsigned NOT NULL, + `respawnTime` bigint(20) unsigned NOT NULL, + `mapId` smallint(10) unsigned NOT NULL, + `instanceId` int(10) unsigned NOT NULL, + PRIMARY KEY (`type`,`spawnId`,`instanceId`), + KEY `idx_instance` (`instanceId`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stored respawn times'; + +INSERT INTO `respawn` (`type`,`spawnId`,`respawnTime`,`mapId`,`instanceId`) +SELECT 0 as `type`,`guid`,`respawnTime`,`mapId`,`instanceId` FROM `creature_respawn`; + +INSERT INTO `respawn` (`type`,`spawnId`,`respawnTime`,`mapId`,`instanceId`) +SELECT 1 as `type`,`guid`,`respawnTime`,`mapId`,`instanceId` FROM `gameobject_respawn`; + +DROP TABLE `creature_respawn`; +DROP TABLE `gameobject_respawn`; diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_15_00_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_15_00_world.sql new file mode 100644 index 00000000000..686bb33d199 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_15_00_world.sql @@ -0,0 +1,3 @@ +-- TDB 335.19061 world +UPDATE `version` SET `db_version`='TDB 335.19061', `cache_id`=19061 LIMIT 1; +UPDATE `updates` SET `state`='ARCHIVED'; diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_15_01_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_15_01_world.sql new file mode 100644 index 00000000000..0b6b18c60f9 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_15_01_world.sql @@ -0,0 +1,59 @@ +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET NAMES utf8 */; +/*!50503 SET NAMES utf8mb4 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; + +DROP TABLE IF EXISTS `creature_template_resistance`; +CREATE TABLE IF NOT EXISTS `creature_template_resistance` ( + `CreatureID` MEDIUMINT(8) UNSIGNED NOT NULL, + `School` TINYINT(6) UNSIGNED NOT NULL, + `Resistance` SMALLINT(6) DEFAULT NULL, + `VerifiedBuild` SMALLINT(5) DEFAULT '0', + PRIMARY KEY (`CreatureID`, `School`) +) ENGINE=INNODB DEFAULT CHARSET=utf8; + +DROP TABLE IF EXISTS `creature_template_spell`; +CREATE TABLE IF NOT EXISTS `creature_template_spell` ( + `CreatureID` mediumint(8) unsigned NOT NULL, + `Index` TINYINT(6) unsigned NOT NULL DEFAULT '0', + `Spell` mediumint(8) unsigned DEFAULT NULL, + `VerifiedBuild` smallint(5) DEFAULT '0', + PRIMARY KEY (`CreatureID`, `Index`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; + +/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */; +/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; + +INSERT INTO creature_template_resistance SELECT entry, 1, resistance1, VerifiedBuild FROM creature_template WHERE resistance1 <> 0; +INSERT INTO creature_template_resistance SELECT entry, 2, resistance2, VerifiedBuild FROM creature_template WHERE resistance2 <> 0; +INSERT INTO creature_template_resistance SELECT entry, 3, resistance3, VerifiedBuild FROM creature_template WHERE resistance3 <> 0; +INSERT INTO creature_template_resistance SELECT entry, 4, resistance4, VerifiedBuild FROM creature_template WHERE resistance4 <> 0; +INSERT INTO creature_template_resistance SELECT entry, 5, resistance5, VerifiedBuild FROM creature_template WHERE resistance5 <> 0; +INSERT INTO creature_template_resistance SELECT entry, 6, resistance6, VerifiedBuild FROM creature_template WHERE resistance6 <> 0; + +INSERT INTO creature_template_spell SELECT entry, 0, spell1, VerifiedBuild FROM creature_template WHERE spell1 <> 0; +INSERT INTO creature_template_spell SELECT entry, 1, spell2, VerifiedBuild FROM creature_template WHERE spell2 <> 0; +INSERT INTO creature_template_spell SELECT entry, 2, spell3, VerifiedBuild FROM creature_template WHERE spell3 <> 0; +INSERT INTO creature_template_spell SELECT entry, 3, spell4, VerifiedBuild FROM creature_template WHERE spell4 <> 0; +INSERT INTO creature_template_spell SELECT entry, 4, spell5, VerifiedBuild FROM creature_template WHERE spell5 <> 0; +INSERT INTO creature_template_spell SELECT entry, 5, spell6, VerifiedBuild FROM creature_template WHERE spell6 <> 0; +INSERT INTO creature_template_spell SELECT entry, 6, spell7, VerifiedBuild FROM creature_template WHERE spell7 <> 0; +INSERT INTO creature_template_spell SELECT entry, 7, spell8, VerifiedBuild FROM creature_template WHERE spell8 <> 0; + +ALTER TABLE `creature_template` + DROP COLUMN `resistance1`, + DROP COLUMN `resistance2`, + DROP COLUMN `resistance3`, + DROP COLUMN `resistance4`, + DROP COLUMN `resistance5`, + DROP COLUMN `resistance6`, + DROP COLUMN `spell1`, + DROP COLUMN `spell2`, + DROP COLUMN `spell3`, + DROP COLUMN `spell4`, + DROP COLUMN `spell5`, + DROP COLUMN `spell6`, + DROP COLUMN `spell7`, + DROP COLUMN `spell8`; diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_15_02_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_15_02_world.sql new file mode 100644 index 00000000000..2ffb41d2f63 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_15_02_world.sql @@ -0,0 +1,2 @@ +-- +DELETE FROM `creature_loot_template` WHERE `Item`=16665; diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_15_03_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_15_03_world.sql new file mode 100644 index 00000000000..f7a012150cc --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_15_03_world.sql @@ -0,0 +1,36 @@ +-- +DELETE FROM `creature_text` WHERE `CreatureID`=17841; +INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES +(17841, 0, 0, "It's just like the structure you described at Umbrafen Lake. Does this mean the naga are pumping water out of all the lakes in Zangarmarsh?", 15, 0, 100, 0, 0, 0, 14706, 0, "Ysiel Windsinger"), +(17841, 1, 0, "The naga are even pumping the water out of their own lake! What purpose could that possibly serve?", 15, 0, 100, 0, 0, 0, 14712, 0, "Ysiel Windsinger"), +(17841, 2, 0, "There! Those pipes all appear to be connected to that structure. It can't possibly fit all the water they've been stealing. Where are they keeping it?", 15, 0, 100, 0, 0, 0, 14713, 0, "Ysiel Windsinger"), +(17841, 3, 0, "What we saw explains what happened in the Dead Mire. There was a lake here once. If we don't stop the naga, all of the marsh will soon look like this!", 15, 0, 100, 0, 0, 0, 14714, 0, "Ysiel Windsinger"); +DELETE FROM `event_scripts` WHERE `id` IN (11286,11289,11290,11291); +INSERT INTO `event_scripts` (`id`, `delay`, `command`, `datalong`, `datalong2`, `dataint`, `x`, `y`, `z`, `o`) VALUES +(11286, 0, 10, 17841, 100, 0, 0,0,0, 0), +(11289, 0, 10, 17841, 100, 0, 0,0,0, 0), +(11290, 0, 10, 17841, 100, 0, 0,0,0, 0), +(11291, 0, 10, 17841, 100, 0, 263.479, 5527.215, 65.718498, 0); +DELETE FROM `smart_scripts` WHERE `entryorguid`=17841 AND `source_type`=0 AND `id`>0; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `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 +(17841, 0, 1, 0, 54, 0, 100, 0, 0, 0, 0, 0, 47, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Ysiel Windsinger - Just summoned - Say text"), +(17841, 0, 2, 0, 54, 0, 100, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 21, 90, 0, 0, 0, 0, 0, 0, "Ysiel Windsinger - Just summoned - Say tex"), +(17841, 0, 3, 0, 54, 0, 100, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 21, 90, 0, 0, 0, 0, 0, 0, "Ysiel Windsinger - Just summoned - Say tex"), +(17841, 0, 4, 0, 54, 0, 100, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 21, 90, 0, 0, 0, 0, 0, 0, "Ysiel Windsinger - Just summoned - Say tex"), +(17841, 0, 5, 0, 54, 0, 100, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 21, 90, 0, 0, 0, 0, 0, 0, "Ysiel Windsinger - Just summoned - Say tex"); +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=22 AND `SourceEntry`=17841; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(22, 3, 17841, 0, 0, 23, 1, 3819, 0, 0, 0, 0, 0, '', 'Ysiel Windsinger Requires Area'), +(22, 4, 17841, 0, 0, 23, 1, 3653, 0, 0, 1, 0, 0, '', 'Ysiel Windsinger Requires Area'), +(22, 4, 17841, 0, 0, 23, 1, 3819, 0, 0, 1, 0, 0, '', 'Ysiel Windsinger Requires Area'), +(22, 4, 17841, 0, 0, 23, 1, 3648, 0, 0, 1, 0, 0, '', 'Ysiel Windsinger Requires Area'), +(22, 5, 17841, 0, 0, 23, 1, 3653, 0, 0, 0, 0, 0, '', 'Ysiel Windsinger Requires Area'), +(22, 6, 17841, 0, 0, 23, 1, 3648, 0, 0, 0, 0, 0, '', 'Ysiel Windsinger Requires Area'); +DELETE FROM `spell_linked_spell` WHERE `spell_trigger` IN (31746) AND `spell_effect`=31773; +DELETE FROM `spell_linked_spell` WHERE `spell_trigger` IN (-31773, -31774, -31775, -31776); +INSERT INTO `spell_linked_spell` (`spell_trigger`, `spell_effect`, `type`, `comment`) VALUES +(31746, 31773, 0, "Whisper Aura 0"), +(-31773, 31774, 0, "Whisper Aura 1"), +(-31774, 31775, 0, "Whisper Aura 2"), +(-31775, 31776, 0, "Whisper Aura 3"), +(-31776, 31777, 0, "Whisper Aura 4"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_15_04_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_15_04_world.sql new file mode 100644 index 00000000000..559a41443da --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_15_04_world.sql @@ -0,0 +1,12 @@ +DELETE FROM `smart_scripts` WHERE `entryorguid`=23728 AND `source_type`=0 AND `id`=1; +DELETE FROM `smart_scripts` WHERE `entryorguid`=2372801 AND `source_type`=9; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(23728,0,1,0,62,0,100,0,8984,0,0,0,0,80,2372801,2,0,0,0,0,1,0,0,0,0,0,0,0,0,"Guard Captain Zorek - On Quest Accepted - Action list'"), +(2372801,9,0,0,0,0,100,0,0,0,0,0,0,85,49845,0,0,0,0,0,7,0,0,0,0,0,0,0,0,"Guard Captain Zorek - Action list - Cast 'Valgarde Gryphon'"), +(2372801,9,1,0,0,0,100,0,0,0,0,0,0,72,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,"Guard Captain Zorek - Action list - Close gossip"); + +SET @GRYPHON:= 27886; +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=22 AND `SourceEntry` IN(@GRYPHON); +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(22, 1, @GRYPHON, 0, 0, 31, 0, 4, 0, 0, 0, 0, 0, '', 'Valgarde Gryphon - Only run SAI if invoker is player'), +(22, 7, @GRYPHON, 0, 0, 1, 1, 46598, 0, 0, 1, 0, 0, '', 'Valgarde Gryphon - Only run SAI no aura 46598'); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_16_00_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_16_00_world.sql new file mode 100644 index 00000000000..8e851752eaa --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_16_00_world.sql @@ -0,0 +1,36 @@ +-- +DELETE FROM `npc_spellclick_spells` WHERE `npc_entry` IN (26477, 28202, 28203, 29856); +INSERT INTO `npc_spellclick_spells` (`npc_entry`, `spell_id`, `cast_flags`, `user_type`) VALUES +(26477, 61832, 1, 0), +(28202, 50926, 1, 0), +(28203, 50918, 1, 0), +(29856, 55364, 1, 0); + +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (26477, 28202, 28203, 29856) 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 +(26477,0,0,0, 8,0,100,1,61832,0,0,0,11,47096,3,0,0,0,0,7,0,0,0,0,0,0,0,"Dead Mage Hunter - On Spellhit 'Rifle the Bodies: Create Magehunter Personal Effects Cover' - Cast `Rifle the Bodies: Create Mage Hunter Personal Effects`"), +(26477,0,1,0,31,0,100,1,47096,0,0,0,41,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Dead Mage Hunter - On Spellhit target 'Rifle the Bodies: Create Magehunter Personal Effects' - Despawn Instant"), +(28202,0,0,0, 8,0,100,1,50926,0,0,0,11,50927,3,0,0,0,0,7,0,0,0,0,0,0,0,"Zul'Drak Rat - On Spellhit 'Gluttonous Lurkers: Create Zul'Drak Rat Cover' - Cast `Create Zul'Drak Rat`"), +(28202,0,1,0,31,0,100,1,50927,0,0,0,41,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Zul'Drak Rat - On Spellhit target 'Create Zul'Drak Rat' - Despawn Instant"), +(28203,0,0,0, 8,0,100,1,50918,0,0,0,11,50919,3,0,0,0,0,7,0,0,0,0,0,0,0,"Gorged Lurking Basilisk - On Spellhit 'Gluttonous Lurkers: Create Basilisk Crystals Cover' - Cast `Create Basilisk Crystals`)"), +(28203,0,1,0,31,0,100,1,50919,0,0,0,41,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Gorged Lurking Basilisk - On Spellhit target 'Create Basilisk Crystals' - Despawn Instant"), +(29856,0,0,0, 8,0,100,1,55364,0,0,0,11,55363,3,0,0,0,0,7,0,0,0,0,0,0,0,"Gooey Ghoul Drool - On Spellhit 'Create Ghoul Drool Cover' - Cast `Create Gooey Ghoul Drool`"), +(29856,0,1,0,31,0,100,1,55363,0,0,0,41,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Gooey Ghoul Drool - On Spellhit target 'Create Gooey Ghoul Drool' - Despawn Instant"); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 18 AND `SourceGroup` IN (26477, 28202, 28203, 29856); +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(18, 26477, 61832, 0, 0, 9, 0, 11999, 0, 0, 0, 0, 0, "", "spellclick 'Rifle the Bodies: Create Magehunter Personal Effects Cover' requires quest 'Rifle the Bodies (H)' active"), +(18, 26477, 61832, 0, 1, 9, 0, 12000, 0, 0, 0, 0, 0, "", "spellclick 'Rifle the Bodies: Create Magehunter Personal Effects Cover' requires quest 'Rifle the Bodies (A)' active"), +(18, 28202, 50926, 0, 0, 9, 0, 12527, 0, 0, 0, 0, 0, "", "spellclick 'Gluttonous Lurkers: Create Zul'Drak Rat Cover' requires quest 'Gluttonous Lurkers' active"), +(18, 28203, 50918, 0, 0, 9, 0, 12527, 0, 0, 0, 0, 0, "", "spellclick 'Gluttonous Lurkers: Create Basilisk Crystals Cover' requires quest 'Gluttonous Lurkers' active"), +(18, 29856, 55364, 0, 0, 9, 0, 12629, 0, 0, 0, 0, 0, "", "spellclick 'Create Ghoul Drool Cover' requires quest 'You Can Run, But You Can't Hide' active"), +(18, 29856, 55364, 0, 0, 2, 0, 38687, 5, 0, 1, 0, 0, "", "spellclick 'Create Ghoul Drool Cover' requires not 5 Gooey Ghoul Drool in bags"), +(18, 29856, 55364, 0, 1, 9, 0, 12643, 0, 0, 0, 0, 0, "", "spellclick 'Create Ghoul Drool Cover' requires quest 'Silver Lining' active"), +(18, 29856, 55364, 0, 1, 2, 0, 38687, 5, 0, 1, 0, 0, "", "spellclick 'Create Ghoul Drool Cover' requires not 5 Gooey Ghoul Drool in bags"); + + +UPDATE `creature_template` SET `unit_flags`=0 WHERE `entry` IN (26477); +UPDATE `creature_template_addon` SET `auras`="29266" WHERE `entry` IN (26477); +DELETE FROM `creature_template_addon` WHERE `entry` = 28203; +INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `auras`) VALUES +(28203, 0, 0, 0, 4097, 0, '50917'); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_16_01_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_16_01_world.sql new file mode 100644 index 00000000000..8405d7ca31c --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_16_01_world.sql @@ -0,0 +1,10 @@ +-- +DELETE FROM `spell_group_stack_rules` WHERE `group_id`=1112; +INSERT INTO `spell_group_stack_rules` (`group_id`, `stack_rule`) VALUES +(1112, 1); +DELETE FROM `spell_group` WHERE `id`=1112; +INSERT INTO `spell_group` (`id`, `spell_id`) VALUES +(1112, 8219), +(1112, 8220), +(1112, 8221), +(1112, 8222); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_16_02_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_16_02_world.sql new file mode 100644 index 00000000000..7a9ea2100dd --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_16_02_world.sql @@ -0,0 +1,20 @@ +-- +UPDATE `quest_template_addon` SET `PrevQuestID`=12854 WHERE `ID`=12855; + +UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=29650; +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (29650, 2965000) AND `source_type` IN (0, 9); +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `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 +(29650, 0, 0, 0, 20, 0, 100, 0, 12854, 0, 0, 0, 0, 80, 2965000, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Archaeologist Andorin - On Quest 'On Brann's Trail' Rewarded - Run Script"), +(2965000, 9, 0, 0, 0, 0, 100, 0, 500, 500, 0, 0, 0, 66, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Archaeologist Andorin - On Script - Face Invoker"), +(2965000, 9, 1, 0, 0, 0, 100, 0, 500, 500, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Archaeologist Andorin - On Script - Talk 0"), +(2965000, 9, 2, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Archaeologist Andorin - On Script - Talk 1"), +(2965000, 9, 3, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Archaeologist Andorin - On Script - Talk 2"), +(2965000, 9, 4, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Archaeologist Andorin - On Script - Talk 3"), +(2965000, 9, 5, 0, 0, 0, 100, 0, 5000, 5000, 0, 0, 0, 66, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Archaeologist Andorin - On Script - Restore Orientation"); + +DELETE FROM `creature_text` WHERE `CreatureID`=29650; +INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES +(29650, 0, 0, "It's those blasted iron dwarves again! Somehow, they found him before we did.", 12, 7, 100, 1, 0, 0, 30322, 0, "Archaeologist Andorin"), +(29650, 1, 0, "They're not going to give up until they find him. We can't allow that to happen, $n, and Brann knows it.", 12, 7, 100, 1, 0, 0, 30323, 0, "Archaeologist Andorin"), +(29650, 2, 0, "There are some rather cryptic instructions in this note. Brann must've had some kind of backup plan, but he can't keep evading capture forever...", 12, 7, 100, 1, 0, 0, 30324, 0, "Archaeologist Andorin"), +(29650, 3, 0, "It's up to you to find him before the irons do!", 12, 7, 100, 397, 0, 0, 30325, 0, "Archaeologist Andorin"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_16_03_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_16_03_world.sql new file mode 100644 index 00000000000..c1e698f1a0d --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_16_03_world.sql @@ -0,0 +1,12 @@ +-- +UPDATE `spell_dbc` SET `RangeIndex`=1, `EffectImplicitTargetA1`=18, `EffectImplicitTargetA2`=18, `EffectRadiusIndex1`=0, `EffectRadiusIndex2`=0 WHERE `id` IN (11756); +UPDATE `spell_dbc` SET `RangeIndex`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=0, `EffectRadiusIndex2`=0 WHERE `id` IN (19394); + +UPDATE `gameobject_template` SET `AIName`='SmartGameObjectAI' WHERE `entry` IN (144064); +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (144064) AND `source_type`=1; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(144064,1,0,0,70,0,100,0,3,0,0,0,41,0,0,0,0,0,0,20,177683,4,0,0,0,0,0, "Gordunni Dirt Mound - In loot state 3 - Despawn visual gob"); + +UPDATE `smart_scripts` SET `event_param2`=0 WHERE `entryorguid`=17214 AND `source_type`=0 AND `id`=1; +UPDATE `smart_scripts` SET `event_param2`=0 WHERE `entryorguid`=17215 AND `source_type`=0 AND `id`=4; +UPDATE `smart_scripts` SET `event_param2`=0 WHERE `entryorguid`=32423 AND `source_type`=0 AND `id`=0; diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_17_00_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_17_00_world.sql new file mode 100644 index 00000000000..b88ba01cf53 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_17_00_world.sql @@ -0,0 +1,111 @@ +-- Phasing +DELETE FROM `spell_area` WHERE `spell`=70193 AND `area`=4092; +INSERT INTO `spell_area` (`spell`,`area`,`quest_start`,`quest_end`,`aura_spell`,`racemask`,`gender`,`autocast`,`quest_start_status`,`quest_end_status`) VALUES +(70193,4092,24535,0,0,0,2,1,10,0), +(70193,4092,24563,0,0,0,2,1,10,0); + +-- Thalorien Dawnseekers Remains +UPDATE `creature` SET `phaseMask`=2049,`position_x`=11792.01,`position_y`=-7065.793,`position_z`=25.94043,`orientation`=5.009095 WHERE `guid`=950; +UPDATE `creature_template` SET `gossip_menu_id`=10908,`ScriptName`='npc_thalorien_dawnseeker' WHERE `entry`=37552; +DELETE FROM `creature_template_addon` WHERE `entry`=37552; +INSERT INTO `creature_template_addon` (`entry`,`bytes2`,`auras`) VALUES (37552,1,'29266'); + +DELETE FROM `gossip_menu` WHERE `MenuID` IN (10908,37552); +INSERT INTO `gossip_menu` (`MenuID`, `TextID`) VALUES (10908, 15155); +DELETE FROM `gossip_menu_option` WHERE `MenuID`=10908; +INSERT INTO `gossip_menu_option` (`MenuID`,`OptionID`,`OptionIcon`,`OptionText`,`OptionBroadcastTextID`,`OptionType`,`OptionNpcFlag`,`ActionMenuID`,`ActionPoiID`,`BoxCoded`,`BoxMoney`,`BoxText`,`BoxBroadcastTextID`,`VerifiedBuild`) VALUES +(10908,0,0,"Examine the remains.",37149,1,1,0,0,0,0,"",0,0); +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`= 15 AND `SourceGroup`= 10908; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition`,`ErrorType`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(15,10908,0,0,0,9,0,24535,0,0,0,0,0,'','Show gossip option if 24535 is incomplete'), +(15,10908,0,0,1,9,0,24563,0,0,0,0,0,'','Show gossip option if 24563 is incomplete'); + +DELETE FROM `gameobject` WHERE `guid`=9008 AND `id`=201718; +INSERT INTO `gameobject` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`position_x`,`position_y`,`position_z`,`orientation`,`rotation0`,`rotation1`,`rotation2`,`rotation3`,`spawntimesecs`,`animprogress`,`state`) VALUES +(9008,201718,530,1,2049,11791.83,-7065.792,24.60784,0,0,0,0,1,120,255,1); + +-- Thalorien Dawnseeker +UPDATE `creature_template` SET `AIName`='SmartAI',`ScriptName`='' WHERE `entry`=37205; +DELETE FROM `smart_scripts` WHERE `entryorguid`=37205 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 +(37205,0,0,0,0,0,100,0,5000,7000,15000,15000,11,67541,3,0,0,0,0,2,0,0,0,0,0,0,0,"Thalorien Dawnseeker - In Combat - Cast 'Bladestorm'"), +(37205,0,1,0,0,0,100,0,2000,2000,13000,13000,11,67542,2,0,0,0,0,2,0,0,0,0,0,0,0,"Thalorien Dawnseeker - In Combat - Cast 'Mortal Strike'"), +(37205,0,2,0,0,0,100,0,19000,19000,19000,19000,11,67716,2,0,0,0,0,1,0,0,0,0,0,0,0,"Thalorien Dawnseeker - In Combat - Cast 'Whirlwind'"), +(37205,0,3,0,0,0,100,0,1000,1000,8000,8000,11,57846,2,0,0,0,0,2,0,0,0,0,0,0,0,"Thalorien Dawnseeker - In Combat - Cast 'Heroic Strike'"); + +DELETE FROM `creature_text` WHERE `CreatureID`=37205; +INSERT INTO `creature_text` (`CreatureID`,`GroupID`,`ID`,`Text`,`Type`,`Language`,`Probability`,`Emote`,`Duration`,`Sound`,`BroadcastTextId`,`TextRange`,`comment`) VALUES +(37205,0,0,"We must defend the Sunwell from the enemy at all costs.",12,0,100,1,0,16769,37154,0,'Thalorien Dawnseeker'), +(37205,1,0,"I am ordering you to withdraw to the Sunwell proper to help prepare the defenses.",12,0,100,25,0,16770,37155,0,'Thalorien Dawnseeker'), +(37205,2,0,"I will make my stand here and buy you as much time as I am able. Use it well and make our prince proud.",12,0,100,1,0,16771,37156,0,'Thalorien Dawnseeker'), +(37205,3,0,"It has been a great honor to fight beside you in defense of our land and our people.",12,0,100,2,0,16772,37157,0,'Thalorien Dawnseeker'), +(37205,4,0,"You, stranger... you are not one of my soldiers. Will you stay and stand with me to face the enemy?",12,0,100,0,0,16773,37158,0,'Thalorien Dawnseeker'), +(37205,5,0,"Listen well, Scourge defilers. None of you will reach the Sunwell so long as I stand!",14,0,100,53,0,16774,37159,0,'Thalorien Dawnseeker'), +(37205,6,0,"I... I wasn't meant to survive this attack.",12,0,100,6,0,16775,37196,0,'Thalorien Dawnseeker'), +(37205,7,0,"Why has this happened? Why have you come here?",12,0,100,1,0,16776,37197,0,'Thalorien Dawnseeker'), +(37205,8,0,"It's Quel'Delar! You possess the sword!",12,0,100,6,0,16777,37198,0,'Thalorien Dawnseeker'), +(37205,9,0,"I don't know how, but the blade has chosen you to be its new wielder. Take it with my blessing, and wield it against the Scourge as I once did.",12,0,100,0,0,16778,37199,0,'Thalorien Dawnseeker'); + +-- Summons +DELETE FROM `creature_summon_groups` WHERE `summonerId`=37552; +INSERT INTO `creature_summon_groups` (`summonerId`,`summonerType`,`groupId`,`entry`,`position_x`,`position_y`,`position_z`,`orientation`,`summonType`,`summonTime`) VALUES +-- Sunwell Defender +(37552,0,1,37211,11803.44,-7076.203,25.94271,2.495821,3,39000), +(37552,0,1,37211,11805.87,-7072.606,25.54664,2.426008,3,39000), +(37552,0,1,37211,11802.07,-7077.963,26.17188,2.460914,3,39000), +(37552,0,1,37211,11800.65,-7079.646,26.29167,2.460914,3,39000), +(37552,0,1,37211,11804.64,-7074.424,25.72049,2.443461,3,39000), +(37552,0,1,37211,11801.76,-7075.037,26.12346,2.426008,3,36000), +(37552,0,1,37211,11804.1,-7071.374,25.45528,2.426008,3,36000), +(37552,0,1,37211,11800.45,-7076.835,26.12346,2.443461,3,36000), +(37552,0,1,37211,11799.08,-7078.556,26.12346,2.530727,3,36000), +(37552,0,1,37211,11802.92,-7073.224,25.64548,2.426008,3,36000), +-- Scourge Zombie +(37552,0,2,37538,11768.14,-7062.753,24.6553,6.248279,6,2000), +(37552,0,2,37538,11768.26,-7068.285,24.51112,6.265732,6,2000), +(37552,0,2,37538,11768.17,-7057.224,25.08242,6.230825,6,2000), +(37552,0,2,37538,11768.31,-7065.476,24.54401,6.230825,6,2000), +(37552,0,2,37538,11768.05,-7059.979,24.87183,6.248279,6,2000), +-- Ghoul Invader +(37552,0,3,37539,11763.44,-7071.172,24.90278,0.05235988,6,2000), +(37552,0,3,37539,11763.43,-7066.899,25.26042,0.08726646,6,2000), +(37552,0,3,37539,11763.57,-7054.385,25.70313,0.122173,6,2000), +(37552,0,3,37539,11763.31,-7062.83,25.18662,0.01745329,6,2000), +(37552,0,3,37539,11763.42,-7058.622,25.33854,0.05235988,6,2000), +-- Crypt Raider +(37552,0,4,37541,11758.34,-7062.776,25.16488,6.248279,6,2000), +(37552,0,4,37541,11757.5,-7056.007,26.01496,6.248279,6,2000), +(37552,0,4,37541,11758.1,-7069.712,25.32423,6.248279,6,2000); + +-- Morlen Coldgrip +UPDATE creature_template SET `unit_flags`=256+512,`AIName`='SmartAI' WHERE `entry`=37542; +DELETE FROM `smart_scripts` WHERE `entryorguid`=37542 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 +(37542,0,0,0,0,0,100,0,2000,3000,9000,10000,11,50688,0,0,0,0,0,2,0,0,0,0,0,0,0,"Morlen Coldgrip - In Combat - Cast 'Plague Strike'"); + +DELETE FROM `creature_text` WHERE `CreatureID`=37542; +INSERT INTO `creature_text` (`CreatureID`,`GroupID`,`ID`,`Text`,`Type`,`Language`,`Probability`,`Emote`,`Duration`,`Sound`,`BroadcastTextId`,`TextRange`,`comment`) VALUES +(37542,0,0,"You will fall as your lands and your city have before you. My lord will win a great victory here, and none will remember your name!",14,0,100,25,0,0,37160,0,'Morlen Coldgrip'), +(37542,1,0,"Forward!",14,0,100,25,0,0,37162,0,'Morlen Coldgrip'), +(37542,2,0,"Ghouls, slay this patheric high elf!",14,0,100,25,0,0,37301,0,'Morlen Coldgrip'), +(37542,3,0,"You will fall before the might of the Scourge. Crypt raiders, attack!",14,0,100,25,0,0,37302,0,'Morlen Coldgrip'), +(37542,4,0,"I shall kill you myself!",14,0,100,0,0,0,37167,0,'Morlen Coldgrip'); + +-- Scourge Zombie +UPDATE creature_template SET `unit_flags`=256+512,`AIName`='SmartAI' WHERE `entry`=37538; +DELETE FROM `smart_scripts` WHERE `entryorguid`=37538 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 +(37538,0,0,0,0,0,100,0,1000,2000,9000,10000,11,49861,0,0,0,0,0,2,0,0,0,0,0,0,0,"Scourge Zombie - In Combat - Cast 'Infected Bite'"); + +-- Ghoul Invader +UPDATE creature_template SET `unit_flags`=256+512,`AIName`='SmartAI' WHERE `entry`=37539; +DELETE FROM `smart_scripts` WHERE `entryorguid`=37539 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 +(37539,0,0,0,0,0,100,0,1000,2000,9000,10000,11,38056,0,0,0,0,0,2,0,0,0,0,0,0,0,"Scourge Zombie - In Combat - Cast 'Flesh Rip'"); + +-- Crypt Raider +UPDATE creature_template SET `unit_flags`=256+512,`AIName`='SmartAI' WHERE `entry`=37541; +DELETE FROM `smart_scripts` WHERE `entryorguid`=37541 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 +(37541,0,0,0,4,0,100,0,0,0,0,0,21,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Crypt Raider - Disable Combat Movement"), +(37541,0,1,0,0,0,100,0,1000,2000,4000,5000,11,31600,0,0,0,0,0,2,0,0,0,0,0,0,0,"Crypt Raider - In Combat - Cast 'Crypt Scarabs'"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_17_01_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_17_01_world.sql new file mode 100644 index 00000000000..9ac90753fe8 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_17_01_world.sql @@ -0,0 +1,33 @@ +UPDATE `creature_template` SET `unit_flags`=33554432 WHERE `entry`=38463; +UPDATE `creature_template` SET `ScriptName`='npc_icc_orb_controller' WHERE `entry`=38463; +UPDATE `creature_template` SET `ScriptName`='npc_darkfallen_blood_knight' WHERE `entry`=37595; +UPDATE `creature_template` SET `ScriptName`='npc_darkfallen_noble' WHERE `entry`=37663; +UPDATE `creature_template` SET `ScriptName`='npc_vampiric_fiend' WHERE `entry`=37901; +UPDATE `creature_template` SET `ScriptName`='npc_darkfallen_archmage' WHERE `entry`=37664; +UPDATE `creature_template` SET `ScriptName`='npc_darkfallen_advisor' WHERE `entry`=37571; +UPDATE `creature_template` SET `ScriptName`='npc_darkfallen_tactician' WHERE `entry`=37666; +UPDATE `gameobject_template` SET `ScriptName`='go_empowering_blood_orb' WHERE `entry`=201741; + +DELETE FROM `spell_script_names` WHERE `ScriptName` IN ( +'spell_icc_empowered_blood', +'spell_icc_empowered_blood_3', +'spell_icc_siphon_essence', +'spell_darkfallen_blood_mirror', +'spell_generic_remove_empowered_blood'); +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES +(70227,'spell_icc_empowered_blood'), +(70304,'spell_icc_empowered_blood_3'), +(70299,'spell_icc_siphon_essence'), +(70450,'spell_darkfallen_blood_mirror'), +(72131,'spell_generic_remove_empowered_blood'), +(70939,'spell_generic_remove_empowered_blood'); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry` IN (72099,70299,70293); +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(13,1,72099,0,0,31,0,3,36934,0,0,0,0,'','Effect_0 hits Empowering Orb Controller'), +(13,1,70299,0,0,31,0,3,36934,0,0,0,0,'','Effect_0 hits Empowering Orb Controller'), +(13,1,70293,0,0,31,0,3,38463,0,0,0,0,'','Effect_0 hits Empowering Orb Controller'); + +DELETE FROM `creature_template_movement` WHERE `CreatureId`=36934; +INSERT INTO `creature_template_movement` (`CreatureId`, `Ground`, `Swim`, `Flight`, `Rooted`, `Chase`, `Random`) VALUES +(36934,0,0,1,1,0,0); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_17_02_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_17_02_world.sql new file mode 100644 index 00000000000..4e7e30b2c3d --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_17_02_world.sql @@ -0,0 +1,2 @@ +-- +UPDATE `smart_scripts` SET `event_type` = 0 WHERE `source_type` = 9 AND `event_type`>0; diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_17_03_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_17_03_world.sql new file mode 100644 index 00000000000..a64869b613c --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_17_03_world.sql @@ -0,0 +1,7 @@ +-- +DELETE FROM `creature_addon` WHERE `guid` IN (121091,121122,121130,124617); +UPDATE `creature_template_addon` SET `auras`="57836" WHERE `entry` IN (30742, 30744,30950,30745); +DELETE FROM `spell_scripts` WHERE `id`=57852; +INSERT INTO `spell_scripts` (`id`,`effIndex`,`delay`,`command`,`datalong`,`datalong2`,`dataint`,`x`,`y`,`z`,`o`) VALUES +(57852,0,0,15,46419,2,0,0,0,0,0), +(57852,0,0,15,57931,2,0,0,0,0,0); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_18_00_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_18_00_world.sql new file mode 100644 index 00000000000..58fb26a8734 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_18_00_world.sql @@ -0,0 +1,15 @@ +-- +DELETE FROM `event_scripts` WHERE `id` IN (16243); +INSERT INTO `event_scripts` (`id`, `delay`, `command`, `datalong`, `datalong2`, `dataint`, `x`, `y`, `z`, `o`) VALUES +(16243, 0, 10, 23519, 180000, 0, -385.3869, -5649.8955, 0, 5.175775); + +UPDATE `creature_template` SET `AIName`='SmartAI', `unit_flags`=33024, `speed_walk`=4, `speed_run`=3 WHERE `entry` IN (23519); +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (23519) 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 +(23519,0,0,0,54,0,100,0,0,0,0,0,59,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Big Shirl - Just summoned - Set run ON"), +(23519,0,1,0,54,0,100,0,0,0,0,0,69,1,0,0,0,0,0,8,0,0,0,-83.86965, -5956.43017, 0 ,0,"Big Shirl - Just summoned - Movee to pos"), +(23519,0,2,0,34,0,100,0,0,1,0,0,41,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Big Shirl - On movement informer - Despawn"), +(23519,0,3,0,54,0,100,0,0,0,0,0,41,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Big Shirl - Just summoned - despawn"); +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=22 AND `SourceEntry` IN (23519); +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(22,4,23519,0,0,29,1,23519,100,0,0,0,'','Execute sai if there''s already a spawned Big Shirl'); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_18_01_world_335.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_18_01_world_335.sql new file mode 100644 index 00000000000..3e3cc22dade --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_18_01_world_335.sql @@ -0,0 +1,2 @@ +-- +UPDATE `gameobject_template_addon` SET `flags`=`flags`|2 WHERE `entry`=104591; diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_19_00_world_335.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_19_00_world_335.sql new file mode 100644 index 00000000000..7d9e371e080 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_19_00_world_335.sql @@ -0,0 +1,5 @@ +-- +DELETE FROM `gameobject` WHERE `id` = 142698; +INSERT INTO `gameobject` (`guid`, `id`, `map`, `spawnMask`, `phaseMask`, `position_x`, `position_y`, `position_z`, `orientation`, `rotation0`, `rotation1`, `rotation2`, `rotation3`, `spawntimesecs`, `animprogress`, `state`) VALUES +(99872, 142698, 0, 1, 1, -21.77, -2802.7, 121.85, 0, 0, 0, 0, 0, 180, 0, 1), +(99873, 142698, 0, 1, 1, -24.2883, -2468.25, 122.442, 0, 0, 0, 0, 0, 180, 0, 1); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_19_01_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_19_01_world.sql new file mode 100644 index 00000000000..fb257cd0595 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_19_01_world.sql @@ -0,0 +1,12 @@ +-- +DELETE FROM `creature` WHERE `id` IN (21292) AND `guid` IN (111105); +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`, `unit_flags`) VALUES +(111105, 21292, 530, 0, 0, 1, 1, 0, 0, -3795.850098, 2595.90991, 90.12059, 4.782200, 600, 0, 0, 0, 0, 0, 33554432); +DELETE FROM `creature_addon` WHERE `guid`=111105; +INSERT INTO `creature_addon` (`guid`, `bytes2`, `auras`) VALUES (111105,0,"29266 37497"); +UPDATE `smart_scripts` SET `target_type`=10, `target_param1`=84607 AND `target_param2`=21292 WHERE `action_type`=11 AND`action_param1` = 36558; +-- DB errors and spawns fix +DELETE FROM `gameobject_addon` WHERE `guid` IN (99874,99873,99872); +UPDATE `gameobject` SET `rotation2`=0.588741, `rotation3`=0.808322 WHERE `id` = 142698; +UPDATE `creature` SET `MovementType`=1, `spawndist`=5 WHERE `id` IN (18867,18866); +UPDATE `creature` SET `position_x`=2172.269531, `position_y`=2317.429688, `position_z`=81.406921 WHERE `guid` IN (67476); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_19_02_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_19_02_world.sql new file mode 100644 index 00000000000..ef368d9e384 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_19_02_world.sql @@ -0,0 +1,23 @@ +-- Building a Perimeter (10240) +DELETE FROM smart_scripts WHERE entryorguid IN(19866, 19867, 19868) 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 +(19866, 0, 0, 0, 8, 0, 100, 0, 34646, 0, 1000, 1000, 33, 19866, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Invis East KV Rune - On Spell Hit - Kill Monster Credit'), +(19866, 0, 1, 0, 8, 0, 100, 0, 34646, 0, 120000, 120000, 50, 183948, 120, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Invis East KV Rune - On Spell Hit - Summon Gameobject'), +(19867, 0, 0, 0, 8, 0, 100, 0, 34646, 0, 1000, 1000, 33, 19867, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Invis NE KV Rune - On Spell Hit - Kill Monster Credit'), +(19867, 0, 1, 0, 8, 0, 100, 0, 34646, 0, 120000, 120000, 50, 183948, 120, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Invis NE KV Rune - On Spell Hit - Summon Gameobject'), +(19868, 0, 0, 0, 8, 0, 100, 0, 34646, 0, 1000, 1000, 33, 19868, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Invis West KV Rune - On Spell Hit - Kill Monster Credit'), +(19868, 0, 1, 0, 8, 0, 100, 0, 34646, 0, 120000, 120000, 50, 183948, 120, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Invis West KV Rune - On Spell Hit - Summon Gameobject'); + +DELETE FROM `gameobject` WHERE `id` = 183955; +INSERT INTO `gameobject` (`guid`, `id`, `map`, `spawnMask`, `phaseMask`, `position_x`, `position_y`, `position_z`, `orientation`, `rotation0`, `rotation1`, `rotation2`, `rotation3`, `spawntimesecs`, `animprogress`, `state`) VALUES +(9009, 183955, 530, 1, 1, 2194.7275, 2314.035, 145, 2.179214, 0, 0, 0.133363, -0.991067, 180, 0, 1); + +DELETE FROM `gameobject_addon` WHERE `guid` = 9009; +INSERT INTO `gameobject_addon` (`guid`, `parent_rotation2`, `parent_rotation3`, `invisibilityType`, `invisibilityValue`) VALUES +(9009,0.133363,-0.991067, 7, 1000); + +DELETE FROM `spell_area` WHERE `spell` IN (60194) AND `area` IN (3879,3934,3935); +INSERT INTO `spell_area` (`spell`,`area`,`quest_start`,`quest_end`,`aura_spell`,`racemask`,`gender`,`autocast`,`quest_start_status`,`quest_end_status`) VALUES +(60194,3879,10240,0,0,0,2,1,64,0), +(60194,3934,10240,0,0,0,2,1,64,0), +(60194,3935,10240,0,0,0,2,1,64,0); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_19_03_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_19_03_world.sql new file mode 100644 index 00000000000..57574982ad9 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_19_03_world.sql @@ -0,0 +1,262 @@ +-- +UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry` IN (28328, 28857); +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (28328, 28857) AND `source_type`=0; +DELETE FROM `smart_scripts` WHERE `entryorguid` BETWEEN 2885700 AND 2885707 AND `source_type`=9; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(28328, 0, 0, 0, 19, 0, 100, 0, 12592, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - On Quest 'The Great Hunter's Challenge' accepted - Talk 1"), +(28857, 0, 0, 1, 54, 0, 100, 0, 0, 0, 0, 0, 0, 18, 768, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - Just Summoned - Set Immune To PC+NPC"), +(28857, 0, 1, 2, 61, 0, 100, 0, 0, 0, 0, 0, 0, 11, 52573, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - Just Summoned - Cast 'Drostan On Spawn'"), +(28857, 0, 2, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, 66, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - Just Summoned - Face Invoker"), +(28857, 0, 3, 0, 54, 0, 100, 0, 0, 0, 0, 0, 0, 86, 52585, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - Just Summoned - Cross Cast 'Cue Drostan Response Set 1'"), +(28857, 0, 4, 0, 54, 0, 100, 0, 0, 0, 0, 0, 0, 86, 52725, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - Just Summoned - Cross Cast 'Cue Drostan Response Set 2'"), +(28857, 0, 5, 0, 54, 0, 100, 0, 0, 0, 0, 0, 0, 86, 52726, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - Just Summoned - Cross Cast 'Cue Drostan Response Set 3'"), +(28857, 0, 6, 0, 54, 0, 100, 0, 0, 0, 0, 0, 0, 86, 52727, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - Just Summoned - Cross Cast 'Cue Drostan Response Set 4'"), +(28857, 0, 7, 0, 54, 0, 100, 0, 0, 0, 0, 0, 0, 86, 52728, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - Just Summoned - Cross Cast 'Cue Drostan Response Set 5'"), +(28857, 0, 8, 0, 54, 0, 100, 0, 0, 0, 0, 0, 0, 86, 52729, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - Just Summoned - Cross Cast 'Cue Drostan Response Set 6'"), +(28857, 0, 9, 0, 54, 0, 100, 0, 0, 0, 0, 0, 0, 86, 52730, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - Just Summoned - Cross Cast 'Cue Drostan Response Set 7'"), +(28857, 0, 10, 0, 54, 0, 100, 0, 0, 0, 0, 0, 0, 86, 52731, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - Just Summoned - Cross Cast 'Cue Drostan Response Set 8'"), +(28857, 0, 11, 0, 8, 0, 100, 0, 52585, 0, 0, 0, 0, 80, 2885700, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - On Spellhit 'Cue Drostan Response Set 1' - Run Actionlist"), +(28857, 0, 12, 0, 8, 0, 100, 0, 52725, 0, 0, 0, 0, 80, 2885701, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - On Spellhit 'Cue Drostan Response Set 2' - Run Actionlist"), +(28857, 0, 13, 0, 8, 0, 100, 0, 52726, 0, 0, 0, 0, 80, 2885702, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - On Spellhit 'Cue Drostan Response Set 3' - Run Actionlist"), +(28857, 0, 14, 0, 8, 0, 100, 0, 52727, 0, 0, 0, 0, 80, 2885703, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - On Spellhit 'Cue Drostan Response Set 4' - Run Actionlist"), +(28857, 0, 15, 0, 8, 0, 100, 0, 52728, 0, 0, 0, 0, 80, 2885704, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - On Spellhit 'Cue Drostan Response Set 5' - Run Actionlist"), +(28857, 0, 16, 0, 8, 0, 100, 0, 52729, 0, 0, 0, 0, 80, 2885705, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - On Spellhit 'Cue Drostan Response Set 6' - Run Actionlist"), +(28857, 0, 17, 0, 8, 0, 100, 0, 52730, 0, 0, 0, 0, 80, 2885706, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - On Spellhit 'Cue Drostan Response Set 7' - Run Actionlist"), +(28857, 0, 18, 0, 8, 0, 100, 0, 52731, 0, 0, 0, 0, 80, 2885707, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - On Spellhit 'Cue Drostan Response Set 8' - Run Actionlist"), +(2885700, 9, 0, 0, 0, 0, 100, 0, 3000, 3000, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - On Script - Say Line 0"), +(2885700, 9, 1, 0, 0, 0, 100, 0, 3000, 3000, 0, 0, 0, 114, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, -20, 0, 0, "Drostan - On Script - Move To Pos"), +(2885700, 9, 2, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - On Script - Despawn"), +(2885701, 9, 0, 0, 0, 0, 100, 0, 3000, 3000, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - On Script - Say Line 1"), +(2885701, 9, 1, 0, 0, 0, 100, 0, 3000, 3000, 0, 0, 0, 114, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, -20, 0, 0, "Drostan - On Script - Move To Pos"), +(2885701, 9, 2, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - On Script - Despawn"), +(2885702, 9, 0, 0, 0, 0, 100, 0, 3000, 3000, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - On Script - Say Line 2"), +(2885702, 9, 1, 0, 0, 0, 100, 0, 3000, 3000, 0, 0, 0, 114, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, -20, 0, 0, "Drostan - On Script - Move To Pos"), +(2885702, 9, 2, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - On Script - Despawn"), +(2885703, 9, 0, 0, 0, 0, 100, 0, 3000, 3000, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - On Script - Say Line 3"), +(2885703, 9, 1, 0, 0, 0, 100, 0, 3000, 3000, 0, 0, 0, 75, 55474, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, -20, 0, 0, "Drostan - On Script - Add Aura 'Cosmetic - Sleep Zzz'"), +(2885703, 9, 2, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 90, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - On Script - Set Standstate Sleep"), +(2885703, 9, 3, 0, 0, 0, 100, 0, 3000, 3000, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - On Script - Despawn"), +(2885704, 9, 0, 0, 0, 0, 100, 0, 3000, 3000, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - On Script - Say Line 4"), +(2885704, 9, 1, 0, 0, 0, 100, 0, 3000, 3000, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - On Script - Say Line 5"), +(2885704, 9, 2, 0, 0, 0, 100, 0, 3000, 3000, 0, 0, 0, 114, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, -20, 0, 0, "Drostan - On Script - Move To Pos"), +(2885704, 9, 3, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - On Script - Despawn"), +(2885705, 9, 0, 0, 0, 0, 100, 0, 3000, 3000, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - On Script - Say Line 6"), +(2885705, 9, 1, 0, 0, 0, 100, 0, 3000, 3000, 0, 0, 0, 114, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, -20, 0, 0, "Drostan - On Script - Move To Pos"), +(2885705, 9, 2, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - On Script - Despawn"), +(2885706, 9, 0, 0, 0, 0, 100, 0, 3000, 3000, 0, 0, 0, 1, 7, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - On Script - Say Line 7"), +(2885706, 9, 1, 0, 0, 0, 100, 0, 3000, 3000, 0, 0, 0, 114, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, -20, 0, 0, "Drostan - On Script - Move To Pos"), +(2885706, 9, 2, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - On Script - Despawn"), +(2885707, 9, 0, 0, 0, 0, 100, 0, 3000, 3000, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - On Script - Say Line 8"), +(2885707, 9, 1, 0, 0, 0, 100, 0, 3000, 3000, 0, 0, 0, 114, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, -20, 0, 0, "Drostan - On Script - Move To Pos"), +(2885707, 9, 2, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Drostan - On Script - Despawn"); + +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (28001, 28011, 28129, 28297, 28379) AND `id`=1 AND `source_type`=0; +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (28002, 28009, 28378, 28380) AND `id`=2 AND `source_type`=0; +DELETE FROM `smart_scripts` WHERE `entryorguid`=2800100 AND `source_type`=9; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(28001, 0, 1, 0, 6, 0, 100, 0, 0, 0, 0, 0, 0, 86, 52556, 2, 7, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Dreadsaber - On Death - Cross Cast 'Summon Drostan'"), +(28002, 0, 2, 0, 6, 0, 100, 0, 0, 0, 0, 0, 0, 86, 52556, 2, 7, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Mangal Crocolisk - On Death - Cross Cast 'Summon Drostan'"), +(28009, 0, 2, 0, 6, 0, 100, 0, 0, 0, 0, 0, 0, 86, 52556, 2, 7, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Shardtooth Rhino - On Death - Cross Cast 'Summon Drostan'"), +(28011, 0, 1, 0, 6, 0, 100, 0, 0, 0, 0, 0, 0, 86, 52556, 2, 7, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Emperor Cobra - On Death - Cross Cast 'Summon Drostan'"), +(28129, 0, 1, 0, 6, 0, 100, 0, 0, 0, 0, 0, 0, 86, 52556, 2, 7, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Longneck Grazer - On Death - Cross Cast 'Summon Drostan'"), +(28297, 0, 1, 0, 6, 0, 100, 0, 0, 0, 0, 0, 0, 86, 52556, 2, 7, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Shango - On Death - Cross Cast 'Summon Drostan'"), +(28378, 0, 2, 0, 6, 0, 100, 0, 0, 0, 0, 0, 0, 86, 52556, 2, 7, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Primordial Drake - On Death - Cross Cast 'Summon Drostan'"), +(28379, 0, 1, 0, 6, 0, 100, 0, 0, 0, 0, 0, 0, 86, 52556, 2, 7, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Shattertusk Mammoth - On Death - Cross Cast 'Summon Drostan'"), +(28380, 0, 2, 0, 6, 0, 100, 0, 0, 0, 0, 0, 0, 86, 52556, 2, 7, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Shattertusk Bull - On Death - Cross Cast 'Summon Drostan'"); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=22 AND `SourceEntry`=28857 AND `SourceId`=0; +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=22 AND `SourceEntry` IN (28001, 28002, 28009, 28011, 28129, 28297, 28378, 28379, 28380) AND `SourceId`=0; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(22, 4, 28857, 0, 0, 48, 0, 12592, 0, 6, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 6"), +(22, 5, 28857, 0, 0, 48, 0, 12592, 0, 11, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 11"), +(22, 6, 28857, 0, 0, 48, 0, 12592, 0, 21, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 21"), +(22, 7, 28857, 0, 0, 48, 0, 12592, 0, 28, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 28"), +(22, 8, 28857, 0, 0, 48, 0, 12592, 0, 35, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 35"), +(22, 9, 28857, 0, 0, 48, 0, 12592, 0, 41, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 41"), +(22, 10, 28857, 0, 0, 48, 0, 12592, 0, 49, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 49"), +(22, 11, 28857, 0, 0, 48, 0, 12592, 0, 56, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 56"), + +(22, 2, 28001, 0, 0, 48, 0, 12592, 0, 6, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 6 AND"), +(22, 2, 28001, 0, 0, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 2, 28001, 0, 1, 48, 0, 12592, 0, 11, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 11 AND"), +(22, 2, 28001, 0, 1, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 2, 28001, 0, 2, 48, 0, 12592, 0, 21, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 21 AND"), +(22, 2, 28001, 0, 2, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 2, 28001, 0, 3, 48, 0, 12592, 0, 28, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 28 AND"), +(22, 2, 28001, 0, 3, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 2, 28001, 0, 4, 48, 0, 12592, 0, 35, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 35 AND"), +(22, 2, 28001, 0, 4, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 2, 28001, 0, 5, 48, 0, 12592, 0, 41, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 41 AND"), +(22, 2, 28001, 0, 5, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 2, 28001, 0, 6, 48, 0, 12592, 0, 49, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 49 AND"), +(22, 2, 28001, 0, 6, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 2, 28001, 0, 7, 48, 0, 12592, 0, 56, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 56 AND"), +(22, 2, 28001, 0, 7, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), + +(22, 3, 28002, 0, 0, 48, 0, 12592, 0, 6, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 6 AND"), +(22, 3, 28002, 0, 0, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 3, 28002, 0, 1, 48, 0, 12592, 0, 11, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 11 AND"), +(22, 3, 28002, 0, 1, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 3, 28002, 0, 2, 48, 0, 12592, 0, 21, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 21 AND"), +(22, 3, 28002, 0, 2, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 3, 28002, 0, 3, 48, 0, 12592, 0, 28, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 28 AND"), +(22, 3, 28002, 0, 3, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 3, 28002, 0, 4, 48, 0, 12592, 0, 35, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 35 AND"), +(22, 3, 28002, 0, 4, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 3, 28002, 0, 5, 48, 0, 12592, 0, 41, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 41 AND"), +(22, 3, 28002, 0, 5, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 3, 28002, 0, 6, 48, 0, 12592, 0, 49, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 49 AND"), +(22, 3, 28002, 0, 6, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 3, 28002, 0, 7, 48, 0, 12592, 0, 56, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 56 AND"), +(22, 3, 28002, 0, 7, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), + +(22, 3, 28009, 0, 0, 48, 0, 12592, 0, 6, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 6 AND"), +(22, 3, 28009, 0, 0, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 3, 28009, 0, 1, 48, 0, 12592, 0, 11, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 11 AND"), +(22, 3, 28009, 0, 1, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 3, 28009, 0, 2, 48, 0, 12592, 0, 21, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 21 AND"), +(22, 3, 28009, 0, 2, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 3, 28009, 0, 3, 48, 0, 12592, 0, 28, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 28 AND"), +(22, 3, 28009, 0, 3, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 3, 28009, 0, 4, 48, 0, 12592, 0, 35, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 35 AND"), +(22, 3, 28009, 0, 4, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 3, 28009, 0, 5, 48, 0, 12592, 0, 41, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 41 AND"), +(22, 3, 28009, 0, 5, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 3, 28009, 0, 6, 48, 0, 12592, 0, 49, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 49 AND"), +(22, 3, 28009, 0, 6, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 3, 28009, 0, 7, 48, 0, 12592, 0, 56, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 56 AND"), +(22, 3, 28009, 0, 7, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), + +(22, 2, 28011, 0, 0, 48, 0, 12592, 0, 6, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 6 AND"), +(22, 2, 28011, 0, 0, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 2, 28011, 0, 1, 48, 0, 12592, 0, 11, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 11 AND"), +(22, 2, 28011, 0, 1, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 2, 28011, 0, 2, 48, 0, 12592, 0, 21, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 21 AND"), +(22, 2, 28011, 0, 2, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 2, 28011, 0, 3, 48, 0, 12592, 0, 28, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 28 AND"), +(22, 2, 28011, 0, 3, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 2, 28011, 0, 4, 48, 0, 12592, 0, 35, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 35 AND"), +(22, 2, 28011, 0, 4, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 2, 28011, 0, 5, 48, 0, 12592, 0, 41, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 41 AND"), +(22, 2, 28011, 0, 5, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 2, 28011, 0, 6, 48, 0, 12592, 0, 49, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 49 AND"), +(22, 2, 28011, 0, 6, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 2, 28011, 0, 7, 48, 0, 12592, 0, 56, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 56 AND"), +(22, 2, 28011, 0, 7, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), + +(22, 2, 28129, 0, 0, 48, 0, 12592, 0, 6, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 6 AND"), +(22, 2, 28129, 0, 0, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 2, 28129, 0, 1, 48, 0, 12592, 0, 11, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 11 AND"), +(22, 2, 28129, 0, 1, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 2, 28129, 0, 2, 48, 0, 12592, 0, 21, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 21 AND"), +(22, 2, 28129, 0, 2, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 2, 28129, 0, 3, 48, 0, 12592, 0, 28, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 28 AND"), +(22, 2, 28129, 0, 3, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 2, 28129, 0, 4, 48, 0, 12592, 0, 35, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 35 AND"), +(22, 2, 28129, 0, 4, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 2, 28129, 0, 5, 48, 0, 12592, 0, 41, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 41 AND"), +(22, 2, 28129, 0, 5, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 2, 28129, 0, 6, 48, 0, 12592, 0, 49, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 49 AND"), +(22, 2, 28129, 0, 6, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 2, 28129, 0, 7, 48, 0, 12592, 0, 56, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 56 AND"), +(22, 2, 28129, 0, 7, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), + +(22, 2, 28297, 0, 0, 48, 0, 12592, 0, 6, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 6 AND"), +(22, 2, 28297, 0, 0, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 2, 28297, 0, 1, 48, 0, 12592, 0, 11, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 11 AND"), +(22, 2, 28297, 0, 1, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 2, 28297, 0, 2, 48, 0, 12592, 0, 21, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 21 AND"), +(22, 2, 28297, 0, 2, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 2, 28297, 0, 3, 48, 0, 12592, 0, 28, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 28 AND"), +(22, 2, 28297, 0, 3, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 2, 28297, 0, 4, 48, 0, 12592, 0, 35, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 35 AND"), +(22, 2, 28297, 0, 4, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 2, 28297, 0, 5, 48, 0, 12592, 0, 41, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 41 AND"), +(22, 2, 28297, 0, 5, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 2, 28297, 0, 6, 48, 0, 12592, 0, 49, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 49 AND"), +(22, 2, 28297, 0, 6, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 2, 28297, 0, 7, 48, 0, 12592, 0, 56, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 56 AND"), +(22, 2, 28297, 0, 7, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), + +(22, 3, 28378, 0, 0, 48, 0, 12592, 0, 6, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 6 AND"), +(22, 3, 28378, 0, 0, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 3, 28378, 0, 1, 48, 0, 12592, 0, 11, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 11 AND"), +(22, 3, 28378, 0, 1, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 3, 28378, 0, 2, 48, 0, 12592, 0, 21, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 21 AND"), +(22, 3, 28378, 0, 2, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 3, 28378, 0, 3, 48, 0, 12592, 0, 28, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 28 AND"), +(22, 3, 28378, 0, 3, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 3, 28378, 0, 4, 48, 0, 12592, 0, 35, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 35 AND"), +(22, 3, 28378, 0, 4, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 3, 28378, 0, 5, 48, 0, 12592, 0, 41, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 41 AND"), +(22, 3, 28378, 0, 5, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 3, 28378, 0, 6, 48, 0, 12592, 0, 49, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 49 AND"), +(22, 3, 28378, 0, 6, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 3, 28378, 0, 7, 48, 0, 12592, 0, 56, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 56 AND"), +(22, 3, 28378, 0, 7, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), + +(22, 2, 28379, 0, 0, 48, 0, 12592, 0, 6, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 6 AND"), +(22, 2, 28379, 0, 0, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 2, 28379, 0, 1, 48, 0, 12592, 0, 11, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 11 AND"), +(22, 2, 28379, 0, 1, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 2, 28379, 0, 2, 48, 0, 12592, 0, 21, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 21 AND"), +(22, 2, 28379, 0, 2, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 2, 28379, 0, 3, 48, 0, 12592, 0, 28, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 28 AND"), +(22, 2, 28379, 0, 3, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 2, 28379, 0, 4, 48, 0, 12592, 0, 35, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 35 AND"), +(22, 2, 28379, 0, 4, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 2, 28379, 0, 5, 48, 0, 12592, 0, 41, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 41 AND"), +(22, 2, 28379, 0, 5, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 2, 28379, 0, 6, 48, 0, 12592, 0, 49, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 49 AND"), +(22, 2, 28379, 0, 6, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 2, 28379, 0, 7, 48, 0, 12592, 0, 56, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 56 AND"), +(22, 2, 28379, 0, 7, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), + +(22, 3, 28380, 0, 0, 48, 0, 12592, 0, 6, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 6 AND"), +(22, 3, 28380, 0, 0, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 3, 28380, 0, 1, 48, 0, 12592, 0, 11, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 11 AND"), +(22, 3, 28380, 0, 1, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 3, 28380, 0, 2, 48, 0, 12592, 0, 21, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 21 AND"), +(22, 3, 28380, 0, 2, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 3, 28380, 0, 3, 48, 0, 12592, 0, 28, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 28 AND"), +(22, 3, 28380, 0, 3, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 3, 28380, 0, 4, 48, 0, 12592, 0, 35, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 35 AND"), +(22, 3, 28380, 0, 4, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 3, 28380, 0, 5, 48, 0, 12592, 0, 41, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 41 AND"), +(22, 3, 28380, 0, 5, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 3, 28380, 0, 6, 48, 0, 12592, 0, 49, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 49 AND"), +(22, 3, 28380, 0, 6, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"), +(22, 3, 28380, 0, 7, 48, 0, 12592, 0, 56, 0, 0, 0, "", "Run SAI only if objective count of quest The Great Hunter's Challenge is 56 AND"), +(22, 3, 28380, 0, 7, 29, 0, 28857, 30, 0, 1, 0, 0, "", "Run SAI only if NPC Drostan is NOT within 30 yards OR"); + +DELETE FROM `creature_text` WHERE `CreatureID`=28328 AND `GroupID`=1; +DELETE FROM `creature_text` WHERE `CreatureID`=28857; +INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES +(28328, 1, 0, "Remember, $n, this is no sprint. The true test of a hunter tests his endurance over the course of a long expedition.", 12, 0, 100, 0, 0, 0, 29924, 0, "Drostan"), +(28857, 0, 0, "Yer gonna have to shoot faster than that! I've already got 11 kills!", 12, 0, 100, 5, 0, 0, 28983, 0, "Drostan"), +(28857, 0, 1, "That's number 10! How many've you got?", 12, 0, 100, 5, 0, 0, 28984, 0, "Drostan"), +(28857, 0, 2, "Number 9! I could do this with my eyes closed!", 12, 0, 100, 5, 0, 0, 28985, 0, "Drostan"), +(28857, 0, 3, "11! It's gonna take a bigger effort than that to beat ol' Drostan!", 12, 0, 100, 5, 0, 0, 28986, 0, "Drostan"), +(28857, 1, 0, "I'm up to 15. Top that!", 12, 0, 100, 5, 0, 0, 29080, 0, "Drostan"), +(28857, 1, 1, "That's my 16th and I'm still going easy on ya!", 12, 0, 100, 5, 0, 0, 29081, 0, "Drostan"), +(28857, 1, 2, "You're going to have to pick it up, or this isn't going to be much of a competition.", 12, 0, 100, 5, 0, 0, 29082, 0, "Drostan"), +(28857, 1, 3, "Ha! 16! How many've you got? 10, maybe 11 if you're lucky?", 12, 0, 100, 5, 0, 0, 29083, 0, "Drostan"), +(28857, 2, 0, "That's my 25th kill. How far behind are you now?", 12, 0, 100, 5, 0, 0, 29084, 0, "Drostan"), +(28857, 2, 1, "26th! Are you going to start killing, or what?", 12, 0, 100, 5, 0, 0, 29091, 0, "Drostan"), +(28857, 2, 2, "My mother could hunt faster than you, $n.", 12, 0, 100, 5, 0, 0, 29092, 0, "Drostan"), +(28857, 2, 3, "Kill number 26 and I'm still just warming up.", 12, 0, 100, 5, 0, 0, 29093, 0, "Drostan"), +(28857, 3, 0, "Well, now that I've got a nice lead, I think I'll enjoy a little nap.", 12, 0, 100, 5, 0, 0, 29096, 0, "Drostan"), +(28857, 4, 0, "Well, that was a relaxing nap. How's the game hunting going over there?", 12, 0, 100, 5, 0, 0, 29097, 0, "Drostan"), +(28857, 5, 0, "I've got a nice lead, yet. Think I'll do some fishin'.", 12, 0, 100, 5, 0, 0, 29101, 0, "Drostan"), +(28857, 6, 0, "Well, now we've got a competition on our hands.", 12, 0, 100, 5, 0, 0, 29112, 0, "Drostan"), +(28857, 6, 1, "Just got number 41! How's that for skill?", 12, 0, 100, 5, 0, 0, 29116, 0, "Drostan"), +(28857, 6, 2, "41! Two-thirds of the way there. Better step it up!", 12, 0, 100, 5, 0, 0, 29117, 0, "Drostan"), +(28857, 6, 3, "Hey! I was just lining up a shot on that one. Kill stealer!", 12, 0, 100, 5, 0, 0, 29118, 0, "Drostan"), +(28857, 7, 0, "Argh, just now getting number 48. This is getting tough.", 12, 0, 100, 5, 0, 0, 29119, 0, "Drostan"), +(28857, 7, 1, "Someone's been killing all the game out from under me. Hard-won number 48, here.", 12, 0, 100, 5, 0, 0, 29120, 0, "Drostan"), +(28857, 7, 2, "Number 48. Startin' to slow down a bit, now.", 12, 0, 100, 5, 0, 0, 29121, 0, "Drostan"), +(28857, 7, 3, "Gotta go elsewhere to find some more game. Was hoping to be beyond 48 by now.", 12, 0, 100, 5, 0, 0, 29122, 0, "Drostan"), +(28857, 8, 0, "Ha, 54! In the home stretch now!", 12, 0, 100, 5, 0, 0, 29123, 0, "Drostan"), +(28857, 8, 1, "Number 54! No way I'm gonna let you beat me!", 12, 0, 100, 5, 0, 0, 29124, 0, "Drostan"), +(28857, 8, 2, "54! Surely an insurmountable lead!", 12, 0, 100, 5, 0, 0, 29125, 0, "Drostan"), +(28857, 8, 3, "That was 54! Soon you'll be congratulating me!", 12, 0, 100, 5, 0, 0, 29126, 0, "Drostan"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_19_04_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_19_04_world.sql new file mode 100644 index 00000000000..6e3094f03b1 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_19_04_world.sql @@ -0,0 +1,15 @@ +-- +UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=24027; +DELETE FROM `smart_scripts` WHERE `entryorguid`=24027 AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(24027, 0, 0, 0, 1, 0, 100, 0, 20000, 40000, 60000, 120000, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Sergeant Gorth - OOC - Talk"); + +DELETE FROM `creature_text` WHERE `CreatureID`=24027; +INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES +(24027, 0, 0, "Crush them! Crush their faces!", 14, 1, 100, 0, 0, 0, 22623, 0, "Sergeant Gorth"), +(24027, 0, 1, "Hold positions! Keep vrykul men back!", 14, 1, 100, 0, 0, 0, 22624, 0, "Sergeant Gorth"), +(24027, 0, 2, "Kill vrykul scum! For Sylvanas!", 14, 1, 100, 0, 0, 0, 22625, 0, "Sergeant Gorth"), +(24027, 0, 3, "Don't let vrykul come through! Kill all!", 14, 1, 100, 0, 0, 0, 22626, 0, "Sergeant Gorth"), +(24027, 0, 4, "Some things Gorth has to do himself!", 12, 1, 100, 0, 0, 0, 22627, 0, "Sergeant Gorth"), +(24027, 0, 5, "You no match for Gorth!", 12, 1, 100, 0, 0, 0, 22628, 0, "Sergeant Gorth"), +(24027, 0, 6, "Gorth no care if he die! Gorth get put back together!", 12, 1, 100, 0, 0, 0, 22629, 0, "Sergeant Gorth"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_19_05_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_19_05_world.sql new file mode 100644 index 00000000000..d2071f42200 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_19_05_world.sql @@ -0,0 +1,16 @@ +-- +UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=25326; +DELETE FROM `smart_scripts` WHERE `entryorguid`=25326 AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(25326, 0, 0, 0, 1, 0, 100, 0, 10000, 30000, 100000, 140000, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Overlord Bor'gorok - Out of Combat - Say Line 0"); + +DELETE FROM `creature_text` WHERE `CreatureID`=25326; +INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES +(25326, 0, 0, "You peons work harder or I will come over there and beat you!", 12, 0, 100, 0, 0, 0, 24705, 0, "Overlord Bor'gorok"), +(25326, 0, 1, "This outpost is not ready! What would happen if Malygos and the blue dragonflight decided to strike?", 12, 0, 100, 0, 0, 0, 24706, 0, "Overlord Bor'gorok"), +(25326, 0, 2, "Work faster! We must push into Sholazar Basin before the Alliance!", 12, 0, 100, 0, 0, 0, 24707, 0, "Overlord Bor'gorok"), +(25326, 0, 3, "You peons are falling behind. Half rations until you pick up the pace!", 12, 0, 100, 0, 0, 0, 24708, 0, "Overlord Bor'gorok"), +(25326, 0, 4, "This is the most pathetic bunch of peons I've ever seen! Where's my booterang?", 12, 0, 100, 0, 0, 0, 24709, 0, "Overlord Bor'gorok"), +(25326, 0, 5, "I swear that if you do not work faster I'm going to feed you to my worg!", 12, 0, 100, 0, 0, 0, 24710, 0, "Overlord Bor'gorok"), +(25326, 0, 6, "Have you grunts no pride? You will have this outpost ready for the reinforcements from Warsong Hold or your worthless corpses will fill the graveyard!", 12, 0, 100, 0, 0, 0, 24711, 0, "Overlord Bor'gorok"), +(25326, 0, 7, "Time for a five-minute break. Haha, just kidding! What do you think this is, the Alliance?!", 12, 0, 100, 0, 0, 0, 24712, 0, "Overlord Bor'gorok"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_20_00_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_20_00_world.sql new file mode 100644 index 00000000000..a10cba5e827 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_20_00_world.sql @@ -0,0 +1,2 @@ +-- +DELETE FROM `gameobject_loot_template` WHERE `Entry`=26877 AND `Item`=45062; diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_20_01_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_20_01_world.sql new file mode 100644 index 00000000000..80a09fec7df --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_20_01_world.sql @@ -0,0 +1,34 @@ +-- +UPDATE `spell_dbc` SET `DurationIndex`=39 WHERE `id` IN (33122); +UPDATE `creature_template` SET `flags_extra`= `flags_extra`|128, `ScriptName`="" WHERE `entry` IN (18840, 18841, 18842, 18843); +DELETE FROM `areatrigger_scripts` WHERE `entry` IN (4368,4369,4372,4371); +INSERT INTO `areatrigger_scripts` (`entry`, `ScriptName`) VALUES +(4368,'SmartTrigger'),(4369,'SmartTrigger'),(4372,'SmartTrigger'),(4371,'SmartTrigger'); +UPDATE `creature_template` SET `AIName`="SmartAI",`unit_flags`= `unit_flags`|768 WHERE `entry` IN (18904); +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (18904) AND `source_type`=0; +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (4368,4369,4372,4371) AND `source_type`=2; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `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 +(18904,0,0,0,54,0,100,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,"Vision of the Forgotten - On Just summoned - Say text"), +(4368,2,0,1,46,0,100,0,4368,0,0,0,85,33122,0,0,0,0,0,7,0,0,0,0,0,0,0,"Area Trigger 4368 - On Trigger - Self cast Serverside - A Vision of the Forgotten"), +(4368,2,1,0,61,0,100,0,0,0,0,0,33,18843,0,0,0,0,0,7,0,0,0,0,0,0,0,"Area Trigger 4368 - On Trigger - Kill credit"), +(4369,2,0,1,46,0,100,0,4369,0,0,0,85,33122,0,0,0,0,0,7,0,0,0,0,0,0,0,"Area Trigger 4368 - On Trigger - Self cast Serverside - A Vision of the Forgotten"), +(4369,2,1,0,61,0,100,0,0,0,0,0,33,18840,0,0,0,0,0,7,0,0,0,0,0,0,0,"Area Trigger 4368 - On Trigger - Kill credit"), +(4372,2,0,1,46,0,100,0,4372,0,0,0,85,33122,0,0,0,0,0,7,0,0,0,0,0,0,0,"Area Trigger 4368 - On Trigger - Self cast Serverside - A Vision of the Forgotten"), +(4372,2,1,0,61,0,100,0,0,0,0,0,33,18842,0,0,0,0,0,7,0,0,0,0,0,0,0,"Area Trigger 4368 - On Trigger - Kill credit"), +(4371,2,0,1,46,0,100,0,4371,0,0,0,85,33122,0,0,0,0,0,7,0,0,0,0,0,0,0,"Area Trigger 4368 - On Trigger - Self cast Serverside - A Vision of the Forgotten"), +(4371,2,1,0,61,0,100,0,0,0,0,0,33,18841,0,0,0,0,0,7,0,0,0,0,0,0,0,"Area Trigger 4368 - On Trigger - Kill credit"); + +DELETE FROM `creature_text` WHERE `CreatureID`=18904; +INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES +(18904,0,0,"Turn back, mortal... This is not your battle.",15,0,100,0,0,0,16007,0,"Vision of the Forgotten"), +(18904,0,1,"You cannot stop them...",15,0,100,0,0,0,16008,0,"Vision of the Forgotten"), +(18904,0,2,"We are infinite... eternal.",15,0,100,0,0,0,16009,0,"Vision of the Forgotten"), +(18904,0,3,"They lack control... Oshu'gun calls to them...",15,0,100,0,0,0,16010,0,"Vision of the Forgotten"), +(18904,0,4,"It is a beacon. A remnant of a forgotten era.",15,0,100,0,0,0,16011,0,"Vision of the Forgotten"); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=22 AND `SourceEntry` IN (4368,4369,4372,4371) AND `SourceId`=2; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(22, 1, 4369, 2, 0, 48, 0, 10085, 0, 0, 0, 0, 0, "", "Run SAI only if objective 1 is not complete"), +(22, 1, 4371, 2, 0, 48, 0, 10085, 1, 0, 0, 0, 0, "", "Run SAI only if objective 2 is not complete"), +(22, 1, 4372, 2, 0, 48, 0, 10085, 2, 0, 0, 0, 0, "", "Run SAI only if objective 3 is not complete"), +(22, 1, 4368, 2, 0, 48, 0, 10085, 3, 0, 0, 0, 0, "", "Run SAI only if objective 4 is not complete"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_20_02_world_335.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_20_02_world_335.sql new file mode 100644 index 00000000000..d72adcfa958 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_20_02_world_335.sql @@ -0,0 +1,66 @@ +-- +UPDATE `gameobject_template_addon` SET `flags`=0 WHERE `entry` =174610; +UPDATE `gameobject_template` SET `size`=2 WHERE `entry` IN (174711,174618,174619,164884,174620,174710,174616); +DELETE FROM `gameobject_addon` WHERE `guid` IN (SELECT `guid` FROM `gameobject` WHERE `id` IN (164885,174597,171939,164886,173324,164888,174594,171942,174595,164887,173327,174596,173284,174598,174599,174600,174601,174603,174604,174602,174605,174607,174708,174686,174608,174684,174606,174712,174713,174709,164881, 164882, 164883, 164884, 171940, 171943, 173325, 173326, 174609, 174610, 174612, 174613, 174614, 174615, 174616, 174617, 174618, 174619, 174620, 174621, 174622, 174623, 174624, 174625, 174685, 174687, 174710, 174711, 174714, 174715)); +DELETE FROM `gameobject` WHERE `id` IN (164885,174597,171939,164886,173324,164888,174594,171942,174595,164887,173327,174596,173284,174598,174599,174600,174601,174603,174604,174602,174605,174607,174708,174686,174608,174684,174606,174712,174713,174709,164881, 164882, 164883, 164884, 171940, 171943, 173325, 173326, 174609, 174610, 174612, 174613, 174614, 174615, 174616, 174617, 174618, 174619, 174620, 174621, 174622, 174623, 174624, 174625, 174685, 174687, 174710, 174711, 174714, 174715); +INSERT INTO `gameobject` (`guid`, `id`, `map`, `spawnMask`, `phaseMask`, `position_x`, `position_y`, `position_z`, `orientation`, `rotation0`, `rotation1`, `rotation2`, `rotation3`, `spawntimesecs`, `animprogress`, `state`) VALUES +(9010, 164882, 1, 1, 1, 3723.64, -1402.23, 200.395, 5.30595, 0, 0, 0.469405, -0.882983, -1, 100, 1), +(9028, 164886, 1, 1, 1, 3723.64, -1402.23, 200.395, 5.30595, 0, 0, 0.469405, -0.882983, 1500, 100, 1), +(9029, 174609, 1, 1, 1, 3780.32, -1176, 220.555, 0.167, 0, 0, 0.083403, 0.996516, -1, 100, 1), +(9030, 173324, 1, 1, 1, 3780.32, -1176, 220.555, 0.167, 0, 0, 0.083403, 0.996516, 1500, 100, 1), +(9031, 164885, 1, 1, 1, 3831.22, -1374, 207.119, 0.85, 0, 0, 0.412321, 0.911039, 1500, 100, 1), +(9046, 164881, 1, 1, 1, 3831.22, -1374, 207.119, 0.85, 0, 0, 0.412321, 0.911039, -1, 100, 1), +(9047, 171939, 1, 1, 1, 3856.6, -1014.86, 241.341, 5.6366, 0, 0, 0.31769, -0.948195, 1500, 100, 1), +(9048, 171940, 1, 1, 1, 3856.6, -1014.86, 241.341, 5.6366, 0, 0, 0.31769, -0.948195, -1, 100, 1), +(9049, 164884, 1, 1, 1, 4066.66, -1233.34, 282.075, -1.15192, 0, 0, -0.54464, 0.83867, -1, 100, 1), +(9050, 164887, 1, 1, 1, 4066.66, -1233.34, 282.075, -1.15192, 0, 0, -0.54464, 0.83867, 1500, 100, 1), +(9051, 171943, 1, 1, 1, 4191.83, -1147.7, 315.197, 2.72276, 0, 0, 0.978153, 0.207887, -1, 100, 1), +(9057, 171942, 1, 1, 1, 4191.83, -1147.7, 315.197, 2.72276, 0, 0, 0.978153, 0.207887, 1500, 100, 1), +(9058, 174616, 1, 1, 1, 4774.45, -484.409, 330.46, 2.52721, 0, 0, 0.953187, 0.302383, -1, 100, 1), +(9060, 174602, 1, 1, 1, 4774.45, -484.409, 330.46, 2.52721, 0, 0, 0.953187, 0.302383, 1500, 100, 1), +(9092, 174684, 1, 1, 1, 4867.17, -384, 350.56, 2.762, 0, 0, 0.982043, 0.188659, 1500, 100, 1), +(9093, 173325, 1, 1, 1, 4867.17, -384, 350.56, 2.762, 0, 0, 0.982043, 0.188659, -1, 100, 1), +(9094, 174594, 1, 1, 1, 4959.46, -681.357, 294.914, 4.67448, 0, 0, 0.720383, -0.693577, 1500, 100, 1), +(9095, 174610, 1, 1, 1, 4959.46, -681.357, 294.914, 4.67448, 0, 0, 0.720383, -0.693577, -1, 100, 1), +(9102, 174617, 1, 1, 1, 5259.69, -351.762, 322.032, 4.56296, 0, 0, 0.757916, -0.652352, -1, 100, 1), +(9105, 174603, 1, 1, 1, 5259.69, -351.762, 322.032, 4.56296, 0, 0, 0.757916, -0.652352, 1500, 100, 1), +(9106, 173327, 1, 1, 1, 5533.32, -933, 376.883, 1.222, 0, 0, 0.573687, 0.819075, 1500, 100, 1), +(9107, 174711, 1, 1, 1, 5533.32, -933, 376.883, 1.222, 0, 0, 0.573687, 0.819075, -1, 100, 1), +(9108, 174604, 1, 1, 1, 5539.47, -932.794, 378.093, 0.13724, 0, 0, 0.0685662, 0.997647, 1500, 100, 1), +(9109, 174618, 1, 1, 1, 5539.47, -932.794, 378.093, 0.13724, 0, 0, 0.0685662, 0.997647, -1, 100, 1), +(9110, 173326, 1, 1, 1, 6233.34, -1533.33, 441.796, 0, 0, 0, 0, 1, -1, 100, 1), +(9111, 174599, 1, 1, 1, 6233.34, -1533.33, 441.796, 0, 0, 0, 0, 1, 1500, 100, 1), +(9112, 174708, 1, 1, 1, 6268.1, -1520.2, 442.386, 0.748996, 0, 0, 0.365805, 0.930691, 1500, 100, 1), +(9123, 174621, 1, 1, 1, 6268.1, -1520.2, 442.386, 0.748996, 0, 0, 0.365805, 0.930691, -1, 100, 1), +(9129, 174600, 1, 1, 1, 6271.71, -605.54, 469.165, 2.69449, 0, 0, 0.975116, 0.221694, 1500, 100, 1), +(9133, 174619, 1, 1, 1, 6271.71, -605.54, 469.165, 2.69449, 0, 0, 0.975116, 0.221694, -1, 100, 1), +(9141, 174597, 1, 1, 1, 6297.82, -1972.49, 562.09, 5.38682, 0, 0, 0.433329, -0.901236, 1500, 100, 1), +(9142, 174614, 1, 1, 1, 6297.82, -1972.49, 562.09, 5.38682, 0, 0, 0.433329, -0.901236, -1, 100, 1), +(9143, 164888, 1, 1, 1, 6305.33, -957, 417.3, 2.499, 0, 0, 0.948827, 0.315797, 1500, 100, 1), +(9145, 164883, 1, 1, 1, 6305.33, -957, 417.3, 2.499, 0, 0, 0.948827, 0.315797, -1, 100, 1), +(9149, 174606, 1, 1, 1, 6353.12, -690.658, 477.432, 0.730612, 0, 0, 0.357235, 0.934014, 1500, 100, 1), +(9150, 174624, 1, 1, 1, 6353.12, -690.658, 477.432, 0.730612, 0, 0, 0.357235, 0.934014, -1, 100, 1), +(9151, 174709, 1, 1, 1, 6366.73, -1666.05, 480.158, 1.08907, 0, 0, 0.51802, 0.855368, 1500, 100, 1), +(9152, 174710, 1, 1, 1, 6366.73, -1666.05, 480.158, 1.08907, 0, 0, 0.51802, 0.855368, -1, 100, 1), +(9162, 174620, 1, 1, 1, 6422.47, -957.439, 423.074, 4.52048, 0, 0, 0.7716, -0.636108, -1, 100, 1), +(9163, 174601, 1, 1, 1, 6422.47, -957.439, 423.074, 4.52048, 0, 0, 0.7716, -0.636108, 1500, 100, 1), +(9164, 173284, 1, 1, 1, 6433.25, -1267, 383.206, 2.234, 0, 0, 0.898789, 0.438381, 1500, 100, 1), +(9165, 174622, 1, 1, 1, 6433.25, -1267, 383.206, 2.234, 0, 0, 0.898789, 0.438381, -1, 100, 1), +(9169, 174607, 1, 1, 1, 6434.15, -1268.32, 383.379, 3.20225, 0, 0, 0.99954, -0.030324, 1500, 100, 1), +(9171, 174625, 1, 1, 1, 6434.15, -1268.32, 383.379, 3.20225, 0, 0, 0.99954, -0.030324, -1, 100, 1), +(9172, 174685, 1, 1, 1, 6595.34, -827.373, 474.05, 3.28765, 0, 0, 0.997335, -0.0729638, -1, 100, 1), +(9173, 174608, 1, 1, 1, 6595.34, -827.373, 474.05, 3.28765, 0, 0, 0.997335, -0.0729638, 1500, 100, 1), +(9177, 174598, 1, 1, 1, 6599.99, -1266.66, 448.401, 1.98968, 0, 0, 0.838671, 0.544639, 1500, 100, 1), +(9178, 174615, 1, 1, 1, 6599.99, -1266.66, 448.401, 1.98968, 0, 0, 0.838671, 0.544639, -1, 100, 1), +(9179, 174605, 1, 1, 1, 6666.67, -1200, 471.328, 2.164, 0, 0, 0.882899, 0.469563, 1500, 100, 1), +(9181, 174623, 1, 1, 1, 6666.67, -1200, 471.328, 2.164, 0, 0, 0.882899, 0.469563, -1, 100, 1), +(9182, 174687, 1, 1, 1, 6669.76, -1209.39, 469.181, 3.43473, 0, 0, 0.989278, -0.146044, -1, 100, 1), +(9190, 174686, 1, 1, 1, 6669.76, -1209.39, 469.181, 3.43473, 0, 0, 0.989278, -0.146044, 1500, 100, 1), +(9191, 174712, 1, 1, 1, 6724.35, -1578.87, 475.274, 2.44158, 0, 0, 0.93937, 0.342906, 1500, 100, 1), +(9201, 174714, 1, 1, 1, 6724.35, -1578.87, 475.274, 2.44158, 0, 0, 0.93937, 0.342906, -1, 100, 1), +(9202, 174596, 1, 1, 1, 6733.31, -1566.68, 477.04, -2.82743, 0, 0, 0.987688, -0.156434, 1500, 100, 1), +(9203, 174613, 1, 1, 1, 6733.31, -1566.68, 477.04, -2.82743, 0, 0, 0.987688, -0.156434, -1, 100, 1), +(9209, 174715, 1, 1, 1, 6868.36, -2025.77, 577.324, 2.49261, 0, 0, 0.947813, 0.318828, -1, 100, 1), +(9211, 174713, 1, 1, 1, 6868.36, -2025.77, 577.324, 2.49261, 0, 0, 0.947813, 0.318828, 1500, 100, 1), +(9213, 174595, 1, 1, 1, 6900, -2033.33, 583.696, 1.81514, 0, 0, 0.788011, 0.615662, 1500, 100, 1), +(9215, 174612, 1, 1, 1, 6900, -2033.33, 583.696, 1.81514, 0, 0, 0.788011, 0.615662, -1, 100, 1); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_20_03_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_20_03_world.sql new file mode 100644 index 00000000000..8ef1415d257 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_20_03_world.sql @@ -0,0 +1,75 @@ +-- +DELETE FROM `spell_area` WHERE `spell` IN (58530, 58551); +INSERT INTO `spell_area` (`spell`,`area`,`quest_start`,`quest_end`,`aura_spell`,`racemask`,`gender`,`autocast`,`quest_start_status`,`quest_end_status`) VALUES +(58530,12,13188,13188,0,0,2,1,2,11), +(58530,1519,13188,13188,0,0,2,1,2,11), +(58551,1637,13189,13189,0,0,2,1,2,11), +(58551,14,13189,13189,0,0,2,1,2,11); + +UPDATE `conditions` SET `NegativeCondition`=1 WHERE `SourceTypeOrReferenceId`=22 AND `SourceGroup`=1 AND `SourceEntry` IN (68,14304,1976,1756,3296); +DELETE FROM conditions WHERE SourceTypeOrReferenceId = 13 AND SourceEntry = 58533; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(13, 1, 58533, 0, 31, 3, 68, 0, 0, '', "Return to Stormwind"), +(13, 1, 58533, 1, 31, 3, 1756, 0, 0, '', "Return to Stormwind"), +(13, 1, 58533, 2, 31, 3, 1976, 0, 0, '', "Return to Stormwind"); +DELETE FROM conditions WHERE SourceTypeOrReferenceId = 13 AND SourceEntry = 58552; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(13, 1, 58552, 0, 31, 3, 14304, 0, 0, '', "Return to Orgrimmar"), +(13, 1, 58552, 1, 31, 3, 3296, 0, 0, '', "Return to Orgrimmar"); + +-- Stormwind City Guard SAI +SET @ENTRY := 68; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0 AND `id`=11; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@ENTRY,0,11,0,8,0,100,0,58533,0,1000,1000,87,329600,329601,329602,329603,0,0,1,0,0,0,0,0,0,0,"Stormwind City Guard - On spell hit - Run Random Script"); + +-- Kor''kron Elite SAI +SET @ENTRY := 14304; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0 AND `id`=12; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@ENTRY,0,12,0,8,0,100,0,58552,0,1000,1000,87,329600,329601,329602,329603,0,0,1,0,0,0,0,0,0,0,"Kor''kron Elite - On spell hit - Run Random Script"); + +-- Stormwind City Patroller SAI +SET @ENTRY := 1976; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0 AND `id`=11; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@ENTRY,0,11,0,8,0,100,0,58533,0,1000,1000,87,329600,329601,329602,329603,0,0,1,0,0,0,0,0,0,0,"Stormwind City Patroller - On spell hit - Run Random Script"); + +-- Stormwind Royal Guard SAI +SET @ENTRY := 1756; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0 AND `id`=11; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@ENTRY,0,11,0,8,0,100,0,58533,0,1000,1000,87,329600,329601,329602,329603,0,0,1,0,0,0,0,0,0,0,"Stormwind Royal Guard - On spell hit - Run Random Script"); + +-- Orgrimmar Grunt SAI +SET @ENTRY := 3296; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0 AND `id`=12; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@ENTRY,0,12,0,8,0,100,0,58552,0,1000,1000,87,329600,329601,329602,329603,0,0,1,0,0,0,0,0,0,0,"Orgrimmar Grunt - On spell hit - Run Random Script"); + +-- Actionlist SAI +SET @ENTRY := 329600; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY 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 +(@ENTRY,9,0,0,0,0,100,0,0,0,0,0,11,58509,0,0,0,0,0,7,0,0,0,0,0,0,0,"Stormwind City Guard - On Script - Cast ''Rotten Apple Toss'"), +(@ENTRY,9,1,0,0,0,100,0,0,0,0,0,1,2,0,0,0,0,0,7,0,0,0,0,0,0,0,"Stormwind City Guard - On Script - Say Line 2"); + +-- Actionlist SAI +SET @ENTRY := 329601; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY 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 +(@ENTRY,9,0,0,0,0,100,0,0,0,0,0,11,58513,0,0,0,0,0,7,0,0,0,0,0,0,0,"Stormwind City Guard - On Script - Cast 'Rotten Banana Toss'"), +(@ENTRY,9,1,0,0,0,100,0,0,0,0,0,1,3,0,0,0,0,0,7,0,0,0,0,0,0,0,"Stormwind City Guard - On Script - Say Line 3"); + +-- Actionlist SAI +SET @ENTRY := 329602; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY 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 +(@ENTRY,9,0,0,0,0,100,0,0,0,0,0,11,58520,0,0,0,0,0,7,0,0,0,0,0,0,0,"Stormwind City Guard - On Script - Cast 'Spit'"), +(@ENTRY,9,1,0,0,0,100,0,0,0,0,0,1,4,0,0,0,0,0,7,0,0,0,0,0,0,0,"Stormwind City Guard - On Script - Say Line 4"); + +-- Actionlist SAI +SET @ENTRY := 329603; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY 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 +(@ENTRY,9,0,0,0,0,100,0,0,0,0,0,1,5,0,0,0,0,0,1,0,0,0,0,0,0,0,"Stormwind City Guard - On Script - Say Line 5"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_20_04_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_20_04_world.sql new file mode 100644 index 00000000000..b191006d674 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_20_04_world.sql @@ -0,0 +1,2 @@ +-- +UPDATE `creature_text` SET `Type`=42 WHERE `CreatureID`=36476 AND `GroupID`=1; diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_20_05_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_20_05_world.sql new file mode 100644 index 00000000000..f68651e9459 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_20_05_world.sql @@ -0,0 +1 @@ +DELETE FROM `creature` WHERE `id`=38463 AND `map`=631; diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_21_00_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_21_00_world.sql new file mode 100644 index 00000000000..85f39872406 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_21_00_world.sql @@ -0,0 +1,2 @@ +-- +UPDATE `creature_loot_template` SET `Chance`=5 WHERE `Item` IN (44564, 44565, 44566, 44567, 44568); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_21_01_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_21_01_world.sql new file mode 100644 index 00000000000..f531b7639aa --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_21_01_world.sql @@ -0,0 +1,3 @@ +DELETE FROM `spell_script_names` WHERE `ScriptName` IN ('spell_pri_lightwell'); +INSERT INTO `spell_script_names` VALUES +(60123,'spell_pri_lightwell'); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_21_02_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_21_02_world.sql new file mode 100644 index 00000000000..bc4749e4311 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_21_02_world.sql @@ -0,0 +1,3 @@ +DELETE FROM `spell_script_names` WHERE `ScriptName` IN ('spell_gen_teleporting'); +INSERT INTO `spell_script_names` VALUES +(59317,'spell_gen_teleporting'); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_22_00_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_22_00_world.sql new file mode 100644 index 00000000000..29f3e21722d --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_22_00_world.sql @@ -0,0 +1,3 @@ +DELETE FROM `spell_script_names` WHERE `ScriptName` IN ('spell_q11653_shortening_blaster'); +INSERT INTO `spell_script_names` VALUES +(45668,'spell_q11653_shortening_blaster'); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_22_01_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_22_01_world.sql new file mode 100644 index 00000000000..3ae3cc42291 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_22_01_world.sql @@ -0,0 +1,4 @@ +DELETE FROM `spell_script_names` WHERE `ScriptName` IN ('spell_teleport_leaders_blessing'); +INSERT INTO `spell_script_names` VALUES +(58418,'spell_teleport_leaders_blessing'), +(58420,'spell_teleport_leaders_blessing'); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_00_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_00_world.sql new file mode 100644 index 00000000000..56634f67b00 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_00_world.sql @@ -0,0 +1,9 @@ +-- +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry` IN (18706); +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (18706) 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 +(18706, 0, 0, 0, 7, 0, 100, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Bonechewer Riding Wolf - On evade - Despawn"), +(18706, 0, 1, 0, 0, 0, 100, 0, 1000, 2000, 15000, 17000, 11, 3149, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Bonechewer Riding Wolf - IC - cast spell Furious Howl"), +(18706, 0, 2, 0, 0, 0, 100, 0, 3000, 4000, 4000, 7000, 11, 16460, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Bonechewer Riding Wolf - IC - cast spell Festering Bite"), +(18706, 0, 3, 0, 54, 0, 100, 0, 0, 0, 0, 0, 49, 0, 0, 0, 0, 0, 0, 21, 30, 0, 0, 0, 0, 0, 0, "Bonechewer Riding Wolf - just summoned - morph"), +(18706, 0, 4, 0, 1, 0, 100, 1, 2000, 2000, 0, 0, 41, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Bonechewer Riding Wolf - OOC - Despawn"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_01_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_01_world.sql new file mode 100644 index 00000000000..aeb0282436d --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_01_world.sql @@ -0,0 +1,2 @@ +-- +UPDATE `creature_template` SET `unit_flags`=256|512 WHERE `entry`=17318; diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_02_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_02_world.sql new file mode 100644 index 00000000000..b3f71013551 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_02_world.sql @@ -0,0 +1,5 @@ +-- +DELETE FROM `quest_request_items` WHERE `ID` IN (11284, 13839); +INSERT INTO `quest_request_items` (`ID`, `CompletionText`, `VerifiedBuild`) VALUES +(11284, "Have you had any luck removing that stupid yeti from my mine? ", 0), +(13839, "Have you mastered the use of the charge?", 0); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_03_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_03_world.sql new file mode 100644 index 00000000000..6efa7bd946c --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_03_world.sql @@ -0,0 +1,8 @@ +-- +UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry` IN (23740, 29710); +DELETE FROM `smart_scripts` WHERE `entryorguid`=26472 AND `source_type`=0 AND `id`=7; +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (23740, 29710) AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(26472, 0, 7, 0, 0, 0, 100, 0, 5000, 7000, 8000, 12000, 0, 11, 29577, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, "Highland Mustang - In Combat - Cast 'Hoof Strike'"), +(23740, 0, 0, 0, 0, 0, 100, 0, 5000, 7000, 8000, 12000, 0, 11, 29577, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, "Frosthorn Ram - In Combat - Cast 'Hoof Strike'"), +(29710, 0, 0, 0, 0, 0, 100, 0, 5000, 7000, 8000, 12000, 0, 11, 29577, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, "Onslaught Destrier - In Combat - Cast 'Hoof Strike'"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_04_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_04_world.sql new file mode 100644 index 00000000000..8d064cdc1cd --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_04_world.sql @@ -0,0 +1,2 @@ +-- +UPDATE `quest_template_addon` SET `ExclusiveGroup`=0, `NextQuestID`=0, `BreadcrumbForQuestId`=11313 WHERE `ID` IN (11302, 11312); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_05_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_05_world.sql new file mode 100644 index 00000000000..f9465930275 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_05_world.sql @@ -0,0 +1,12 @@ +-- +DELETE FROM `smart_scripts` WHERE `entryorguid`=28314 AND `source_type`=0; +DELETE FROM `smart_scripts` WHERE `entryorguid`=2831400 AND `source_type`=9; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(28314, 0, 0, 0, 19, 0, 100, 0, 12566, 0, 0, 0, 0, 80, 2831400, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Longrunner Nanik - On Quest Accept - Run Script"), +(2831400, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 19, 28313, 0, 0, 0, 0, 0, 0, 0, "Longrunner Nanik - On Script - Say Line 0 (Apothecary Scyllis)"), +(2831400, 9, 1, 0, 0, 0, 0, 0, 6000, 6000, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 19, 28313, 0, 0, 0, 0, 0, 0, 0, "Longrunner Nanik - On Script - Say Line 1 (Apothecary Scyllis)"); + +DELETE FROM `creature_text` WHERE `CreatureID`=28313; +INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES +(28313, 0, 0, "Yes, yes, we should do whatever we can to help them.", 12, 1, 100, 1, 0, 0, 27726, 0, "Apothecary Scyllis"), +(28313, 1, 0, "Longrunner, your fodder... err, people will be a valuable resource against the vrykul. Did I say resource? I meant, 'ally.' \n", 12, 1, 100, 25, 0, 0, 27727, 0, "Apothecary Scyllis"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_06_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_06_world.sql new file mode 100644 index 00000000000..0ab7581fc0a --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_06_world.sql @@ -0,0 +1,2 @@ +-- +UPDATE `page_text` SET `Text`="Day 10500: $BThe halls are quiet. Empty. $B$BI thought the Makers want me to watch the hall, but they never specifically said, \"Archavon, watch the hall...\"$BMaybe it's okay if I watch outside too? It would probably be less boring outside. It's decided - I am now responsible for watching the hall AND the outside. I shall take on my new responsibility next month.$B -ARCHAVON$B$BDay 20120:$BThe outside is much more open than the hall. There are convenient cliffs and mountains bordering it. I'm now confident that the Makers meant for me to watch this too. I hope they don't notice that I've only been in the hall for the first decade.$B -ARCHAVON$B" WHERE `ID`=3548; diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_07_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_07_world.sql new file mode 100644 index 00000000000..c9835194661 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_07_world.sql @@ -0,0 +1,4 @@ +-- +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=17 AND `SourceEntry`=49624 AND `ConditionTypeOrReference`=38; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(17, 0, 49624, 0, 0, 38, 1, 30, 4, 0, 0, 0, 0, "","Spell Lurielle's Pendant requires target to be at 30% health or below"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_08_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_08_world.sql new file mode 100644 index 00000000000..7fdc6ad6418 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_08_world.sql @@ -0,0 +1,24 @@ +-- +DELETE FROM `event_scripts` WHERE `id`=11027; +UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=17715; +UPDATE `gameobject_template` SET `AIName`="SmartGameObjectAI" WHERE `entry`=181964; +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (17715, 1771500) AND `source_type` IN (0, 9); +DELETE FROM `smart_scripts` WHERE `entryorguid`=181964 AND `source_type`=1; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(181964, 1, 0, 0, 70, 0, 100, 0, 2, 0, 0, 0, 0, 12, 17715, 4, 300000, 0, 0, 0, 8, 0, 0, 0, -1896.1295, -12861.0811, 87.1412, 3.5412, "Statue of Queen Azshara - On Gameobject State Change - Summon Creature 'Atoph the Bloodcursed'"), +(17715, 0, 0, 0, 63, 0, 100, 0, 0, 0, 0, 0, 0, 80, 1771500, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Atoph the Bloodcursed - Just Summoned - Run Script"), +(1771500, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Atoph the Bloodcursed - On Script - Say Line 0"), +(1771500, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 69, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, -1936.4377, -12878.3730, 85.7825, 3.5632, "Atoph the Bloodcursed - On Script - Move To Pos"), +(1771500, 9, 2, 0, 0, 0, 100, 0, 2000, 2000, 0, 0, 0, 50, 181965, 10, 0, 0, 0, 0, 8, 0, 0, 0, -1943.62, -12878.9, 88.3187, 3.8366, "Atoph the Bloodcursed - On Script - Summon Gameobject 'Statue Fire'"), +(1771500, 9, 3, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 50, 181965, 10, 0, 0, 0, 0, 8, 0, 0, 0, -1945.27, -12881.7, 91.1005, 3.73761, "Atoph the Bloodcursed - On Script - Summon Gameobject 'Statue Fire'"), +(1771500, 9, 4, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 50, 181965, 10, 0, 0, 0, 0, 8, 0, 0, 0, -1944.73, -12887.7, 88.1748, 2.81869, "Atoph the Bloodcursed - On Script - Summon Gameobject 'Statue Fire'"), +(1771500, 9, 5, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 50, 181965, 10, 0, 0, 0, 0, 8, 0, 0, 0, -1951.88, -12881.8, 88.8753, 0.304646, "Atoph the Bloodcursed - On Script - Summon Gameobject 'Statue Fire'"), +(1771500, 9, 6, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 50, 181965, 10, 0, 0, 0, 0, 8, 0, 0, 0, -1944.95, -12882.5, 99.2512, 4.0282, "Atoph the Bloodcursed - On Script - Summon Gameobject 'Statue Fire'"); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=22 AND `SourceEntry`=181964; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(22, 1, 181964, 1, 0, 29, 0, 17715, 100, 0, 1, 0, 0, "", "Smart Event 0 for gameobject Statue of Queen Azshara executes if creature Atoph the Bloodcursed is NOT within 100 yards"); + +DELETE FROM `creature_text` WHERE `CreatureID`=17715; +INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES +(17715, 0, 0, "Who dares defile the statue of our beloved?", 14, 0, 100, 0, 0, 0, 14366, 0, "Atoph the Bloodcursed"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_09_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_09_world.sql new file mode 100644 index 00000000000..346fdf9e2b9 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_09_world.sql @@ -0,0 +1,46 @@ +-- +DELETE FROM `creature` WHERE `id`=26674; + +-- Delete wrong data for Darkweb Hatchling. +DELETE FROM `creature_addon` WHERE `guid` IN (127472, 127473, 127474, 127475); +DELETE FROM `waypoint_data` WHERE `id` IN (1274720, 1274730, 1274740, 1274750); +DELETE FROM `linked_respawn` WHERE `guid` IN (127472, 127473, 127474, 127475); + +UPDATE `creature` SET `MovementType`=0, `spawndist`=0 WHERE `id`=26675; + +UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry` IN (26625, 26674, 26675); +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (26625, 26674, 26675, 2667500) AND `source_type` IN (0, 9); +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `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 +(26625, 0, 0, 0, 4, 0, 100, 0, 0, 0, 0, 0, 0, 22, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Darkweb Recluse - On Aggro - Set Event Phase 1"), +(26625, 0, 1, 0, 0, 1, 100, 0, 4000, 8000, 20000, 30000, 0, 11, 49704, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, "Darkweb Recluse - IC - Cast 'Encasing Webs' (Phase 1)"), +(26625, 0, 2, 0, 0, 1, 100, 0, 2000, 4000, 8000, 10000, 0, 11, 49708, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, "Darkweb Recluse - IC - Cast 'Poison Spit' (Phase 1)"), +(26625, 0, 3, 4, 2, 0, 100, 1, 0, 20, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Darkweb Recluse - Health Between 0-20% - Set Event Phase 0"), +(26625, 0, 4, 5, 61, 0, 100, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Darkweb Recluse - Health Between 0-20% - Say Line 0"), +(26625, 0, 5, 6, 61, 0, 100, 0, 0, 0, 0, 0, 0, 92, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Darkweb Recluse - Health Between 0-20% - Stop Current Cast"), +(26625, 0, 6, 7, 61, 0, 100, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Darkweb Recluse - Health Between 0-20% - Set ReactState Passive"), +(26625, 0, 7, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 0, 19, 26675, 100, 0, 0, 0, 0, 0, "Darkweb Recluse - Health Between 0-20% - Move To Nearby NPC 'Spider Summon Target'"), +(26625, 0, 8, 9, 34, 0, 100, 0, 0, 1, 0, 0, 0, 45, 1, 1, 0, 0, 0, 0, 19, 26675, 5, 0, 0, 0, 0, 0, "Darkweb Recluse - On MovementInform PointID 1 - Set Data 1 1 To Nearby NPC 'Spider Summon Target'"), +(26625, 0, 9, 10, 61, 0, 100, 0, 0, 0, 0, 0, 0, 22, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Darkweb Recluse - On MovementInform PointID 1 - Set Event Phase 1"), +(26625, 0, 10, 11, 61, 0, 100, 0, 0, 0, 0, 0, 0, 8, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Darkweb Recluse - On MovementInform PointID 1 - Set ReactState Aggressive"), +(26625, 0, 11, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, 49, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, "Darkweb Recluse - On MovementInform PointID 1 - Attack Target"), + +(26674, 0, 0, 0, 11, 0, 100, 0, 0, 0, 0, 0, 0, 49, 0, 0, 0, 0, 0, 0, 21, 100, 0, 0, 0, 0, 0, 0, "Darkweb Hatchling - On Spawn - Attack Closest Player"), + +(26675, 0, 0, 0, 38, 0, 100, 0, 1, 1, 10000, 10000, 0, 80, 2667500, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Spider Summon Target - On Data Set 1 1 - Run Script"), +(2667500, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 11, 47302, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Spider Summon Target - On Script - Summon Creature 'Darkweb Hatchling'"), +(2667500, 9, 1, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 0, 11, 47302, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Spider Summon Target - On Script - Summon Creature 'Darkweb Hatchling'"), +(2667500, 9, 2, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 0, 11, 47302, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Spider Summon Target - On Script - Summon Creature 'Darkweb Hatchling'"), +(2667500, 9, 3, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 0, 11, 47302, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Spider Summon Target - On Script - Summon Creature 'Darkweb Hatchling'"), +(2667500, 9, 4, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 0, 11, 47302, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Spider Summon Target - On Script - Summon Creature 'Darkweb Hatchling'"), +(2667500, 9, 5, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 0, 11, 47302, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Spider Summon Target - On Script - Summon Creature 'Darkweb Hatchling'"), +(2667500, 9, 6, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 0, 11, 47302, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Spider Summon Target - On Script - Summon Creature 'Darkweb Hatchling'"), +(2667500, 9, 7, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 0, 11, 47302, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Spider Summon Target - On Script - Summon Creature 'Darkweb Hatchling'"), +(2667500, 9, 8, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 0, 11, 47302, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Spider Summon Target - On Script - Summon Creature 'Darkweb Hatchling'"), +(2667500, 9, 9, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 0, 11, 47302, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Spider Summon Target - On Script - Summon Creature 'Darkweb Hatchling'"); + +DELETE FROM `creature_text` WHERE `CreatureID`=26625; +INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES +(26625, 0, 0, "%s flees back to its den....", 16, 0, 100, 0, 0, 0, 26536, 0, "Darkweb Recluse"); + +-- Spider Summon Targets are behind invisible walls, so disable MMAPS for mobs that must go through this wall. +UPDATE `creature_template` SET `flags_extra`=`flags_extra`|536870912 WHERE `entry` IN (26674, 31335, 26625, 31336); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_10_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_10_world.sql new file mode 100644 index 00000000000..df3cd7828ad --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_10_world.sql @@ -0,0 +1,2 @@ +-- +DELETE FROM `creature_loot_template` WHERE `Entry`=2031 AND `Reference`=44007; diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_11_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_11_world.sql new file mode 100644 index 00000000000..c13f9fcd724 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_11_world.sql @@ -0,0 +1,2 @@ +-- +UPDATE `creature_loot_template` SET `Chance`=0, `GroupId`=2 WHERE `Entry`=18693 AND `Item` IN (31163, 31164, 31165, 31166); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_12_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_12_world.sql new file mode 100644 index 00000000000..ff1ce658779 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_12_world.sql @@ -0,0 +1,10 @@ +-- +DELETE FROM `gossip_menu_option` WHERE `MenuID` IN (10214, 10255); +INSERT INTO `gossip_menu_option` (`MenuID`, `OptionID`, `OptionIcon`, `OptionText`, `OptionBroadcastTextID`, `OptionType`, `OptionNpcFlag`, `ActionMenuID`, `ActionPoiID`, `BoxCoded`, `BoxMoney`, `BoxText`, `BoxBroadcastTextID`, `VerifiedBuild`) VALUES +(10214, 0, 1, "I want to browse your goods", 3370, 3, 128, 0, 0, 0, 0, "", 0, 0), +(10255, 0, 1, "I want to browse your goods", 3370, 3, 128, 0, 0, 0, 0, "", 0, 0); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup` IN (10214, 10255); +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(15, 10214, 0, 0, 0, 8, 0, 12870, 0, 0, 0, 0, 0, "", "NPC Rork Sharpchin can sell items only if quest 'Ancient Relics' is rewarded"), +(15, 10255, 0, 0, 0, 8, 0, 12882, 0, 0, 0, 0, 0, "", "NPC Olut Alegut can sell items only if quest 'Ancient Relics' is rewarded"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_13_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_13_world.sql new file mode 100644 index 00000000000..c670691a9e1 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_13_world.sql @@ -0,0 +1,38 @@ +-- +UPDATE `creature` SET `spawndist`=2 WHERE `guid` IN (108910, 108911, 108912, 108913); + +UPDATE `creature_template` SET `AIName`="SmartAI", `unit_flags`=`unit_flags`|256 WHERE `entry`=24547; +UPDATE `creature` SET `position_x`=-49.74284, `position_y`=-3393.537, `position_z`=-8.100207, `orientation`=3.70 WHERE `guid`=117725; +DELETE FROM `creature_template_addon` WHERE `entry`=24547; +INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `auras`) VALUES +(24547, 0, 0, 3, 0, 0, ""); + +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (24742, 24547, 2454700, 2474200) AND `source_type` IN (0, 9); +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `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 +(24742, 0, 0, 0, 0, 0, 100, 0, 0, 15000, 15000, 30000, 0, 11, 50188, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "\"Mad\" Jonah Sterling - IC - Cast Wildly Flailing"), +(24742, 0, 1, 2, 34, 0, 100, 0, 8, 1, 0, 0, 0, 97, 20, 20, 0, 0, 0, 0, 1, 0, 0, 0, -37.5049, -3421.69, -14.2464, 0, "\"Mad\" Jonah Sterling - On MovementInform PointID 1 - Jump to Hozzer"), +(24742, 0, 2, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, 45, 1, 1, 0, 0, 0, 0, 19, 24547, 0, 0, 0, 0, 0, 0, "\"Mad\" Jonah Sterling - On WP 1 Reached - Set Data 1 1 Hozzer"), +(24742, 0, 3, 0, 2, 0, 100, 513, 0, 25, 0, 0, 0, 80, 2474200, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "\"Mad\" Jonah Sterling - On 25% Hp - Run Script"), +(24547, 0, 0, 0, 0, 0, 100, 0, 5000, 10000, 15000, 20000, 0, 11, 34298, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Hozzer - In Combat - Cast Maul"), +(24547, 0, 1, 2, 38, 0, 100, 0, 1, 1, 0, 0, 0, 53, 1, 24547, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Hozzer - On Data 1 1 Set - Start Waypoint"), +(24547, 0, 2, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, 91, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Hozzer - On Data 1 1 Set - Remove Standstate Sleep"), +(24547, 0, 3, 0, 40, 0, 100, 0, 3, 24547, 0, 0, 0, 80, 2454700, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Hozzer - On Waypoint 3 Reached - Run Script"), +(2454700, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Hozzer - On Script - Talk 0"), +(2454700, 9, 1, 0, 0, 0, 100, 0, 200, 200, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 19, 24742, 0, 0, 0, 0, 0, 0, "Hozzer - On Script - Talk 1 (\"Mad\" Jonah Sterling)"), +(2454700, 9, 2, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 11, 44458, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Hozzer - On Script - Cast Hozzer Feeds"), +(2454700, 9, 3, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 19, 24742, 0, 0, 0, 0, 0, 0, "Hozzer - On Script - Despawn \"Mad\" Jonah Sterling"), +(2454700, 9, 4, 0, 0, 0, 100, 0, 2000, 2000, 0, 0, 0, 19, 256, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Hozzer - On Script - Remove Flag IMMUNE_TO_PC"), +(2454700, 9, 5, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 8, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Hozzer - On Script - Set ReactState Aggressive"), +(2474200, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 117, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "\"Mad\" Jonah Sterling - On Script - Disable Evade"), +(2474200, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 102, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "\"Mad\" Jonah Sterling - On Script - Set HP Regen Off"), +(2474200, 9, 2, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "\"Mad\" Jonah Sterling - On Script - Stop Combat"), +(2474200, 9, 3, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 89, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "\"Mad\" Jonah Sterling - On Script - Disable Random Move"), +(2474200, 9, 4, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, -36.1289, -3425.64, 4.99862, 0, "\"Mad\" Jonah Sterling - On Script - Move To Pos"), +(2474200, 9, 5, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 18, 256, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "\"Mad\" Jonah Sterling - On Script - Set Unit Flag IMMUNE_TO_PC"), +(2474200, 9, 6, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "\"Mad\" Jonah Sterling - On Script - Say Line 1"); + +DELETE FROM `waypoints` WHERE `entry` IN (24547, 24742); +INSERT INTO `waypoints` (`entry`, `pointid`, `position_x`, `position_y`, `position_z`, `point_comment`) VALUES +(24547, 1, -31.82427, -3401.094, -14.61846, "Hozzer"), +(24547, 2, -30.87391, -3411.618, -15.25708, "Hozzer"), +(24547, 3, -35.8712, -3419.122, -14.47846, "Hozzer"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_14_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_14_world.sql new file mode 100644 index 00000000000..409df2d5c12 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_14_world.sql @@ -0,0 +1,10 @@ +-- +UPDATE `creature_template_addon` SET `auras`="45842" WHERE `entry`=25478; +DELETE FROM `creature_addon` WHERE `guid`=113408; +INSERT INTO `creature_addon` (`guid`, `auras`) VALUES +(113408, "46076"); + +DELETE FROM `spell_area` WHERE `spell` IN (45844, 46079); +INSERT INTO `spell_area` (`spell`, `area`, `quest_start`, `quest_end`, `aura_spell`, `racemask`, `gender`, `autocast`, `quest_start_status`, `quest_end_status`) VALUES +(45844, 4023, 11590, 0, 0, 0, 2, 1, 64, 11), +(46079, 4023, 11681, 0, 0, 0, 2, 1, 66, 11); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_15_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_15_world.sql new file mode 100644 index 00000000000..d85e6c61667 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_15_world.sql @@ -0,0 +1,23 @@ +-- +DELETE FROM `creature_text` WHERE `CreatureID` IN (31261, 31259); +INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES +(31261, 0, 0, "This is madness! Cease this foolish battle!", 12, 1, 100, 0, 0, 0, 31915, 0, "Brother Keltan"), +(31261, 0, 1, "Brothers and sisters, we must remain united! The Lich King will never fall to a world divided!", 12, 1, 100, 0, 0, 0, 31916, 0, "Brother Keltan"), +(31261, 0, 2, "Can you not see that you play right into the Lich King's hands? He wants you to kill each other!", 12, 1, 100, 0, 0, 0, 31917, 0, "Brother Keltan"), +(31261, 0, 3, "Join the Argent Crusade! United, we shall destroy the Lich King!", 12, 1, 100, 0, 0, 0, 31918, 0, "Brother Keltan"), +(31261, 0, 4, "Judgment day comes, brothers and sisters! Will you be prepared?", 12, 1, 100, 0, 0, 0, 31919, 0, "Brother Keltan"), +(31261, 0, 5, "How much of our efforts are being wasted by attacking the Alliance?", 12, 1, 100, 0, 0, 0, 31920, 0, "Brother Keltan"), +(31261, 0, 6, "We must unite and focus our attention upon the true threat: THE LICH KING!", 12, 1, 100, 0, 0, 0, 31922, 0, "Brother Keltan"), +(31259, 0, 0, "This is madness! Cease this foolish battle!", 12, 7, 100, 0, 0, 0, 31923, 0, "Absalan the Pious"), +(31259, 0, 1, "Brothers and sisters, we must remain united! The Lich King will never fall to a world divided!", 12, 7, 100, 0, 0, 0, 31924, 0, "Absalan the Pious"), +(31259, 0, 2, "Can you not see that you play right into the Lich King's hands? He wants you to kill each other!", 12, 7, 100, 0, 0, 0, 31925, 0, "Absalan the Pious"), +(31259, 0, 3, "Join the Argent Crusade! United, we shall destroy the Lich King!", 12, 7, 100, 0, 0, 0, 31926, 0, "Absalan the Pious"), +(31259, 0, 4, "Judgment day comes, brothers and sisters! Will you be prepared?", 12, 7, 100, 0, 0, 0, 31927, 0, "Absalan the Pious"), +(31259, 0, 5, "How much of our efforts are being wasted by attacking the Horde?", 12, 7, 100, 0, 0, 0, 31928, 0, "Absalan the Pious"), +(31259, 0, 6, "We must unite and focus our attention upon the true threat: THE LICH KING!", 12, 7, 100, 0, 0, 0, 31929, 0, "Absalan the Pious"); + +UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry` IN (31261, 31259); +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (31261, 31259) AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(31261, 0, 0, 0, 1, 0, 100, 0, 15000, 30000, 100000, 140000, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Brother Keltan - Out Of Combat - Say Line 0"), +(31259, 0, 0, 0, 1, 0, 100, 0, 15000, 30000, 100000, 140000, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Absalan the Pious - Out Of Combat - Say Line 0"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_16_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_16_world.sql new file mode 100644 index 00000000000..2b50e617dd2 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_16_world.sql @@ -0,0 +1,31 @@ +-- +UPDATE `creature_addon` SET `auras`="55474" WHERE `guid` IN (125388, 125390, 125385); +DELETE FROM `creature` WHERE `guid`=125391; +DELETE FROM `creature_addon` WHERE `guid`=125391; + +UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=27432; +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (-125386, 2743200) AND `source_type` IN (0, 9); +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `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 +(-125386, 0, 0, 0, 1, 0, 100, 0, 5000, 20000, 150000, 210000, 0, 80, 2743200, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Warsong Peon - Out Of Combat - Run Script"), +(2743200, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 10, 125389, 27432, 0, 0, 0, 0, 0, "Warsong Peon - On Script - Say Line 0 (Warsong Peon)"), +(2743200, 9, 1, 0, 0, 0, 50, 0, 60000, 120000, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Warsong Peon - On Script - Say Line 1"), +(2743200, 9, 2, 0, 0, 0, 100, 0, 3000, 3000, 0, 0, 0, 5, 36, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Warsong Peon - On Script - Play Emote 'Attack 1H'"), +(2743200, 9, 3, 0, 0, 0, 50, 0, 1000, 1000, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 10, 125387, 27432, 0, 0, 0, 0, 0, "Warsong Peon - On Script - Say Line 2 (Warsong Peon)"); + +DELETE FROM `creature_text` WHERE `CreatureID`=27432; +INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES +(27432, 0, 0, "Me hungry.", 12, 1, 100, 1, 0, 0, 26572, 0, "Warsong Peon"), +(27432, 0, 1, "Me sleepy.", 12, 1, 100, 1, 0, 0, 26573, 0, "Warsong Peon"), +(27432, 0, 2, "Me cold.", 12, 1, 100, 1, 0, 0, 26574, 0, "Warsong Peon"), +(27432, 0, 3, "Me scared of bug things.", 12, 1, 100, 1, 0, 0, 26575, 0, "Warsong Peon"), +(27432, 0, 4, "Me got stuck in sticky bug rope.", 12, 1, 100, 1, 0, 0, 26576, 0, "Warsong Peon"), +(27432, 0, 5, "Me no like rock place full of bugs.", 12, 1, 100, 1, 0, 0, 26577, 0, "Warsong Peon"), +(27432, 0, 6, "Me no like new cold place.", 12, 1, 100, 1, 0, 0, 26578, 0, "Warsong Peon"), +(27432, 0, 7, "It time for work! Zug zug!", 12, 1, 100, 1, 0, 0, 26589, 0, "Warsong Peon"), +(27432, 1, 0, "Ha ha.", 12, 1, 100, 1, 0, 0, 26582, 0, "Warsong Peon"), +(27432, 1, 1, "That funny.", 12, 1, 100, 1, 0, 0, 26583, 0, "Warsong Peon"), +(27432, 1, 2, "Your head like rock.", 12, 1, 100, 1, 0, 0, 26588, 0, "Warsong Peon"), +(27432, 2, 0, "Ow.", 12, 1, 100, 1, 0, 0, 26584, 0, "Warsong Peon"), +(27432, 2, 1, "Stop it!", 12, 1, 100, 1, 0, 0, 26585, 0, "Warsong Peon"), +(27432, 2, 2, "That hurt.", 12, 1, 100, 1, 0, 0, 26586, 0, "Warsong Peon"), +(27432, 2, 3, "What that sound?", 12, 1, 100, 1, 0, 0, 26587, 0, "Warsong Peon"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_17_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_17_world.sql new file mode 100644 index 00000000000..9c1f8aa866a --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_17_world.sql @@ -0,0 +1,10 @@ +-- +UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=25294; +DELETE FROM `smart_scripts` WHERE `entryorguid`=25294 AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(25294, 0, 0, 1, 0, 0, 100, 0, 3000, 10000, 30000, 40000, 0, 11, 50284, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Nerub'ar Web Lord - In Combat - Cast 'Blinding Swarm'"), +(25294, 0, 1, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Nerub'ar Web Lord - In Combat - Say Line 0"); + +DELETE FROM `creature_text` WHERE `CreatureID`=25294; +INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES +(25294, 0, 0, "The %s directs the blinding swarm directly in front of it.", 16, 0, 100, 0, 0, 0, 27381, 0, "Nerub'ar Web Lord"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_18_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_18_world.sql new file mode 100644 index 00000000000..a8889112f4f --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_18_world.sql @@ -0,0 +1,2 @@ +-- +UPDATE `creature_template` SET `mechanic_immune_mask`=`mechanic_immune_mask`|1 WHERE `entry`=23090; diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_19_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_19_world.sql new file mode 100644 index 00000000000..26abe3a02a0 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_23_19_world.sql @@ -0,0 +1,38 @@ +-- +DELETE FROM `gameobject` WHERE `guid` IN(9216,9218,9222) AND `id` IN (192474,192475,192473); +INSERT INTO `gameobject` (`guid`, `id`, `map`, `spawnMask`, `phaseMask`, `position_x`, `position_y`, `position_z`, `orientation`, `rotation0`, `rotation1`, `rotation2`, `rotation3`, `spawntimesecs`, `animprogress`, `state`) VALUES +(9216, 192474, 571, 1, 1, 7370.37, 4879.1, 1.0929, 2.92342, 0, 0, 0.994056, 0.10887, 300, 255, 1), +(9218, 192475, 571, 1, 1, 7362.43, 4853.38, 0.244615, 2.86233, 0, 0, 0.990267, 0.139178, 300, 255, 1), +(9222, 192473, 571, 1, 1, 7816.62, 4705.44, 0.338167, 1.57952, 0, 0, 0.710184, 0.704016, 300, 255, 1); + +DELETE FROM `creature` WHERE `guid` IN (111106, 111111, 111112, 111127, 111128, 111129, 111130, 111131, 111132, 111133, 111134, 111135, 111136, 111138, 111139, 111141, 111142, 111144, 111167) AND `id` IN (29330,29338,29329); +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`) VALUES +(111106, 29330, 571, 0, 0, 1, 1, 0, 1, 7369.12, 4869.77, 1.72863, 2.74042, 300, 0, 0, 12175, 0, 0, 0, 0, 0), +(111111, 29330, 571, 0, 0, 1, 1, 0, 1, 7367.12, 4866.47, 1.70856, 2.74042, 300, 0, 0, 12175, 0, 0, 0, 0, 0), +(111112, 29330, 571, 0, 0, 1, 1, 0, 1, 7366.77, 4862.94, 2.58352, 2.74042, 300, 0, 0, 12600, 0, 0, 0, 0, 0), +(111127, 29338, 571, 0, 0, 1, 1, 0, 1, 7370.76, 4863.02, 2.46999, 2.58353, 300, 0, 0, 10080, 8814, 0, 0, 0, 0), +(111128, 29338, 571, 0, 0, 1, 1, 0, 1, 7372.27, 4866.47, 1.96164, 2.77233, 300, 0, 0, 10080, 8814, 0, 0, 0, 0), +(111129, 29330, 571, 0, 0, 1, 1, 0, 1, 7333.77, 4832.87, 1.18764, 0.376084, 300, 0, 0, 12600, 0, 0, 0, 0, 0), +(111130, 29330, 571, 0, 0, 1, 1, 0, 1, 7334.38, 4836.51, 0.922947, 5.90293, 300, 0, 0, 12600, 0, 0, 0, 0, 0), +(111131, 29338, 571, 0, 0, 1, 1, 0, 1, 7339.65, 4837.68, 1.03617, 4.38083, 300, 0, 0, 9740, 8636, 0, 0, 0, 0), +(111132, 29329, 571, 0, 0, 1, 1, 0, 1, 7338.27, 4829.94, 1.56251, 1.45297, 300, 0, 0, 12175, 3893, 0, 0, 0, 0), +(111133, 29330, 571, 0, 0, 1, 1, 0, 1, 7342.16, 4832.92, 1.49471, 2.96879, 300, 0, 0, 12600, 0, 0, 0, 0, 0), +(111134, 29330, 571, 0, 0, 1, 1, 0, 1, 7370.51, 4905.15, 2.21898, 3.19985, 300, 0, 0, 12175, 0, 0, 0, 0, 0), +(111135, 29330, 571, 0, 0, 1, 1, 0, 1, 7369.92, 4898.99, 1.87871, 2.54012, 300, 0, 0, 12175, 0, 0, 0, 0, 0), +(111136, 29330, 571, 0, 0, 1, 1, 0, 1, 7362.2, 4904.13, 1.56021, 5.90006, 300, 0, 0, 12175, 0, 0, 0, 0, 0), +(111138, 29329, 571, 0, 0, 1, 1, 0, 1, 7365.78, 4908.53, 1.81832, 4.8382, 300, 0, 0, 12600, 3994, 0, 0, 0, 0), +(111139, 29338, 571, 0, 0, 1, 1, 0, 1, 7364.82, 4898.25, 1.37546, 1.07614, 300, 0, 0, 9740, 8636, 0, 0, 0, 0), +(111141, 29330, 571, 0, 0, 1, 1, 0, 1, 7849.05, 4729.17, 0.183427, 5.5724, 300, 0, 0, 12600, 0, 0, 0, 0, 0), +(111142, 29330, 571, 0, 0, 1, 1, 0, 1, 7808.31, 4692.79, 0.237622, 1.58257, 300, 0, 0, 12600, 0, 0, 0, 0, 0), +(111144, 29330, 571, 0, 0, 1, 1, 0, 1, 7825.13, 4706.11, 0.914293, 3.21699, 300, 0, 0, 12175, 0, 0, 0, 0, 0), +(111167, 29338, 571, 0, 0, 1, 1, 0, 1, 7807.4, 4710.85, 0.495033, 6.09547, 300, 0, 0, 9740, 8636, 0, 0, 0, 0); + +DELETE FROM `creature_addon` WHERE `guid` IN (111142,111144,111141); +INSERT INTO `creature_addon` (`guid`,`bytes1`,`bytes2`, `emote`) VALUES +(111142,0,1,69), +(111141,0,1,69), +(111144,1,1,0); + +DELETE FROM `creature_template_addon` WHERE `entry`=29338; +INSERT INTO `creature_template_addon` (`entry`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES +(29338,0,0,1,0, "48154"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_24_00_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_24_00_world.sql new file mode 100644 index 00000000000..c2d0645d1a7 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_24_00_world.sql @@ -0,0 +1,4 @@ +-- +DELETE FROM `skill_fishing_base_level` WHERE `entry`=3479; +INSERT INTO `skill_fishing_base_level` (`entry`, `skill`) VALUES +(3479, 25); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_24_01_world_335.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_24_01_world_335.sql new file mode 100644 index 00000000000..15db2bd6e46 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_24_01_world_335.sql @@ -0,0 +1,12 @@ +-- Crag boar +DELETE FROM `creature_loot_template` WHERE `Entry`=1125; +INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES +(1125, 2886, 0, 45, 0, 1, 1, 1, 1, "Crag Boar Rib"), +(1125, 769, 0, 35, 0, 1, 1, 1, 1, "Chunk of Boar Meat"), +(1125, 117, 0, 10, 0, 1, 1, 1, 1, "Tough Jerky"), +(1125, 771, 0, 35, 0, 1, 0, 1, 1, "Chipped Boar Tusk"), +(1125, 3171, 0, 35, 0, 1, 0, 1, 1, "Broken Boar Tusk"), +(1125, 24073, 24073, 2.5, 0, 1, 2, 1, 1, "Junk gear"), +(1125, 24700, 24700, 1, 0 ,1, 2, 1, 1, "Patterns"), +(1125, 24701, 24701, 1, 0 ,1, 2, 1, 1, "Patterns"), +(1125, 11111, 11111, 0.1, 0, 1, 3, 1, 1, "Bags"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_24_02_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_24_02_world.sql new file mode 100644 index 00000000000..5bd4650ff4d --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_24_02_world.sql @@ -0,0 +1,65 @@ +UPDATE `creature_template` SET `DamageModifier`=7.5 WHERE `entry`=29621; +UPDATE `creature` SET `position_x`=7494.89, `position_y`=4871.53, `position_z`=-12.6553, `orientation`=1.4174, `spawndist`=0, `MovementType`=0 WHERE `id`=29621; + +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (29621, 2962100, 2962101) AND source_type IN (0, 9); +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `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 +(29621, 0, 0, 1, 4, 0, 100, 512, 0, 0, 0, 0, 0, 42, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Grand Admiral Westwind - On Aggro - Set Invincibility At 1 Hp"), +(29621, 0, 1, 2, 61, 0, 100, 512, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Grand Admiral Westwind - On Aggro - Say Line 0"), +(29621, 0, 2, 0, 61, 0, 100, 512, 0, 0, 0, 0, 0, 22, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Grand Admiral Westwind - On Aggro - Set Event Phase 1"), +(29621, 0, 3, 4, 2, 0, 100, 513, 0, 50, 0, 0, 0, 11, 50161, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Grand Admiral Westwind - Between 0-50% Health - Cast 'Protection Sphere' (No Repeat)"), +(29621, 0, 4, 0, 61, 0, 100, 512, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Grand Admiral Westwind - Between 0-50% Health - Say Line 1 (No Repeat)"), +(29621, 0, 5, 6, 8, 0, 100, 512, 31699, 0, 0, 0, 0, 28, 50161, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Grand Admiral Westwind - On Spellhit 'The Admiral Revealed: Lord-Commander's Nullifier Effect' - Remove Aura 'Protection Sphere'"), +(29621, 0, 6, 0, 61, 0, 100, 512, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Grand Admiral Westwind - On Spellhit 'The Admiral Revealed: Lord-Commander's Nullifier Effect' - Say Line 2"), +(29621, 0, 7, 8, 2, 0, 100, 513, 0, 40, 0, 0, 0, 36, 29620, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Grand Admiral Westwind - Between 0-40% Health - Turn Into Dreadlord Mal'Ganis (No Repeat)"), +(29621, 0, 8, 9, 61, 0, 100, 512, 0, 0, 0, 0, 0, 22, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Grand Admiral Westwind - Between 0-40% Health - Set Event Phase 2 (No Repeat)"), +(29621, 0, 9, 0, 61, 0, 100, 512, 0, 0, 0, 0, 0, 71, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Grand Admiral Westwind - Between 0-40% Health - Set Equip 0 (No Repeat)"), +(29621, 0, 10, 0, 2, 0, 100, 513, 0, 30, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Grand Admiral Westwind - Between 0-30% Health - Say Line 0 (No Repeat)"), +(29621, 0, 11, 0, 2, 0, 100, 1, 0, 15, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Grand Admiral Westwind - Between 0-15% Health - Say Line 1 (No Repeat)"), +(29621, 0, 12, 0, 2, 0, 100, 513, 0, 1, 0, 0, 0, 80, 2962100, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Grand Admiral Westwind - Between 0-1% Health - Run Script (No Repeat)"), +(29621, 0, 13, 0, 0, 1, 100, 0, 15000, 16000, 16000, 16000, 0, 11, 49807, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Grand Admiral Westwind - In Combat - Cast 'Whirlwind' (No Repeat)"), +(29621, 0, 14, 0, 0, 1, 100, 0, 6000, 7000, 6000, 7000, 0, 11, 57846, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Grand Admiral Westwind - In Combat - Cast 'Heroic Strike' (No Repeat)"), +(29621, 0, 15, 0, 0, 2, 100, 0, 15000, 16000, 15000, 16000, 0, 11, 53045, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, "Mal'ganis - In Combat - Cast 'Sleep' (No Repeat)"), +(29621, 0, 16, 0, 0, 2, 100, 0, 6000, 7000, 6000, 7000, 0, 11, 60501, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Mal'ganis - In Combat - Cast 'Vampiric Touch' (No Repeat)"), +(29621, 0, 17, 0, 0, 1, 100, 0, 13000, 13500, 13000, 13500, 0, 11, 15284, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Mal'ganis - In Combat - Cast 'Cleave' (No Repeat)"), +(29621, 0, 18, 0, 0, 2, 100, 0, 8000, 9000, 8000, 9000, 0, 11, 60502, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Mal'ganis - In Combat - Cast 'Carrion Swarm' (No Repeat)"), +(29621, 0, 19, 0, 0, 2, 100, 0, 18000, 19000, 18000, 19000, 0, 11, 60500, 1, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, "Mal'ganis - In Combat - Cast 'Mind Blast' (No Repeat)"), +(29621, 0, 20, 21, 25, 0, 100, 512, 0, 0, 0, 0, 0, 20, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Grand Admiral Westwind - On Reset - Start Attacking (No Repeat)"), +(29621, 0, 21, 22, 61, 0, 100, 512, 0, 0, 0, 0, 0, 36, 29621, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Grand Admiral Westwind - On Reset - Turn Into Grand Admiral Westwind (No Repeat)"), +(29621, 0, 22, 23, 61, 0, 100, 512, 0, 0, 0, 0, 0, 71, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Grand Admiral Westwind - On Reset - Set Equip 1"), +(29621, 0, 23, 0, 61, 0, 100, 512, 0, 0, 0, 0, 0, 19, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Grand Admiral Westwind - On Reset - Remove Flags Not Attackable"), +(29621, 0, 24, 0, 5, 0, 100, 512, 0, 0, 1, 0, 0, 1, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Grand Admiral Westwind - On Killed Player - Talk 3"), +(29621, 0, 25, 0, 34, 0, 100, 512, 8, 1, 0, 0, 0, 80, 2962101, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Grand Admiral Westwind - On MovementInform Point 1 - Run Script"), +(2962100, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 22, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Grand Admiral Westwind - On Script - Set Event Phase 3"), +(2962100, 9, 1, 0, 0, 0, 100, 513, 1, 1, 0, 0, 0, 18, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Grand Admiral Westwind - On Script - Set Flag Not Attackable"), +(2962100, 9, 2, 0, 0, 0, 100, 513, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Grand Admiral Westwind - On Script - Stop Attacking (No Repeat)"), +(2962100, 9, 3, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 33, 29627, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, "Grand Admiral Westwind - On Script - Quest Credit 'The Admiral Revealed'"), +(2962100, 9, 4, 0, 0, 0, 100, 0, 3000, 3000, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Grand Admiral Westwind - On Script - Say Line 2"), +(2962100, 9, 5, 0, 0, 0, 100, 513, 0, 0, 0, 0, 0, 12, 29627, 1, 25000, 0, 0, 0, 8, 0, 0, 0, 7494.89, 4871.53, -12.6553, 1.376, "Grand Admiral Westwind - On Script - Summon Creature 'Grand Admiral Westwind Kill Credit Bunny' (No Repeat)"), +(2962100, 9, 6, 0, 0, 0, 100, 0, 3000, 3000, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Grand Admiral Westwind - On Script - Set Run Off"), +(2962100, 9, 7, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 7494.9375, 4871.9707, -12.6825, 0, "Grand Admiral Westwind - On Script - Move To Pos"), +(2962101, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Grand Admiral Westwind - On Script - Say Line 4"), +(2962101, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 66, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Grand Admiral Westwind - On Script - Face Invoker"), +(2962101, 9, 2, 0, 0, 0, 100, 0, 5000, 5000, 0, 0, 0, 86, 35502, 2, 19, 29627, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Grand Admiral Westwind - On Script - Cross Cast 'Legion Teleport Target' (Grand Admiral Westwind Kill Credit Bunny)"), +(2962101, 9, 3, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 0, 28, 35502, 0, 0, 0, 0, 0, 19, 29627, 0, 0, 0, 0, 0, 0, "Grand Admiral Westwind - On Script - Remove Aura 'Legion Teleport Target' From Creature 'Grand Admiral Westwind Kill Credit Bunny'"), +(2962101, 9, 4, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Grand Admiral Westwind - On Script - Despawn"); + +DELETE FROM `creature_text` WHERE `CreatureID`=29621 AND `GroupID` IN (3, 4, 5, 6, 7); +DELETE FROM `creature_text` WHERE `CreatureID`=29620; +INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES +(29621, 3, 0, "AHAHAHAHAHA! Incompetence at its finest!", 12, 0, 100, 0, 0, 14821, 30282, 0, "Grand Admiral Westwind"), +(29621, 3, 1, "You gave in too soon!", 12, 0, 100, 0, 0, 14202, 30409, 0, "Grand Admiral Westwind"), +(29621, 3, 2, "How disappointing for you.", 12, 0, 100, 0, 0, 14203, 30410, 0, "Grand Admiral Westwind"), +(29621, 3, 3, "Unfortunate. The best was yet to come.", 12, 0, 100, 0, 0, 14204, 30411, 0, "Grand Admiral Westwind"), +(29620, 0, 0, "Gah! I spent too much time in that weak little shell.", 14, 0, 100, 0, 0, 14426, 30275, 0, "Mal'Ganis"), +(29620, 1, 0, "Kirel narak! I am Mal'Ganis. I AM ETERNAL!", 14, 0, 100, 0, 0, 14427, 30276, 0, "Mal'Ganis"), +(29620, 2, 0, "ENOUGH! I waste my time here. I must gather my strength on the homeworld.", 14, 0, 100, 1, 0, 14428, 30277, 0, "Mal'Ganis"), +(29620, 3, 0, "Anakh kyree!", 14, 0, 100, 0, 0, 14422, 30412, 0, "Mal'Ganis"), +(29620, 3, 1, "My Onslaught will wash over the Lich King's forces!", 14, 0, 100, 0, 0, 14423, 30413, 0, "Mal'Ganis"), +(29620, 3, 2, "Your death is in vain, tiny mortal.", 14, 0, 100, 0, 0, 14424, 30414, 0, "Mal'Ganis"), +(29620, 3, 3, "Your time has come to an end.", 14, 0, 100, 0, 0, 14425, 30415, 0, "Mal'Ganis"), +(29620, 4, 0, "You'll never defeat the Lich King without my forces. I'll have my revenge... on him AND you!", 14, 0, 100, 25, 0, 14429, 30278, 0, "Mal'Ganis"); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=17 AND `SourceEntry`=20211; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(17, 0, 20211, 0, 0, 31, 1, 3, 29621, 0, 0, 0, 0, "", "Spell 'Lord-Commander's Nullifier' can only target 'Grand Admiral Westwind' AND"), +(17, 0, 20211, 0, 0, 1, 1, 50161, 0, 0, 0, 0, 0, "", "Spell 'Lord-Commander's Nullifier' can only target a NPC that has aura 'Protection Sphere'"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_24_03_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_24_03_world.sql new file mode 100644 index 00000000000..7c7a91475e9 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_24_03_world.sql @@ -0,0 +1,9 @@ +-- +DELETE FROM `creature_text` WHERE `CreatureID`=11360; +INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES +(11360, 0, 0, "%s flees toward the safety of another tiger.", 16, 0, 100, 0, 0, 0, 10549, 0, "Zulian Cub"); + +UPDATE `smart_scripts` SET `link`=1, `action_param1`=0 WHERE `entryorguid`=11360 AND `source_type`=0 AND `id`=0; +DELETE FROM `smart_scripts` WHERE `entryorguid`=11360 AND `source_type`=0 AND `id`=1; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(11360, 0, 1, 0, 61, 0, 100, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Zulian Cub - Between 0-15% Health - Flee For Assist (No Repeat)"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_24_04_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_24_04_world.sql new file mode 100644 index 00000000000..133f9159553 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_24_04_world.sql @@ -0,0 +1,12 @@ +DELETE FROM `creature_text` WHERE `CreatureID`=17282; +INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES +(17282, 0, 0, "We're never going to fire one of these, are we?", 12, 1, 100, 0, 0, 0, 19346, 0, "Falcon Watch Ranger"), +(17282, 0, 1, "Do we even have ammunition for these?", 12, 1, 100, 0, 0, 0, 19347, 0, "Falcon Watch Ranger"), +(17282, 0, 2, "What, exactly, are we ever going to fire these at?", 12, 1, 100, 0, 0, 0, 19348, 0, "Falcon Watch Ranger"), +(17282, 0, 3, "I wonder how far this would launch that white cat...", 12, 1, 100, 0, 0, 0, 19349, 0, "Falcon Watch Ranger"); + +UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=17282; +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (-62073, -62075) 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 +(-62073, 0, 0, 0, 1, 0, 100, 0, 5000, 20000, 120000, 240000, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Falcon Watch Ranger - Out Of Combat - Talk"), +(-62075, 0, 0, 0, 1, 0, 100, 0, 5000, 20000, 120000, 240000, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Falcon Watch Ranger - Out Of Combat - Talk"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_24_05_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_24_05_world.sql new file mode 100644 index 00000000000..b1fdabb492d --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_24_05_world.sql @@ -0,0 +1,25 @@ +UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry` IN (29437, 29439); +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (29437, 29439) AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(29437, 0, 0, 0, 0, 0, 100, 0, 200, 900, 120000, 240000, 0, 11, 50420, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Rageclaw Berserker - In Combat - Cast 'Enrage'"), +(29437, 0, 1, 0, 0, 0, 30, 0, 10000, 60000, 120000, 240000, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Rageclaw Berserker - In Combat - Talk 0"), +(29439, 0, 0, 0, 0, 0, 30, 0, 10000, 60000, 120000, 240000, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Rageclaw Hunter - In Combat - Talk 0"); + +DELETE FROM `creature_text` WHERE `CreatureID` IN (29437, 29439); +INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES +(29437, 0, 0, "You go now, bad troll!", 12, 0, 100, 0, 0, 0, 30336, 0, "Rageclaw Berserker"), +(29437, 0, 1, "Why you hurt Rageclaw? You crazy?", 12, 0, 100, 0, 0, 0, 30337, 0, "Rageclaw Berserker"), +(29437, 0, 2, "Rageclaw and troll friends no more!", 12, 0, 100, 0, 0, 0, 30338, 0, "Rageclaw Berserker"), +(29437, 0, 3, "You kill our pups! We kill you back!", 12, 0, 100, 0, 0, 0, 30339, 0, "Rageclaw Berserker"), +(29437, 0, 4, "You leave den the hard way!", 12, 0, 100, 0, 0, 0, 30340, 0, "Rageclaw Berserker"), +(29437, 0, 5, "You hurted the chief's lion seal! WHY YOU HURT LION SEAL??!", 12, 0, 100, 0, 0, 0, 30341, 0, "Rageclaw Berserker"), +(29437, 0, 6, "Why you smell so bad now? You smelled much less bad before!", 12, 0, 100, 0, 0, 0, 30342, 0, "Rageclaw Berserker"), +(29437, 0, 7, "Trolls is shameful. Trolls is killers!", 12, 0, 100, 0, 0, 0, 30343, 0, "Rageclaw Berserker"), +(29439, 0, 0, "You go now, bad troll!", 12, 0, 100, 0, 0, 0, 30336, 0, "Rageclaw Hunter"), +(29439, 0, 1, "Why you hurt Rageclaw? You crazy?", 12, 0, 100, 0, 0, 0, 30337, 0, "Rageclaw Hunter"), +(29439, 0, 2, "Rageclaw and troll friends no more!", 12, 0, 100, 0, 0, 0, 30338, 0, "Rageclaw Hunter"), +(29439, 0, 3, "You kill our pups! We kill you back!", 12, 0, 100, 0, 0, 0, 30339, 0, "Rageclaw Hunter"), +(29439, 0, 4, "You leave den the hard way!", 12, 0, 100, 0, 0, 0, 30340, 0, "Rageclaw Hunter"), +(29439, 0, 5, "You hurted the chief's lion seal! WHY YOU HURT LION SEAL??!", 12, 0, 100, 0, 0, 0, 30341, 0, "Rageclaw Hunter"), +(29439, 0, 6, "Why you smell so bad now? You smelled much less bad before!", 12, 0, 100, 0, 0, 0, 30342, 0, "Rageclaw Hunter"), +(29439, 0, 7, "Trolls is shameful. Trolls is killers!", 12, 0, 100, 0, 0, 0, 30343, 0, "Rageclaw Hunter"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_24_06_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_24_06_world.sql new file mode 100644 index 00000000000..6d01554c83f --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_24_06_world.sql @@ -0,0 +1,3 @@ +-- +UPDATE `quest_template_addon` SET `RewardMailTemplateID`=0, `RewardMailDelay`=0 WHERE `ID`=8729; +UPDATE `quest_template_addon` SET `RewardMailTemplateID`=123, `RewardMailDelay`=86400 WHERE `ID`=8728; diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_25_00_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_25_00_world.sql new file mode 100644 index 00000000000..c79f9cd9543 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_25_00_world.sql @@ -0,0 +1,20 @@ +-- +UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=15291; +DELETE FROM `smart_scripts` WHERE `entryorguid`=15291 AND `source_type`=0; +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (1529100, 1529101) 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 +(15291, 0, 0, 0, 1, 0, 100, 0, 5000, 20000, 50000, 120000, 53, 0, 15291, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Jainthess Thelryn - Out Of Combat - Start Waypoint"), +(15291, 0, 1, 0, 40, 0, 100, 0, 2, 0, 0, 0, 80, 1529100, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Jainthess Thelryn - On WP 2 Reached - Run Actionlist"), +(15291, 0, 2, 0, 40, 0, 100, 0, 4, 0, 0, 0, 80, 1529101, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Jainthess Thelryn - On WP 4 Reached - Run Actionlist"), +(1529100, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 54, 9000, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Jainthess Thelryn - On Script - Pause Waypoint"), +(1529100, 9, 1, 0, 0, 0, 100, 0, 500, 500, 0, 0, 66, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 1.9839, "Jainthess Thelryn - On Script - Change Orientation"), +(1529100, 9, 2, 0, 0, 0, 100, 0, 4000, 4000, 0, 0, 5, 25, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Jainthess Thelryn - On Script - Emote 'Oneshot Point'"), +(1529101, 9, 0, 0, 0, 0, 100, 0, 500, 500, 0, 0, 5, 16, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Jainthess Thelryn - On Script - Emote 'Oneshot Kneel'"), +(1529101, 9, 1, 0, 0, 0, 100, 0, 2000, 2000, 0, 0, 66, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 4.0143, "Jainthess Thelryn - On Script - Change Orientation"); + +DELETE FROM `waypoints` WHERE `entry`=15291; +INSERT INTO `waypoints` (`entry`, `pointid`, `position_x`, `position_y`, `position_z`, `point_comment`) VALUES +(15291, 1, 10419.11, -6319.905, 35.5736, "Jainthess Thelryn"), +(15291, 2, 10424.43, -6320.706, 35.5736, "Jainthess Thelryn"), +(15291, 3, 10419.11, -6319.905, 35.5736, "Jainthess Thelryn"), +(15291, 4, 10416.7998, -6316.6001, 35.5763, "Jainthess Thelryn"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_25_01_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_25_01_world.sql new file mode 100644 index 00000000000..86a9029e86c --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_25_01_world.sql @@ -0,0 +1,1730 @@ +-- Caverns of Time: Stratholme rework +SET @DAY = 86400; +SET @CGUID = 700300; -- creature GUIDs (4 creature); +DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+00 AND @CGUID+03; + +-- Move additional Chromie spawns to DB +INSERT INTO `creature` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`position_x`,`position_y`,`position_z`,`orientation`,`spawntimesecs`,`spawndist`,`movementtype`) VALUES +(@CGUID+00, 27915, 595, 3, 1, 1813.298, 1283.578, 142.3258, 3.878161, @DAY, 0, 0); + +-- Chromie AI +UPDATE `creature_template` SET `ScriptName`="npc_chromie_start" WHERE `entry`=26527; +UPDATE `creature_template` SET `ScriptName`="npc_chromie_middle" WHERE `entry`=27915; +-- Chromie whispers +DELETE FROM `creature_text` WHERE `creatureid`=27915 AND `groupid`=1; +INSERT INTO `creature_text` (`creatureid`,`groupid`,`id`,`text`,`type`,`probability`,`BroadcastTextId`,`TextRange`,`emote`,`comment`) VALUES +(27915, 1, 0, "Come over here time traveller, we need to talk!", 15, 100, 29167, 0, 70, "Chromie - WHISPER_COME_TALK"), +(27915, 1, 1, "Quick, over here!", 15, 100, 29169, 0, 70, "Chromie - WHISPER_COME_TALK"), +(27915, 1, 2, "We meet again, time traveller!", 15, 100, 29168, 0, 70, "Chromie - WHISPER_COME_TALK"); + +-- Corruptor of Time +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 13 AND `SourceEntry`=60422; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `Comment`) VALUES +(13, 1, 60422, 31, 0, 3, 32281, "Corruption of Time - Implicitly target Guardian of Time"); + +-- Starting inn RP fluff +DELETE FROM `areatrigger_scripts` WHERE `entry`=5291; +INSERT INTO `areatrigger_scripts` (`entry`,`ScriptName`) VALUES (5291,"at_stratholme_inn_stairs_cot"); +UPDATE `creature` SET `movementtype`=0,`spawndist`=0 WHERE `id`=30571; +UPDATE `creature_addon` SET `bytes1`=0 WHERE `guid` IN (SELECT guid FROM `creature` WHERE `id`=30571); +UPDATE `creature_template` SET `ScriptName`="",`AIName`="SmartAI" WHERE `entry`=30571; +UPDATE `creature_template` SET `ScriptName`="npc_hearthsinger_forresten_cot",`AIName`="" WHERE `entry`=30551; +DELETE FROM `smart_scripts` WHERE `entryorguid` = 30571 AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`action_type`,`action_param1`,`action_param2`,`target_type`,`target_param1`,`target_param2`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(30571, 0, 0, 1, 72, 100, 1, 100, 0, 17, 0, 0, 1, 0, 0, 0, 0, 0, 0, "Michael Belfast - On Action 100 - Set Emote State None (No Repeat)"), +(30571, 0, 1, 2, 61, 100, 1, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, "Michael Belfast - On Action 100 - Set Run (false) (No Repeat)"), +(30571, 0, 2, 0, 61, 100, 1, 0, 0, 69, 42, 0, 8, 0, 0, 1554.371, 587.4865, 99.77525, 1.107272, "Michael Belfast - On Action 100 - Move Position (ID 42) (No Repeat)"), +(30571, 0, 3, 0, 34, 100, 1, 8, 42, 45, 1, 1, 11, 30551, 100, 0, 0, 0, 0, "Michael Belfast - On Movement Inform (ID 42) - Set Data 1-1 on Hearthsinger Forresten (within 100yd) (No Repeat)"); +DELETE FROM `creature_text` WHERE `creatureid` IN (30551,30552,30553,30561,30571,31017); +INSERT INTO `creature_text` (`creatureid`,`groupid`,`id`,`text`,`type`,`probability`,`BroadcastTextId`,`emote`,`comment`) VALUES +(30571, 0, 0, "What were you doing in my cellar? There's a food scare going on, and the last thing I need is strangers rummaging around in my goods! Shoo!", 12, 100, 31323, 5, "Michael Belfast - SAY_CELLAR"), +(30571, 0, 1, "Hey! Stop rooting around in my cellar! Clear out!", 12, 100, 31322, 5, "Michael Belfast - SAY_CELLAR"), +(30551, 0, 0, "This whole situation seems a bit paranoid, don't you think?", 12, 100, 31324, 1, "Hearthsinger Forresten - LINE_FORREST_1"), +(30553, 0, 0, "Orders are orders. If the Prince says jump...", 12, 100, 31325, 1, "Footman James - LINE_JAMES_1"), +(30552, 0, 0, "It's a strange order, you can't deny. Suspicious food? Under that definition, you should arrest Belfast!", 12, 100, 31326, 1, "Fras Siabi - LINE_FRAS_1"), +(30571, 1, 0, "I HEARD THAT! No more ale for you! Not a drop!", 12, 100, 31327, 22, "Michael Belfast - LINE_BELFAST_1"), +(31017, 0, 0, "Enough, Michael. Business is hurting enough with this scare as it is. We can use every copper.", 12, 100, 32560, 1, "Mal Corricks - LINE_MAL_1"), +(30561, 0, 0, "The soldiers are doing important work. The safety of the people is more important, Mal, if you're interested in your customers living to spend another day.", 12, 100, 32571, 1, "Gryan Stoutmantle - LINE_GRYAN_1"), +(31017, 1, 0, "%s grudgingly nods.", 16, 100, 32569, 273, "Mal Corricks - LINE_MAL_2"), +(31017, 2, 0, "I can't argue with that.", 12, 100, 32570, 1, "Mal Corricks - LINE_MAL_3"), +(30553, 1, 0, "Don't worry too much. By the time I went off duty, we hadn't found a scrap of befouled grain here.", 12, 100, 32572, 1, "Footman James - LINE_JAMES_2"), +(30551, 1, 0, "Thank the Light for that.", 12, 100, 32573, 1, "Hearthsinger Forresten - LINE_FORREST_2"), +(30552, 1, 0, "%s nods.", 16, 100, 32574, 273, "Fras Siabi - LINE_FRAS_2"); + +-- Fix a random typo in AI name for Grain Crate Helper +UPDATE `creature_template` SET `ScriptName`="npc_crate_helper_cot" WHERE `entry`=27827; + +-- Arcane Disruption: Require active grain crate within 8yd, and implicitly target the helper for that crate +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` IN (13,17) AND `SourceEntry`=49590; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ErrorType`, `Comment`) VALUES +(13, 1, 49590, 31, 0, 3, 27827, 0, "Arcane Disruption - Implicitly target Grain Crate Helper"), +(17, 0, 49590, 30, 0, 190094, 8, 11, "Arcane Disruption - Must be within 8yd of Suspicious Grain Crate"), +(17, 0, 49590, 29, 0, 27827, 8, 11, "Arcane Disruption - Must be within 8yd of Grain Crate Helper"); + +-- Arcane Disruption should ignore Line of Sight because the helper NPC is spawned inside the crates +DELETE FROM `disables` WHERE `sourceType`=0 AND `entry`=49590; +INSERT INTO `disables` (`sourceType`, `entry`, `flags`) VALUES +(0, 49590, 64); + +-- Make Suspicious Grain Crate and Grain Crate Helper never respawn +UPDATE `creature` SET `spawntimesecs`=@DAY WHERE `id`=27827; +UPDATE `gameobject` SET `spawntimesecs`=@DAY WHERE `id`=190094; + +-- Grain Crate reaction fluff +UPDATE `creature` SET `movementtype`=0,`spawndist`=0 WHERE `id` IN (27884,27885,27891,27892,27907); +-- Event #1: +UPDATE `creature_template` SET `AIName`="",`ScriptName`="npc_jena_anderson" WHERE `entry`=27885; +UPDATE `creature_template` SET `AIName`="",`ScriptName`="npc_martha_goslin" WHERE `entry`=27884; +UPDATE `creature` SET `position_x`=1635.827,`position_y`=723.0861,`position_z`=113.6452,`orientation`=3.089233 WHERE `id`=27884; +DELETE FROM `creature_text` WHERE `creatureid` IN (27884,27885); +INSERT INTO `creature_text` (`creatureid`,`groupid`,`text`,`type`,`probability`,`emote`,`BroadcastTextId`,`comment`) VALUES +(27884,0,"Oh hello, Jena. Of course you can borrow some grain. Help yourself.",12,100,1,27232,"LINE_MARTHA1"), +(27884,1,"Oh, my.",12,100,1,27235,"LINE_MARTHA2"), +(27885,0,"Let's see, we had chicken last night.",12,100,0,27219,"LINE_JENA1"), +(27885,1,"I've got plenty of cured bacon, but he had some for breakfast.",12,100,0,27220,"LINE_JENA2"), +(27885,2,"I need to make something healthy for him, he's still not recovered from that illness from last week.",12,100,0,27221,"LINE_JENA3"), +(27885,3,"Strawberries! Oh wait, they're not in season.",12,100,0,27222,"LINE_JENA4"), +(27885,4,"Ah, I'll make him some fresh bread! I need to get some flour from Martha!",12,100,0,27223,"LINE_JENA5"), +(27885,5,"Martha, I'm out of flour for bread. You wouldn't happen to have any grain from that recent shipment, would you?",12,100,6,27224,"LINE_JENA6"), +(27885,6,"Thanks, Martha! I owe you one.",12,100,1,27229,"LINE_JENA7"), +(27885,7,"Oh, dear.",12,100,0,27230,"LINE_JENA8"), +(27885,8,"Martha, something's wrong with this grain! Some of the Prince's soldiers were looking for this. I'm going to go look for one.",12,100,5,27231,"LINE_JENA9"); +-- Event #2: +UPDATE `creature` SET `position_x`=1670.256, `position_y`=872.8734, `position_z`=120.0351, `orientation`=0.418879 WHERE `id`=27907; +UPDATE `creature_template` SET `AIName`="",`ScriptName`="npc_bartleby_battson" WHERE `entry`=27907; +DELETE FROM `creature_text` WHERE `creatureid`=27907; +INSERT INTO `creature_text` (`creatureid`,`groupid`,`id`,`text`,`type`,`probability`,`emote`,`BroadcastTextId`,`comment`) VALUES +(27907,0,0,"I'm going to lose my on time bonus because of this!",12,10,0,27255,"LINE_BARTLEBY_IDLE 1"), +(27907,0,1,"I wasn't even supposed to be here today!",12,10,0,27256,"LINE_BARTLEBY_IDLE 2"), +(27907,1,0,"Well, guess I should load everything back into the cart.",12,100,0,27257,"LINE_BARTLEBY1"), +(27907,2,0,"Oh, come on! My cart broke, my horse lost a shoe, and now the cargo goes bad!",12,100,5,27258,"LINE_BARTLEBY2"), +(27907,3,0,"I guess I'll go find the authorities. If I'm lucky they'll tell me it's the plague and that we're all going to die.",12,100,0,27259,"LINE_BARTLEBY3"); +-- Event #3: +UPDATE `creature_template` SET `AIName`="",`ScriptName`="npc_malcolm_moore" WHERE `entry`=27891; +UPDATE `creature_template` SET `AIName`="",`ScriptName`="npc_stratholme_rp_dummy" WHERE `entry`=27892; +DELETE FROM `creature_text` WHERE `creatureid` IN (27891,27892); +INSERT INTO `creature_text` (`creatureid`,`groupid`,`text`,`type`,`probability`,`emote`,`BroadcastTextId`,`comment`) VALUES +(27891,0,"Looks like a storm's coming in, Scruffy...",12,100,0,27236,"LINE_MALCOLM1"), +(27892,0,"%s begins to growl...",16,100,0,27237,"LINE_SCRUFFY1"), +(27891,1,"What's wrong, pal?",12,100,1,27238,"LINE_MALCOLM2"), +(27891,2,"What did you find, boy?",12,100,16,27240,"LINE_MALCOLM3"), +(27891,3,"This is no good, Scruffy. Stay here and guard the house, I need to go find a soldier.",12,100,0,27241,"LINE_MALCOLM4"); +-- Event #4: +UPDATE `creature` SET `position_x`=1563.337, `position_y`=671.6413, `position_z`=102.1412, `orientation`=4.2586040 WHERE `id`=27876; +UPDATE `creature` SET `position_x`=1561.571, `position_y`=670.3199, `position_z`=102.1444, `orientation`=0.5759587 WHERE `id`=27877; +UPDATE `creature_template` SET `AIName`="", `ScriptName`="npc_sergeant_morigan" WHERE `entry`=27877; +DELETE FROM `creature_text` WHERE `creatureid` IN (27876,27877); +INSERT INTO `creature_text` (`creatureid`,`groupid`,`id`,`text`,`type`,`probability`,`emote`,`BroadcastTextId`,`comment`) VALUES +(27876,0,0,"No, Sergeant.",12,100,274,27198,"LINE_PERELLI_NO #1"), +(27876,0,1,"No, sir.",12,100,274,27199,"LINE_PERELLI_NO #2"), +(27876,0,2,"Nope.",12,100,274,27200,"LINE_PERELLI_NO #3"), +(27876,1,0,"Yes, sir.",12,100,1,27201,"LINE_PERELLI_YES #1"), +(27876,1,1,"Yes, Sergeant Morigan.",12,100,1,27202,"LINE_PERELLI_YES #2"), +(27876,1,2,"Absolutely.",12,100,1,27203,"LINE_PERELLI_YES #3"), +(27876,2,0,"What are you talking about, Sergeant!",12,100,5,27208,"LINE_PERELLI1"), +(27876,3,0,"You have to believe me, I'm innocent!",12,100,20,27213,"LINE_PERELLI2"), +(27877,0,0,"Mr. Perelli, have you seen any suspicious activity by men wearing dark robes in the last few weeks?",12,100,6,27190,"LINE_SERGEANT_ASK_NO #1"), +(27877,0,1,"Mr. Perelli, have you seen any signs of the undead? Any information you can provide would be appreciated by Prince Arthas.",12,100,1,27191,"LINE_SERGEANT_ASK_NO #2"), +(27877,0,2,"Mr. Perelli, I know you travel around quite a bit hawking your goods. Surely you've heard rumors or information about the Scourge?",12,100,1,27192,"LINE_SERGEANT_ASK_NO #3"), +(27877,0,3,"Do you plan on leaving the area soon if we have further questions?",12,100,1,27193,"LINE_SERGEANT_ASK_NO #4"), +(27877,1,0,"Mr. Perelli, have these goods been under your supervision at all times?",12,100,6,27194,"LINE_SERGEANT_ASK_YES #1"), +(27877,1,1,"You wouldn't happen to have any canned turtle soup from Hillsbrad, would you?",12,100,1,27195,"LINE_SERGEANT_ASK_YES #2"), +(27877,1,2,"Mr. Perelli, if you happen across any signs of Scourge activity or shady dealings in your travels, let the nearest Lordaeron soldier know.",12,100,1,27197,"LINE_SERGEANT_ASK_YES #3"), +(27877,2,0,"You don't mind me checking out your merchandise for signs of tampering, do you?",12,100,1,27205,"LINE_SERGEANT_START"), +(27877,3,0,"Wait, what is this? You've been holding out on me, Perelli!",12,100,0,27206,"LINE_SERGEANT1"), +(27877,4,0,"I'm confiscating this suspicious grain, Perelli. We were looking for signs of tampered food, and it would be in your best interest to stay put while Prince Arthas checks this out.",12,100,1,27210,"LINE_SERGEANT2"), +(27877,5,0,"We'll see about that, Perelli. We'll see about that.",12,100,25,27216,"LINE_SERGEANT3"); +-- Event #5: +UPDATE `creature` SET `position_x`=1588.942, `position_y`=597.9799, `position_z`=99.37262, `orientation`=2.80998 WHERE `id`=27903; +UPDATE `creature_template` SET `AIName`="", `ScriptName`="npc_roger_owens" WHERE `entry`=27903; +DELETE FROM `creature_text` WHERE `creatureid`=27903; +INSERT INTO `creature_text` (`creatureid`,`groupid`,`text`,`type`,`probability`,`emote`,`BroadcastTextId`,`comment`) VALUES +(27903,0,"Ok, enough work for now. Time for refreshments and a little conversation in the inn.",12,100,1,27247,"LINE_ROGER1"), +(27903,1,"Wait, what's that smell?",12,100,1,27248,"LINE_ROGER2"), +(27903,2,"Can't be me, I took a bath 3 days ago!",12,100,5,27249,"LINE_ROGER3"), +(27903,3,"Oh, close call. It's just the grain here.",12,100,5,27250,"LINE_ROGER4"), +(27903,4,"Wait a second. Grain isn't supposed to smell like THAT! I better go find a guard.",12,100,0,27252,"LINE_ROGER5"); + +-- Arthas AI +UPDATE `creature_template` SET `ScriptName`="npc_arthas_stratholme",`AIName`="" WHERE `entry`=26499; +UPDATE `creature_template` SET `unit_flags`=0x8000, `unit_flags2`=0x800 WHERE `entry` IN (26499,31210); +DELETE FROM `creature` WHERE `id`=26499; + +-- Missing Arthas lines +DELETE FROM `creature_text` WHERE `creatureid`=26499 AND `groupid`>38; +INSERT INTO `creature_text` (`creatureid`,`groupid`,`id`,`text`,`type`,`probability`,`BroadcastTextId`,`TextRange`,`comment`) VALUES +(26499,39,0,"I can't afford to spare you.",12,100,31355,0,"Arthas SAY_AGGRO_ZOMBIE"), +(26499,40,0,"All officers should check in with me when their squads are ready. We'll enter Stratholme on my order.",12,100,27517,3,"Arthas RP1_LINE_ARTHAS11"); + +-- Dummy spell scripts +DELETE FROM `spell_script_names` WHERE `spell_id`=50773; +INSERT INTO `spell_script_names` (`spell_id`,`scriptname`) VALUES (50773,"spell_stratholme_crusader_strike"); + +-- Arthas/Uther RP data +UPDATE `creature_template` SET `ScriptName`="npc_stratholme_rp_dummy",`AIName`="" WHERE `entry` IN (26528,26497); +UPDATE `creature_text` SET `TextRange`=3 WHERE `creatureid` IN (26499,26528,26497,26529,26530,26532,26533,32273); +UPDATE `creature_text` SET `emote`=396 WHERE + (`creatureid` = 26499 AND `groupid` IN (0,3,5)) OR + (`creatureid` = 26528 AND `groupid`=3) OR + (`creatureid` = 26497 AND `groupid` IN (0,1)); +UPDATE `creature_text` SET `emote`=1 WHERE `creatureid`=26499 AND `groupid`=7; +UPDATE `creature_text` SET `emote`=5 WHERE + (`creatureid` = 26499 AND `groupid` IN (2,4)) OR + (`creatureid` = 26528 AND `groupid` IN (1,4)); +UPDATE `creature_text` SET `emote`=6 WHERE `creatureid`=26528 AND `groupid`=2; +UPDATE `creature_text` SET `emote`=397 WHERE + (`creatureid` = 26528 AND `groupid` IN (0,5)); + +-- Arthas/Mal'ganis RP data +DELETE FROM `creature_text` WHERE `creatureid` IN (28167,28169); +INSERT INTO `creature_text` (`creatureid`,`groupid`,`text`,`type`,`probability`,`BroadcastTextId`,`TextRange`,`emote`,`comment`) VALUES +(28167, 0, "Prince Arthas, may the light be praised! Many people in the town have begun to fall seriously ill, can you help us?", 12, 100, 27547, 0, 1, "RP2_LINE_CITIZEN1"), +(28167, 1, "What? This can't be!", 12, 100, 27549, 0, 274, "RP2_LINE_CITIZEN2"), +(28169, 0, "Oh, no...", 12, 100, 27552, 0, 0, "RP2_LINE_RESIDENT1"); +UPDATE `creature_text` SET `emote`=1 WHERE + (`creatureid` = 26499 AND `groupid` IN (12,14)) OR + (`creatureid` = 26533 AND `groupid`=0); +UPDATE `creature_text` SET `emote`=397 WHERE + (`creatureid` = 26499 AND `groupid`=13); + +-- Town Hall/Gauntlet RP data +UPDATE `creature_text` SET `emote`=1 WHERE + (`creatureid`=26499 AND `groupid` IN (16,19,22,38)) OR + (`creatureid`=28340 AND `groupid`=1); +UPDATE `creature_text` SET `emote`=5 WHERE + (`creatureid`=26499 AND `groupid`=36); +UPDATE `creature_text` SET `emote`=396 WHERE + (`creatureid`=26499 AND `groupid` IN (21,24,25,26,27,31,32,33,34)); +UPDATE `creature_text` SET `emote`=432 WHERE + (`creatureid`=26499 AND `groupid` IN (29)); + +-- Clean up some incorrect spawns in wave area +DELETE FROM `creature` WHERE `guid` BETWEEN 143949 AND 143952; + +-- spawn group data +DELETE FROM `spawn_group` WHERE `groupId` BETWEEN 52 and 56; +-- middle chromie +INSERT INTO `spawn_group` (`groupId`,`spawnType`,`spawnId`) VALUES (52, 0, 700300); +-- crate helpers +INSERT INTO `spawn_group` SELECT 53 as `groupId`, 0 as `spawnType`, `guid` as `spawnId` FROM `creature` WHERE `id`=27827; +-- Blanket apply a spawn group to all "live stratholme" mobs that prevents them respawning after the purge begins +UPDATE `creature_template` SET `ScriptName`="",`AIName`="", `flags_extra`=(`flags_extra`|2) WHERE `entry` IN (28167,31126,31019,28169,31127,31023,31020,31018,31028); +UPDATE `creature_template` SET `ScriptName`="",`AIName`="SmartAI" WHERE `entry` IN (31057,30570,31027,31021,30994); +INSERT INTO `spawn_group` SELECT 56 as `groupId`, 0 as `spawnType`, `guid` as `spawnId` FROM `creature` WHERE `id` IN (28167,28169,30570,30994,31018,31019,31020,31021,31023,31027,31028,31057,31126,31127); +-- Do the same for undead stratholme mobs +UPDATE `creature_template` SET `ScriptName`="",`AIName`="SmartAI" WHERE `entry` IN (28249,27729,28200,27734,27731,28199,27736,28201); +INSERT INTO `spawn_group` SELECT 55 as `groupId`, 0 as `spawnType`, `guid` as `spawnId` FROM `creature` WHERE `id` IN (27729,27731,27734,27736,27737,28199,28200,28201,28249); +-- Gauntlet trash gets its own spawn group... +UPDATE `spawn_group` sg LEFT JOIN `creature` c on sg.`spawnId`=c.`guid` SET sg.`groupId`=54 WHERE (sg.`groupId`=55) AND (c.`position_x` BETWEEN 2028.0 AND 2372.0) AND (c.`position_y` BETWEEN 1115.0 AND 1355.0); + +-- City fluff +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (30570,31027,31021) AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`event_type`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`action_type`,`target_type`,`comment`) VALUES +(30570,0,0,10,100,7,1,10,1,1,"Emery Neill - Within 1-10 Range Out of Combat LoS - Say Line 0"), +(31027,0,0,10,100,7,1,10,1,1,"Leeka Turner - Within 1-10 Range Out of Combat LoS - Say Line 0"), +(31021,0,0,10,100,7,1,10,1,1,"Sophie Aaren - Within 1-10 Range Out of Combat LoS - Say Line 0"); + +DELETE FROM `creature_text` WHERE `creatureid` IN (30570,31027,31021); +INSERT INTO `creature_text` (`creatureid`,`groupid`,`id`,`text`,`type`,`probability`,`BroadcastTextId`,`emote`,`comment`) VALUES +(30570,0,0,"The Stone Crow's closed today, sorry. There are too many health concerns, and I'm not about to have Ed under fire for supposedly making people sick.",12,100,31724,1,"Emery Neill TALK_FLUFF 1"), +(30570,0,1,"I hate to disappoint people, but the Stone Crow's closed. If the kids from the orphanage were evacuated, I don't see why we should be open, either.",12,100,31729,1,"Emery Neill TALK_FLUFF 2"), +(31027,0,0,"Look, I'll sell you shields today, but no maces. The last thing I want is for some innocent to get brained by one of my weapons.",12,100,31721,1,"Leeka Turner TALK_FLUFF 1"), +(31027,0,1,"I don't know how much longer I'll be open today with all the commotion outside. If you need something repaired, I'll take a quick look.",12,100,31722,1,"Leeka Turner TALK_FLUFF 2"), +(31027,0,2,"I hope you're not coming in here fixing for a fight. There are too many angry people on the streets today.",12,100,31720,1,"Leeka Turner TALK_FLUFF 3"), +(31021,0,0,"What's the commotion outside?",12,100,31730,1,"Sophie Aaren TALK_FLUFF 1"), +(31021,0,1,"Is something going on? I hear angry voices.",12,100,31731,1,"Sophie Aaren TALK_FLUFF 2"), +(31021,0,2,"Everything's been so strange lately...",12,100,31732,1,"Sophie Aaren TALK_FLUFF 3"); + +-- SmartAI fixes for wave creatures +UPDATE `smart_scripts` SET `event_param3`=3100, `event_param4`=3400 WHERE `entryorguid`=28200 AND `source_type`=0 AND `id` IN (0,1); + +-- Lordaeron Crier yells +DELETE FROM `creature_text` WHERE `creatureid` = 27913; +INSERT INTO `creature_text` (`creatureid`,`groupid`,`text`,`type`,`probability`,`BroadcastTextId`,`TextRange`,`comment`) VALUES +(27913, 0, "All soldiers of Lordaeron should immediately report to the entrance of Stratholme, and await further orders from Prince Arthas.", 14, 100, 27263, 3, "Lordaeron Crier CALL_TO_GATES"), +(27913, 1, "Scourge forces have been spotted near the King's Square fountain!", 14, 100, 27642, 3, "Lordaeron Crier KINGS_SQUARE"), +(27913, 2, "Scourge forces have been spotted near the Market Row Gate!", 14, 100, 27643, 3, "Lordaeron Crier MARKET_ROW"), +(27913, 3, "Scourge forces have been spotted near the Festival Lane Gate!", 14, 100, 27644, 3, "Lordaeron Crier FESTIVAL_LANE"), +(27913, 4, "Scourge forces have been spotted near the Elder's Square Gate!", 14, 100, 27645, 3, "Lordaeron Crier ELDERS_SQUARE"), +(27913, 5, "Scourge forces have been spotted near the Town Hall!", 14, 100, 27646, 3, "Lordaeron Crier TOWN_HALL"); + +-- Get rid of the colossal mess that is Risen Zombie SmartAI +UPDATE `creature_template` SET `AIName`="" WHERE `entry` = 27737; +DELETE FROM `smart_scripts` WHERE -`entryorguid` IN (SELECT `guid` FROM `creature` WHERE `id`=27737 AND `map`=595); +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=22 AND -`SourceEntry` IN (SELECT `guid` FROM `creature` WHERE `id`=27737 AND `map`=595); + +-- Town Hall infinite spawns +INSERT INTO `creature` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`position_x`,`position_y`,`position_z`,`orientation`,`spawntimesecs`,`spawndist`,`movementtype`) VALUES +(@CGUID+01, 28340, 595, 3, 1, 2398.715, 1207.334, 134.1223, 5.270895, @DAY, 0, 0), +(@CGUID+02, 28340, 595, 3, 1, 2401.265, 1202.789, 134.1039, 1.466077, @DAY, 0, 0), +(@CGUID+03, 28341, 595, 3, 1, 2402.654, 1205.786, 134.1223, 2.897247, @DAY, 0, 0); +UPDATE `creature_template` SET `unit_flags`=(`unit_flags`|0x100|0x200) WHERE `entry` IN (27742,27743,27744,31202,31203,31206,26532,31215,26533); + +-- Town Hall RP event +DELETE FROM `creature_text` WHERE `creatureid`=28340; +INSERT INTO `creature_text` (`creatureid`,`groupid`,`text`,`type`,`probability`,`BroadcastTextId`,`TextRange`,`comment`) VALUES +(28340, 0, "Ah, you've finally arrived Prince Arthas. You're here just in the nick of time.", 12, 100, 27811, 3, "Stratholme Citizen (Disguised Infinite) RP3_LINE_CITIZEN1"), +(28340, 1, "There's no need for you to understand, Arthas. All you need to do is die.", 12, 100, 27815, 3, "Stratholme Citizen (Disguised Infinite) RP3_LINE_CITIZEN2"); + +-- Difficulty data for trash mobs +DELETE FROM `spelldifficulty_dbc` WHERE `id` IN (52660,52657,52635,52634); +INSERT INTO `spelldifficulty_dbc` (`id`,`spellid0`,`spellid1`) VALUES +(52660,52660,58817), +(52657,52657,58816), +(52635,52635,58820), +(52634,52634,58813); + +-- SAI fixes for Town Hall trash +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (28340,28341) AND `source_type`=0 AND `event_flags`=4; +UPDATE `smart_scripts` SET `id`=CEIL(`id`/2)+1 WHERE `entryorguid`=28340 AND `source_type`=0 AND `event_flags`=2; +UPDATE `smart_scripts` SET `id`=CEIL(`id`/2) WHERE `entryorguid`=28341 AND `source_type`=0 AND `event_flags`=2; +UPDATE `smart_scripts` SET `event_flags`=`event_flags`|4 WHERE `entryorguid` IN (28340,28341) AND `source_type`=0; +UPDATE `smart_scripts` SET `event_param3`=500, `event_param4`=750 WHERE `entryorguid`=28340 AND `source_type`=0 AND `id`=3; +DELETE FROM `conditions` WHERE `sourcetypeorreferenceid`=22 AND `sourceentry`=28340 AND `sourceid`=0; +INSERT INTO `conditions` (`sourcetypeorreferenceid`,`sourcegroup`,`sourceentry`,`sourceid`,`conditiontypeorreference`,`conditiontarget`,`conditionvalue1`,`conditionvalue2`,`comment`) VALUES +(22,4,28340,0,31,1,3,27743,"Stratholme Citizen - Only execute SAI if entry is 27743 (Infinite Agent)"); + +-- Chromie #3 data +DELETE FROM `creature_template_addon` WHERE `entry`=30997; +INSERT INTO `creature_template_addon` (`entry`,`bytes1`) VALUES +(30997,50331648); +DELETE FROM `creature_template_movement` WHERE `creatureid`=30997; +INSERT INTO `creature_template_movement` (`creatureid`,`ground`,`flight`) VALUES (30997,1,2); +DELETE FROM `creature_text` WHERE `creatureid`=30997; +INSERT INTO `creature_text` (`creatureid`,`groupid`,`text`,`type`,`probability`,`BroadcastTextId`,`comment`) VALUES +(30997,0,"Why, hello again!",12,100,32022,"Chromie #3 RP5_LINE_CHROMIE0"); + +-- Meathook +DELETE FROM `spelldifficulty_dbc` WHERE `id` IN (52696,52666); +INSERT INTO `spelldifficulty_dbc` (`id`,`spellid0`,`spellid1`) VALUES +(52696,52696,58823), +(52666,52666,58824); + +-- Salramm the Fleshcrafter +DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_salramm_steal_flesh'; +INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES +(52708,'spell_salramm_steal_flesh'); +DELETE FROM `spelldifficulty_dbc` WHERE `id` IN (52480,57725); +INSERT INTO `spelldifficulty_dbc` (`id`,`spellid0`,`spellid1`) VALUES +(52480,52480,58825), +(57725,57725,58827); + +-- Chrono-Lord Epoch +DELETE FROM `spelldifficulty_dbc` WHERE `id` IN (52737,52771); +INSERT INTO `spelldifficulty_dbc` (`id`,`spellid0`,`spellid1`) VALUES +(52737,52737,58829), +(52771,52771,58830); + +-- Mal'ganis +DELETE FROM `spelldifficulty_dbc` WHERE `id` IN (52720,52722,52721); +INSERT INTO `spelldifficulty_dbc` (`id`,`spellid0`,`spellid1`) VALUES +(52720,52720,58852), +(52722,52722,58850), +(52721,52721,58849); + +-- Spline chain data +DELETE FROM `script_spline_chain_meta` WHERE `entry` IN (26499,26497,26528,28167,26532,27742,27907,27891,27892,27884,27885,27877,27903); +INSERT INTO `script_spline_chain_meta` (`entry`,`chainId`,`splineId`,`expectedDuration`,`msUntilNext`) VALUES +(26499, 1, 0, 3341, 2391), +(26499, 1, 1, 3167, 2453), +(26499, 1, 2, 2548, 1218), +(26499, 1, 3, 2864, 1204), +(26499, 1, 4, 2870, 0), +(26497, 1, 0, 4710, 3641), +(26497, 1, 1, 3684, 2422), +(26497, 1, 2, 3639, 0), +(26528, 1, 0, 5743, 4641), +(26528, 1, 1, 5579, 4844), +(26528, 1, 2, 4219, 3578), +(26528, 1, 3, 1549, 0), +(26499, 2, 0, 4113, 2438), +(26499, 2, 1, 4586, 3641), +(26499, 2, 2, 3298, 0), +(26528, 2, 0, 3930, 0), +(26497, 2, 0, 2598, 0), +(26528, 3, 0, 11271, 9703), +(26528, 3, 1, 6575, 4860), +(26528, 3, 2, 9893, 8469), +(26528, 3, 3, 8798, 7171), +(26528, 3, 4, 9000, 0), +(26497, 3, 0, 2911, 0), +(26497, 4, 0, 12325, 11047), +(26497, 4, 1, 8166, 7296), +(26497, 4, 2, 8154, 7266), +(26497, 4, 3, 6745, 6063), +(26497, 4, 4, 9386, 0), +(26499, 3, 0, 6366, 4813), +(26499, 3, 1, 4957, 3671), +(26499, 3, 2, 3972, 2344), +(26499, 3, 3, 4644, 0), +(26499, 4, 0, 2855, 1156), +(26499, 4, 1, 3214, 2578), +(26499, 4, 2, 2427, 1203), +(26499, 4, 3, 2663, 1219), +(26499, 4, 4, 3016, 2437), +(26499, 4, 5, 1825, 1204), +(26499, 4, 6, 3126, 2406), +(26499, 4, 7, 2751, 1234), +(26499, 4, 8, 2849, 1219), +(26499, 4, 9, 4704, 3578), +(26499, 4, 10, 2073, 1266), +(26499, 4, 11, 1860, 1218), +(26499, 4, 12, 1928, 0), +(26499, 5, 0, 4032, 2266), +(26499, 5, 1, 4170, 2594), +(26499, 5, 2, 4925, 3453), +(26499, 5, 3, 5560, 0), +(26499, 6, 0, 3285, 0), +(26499, 7, 0, 2247, 0), +(28167, 1, 0, 2109, 0), +(26499, 91, 0, 1862, 812), +(26499, 91, 1, 1990, 1219), +(26499, 91, 2, 1831, 0), +(26499, 92, 0, 2007, 0), +(26499, 95, 0, 2801, 1203), +(26499, 95, 1, 3454, 2406), +(26499, 95, 2, 2278, 1203), +(26499, 95, 3, 3222, 2453), +(26499, 95, 4, 2819, 0), +(26499, 96, 0, 1770, 0), +(26499, 97, 0, 2572, 1203), +(26499, 97, 1, 2696, 1203), +(26499, 97, 2, 2289, 1219), +(26499, 97, 3, 2102, 1219), +(26499, 97, 4, 2940, 1219), +(26499, 97, 5, 3202, 0), +(26499, 98, 0, 1838, 1219), +(26499, 98, 1, 1843, 1015), +(26499, 98, 2, 2029, 1391), +(26499, 98, 3, 1645, 0), +(26532, 1, 0, 2677, 0), +(27742, 1, 0, 2871, 0), +(27742, 2, 0, 2662, 0), +(27742, 3, 0, 2454, 0), +(27742, 4, 0, 2259, 0), +(27742, 5, 0, 1884, 0), +(27742, 6, 0, 3268, 0), +(27742, 7, 0, 2100, 0), +(27742, 8, 0, 3187, 0), +(27742, 9, 0, 2649, 0), +(27742, 10, 0, 888, 0), +(27742, 11, 0, 871, 0), +(27742, 12, 0, 844, 0), +(26499, 101, 0, 3239, 2031), +(26499, 101, 1, 2072, 1406), +(26499, 101, 2, 2380, 1219), +(26499, 101, 3, 1975, 0), +(26499, 128, 0, 1934, 1157), +(26499, 128, 1, 1843, 1078), +(26499, 128, 2, 2542, 1422), +(26499, 128, 3, 2651, 1203), +(26499, 128, 4, 4784, 3547), +(26499, 128, 5, 2204, 1281), +(26499, 128, 6, 2250, 1250), +(26499, 128, 7, 3174, 2297), +(26499, 128, 8, 1604, 0), +(26499, 1024, 0, 3268, 2422), +(26499, 1024, 1, 3636, 2422), +(26499, 1024, 2, 4245, 3640), +(26499, 1024, 3, 3058, 2469), +(26499, 1024, 4, 3931, 2390), +(26499, 1024, 5, 5062, 3656), +(26499, 1024, 6, 4970, 3844), +(26499, 1024, 7, 3764, 2375), +(26499, 1024, 8, 4819, 0), +(26499, 1025, 0, 4244, 3500), +(26499, 1025, 1, 4211, 2422), +(26499, 1025, 2, 5342, 4031), +(26499, 1025, 3, 5534, 4797), +(26499, 1025, 4, 4503, 2421), +(26499, 1025, 5, 5721, 4766), +(26499, 1025, 6, 4335, 0), +(26499, 121, 0, 3065, 2282), +(26499, 121, 1, 1871, 1203), +(26499, 121, 2, 2231, 1219), +(26499, 121, 3, 4427, 3828), +(26499, 121, 4, 3740, 2250), +(26499, 121, 5, 2766, 0), +(26499, 124, 0, 3499, 0), +(26499, 125, 0, 7907, 7266), +(26499, 125, 1, 8079, 7297), +(26499, 125, 2, 8198, 0), +(26499, 127, 0, 7779, 6265), +(26499, 127, 1, 10397, 9719), +(26499, 127, 2, 7018, 0), +(27907, 1, 0, 1260, 0), +(27907, 2, 0, 2395, 1125), +(27907, 2, 1, 3378, 2515), +(27907, 2, 2, 4259, 3516), +(27907, 2, 3, 3997, 2531), +(27907, 2, 4, 6453, 4844), +(27907, 2, 5, 8822, 7281), +(27907, 2, 6, 5655, 4844), +(27907, 2, 7, 6149, 4859), +(27907, 2, 8, 10645, 9688), +(27907, 2, 9, 4624, 3640), +(27907, 2, 10, 7230, 6079), +(27907, 2, 11, 7563, 6062), +(27907, 2, 12, 6819, 6047), +(27907, 2, 13, 10112, 8469), +(27907, 2, 14, 7902, 7281), +(27907, 2, 15, 4819, 3625), +(27907, 2, 16, 8246, 7172), +(27907, 2, 17, 6200, 4750), +(27907, 2, 18, 2828, 1312), +(27907, 2, 19, 4017, 2516), +(27907, 2, 20, 5094, 3500), +(27907, 2, 21, 5351, 0), +(27891, 1, 0, 3239, 2625), +(27891, 1, 1, 2755, 0), +(27891, 2, 0, 4320, 3235), +(27891, 2, 1, 3531, 2422), +(27891, 2, 2, 2835, 0), +(27891, 3, 0, 1964, 1218), +(27891, 3, 1, 1879, 1203), +(27891, 3, 2, 1555, 0), +(27891, 4, 0, 3004, 1250), +(27891, 4, 1, 4201, 2438), +(27891, 4, 2, 4956, 3640), +(27891, 4, 3, 4015, 2422), +(27891, 4, 4, 5920, 4844), +(27891, 4, 5, 5607, 4875), +(27891, 4, 6, 5841, 4687), +(27891, 4, 7, 7269, 6250), +(27891, 4, 8, 6402, 4797), +(27891, 4, 9, 8083, 7297), +(27891, 4, 10, 5750, 4750), +(27891, 4, 11, 3990, 2531), +(27891, 4, 12, 5397, 3500), +(27891, 4, 13, 5269, 3750), +(27891, 4, 14, 6169, 4860), +(27891, 4, 15, 5497, 4828), +(27891, 4, 16, 5084, 3625), +(27891, 4, 17, 5681, 4844), +(27891, 4, 18, 6803, 6062), +(27891, 4, 19, 5758, 4844), +(27891, 4, 20, 4319, 3625), +(27891, 4, 21, 4710, 3641), +(27891, 4, 22, 7181, 6062), +(27891, 4, 23, 8723, 7125), +(27891, 4, 24, 6300, 5000), +(27891, 4, 25, 6074, 4828), +(27891, 4, 26, 6394, 4844), +(27891, 4, 27, 4809, 3641), +(27891, 4, 28, 6276, 4750), +(27891, 4, 29, 6886, 6031), +(27891, 4, 30, 6358, 4969), +(27891, 4, 31, 6506, 0), +(27892, 1, 0, 3242, 2219), +(27892, 1, 1, 2553, 1234), +(27892, 1, 2, 3071, 2406), +(27892, 1, 3, 2449, 1188), +(27892, 1, 4, 2974, 1234), +(27892, 1, 5, 3961, 2422), +(27892, 1, 6, 2884, 1203), +(27892, 1, 7, 3427, 0), +(27892, 2, 0, 2022, 0), +(27884, 1, 0, 2596, 0), +(27884, 2, 0, 2381, 0), +(27885, 70, 0, 5363, 3640), +(27885, 70, 1, 4216, 3500), +(27885, 70, 2, 5501, 4969), +(27885, 70, 3, 2752, 1062), +(27885, 70, 4, 3472, 0), +(27885, 71, 0, 3757, 0), +(27885, 72, 0, 3004, 1218), +(27885, 72, 1, 3927, 2282), +(27885, 72, 2, 3491, 2562), +(27885, 72, 3, 3020, 2422), +(27885, 72, 4, 2334, 1063), +(27885, 72, 5, 3425, 2562), +(27885, 72, 6, 3055, 2422), +(27885, 72, 7, 2369, 1031), +(27885, 72, 8, 1804, 1375), +(27885, 72, 9, 1215, 0), +(27885, 1, 0, 2514, 0), +(27885, 2, 0, 2443, 0), +(27885, 3, 0, 2443, 0), +(27877, 1, 0, 1877, 1359), +(27877, 1, 1, 2104, 0), +(27877, 2, 0, 4870, 3641), +(27877, 2, 1, 5372, 3625), +(27877, 2, 2, 4919, 3453), +(27877, 2, 3, 6343, 5016), +(27877, 2, 4, 7111, 6031), +(27877, 2, 5, 7063, 6016), +(27877, 2, 6, 6610, 0), +(27903, 1, 0, 4337, 3640), +(27903, 1, 1, 3730, 2407), +(27903, 1, 2, 3116, 2437), +(27903, 1, 3, 3533, 0), +(27903, 2, 0, 1975, 0), +(27903, 3, 0, 4685, 3625), +(27903, 3, 1, 4437, 3625), +(27903, 3, 2, 5367, 3672), +(27903, 3, 3, 5862, 0); + +DELETE FROM `script_spline_chain_waypoints` WHERE `entry` IN (26499,26497,26528,28167,26532,27742,27907,27891,27892,27884,27885,27877,27903); +INSERT INTO `script_spline_chain_waypoints` (`entry`,`chainId`,`splineId`,`wpId`,`x`,`y`,`z`) VALUES +(26499, 1, 0, 0, 1983.857, 1287.043, 145.5596), +(26499, 1, 0, 1, 1957.138, 1287.436, 145.6538), +(26499, 1, 1, 0, 1964.463, 1287.328, 145.6280), +(26499, 1, 1, 1, 1957.067, 1287.571, 145.8101), +(26499, 1, 1, 2, 1941.817, 1288.071, 145.8101), +(26499, 1, 1, 3, 1939.171, 1288.315, 145.4922), +(26499, 1, 2, 0, 1945.112, 1288.024, 145.7216), +(26499, 1, 2, 1, 1941.497, 1288.348, 145.7976), +(26499, 1, 2, 2, 1939.247, 1288.598, 145.5476), +(26499, 1, 2, 3, 1926.247, 1289.098, 144.5476), +(26499, 1, 2, 4, 1924.883, 1289.172, 143.8736), +(26499, 1, 3, 0, 1935.320, 1288.546, 145.0998), +(26499, 1, 3, 1, 1926.090, 1289.288, 144.4456), +(26499, 1, 3, 2, 1924.840, 1289.288, 143.9456), +(26499, 1, 3, 3, 1915.340, 1290.038, 142.1956), +(26499, 1, 3, 4, 1912.860, 1290.030, 142.2913), +(26499, 1, 4, 0, 1925.639, 1289.127, 144.0508), +(26499, 1, 4, 1, 1924.946, 1289.347, 143.9687), +(26499, 1, 4, 2, 1915.196, 1290.347, 142.2187), +(26499, 1, 4, 3, 1913.196, 1290.347, 142.7187), +(26499, 1, 4, 4, 1909.196, 1290.597, 143.2187), +(26499, 1, 4, 5, 1904.196, 1291.347, 143.7187), +(26499, 1, 4, 6, 1903.254, 1291.568, 143.3867), +(26497, 1, 0, 0, 1876.788, 1305.723, 146.2474), +(26497, 1, 0, 1, 1883.386, 1300.033, 145.7733), +(26497, 1, 0, 2, 1885.484, 1297.844, 145.2992), +(26497, 1, 1, 0, 1883.513, 1299.635, 145.5760), +(26497, 1, 1, 1, 1885.626, 1297.811, 145.3729), +(26497, 1, 1, 2, 1889.126, 1296.311, 144.8729), +(26497, 1, 1, 3, 1891.239, 1294.988, 144.1697), +(26497, 1, 2, 0, 1888.441, 1296.377, 144.6055), +(26497, 1, 2, 1, 1889.347, 1296.104, 144.6718), +(26497, 1, 2, 2, 1891.597, 1295.104, 144.4218), +(26497, 1, 2, 3, 1896.754, 1292.831, 143.7381), +(26528, 1, 0, 0, 1783.843, 1267.481, 139.7800), +(26528, 1, 0, 1, 1782.336, 1267.000, 139.7406), +(26528, 1, 0, 2, 1783.282, 1267.326, 139.7406), +(26528, 1, 0, 3, 1790.993, 1269.459, 140.2811), +(26528, 1, 0, 4, 1798.704, 1271.592, 140.9061), +(26528, 1, 0, 5, 1804.487, 1273.191, 141.4359), +(26528, 1, 0, 6, 1814.126, 1275.857, 142.0609), +(26528, 1, 0, 7, 1824.729, 1278.790, 142.6859), +(26528, 1, 0, 8, 1827.434, 1279.528, 142.9155), +(26528, 1, 0, 9, 1827.434, 1279.528, 142.9155), +(26528, 1, 1, 0, 1817.973, 1276.922, 142.2877), +(26528, 1, 1, 1, 1824.995, 1279.099, 142.9928), +(26528, 1, 1, 2, 1827.745, 1279.849, 143.2428), +(26528, 1, 1, 3, 1833.745, 1280.099, 143.7428), +(26528, 1, 1, 4, 1846.245, 1281.349, 144.2428), +(26528, 1, 1, 5, 1862.016, 1282.776, 144.1979), +(26528, 1, 2, 0, 1856.154, 1282.227, 144.1979), +(26528, 1, 2, 1, 1862.171, 1283.084, 144.4533), +(26528, 1, 2, 2, 1888.921, 1285.834, 143.9533), +(26528, 1, 2, 3, 1889.687, 1285.941, 143.7088), +(26528, 1, 3, 0, 1887.511, 1285.683, 143.7328), +(26528, 1, 3, 1, 1889.049, 1286.004, 143.7950), +(26528, 1, 3, 2, 1890.049, 1286.254, 143.7950), +(26528, 1, 3, 3, 1899.588, 1288.324, 143.3571), +(26499, 2, 0, 0, 1903.254, 1291.568, 143.3867), +(26499, 2, 0, 1, 1905.293, 1301.579, 144.5444), +(26499, 2, 1, 0, 1904.456, 1297.470, 144.0693), +(26499, 2, 1, 1, 1905.458, 1301.860, 144.8994), +(26499, 2, 1, 2, 1905.958, 1302.610, 145.6494), +(26499, 2, 1, 3, 1905.958, 1303.360, 146.6494), +(26499, 2, 1, 4, 1906.458, 1304.360, 147.1494), +(26499, 2, 1, 5, 1906.958, 1306.360, 148.1494), +(26499, 2, 1, 6, 1907.461, 1307.250, 148.2295), +(26499, 2, 2, 0, 1906.671, 1305.182, 147.4275), +(26499, 2, 2, 1, 1907.312, 1306.470, 148.3720), +(26499, 2, 2, 2, 1907.812, 1307.470, 148.6220), +(26499, 2, 2, 3, 1908.312, 1308.970, 149.1220), +(26499, 2, 2, 4, 1909.812, 1311.720, 150.1220), +(26499, 2, 2, 5, 1909.953, 1312.258, 149.8164), +(26528, 2, 0, 0, 1899.588, 1288.324, 143.3571), +(26528, 2, 0, 1, 1903.980, 1297.110, 143.5117), +(26497, 2, 0, 0, 1896.754, 1292.831, 143.7381), +(26497, 2, 0, 1, 1899.490, 1298.720, 143.8324), +(26528, 3, 0, 0, 1903.980, 1297.110, 143.5117), +(26528, 3, 0, 1, 1878.339, 1285.441, 144.0609), +(26528, 3, 1, 0, 1881.913, 1287.067, 143.9844), +(26528, 3, 1, 1, 1878.267, 1285.418, 144.3411), +(26528, 3, 1, 2, 1866.120, 1282.769, 144.1979), +(26528, 3, 2, 0, 1870.356, 1283.695, 144.1504), +(26528, 3, 2, 1, 1866.068, 1282.754, 144.3617), +(26528, 3, 2, 2, 1845.780, 1281.313, 144.0729), +(26528, 3, 3, 0, 1849.295, 1281.565, 144.0945), +(26528, 3, 3, 1, 1845.886, 1281.369, 144.2576), +(26528, 3, 3, 2, 1833.136, 1280.119, 143.5076), +(26528, 3, 3, 3, 1827.477, 1279.173, 142.9207), +(26528, 3, 4, 0, 1831.271, 1279.616, 143.2832), +(26528, 3, 4, 1, 1827.359, 1279.084, 143.2076), +(26528, 3, 4, 2, 1819.859, 1277.084, 142.4576), +(26528, 3, 4, 3, 1809.446, 1274.552, 141.6319), +(26497, 3, 0, 0, 1899.490, 1298.720, 143.8324), +(26497, 3, 0, 1, 1894.122, 1293.809, 143.8338), +(26497, 4, 0, 0, 1894.122, 1293.809, 143.8338), +(26497, 4, 0, 1, 1871.234, 1287.862, 144.6408), +(26497, 4, 0, 2, 1864.347, 1285.916, 144.4479), +(26497, 4, 1, 0, 1867.776, 1286.831, 144.4536), +(26497, 4, 1, 1, 1864.450, 1286.037, 144.5757), +(26497, 4, 1, 2, 1847.624, 1283.743, 144.1979), +(26497, 4, 2, 0, 1849.860, 1284.034, 144.2313), +(26497, 4, 2, 1, 1847.545, 1283.791, 144.4611), +(26497, 4, 2, 2, 1834.045, 1281.791, 143.7111), +(26497, 4, 2, 3, 1829.730, 1281.048, 143.1909), +(26497, 4, 3, 0, 1831.906, 1281.373, 143.3964), +(26497, 4, 3, 1, 1829.835, 1281.172, 143.3008), +(26497, 4, 3, 2, 1823.085, 1280.172, 142.8008), +(26497, 4, 3, 3, 1815.265, 1278.970, 142.2052), +(26497, 4, 4, 0, 1816.958, 1279.213, 142.2851), +(26497, 4, 4, 1, 1815.281, 1278.945, 142.2650), +(26497, 4, 4, 2, 1804.781, 1276.695, 141.7650), +(26497, 4, 4, 3, 1799.781, 1275.695, 141.5150), +(26497, 4, 4, 4, 1794.105, 1274.177, 140.7448), +(26499, 3, 0, 0, 1909.953, 1312.258, 149.8164), +(26499, 3, 0, 1, 1908.551, 1309.692, 149.4765), +(26499, 3, 0, 2, 1907.551, 1307.942, 148.7265), +(26499, 3, 0, 3, 1906.551, 1306.192, 147.7265), +(26499, 3, 0, 4, 1905.551, 1303.692, 146.7265), +(26499, 3, 0, 5, 1905.051, 1302.942, 145.9765), +(26499, 3, 0, 6, 1904.551, 1301.942, 145.2265), +(26499, 3, 0, 7, 1904.051, 1300.942, 144.2265), +(26499, 3, 0, 8, 1903.149, 1299.625, 143.6367), +(26499, 3, 1, 0, 1904.679, 1302.469, 145.4152), +(26499, 3, 1, 1, 1904.199, 1301.766, 144.8384), +(26499, 3, 1, 2, 1903.949, 1300.766, 144.3384), +(26499, 3, 1, 3, 1903.449, 1299.516, 144.0884), +(26499, 3, 1, 4, 1903.718, 1291.063, 143.2617), +(26499, 3, 2, 0, 1903.495, 1294.415, 143.4085), +(26499, 3, 2, 1, 1904.043, 1291.134, 143.5083), +(26499, 3, 2, 2, 1907.793, 1288.384, 143.0083), +(26499, 3, 2, 3, 1909.091, 1287.353, 142.6082), +(26499, 3, 3, 0, 1905.888, 1289.565, 142.9981), +(26499, 3, 3, 1, 1910.904, 1288.431, 142.5031), +(26499, 3, 3, 2, 1914.904, 1287.181, 142.0031), +(26499, 3, 3, 3, 1916.920, 1287.297, 142.0080), +(26499, 4, 0, 0, 1916.920, 1287.297, 142.0080), +(26499, 4, 0, 1, 1926.420, 1287.426, 144.2628), +(26499, 4, 0, 2, 1929.170, 1287.676, 144.5128), +(26499, 4, 0, 3, 1939.420, 1287.554, 145.5176), +(26499, 4, 1, 0, 1926.350, 1287.513, 144.1856), +(26499, 4, 1, 1, 1929.405, 1287.518, 144.9343), +(26499, 4, 1, 2, 1939.405, 1287.518, 145.6843), +(26499, 4, 1, 3, 1941.655, 1287.518, 145.9343), +(26499, 4, 1, 4, 1951.959, 1287.524, 145.6830), +(26499, 4, 2, 0, 1945.664, 1287.539, 145.7185), +(26499, 4, 2, 1, 1952.117, 1287.516, 145.9138), +(26499, 4, 2, 2, 1965.071, 1287.494, 145.6091), +(26499, 4, 3, 0, 1955.347, 1287.516, 145.6639), +(26499, 4, 3, 1, 1965.244, 1287.470, 145.8539), +(26499, 4, 3, 2, 1976.641, 1287.424, 145.5438), +(26499, 4, 4, 0, 1965.047, 1287.494, 145.6092), +(26499, 4, 4, 1, 1976.853, 1287.353, 145.7835), +(26499, 4, 4, 2, 1988.603, 1287.353, 145.5335), +(26499, 4, 4, 3, 1989.159, 1287.212, 145.4577), +(26499, 4, 5, 0, 1985.305, 1287.277, 145.4950), +(26499, 4, 5, 1, 1988.890, 1287.511, 145.7352), +(26499, 4, 5, 2, 1989.140, 1287.511, 145.7352), +(26499, 4, 5, 3, 1992.975, 1297.245, 145.4753), +(26499, 4, 6, 0, 1991.095, 1292.302, 145.4666), +(26499, 4, 6, 1, 1993.198, 1297.473, 145.7460), +(26499, 4, 6, 2, 1993.948, 1300.723, 145.7460), +(26499, 4, 6, 3, 1997.198, 1313.223, 143.7460), +(26499, 4, 6, 4, 1997.800, 1316.144, 143.0254), +(26499, 4, 7, 0, 1996.410, 1310.698, 143.7020), +(26499, 4, 7, 1, 1997.232, 1313.538, 143.3433), +(26499, 4, 7, 2, 1997.982, 1316.288, 143.3433), +(26499, 4, 7, 3, 1998.732, 1317.288, 143.3433), +(26499, 4, 7, 4, 2003.232, 1322.538, 143.3433), +(26499, 4, 7, 5, 2009.732, 1326.038, 143.3433), +(26499, 4, 7, 6, 2010.055, 1326.378, 142.9847), +(26499, 4, 8, 0, 2000.474, 1319.478, 142.9744), +(26499, 4, 8, 1, 2003.205, 1322.562, 143.2088), +(26499, 4, 8, 2, 2009.955, 1326.062, 143.2088), +(26499, 4, 8, 3, 2009.955, 1326.312, 143.2088), +(26499, 4, 8, 4, 2019.437, 1321.146, 142.9432), +(26499, 4, 9, 0, 2008.504, 1325.558, 142.9917), +(26499, 4, 9, 1, 2009.963, 1326.276, 143.2323), +(26499, 4, 9, 2, 2010.213, 1326.276, 143.2323), +(26499, 4, 9, 3, 2019.463, 1321.026, 143.2323), +(26499, 4, 9, 4, 2021.963, 1311.526, 143.2323), +(26499, 4, 9, 5, 2022.713, 1309.026, 143.2323), +(26499, 4, 9, 6, 2023.213, 1307.526, 143.7323), +(26499, 4, 9, 7, 2025.921, 1296.995, 143.4729), +(26499, 4, 10, 0, 2023.620, 1305.563, 143.4979), +(26499, 4, 10, 1, 2026.268, 1297.151, 143.5187), +(26499, 4, 10, 2, 2028.768, 1293.401, 143.5187), +(26499, 4, 10, 3, 2030.417, 1290.740, 143.5395), +(26499, 4, 11, 0, 2026.428, 1296.289, 143.4703), +(26499, 4, 11, 1, 2028.844, 1293.166, 143.6114), +(26499, 4, 11, 2, 2030.594, 1290.916, 143.6114), +(26499, 4, 11, 3, 2032.094, 1290.416, 143.8614), +(26499, 4, 11, 4, 2033.594, 1289.666, 143.6114), +(26499, 4, 11, 5, 2035.344, 1288.916, 143.6114), +(26499, 4, 11, 6, 2037.759, 1287.544, 143.2525), +(26499, 4, 12, 0, 2032.995, 1289.617, 143.4461), +(26499, 4, 12, 1, 2033.722, 1289.358, 143.6375), +(26499, 4, 12, 2, 2035.472, 1288.608, 143.3875), +(26499, 4, 12, 3, 2037.972, 1287.858, 143.3875), +(26499, 4, 12, 4, 2045.222, 1287.858, 143.1375), +(26499, 4, 12, 5, 2047.948, 1287.598, 142.8289), +(26499, 5, 0, 0, 2047.948, 1287.598, 142.8289), +(26499, 5, 0, 1, 2050.976, 1287.708, 142.7941), +(26499, 5, 0, 2, 2058.005, 1287.819, 142.2593), +(26499, 5, 1, 0, 2053.991, 1287.731, 142.4832), +(26499, 5, 1, 1, 2058.194, 1287.743, 142.4689), +(26499, 5, 1, 2, 2060.694, 1287.743, 142.2189), +(26499, 5, 1, 3, 2064.398, 1287.755, 141.9545), +(26499, 5, 2, 0, 2060.053, 1287.799, 142.1414), +(26499, 5, 2, 1, 2060.704, 1287.717, 142.1683), +(26499, 5, 2, 2, 2064.704, 1287.717, 142.1683), +(26499, 5, 2, 3, 2070.454, 1287.717, 141.9183), +(26499, 5, 2, 4, 2072.355, 1287.635, 141.6951), +(26499, 5, 3, 0, 2069.130, 1287.684, 141.8000), +(26499, 5, 3, 1, 2070.820, 1287.637, 141.9955), +(26499, 5, 3, 2, 2072.570, 1287.637, 141.7455), +(26499, 5, 3, 3, 2075.820, 1287.637, 141.7455), +(26499, 5, 3, 4, 2083.011, 1287.590, 141.1909), +(26499, 6, 0, 0, 2083.011, 1287.590, 141.1909), +(26499, 6, 0, 1, 2084.617, 1285.493, 141.1684), +(26499, 6, 0, 2, 2087.367, 1281.493, 140.9184), +(26499, 6, 0, 3, 2087.722, 1280.896, 140.6459), +(26499, 7, 0, 0, 2087.722, 1280.896, 140.6459), +(26499, 7, 0, 1, 2091.994, 1277.257, 140.4254), +(28167, 1, 0, 0, 2092.018, 1275.036, 140.8330), +(28167, 1, 0, 1, 2090.446, 1277.398, 141.0078), +(28167, 1, 0, 2, 2088.873, 1279.260, 140.6826), +(26499, 91, 0, 0, 2366.240, 1195.253, 132.0441), +(26499, 91, 0, 1, 2366.501, 1196.756, 132.5435), +(26499, 91, 0, 2, 2366.501, 1198.006, 132.5435), +(26499, 91, 0, 3, 2370.251, 1199.006, 134.2935), +(26499, 91, 0, 4, 2371.501, 1199.256, 134.7935), +(26499, 91, 0, 5, 2373.251, 1199.756, 134.7935), +(26499, 91, 0, 6, 2375.251, 1200.256, 134.2935), +(26499, 91, 0, 7, 2376.251, 1200.506, 134.2935), +(26499, 91, 0, 8, 2377.262, 1200.759, 134.0428), +(26499, 91, 1, 0, 2368.773, 1198.629, 133.4956), +(26499, 91, 1, 1, 2370.306, 1199.143, 134.2684), +(26499, 91, 1, 2, 2371.556, 1199.393, 135.0184), +(26499, 91, 1, 3, 2373.556, 1199.893, 135.0184), +(26499, 91, 1, 4, 2375.306, 1200.393, 134.2684), +(26499, 91, 1, 5, 2376.306, 1200.393, 134.2684), +(26499, 91, 1, 6, 2377.306, 1200.643, 134.2684), +(26499, 91, 1, 7, 2382.556, 1201.893, 134.2684), +(26499, 91, 1, 8, 2383.839, 1202.156, 134.0411), +(26499, 91, 2, 0, 2377.760, 1200.865, 134.0427), +(26499, 91, 2, 1, 2382.930, 1202.066, 134.2909), +(26499, 91, 2, 2, 2384.180, 1202.316, 134.2909), +(26499, 91, 2, 3, 2386.180, 1202.566, 134.2909), +(26499, 91, 2, 4, 2392.101, 1203.767, 134.0390), +(26499, 92, 0, 0, 2392.101, 1203.767, 134.0390), +(26499, 92, 0, 1, 2396.516, 1206.148, 134.0383), +(26499, 95, 0, 0, 2396.516, 1206.148, 134.0383), +(26499, 95, 0, 1, 2404.866, 1207.302, 134.2841), +(26499, 95, 0, 2, 2408.366, 1207.552, 134.0341), +(26499, 95, 0, 3, 2418.716, 1208.955, 134.0299), +(26499, 95, 1, 0, 2406.147, 1207.366, 133.9344), +(26499, 95, 1, 1, 2408.496, 1207.973, 133.9710), +(26499, 95, 1, 2, 2418.996, 1209.223, 134.2210), +(26499, 95, 1, 3, 2419.746, 1209.723, 134.2210), +(26499, 95, 1, 4, 2428.246, 1213.973, 134.2210), +(26499, 95, 1, 5, 2431.845, 1216.079, 134.0077), +(26499, 95, 2, 0, 2424.443, 1212.063, 134.0150), +(26499, 95, 2, 1, 2428.300, 1214.332, 134.2638), +(26499, 95, 2, 2, 2432.050, 1216.082, 134.2638), +(26499, 95, 2, 3, 2441.157, 1219.101, 134.0126), +(26499, 95, 3, 0, 2433.054, 1216.472, 134.0083), +(26499, 95, 3, 1, 2441.192, 1219.025, 134.4917), +(26499, 95, 3, 2, 2441.692, 1216.775, 134.4917), +(26499, 95, 3, 3, 2442.192, 1215.025, 134.2417), +(26499, 95, 3, 4, 2442.442, 1213.525, 135.9917), +(26499, 95, 3, 5, 2444.330, 1205.078, 141.9751), +(26499, 95, 4, 0, 2443.168, 1210.214, 138.0827), +(26499, 95, 4, 1, 2444.703, 1205.028, 142.3293), +(26499, 95, 4, 2, 2446.203, 1198.028, 147.5793), +(26499, 95, 4, 3, 2447.738, 1191.342, 148.0759), +(26499, 96, 0, 0, 2447.738, 1191.342, 148.0759), +(26499, 96, 0, 1, 2443.461, 1190.214, 148.0759), +(26499, 97, 0, 0, 2443.461, 1190.214, 148.0759), +(26499, 97, 0, 1, 2442.500, 1190.911, 148.3259), +(26499, 97, 0, 2, 2432.500, 1193.911, 148.3259), +(26499, 97, 0, 3, 2425.250, 1194.411, 148.3259), +(26499, 97, 0, 4, 2423.539, 1194.608, 148.0759), +(26499, 97, 1, 0, 2434.366, 1193.263, 148.0759), +(26499, 97, 1, 1, 2432.421, 1193.916, 148.3259), +(26499, 97, 1, 2, 2424.921, 1194.416, 148.3259), +(26499, 97, 1, 3, 2423.671, 1194.666, 148.3259), +(26499, 97, 1, 4, 2412.975, 1194.068, 148.0759), +(26499, 97, 2, 0, 2424.781, 1194.516, 148.0759), +(26499, 97, 2, 1, 2423.638, 1194.570, 148.3259), +(26499, 97, 2, 2, 2413.138, 1194.070, 148.3259), +(26499, 97, 2, 3, 2410.888, 1193.070, 148.3259), +(26499, 97, 2, 4, 2408.138, 1192.320, 148.3259), +(26499, 97, 2, 5, 2406.995, 1191.624, 148.0759), +(26499, 97, 3, 0, 2415.113, 1194.177, 148.0759), +(26499, 97, 3, 1, 2413.069, 1194.000, 148.3259), +(26499, 97, 3, 2, 2410.569, 1193.000, 148.3259), +(26499, 97, 3, 3, 2408.069, 1192.000, 148.3259), +(26499, 97, 3, 4, 2407.319, 1191.500, 148.3259), +(26499, 97, 3, 5, 2406.069, 1188.250, 148.3259), +(26499, 97, 3, 6, 2404.526, 1183.823, 148.0759), +(26499, 97, 4, 0, 2406.700, 1190.692, 148.0759), +(26499, 97, 4, 1, 2406.134, 1187.959, 148.3256), +(26499, 97, 4, 2, 2404.884, 1183.709, 148.3256), +(26499, 97, 4, 3, 2405.634, 1177.709, 148.3256), +(26499, 97, 4, 4, 2407.067, 1167.727, 148.0753), +(26499, 97, 5, 0, 2404.814, 1181.384, 148.0758), +(26499, 97, 5, 1, 2405.542, 1177.282, 148.3256), +(26499, 97, 5, 2, 2407.042, 1168.032, 148.3256), +(26499, 97, 5, 3, 2407.542, 1165.782, 148.3256), +(26499, 97, 5, 4, 2409.271, 1156.181, 148.0755), +(26499, 98, 0, 0, 2409.271, 1156.181, 148.0755), +(26499, 98, 0, 1, 2412.297, 1141.795, 148.0757), +(26499, 98, 1, 0, 2411.266, 1146.695, 148.0757), +(26499, 98, 1, 1, 2412.604, 1141.814, 148.3258), +(26499, 98, 1, 2, 2414.943, 1132.433, 148.0759), +(26499, 98, 2, 0, 2413.564, 1137.311, 148.0758), +(26499, 98, 2, 1, 2415.143, 1132.356, 148.3259), +(26499, 98, 2, 2, 2417.143, 1129.106, 148.3259), +(26499, 98, 2, 3, 2420.722, 1122.901, 148.0759), +(26499, 98, 3, 0, 2417.318, 1128.516, 148.0760), +(26499, 98, 3, 1, 2420.858, 1123.179, 148.3259), +(26499, 98, 3, 2, 2422.608, 1121.679, 148.3259), +(26499, 98, 3, 3, 2424.108, 1120.429, 148.3259), +(26499, 98, 3, 4, 2425.898, 1118.842, 148.0759), +(26532, 1, 0, 0, 2457.008, 1113.929, 150.0776), +(26532, 1, 0, 1, 2458.388, 1114.085, 150.0917), +(26532, 1, 0, 2, 2457.393, 1113.980, 150.0917), +(26532, 1, 0, 3, 2455.168, 1113.687, 150.0104), +(26532, 1, 0, 4, 2450.874, 1113.122, 149.0170), +(26532, 1, 0, 5, 2450.874, 1113.122, 149.0170), +(27742, 1, 0, 0, 2432.824, 1191.816, 148.1556), +(27742, 1, 0, 1, 2432.566, 1193.102, 148.1593), +(27742, 1, 0, 2, 2432.757, 1192.121, 148.1593), +(27742, 1, 0, 3, 2434.290, 1185.112, 148.0759), +(27742, 1, 0, 4, 2434.290, 1185.112, 148.0759), +(27742, 2, 0, 0, 2432.990, 1192.760, 148.1474), +(27742, 2, 0, 1, 2432.270, 1191.664, 148.1593), +(27742, 2, 0, 2, 2432.829, 1192.493, 148.1593), +(27742, 2, 0, 3, 2433.960, 1194.363, 148.0759), +(27742, 2, 0, 4, 2436.273, 1198.183, 148.0759), +(27742, 2, 0, 5, 2436.273, 1198.183, 148.0759), +(27742, 3, 0, 0, 2432.711, 1192.857, 148.1550), +(27742, 3, 0, 1, 2431.399, 1192.900, 148.1593), +(27742, 3, 0, 2, 2432.398, 1192.865, 148.1593), +(27742, 3, 0, 3, 2438.529, 1192.707, 148.0759), +(27742, 3, 0, 4, 2438.529, 1192.707, 148.0759), +(27742, 4, 0, 0, 2433.154, 1192.572, 148.1547), +(27742, 4, 0, 1, 2432.087, 1193.326, 148.1593), +(27742, 4, 0, 2, 2432.926, 1192.781, 148.1593), +(27742, 4, 0, 3, 2437.091, 1188.969, 148.0759), +(27742, 4, 0, 4, 2437.091, 1188.969, 148.0759), +(27742, 5, 0, 0, 2414.349, 1136.075, 148.1592), +(27742, 5, 0, 1, 2414.383, 1135.073, 148.1593), +(27742, 5, 0, 2, 2414.348, 1136.073, 148.1593), +(27742, 5, 0, 3, 2415.398, 1140.661, 148.0758), +(27742, 5, 0, 4, 2415.398, 1140.661, 148.0758), +(27742, 6, 0, 0, 2403.961, 1180.299, 148.1587), +(27742, 6, 0, 1, 2404.736, 1179.674, 148.1587), +(27742, 6, 0, 2, 2403.959, 1180.304, 148.1587), +(27742, 6, 0, 3, 2407.341, 1172.870, 148.0755), +(27742, 6, 0, 4, 2407.341, 1172.870, 148.0755), +(27742, 7, 0, 0, 2414.671, 1136.262, 148.1592), +(27742, 7, 0, 1, 2415.404, 1135.578, 148.1593), +(27742, 7, 0, 2, 2414.673, 1136.260, 148.1593), +(27742, 7, 0, 3, 2411.154, 1140.153, 148.0757), +(27742, 7, 0, 4, 2411.154, 1140.153, 148.0757), +(27742, 8, 0, 0, 2403.908, 1179.994, 148.1586), +(27742, 8, 0, 1, 2403.891, 1180.996, 148.1587), +(27742, 8, 0, 2, 2403.908, 1179.996, 148.1587), +(27742, 8, 0, 3, 2403.444, 1172.043, 148.0753), +(27742, 8, 0, 4, 2403.444, 1172.043, 148.0753), +(27742, 9, 0, 0, 2429.026, 1102.693, 148.1499), +(27742, 9, 0, 1, 2429.742, 1101.104, 148.1593), +(27742, 9, 0, 2, 2429.303, 1102.002, 148.1593), +(27742, 9, 0, 3, 2426.836, 1108.146, 148.0759), +(27742, 9, 0, 4, 2426.836, 1108.146, 148.0759), +(27742, 10, 0, 0, 2441.173, 1115.225, 148.1264), +(27742, 10, 0, 1, 2442.718, 1112.450, 148.1593), +(27742, 10, 0, 2, 2442.771, 1113.448, 148.1593), +(27742, 10, 0, 3, 2438.715, 1117.960, 148.0759), +(27742, 10, 0, 4, 2438.027, 1118.726, 148.0759), +(27742, 10, 0, 5, 2438.027, 1118.726, 148.0759), +(27742, 11, 0, 0, 2430.645, 1104.685, 148.1306), +(27742, 11, 0, 1, 2429.549, 1101.521, 148.1593), +(27742, 11, 0, 2, 2429.636, 1102.517, 148.1593), +(27742, 11, 0, 3, 2432.575, 1108.833, 148.0759), +(27742, 11, 0, 4, 2432.575, 1108.833, 148.0759), +(27742, 12, 0, 0, 2439.649, 1113.719, 148.1298), +(27742, 12, 0, 1, 2442.992, 1113.372, 148.1593), +(27742, 12, 0, 2, 2442.031, 1113.648, 148.1593), +(27742, 12, 0, 3, 2435.285, 1113.849, 148.0759), +(27742, 12, 0, 4, 2435.285, 1113.849, 148.0759), +(26499, 101, 0, 0, 2425.898, 1118.842, 148.0759), +(26499, 101, 0, 1, 2429.949, 1117.980, 148.5604), +(26499, 101, 0, 2, 2434.449, 1116.980, 148.5604), +(26499, 101, 0, 3, 2443.699, 1114.980, 148.5604), +(26499, 101, 0, 4, 2448.199, 1113.980, 148.5604), +(26499, 101, 0, 5, 2451.000, 1113.117, 149.0450), +(26499, 101, 1, 0, 2442.638, 1115.024, 148.0759), +(26499, 101, 1, 1, 2443.851, 1114.990, 148.5444), +(26499, 101, 1, 2, 2448.351, 1113.990, 148.5444), +(26499, 101, 1, 3, 2451.101, 1113.490, 149.2944), +(26499, 101, 1, 4, 2454.351, 1116.990, 150.2944), +(26499, 101, 1, 5, 2456.064, 1118.955, 150.0128), +(26499, 101, 2, 0, 2451.617, 1113.829, 149.2187), +(26499, 101, 2, 1, 2454.655, 1117.209, 150.1194), +(26499, 101, 2, 2, 2456.405, 1119.209, 150.1194), +(26499, 101, 2, 3, 2457.155, 1121.959, 150.1194), +(26499, 101, 2, 4, 2457.905, 1125.959, 150.1194), +(26499, 101, 2, 5, 2459.655, 1125.959, 150.1194), +(26499, 101, 2, 6, 2462.692, 1126.088, 150.0201), +(26499, 101, 3, 0, 2456.778, 1121.774, 150.0144), +(26499, 101, 3, 1, 2458.201, 1126.067, 150.2717), +(26499, 101, 3, 2, 2459.701, 1126.067, 150.2717), +(26499, 101, 3, 3, 2462.701, 1126.067, 150.2717), +(26499, 101, 3, 4, 2466.451, 1124.317, 150.2717), +(26499, 101, 3, 5, 2468.624, 1123.360, 150.0291), +(26499, 128, 0, 0, 2468.624, 1123.360, 150.0291), +(26499, 128, 0, 1, 2472.084, 1123.195, 150.2172), +(26499, 128, 0, 2, 2474.334, 1122.945, 150.2172), +(26499, 128, 0, 3, 2482.584, 1122.945, 149.9672), +(26499, 128, 0, 4, 2484.045, 1122.531, 149.9052), +(26499, 128, 1, 0, 2478.336, 1122.838, 149.9668), +(26499, 128, 1, 1, 2482.680, 1122.492, 150.1883), +(26499, 128, 1, 2, 2483.930, 1122.492, 150.1883), +(26499, 128, 1, 3, 2484.430, 1119.742, 150.1883), +(26499, 128, 1, 4, 2485.523, 1113.646, 149.9099), +(26499, 128, 2, 0, 2484.691, 1118.652, 149.9061), +(26499, 128, 2, 1, 2485.738, 1113.734, 150.1313), +(26499, 128, 2, 2, 2485.988, 1111.734, 150.1313), +(26499, 128, 2, 3, 2486.488, 1108.234, 148.3813), +(26499, 128, 2, 4, 2487.238, 1103.734, 145.6313), +(26499, 128, 2, 5, 2487.738, 1100.484, 145.3813), +(26499, 128, 2, 6, 2487.785, 1099.816, 144.8566), +(26499, 128, 3, 0, 2486.230, 1109.323, 148.7373), +(26499, 128, 3, 1, 2486.708, 1108.068, 148.1735), +(26499, 128, 3, 2, 2487.458, 1103.568, 145.6735), +(26499, 128, 3, 3, 2487.958, 1100.568, 145.1735), +(26499, 128, 3, 4, 2487.958, 1100.068, 145.1735), +(26499, 128, 3, 5, 2491.458, 1100.818, 145.1735), +(26499, 128, 3, 6, 2492.958, 1101.068, 144.9235), +(26499, 128, 3, 7, 2498.185, 1101.812, 144.6096), +(26499, 128, 4, 0, 2487.662, 1100.566, 144.8941), +(26499, 128, 4, 1, 2488.134, 1100.141, 144.9309), +(26499, 128, 4, 2, 2491.134, 1100.641, 144.9309), +(26499, 128, 4, 3, 2492.884, 1101.141, 144.6809), +(26499, 128, 4, 4, 2498.134, 1102.141, 144.6809), +(26499, 128, 4, 5, 2497.884, 1103.141, 144.6809), +(26499, 128, 4, 6, 2497.384, 1105.891, 144.1809), +(26499, 128, 4, 7, 2496.134, 1110.891, 143.9309), +(26499, 128, 4, 8, 2495.134, 1115.891, 143.9309), +(26499, 128, 4, 9, 2494.384, 1119.641, 142.4309), +(26499, 128, 4, 10, 2493.134, 1124.641, 140.4309), +(26499, 128, 4, 11, 2492.605, 1127.216, 139.9677), +(26499, 128, 5, 0, 2494.477, 1118.697, 142.5221), +(26499, 128, 5, 1, 2494.635, 1119.844, 142.2594), +(26499, 128, 5, 2, 2493.385, 1124.594, 140.5094), +(26499, 128, 5, 3, 2492.885, 1127.094, 140.2594), +(26499, 128, 5, 4, 2500.794, 1128.992, 139.9966), +(26499, 128, 6, 0, 2492.862, 1127.271, 139.9686), +(26499, 128, 6, 1, 2500.889, 1128.872, 140.2229), +(26499, 128, 6, 2, 2503.416, 1119.473, 139.9773), +(26499, 128, 7, 0, 2501.195, 1127.536, 139.9936), +(26499, 128, 7, 1, 2503.719, 1119.759, 140.0309), +(26499, 128, 7, 2, 2506.469, 1120.259, 140.0309), +(26499, 128, 7, 3, 2510.969, 1121.009, 136.7809), +(26499, 128, 7, 4, 2516.469, 1122.009, 133.0309), +(26499, 128, 7, 5, 2517.743, 1121.981, 132.0681), +(26499, 128, 8, 0, 2512.749, 1121.107, 135.3008), +(26499, 128, 8, 1, 2516.539, 1122.018, 132.9387), +(26499, 128, 8, 2, 2518.039, 1122.268, 132.4387), +(26499, 128, 8, 3, 2521.539, 1123.768, 132.4387), +(26499, 128, 8, 4, 2523.830, 1124.929, 132.0767), +(26499, 1024, 0, 0, 2534.988, 1126.163, 130.8621), +(26499, 1024, 0, 1, 2539.021, 1128.049, 130.8222), +(26499, 1024, 0, 2, 2540.271, 1128.549, 131.0722), +(26499, 1024, 0, 3, 2540.771, 1128.799, 131.0722), +(26499, 1024, 0, 4, 2543.521, 1130.299, 130.8222), +(26499, 1024, 0, 5, 2546.771, 1132.299, 130.3222), +(26499, 1024, 0, 6, 2549.521, 1134.049, 130.0722), +(26499, 1024, 0, 7, 2552.771, 1136.049, 129.8222), +(26499, 1024, 0, 8, 2557.554, 1138.935, 128.7824), +(26499, 1024, 1, 0, 2551.887, 1135.368, 129.6870), +(26499, 1024, 1, 1, 2553.038, 1136.289, 129.6371), +(26499, 1024, 1, 2, 2557.788, 1139.289, 128.8871), +(26499, 1024, 1, 3, 2561.038, 1147.039, 128.3871), +(26499, 1024, 1, 4, 2564.288, 1153.789, 127.8871), +(26499, 1024, 1, 5, 2566.688, 1159.210, 127.0872), +(26499, 1024, 2, 0, 2562.721, 1150.404, 127.8784), +(26499, 1024, 2, 1, 2564.198, 1153.856, 127.5824), +(26499, 1024, 2, 2, 2566.698, 1159.356, 127.3324), +(26499, 1024, 2, 3, 2565.698, 1169.606, 127.0824), +(26499, 1024, 2, 4, 2564.448, 1180.356, 126.8324), +(26499, 1024, 2, 5, 2564.175, 1183.308, 126.2864), +(26499, 1024, 3, 0, 2564.675, 1178.508, 126.4328), +(26499, 1024, 3, 1, 2564.468, 1180.668, 126.6039), +(26499, 1024, 3, 2, 2564.218, 1183.668, 126.3539), +(26499, 1024, 3, 3, 2562.968, 1197.168, 126.1039), +(26499, 1024, 3, 4, 2562.718, 1199.418, 126.1039), +(26499, 1024, 3, 5, 2562.261, 1202.828, 125.7751), +(26499, 1024, 4, 0, 2562.752, 1197.818, 125.9246), +(26499, 1024, 4, 1, 2562.524, 1199.785, 126.0767), +(26499, 1024, 4, 2, 2562.274, 1203.035, 125.8267), +(26499, 1024, 4, 3, 2560.274, 1207.785, 125.8267), +(26499, 1024, 4, 4, 2556.774, 1217.035, 126.0767), +(26499, 1024, 4, 5, 2555.774, 1219.285, 125.8267), +(26499, 1024, 4, 6, 2552.295, 1227.253, 125.7289), +(26499, 1024, 5, 0, 2556.829, 1216.141, 125.7983), +(26499, 1024, 5, 1, 2556.463, 1217.164, 126.0613), +(26499, 1024, 5, 2, 2555.463, 1219.414, 126.0613), +(26499, 1024, 5, 3, 2552.213, 1227.414, 126.0613), +(26499, 1024, 5, 4, 2549.213, 1234.164, 126.0613), +(26499, 1024, 5, 5, 2543.963, 1246.414, 126.3113), +(26499, 1024, 5, 6, 2543.463, 1247.414, 126.3113), +(26499, 1024, 5, 7, 2540.597, 1253.188, 126.3242), +(26499, 1024, 6, 0, 2545.010, 1243.115, 126.0662), +(26499, 1024, 6, 1, 2543.567, 1246.399, 126.5910), +(26499, 1024, 6, 2, 2543.067, 1247.899, 126.5910), +(26499, 1024, 6, 3, 2540.567, 1253.399, 126.8410), +(26499, 1024, 6, 4, 2538.817, 1257.399, 126.8410), +(26499, 1024, 6, 5, 2536.067, 1263.649, 127.0910), +(26499, 1024, 6, 6, 2535.317, 1265.149, 127.0910), +(26499, 1024, 6, 7, 2534.567, 1267.149, 127.0910), +(26499, 1024, 6, 8, 2531.067, 1274.399, 127.5910), +(26499, 1024, 6, 9, 2528.624, 1279.184, 128.1158), +(26499, 1024, 7, 0, 2533.040, 1269.595, 127.1209), +(26499, 1024, 7, 1, 2530.740, 1274.671, 127.9136), +(26499, 1024, 7, 2, 2528.740, 1279.421, 128.4136), +(26499, 1024, 7, 3, 2527.490, 1282.671, 128.9136), +(26499, 1024, 7, 4, 2524.490, 1290.671, 130.4136), +(26499, 1024, 7, 5, 2523.990, 1292.171, 130.6636), +(26499, 1024, 7, 6, 2521.939, 1297.247, 130.7063), +(26499, 1024, 8, 0, 2525.589, 1287.386, 129.5040), +(26499, 1024, 8, 1, 2524.339, 1290.960, 130.4446), +(26499, 1024, 8, 2, 2523.839, 1292.460, 130.6946), +(26499, 1024, 8, 3, 2521.839, 1297.460, 130.9446), +(26499, 1024, 8, 4, 2521.339, 1299.210, 130.9446), +(26499, 1024, 8, 5, 2518.839, 1307.210, 130.9446), +(26499, 1024, 8, 6, 2517.089, 1312.460, 130.4446), +(26499, 1024, 8, 7, 2514.589, 1319.460, 131.6946), +(26499, 1024, 8, 8, 2513.089, 1323.535, 131.8852), +(26499, 1025, 0, 0, 2513.089, 1323.535, 131.8852), +(26499, 1025, 0, 1, 2511.017, 1328.168, 132.1075), +(26499, 1025, 0, 2, 2508.267, 1334.418, 132.6075), +(26499, 1025, 0, 3, 2505.767, 1339.918, 133.1075), +(26499, 1025, 0, 4, 2502.517, 1347.168, 133.1075), +(26499, 1025, 0, 5, 2499.267, 1353.918, 132.6075), +(26499, 1025, 0, 6, 2498.945, 1354.302, 132.3298), +(26499, 1025, 1, 0, 2500.686, 1350.516, 132.6903), +(26499, 1025, 1, 1, 2499.187, 1354.250, 132.4188), +(26499, 1025, 1, 2, 2498.937, 1354.500, 132.4188), +(26499, 1025, 1, 3, 2495.687, 1361.500, 131.4188), +(26499, 1025, 1, 4, 2492.187, 1369.500, 130.9188), +(26499, 1025, 1, 5, 2491.687, 1370.750, 130.9188), +(26499, 1025, 1, 6, 2486.688, 1380.985, 130.1472), +(26499, 1025, 2, 0, 2492.489, 1368.358, 130.5943), +(26499, 1025, 2, 1, 2491.867, 1369.797, 130.6554), +(26499, 1025, 2, 2, 2491.367, 1370.797, 130.6554), +(26499, 1025, 2, 3, 2486.617, 1381.297, 130.6554), +(26499, 1025, 2, 4, 2485.867, 1382.297, 130.4054), +(26499, 1025, 2, 5, 2485.367, 1383.297, 130.6554), +(26499, 1025, 2, 6, 2479.617, 1392.547, 130.4054), +(26499, 1025, 2, 7, 2474.117, 1401.297, 130.6554), +(26499, 1025, 2, 8, 2473.117, 1402.797, 130.9054), +(26499, 1025, 2, 9, 2472.617, 1403.547, 130.9054), +(26499, 1025, 2, 10, 2471.245, 1405.236, 130.7164), +(26499, 1025, 3, 0, 2478.698, 1393.532, 129.9635), +(26499, 1025, 3, 1, 2473.843, 1401.439, 130.7012), +(26499, 1025, 3, 2, 2472.843, 1402.939, 130.9512), +(26499, 1025, 3, 3, 2472.343, 1403.939, 130.7012), +(26499, 1025, 3, 4, 2471.343, 1405.439, 130.9512), +(26499, 1025, 3, 5, 2469.343, 1407.439, 130.9512), +(26499, 1025, 3, 6, 2467.343, 1409.439, 130.9512), +(26499, 1025, 3, 7, 2466.593, 1410.189, 130.9512), +(26499, 1025, 3, 8, 2460.343, 1416.439, 130.7012), +(26499, 1025, 3, 9, 2459.343, 1417.689, 130.7012), +(26499, 1025, 3, 10, 2455.843, 1420.939, 130.7012), +(26499, 1025, 3, 11, 2453.593, 1423.439, 130.7012), +(26499, 1025, 3, 12, 2449.988, 1426.845, 130.9390), +(26499, 1025, 4, 0, 2453.816, 1422.953, 130.6408), +(26499, 1025, 4, 1, 2453.290, 1423.434, 130.9224), +(26499, 1025, 4, 2, 2450.040, 1426.934, 131.1724), +(26499, 1025, 4, 3, 2441.790, 1424.934, 130.9224), +(26499, 1025, 4, 4, 2433.790, 1422.934, 130.9224), +(26499, 1025, 4, 5, 2429.540, 1421.934, 130.9224), +(26499, 1025, 4, 6, 2424.290, 1420.934, 130.9224), +(26499, 1025, 4, 7, 2420.263, 1419.915, 130.7039), +(26499, 1025, 5, 0, 2434.533, 1421.207, 130.5855), +(26499, 1025, 5, 1, 2424.042, 1420.156, 131.0255), +(26499, 1025, 5, 2, 2420.292, 1419.906, 130.7755), +(26499, 1025, 5, 3, 2414.792, 1418.406, 130.7755), +(26499, 1025, 5, 4, 2413.292, 1418.156, 130.7755), +(26499, 1025, 5, 5, 2411.042, 1417.406, 130.7755), +(26499, 1025, 5, 6, 2409.542, 1417.156, 130.7755), +(26499, 1025, 5, 7, 2407.292, 1416.656, 130.7755), +(26499, 1025, 5, 8, 2405.292, 1416.156, 130.7755), +(26499, 1025, 5, 9, 2404.042, 1415.906, 131.0255), +(26499, 1025, 5, 10, 2402.042, 1415.406, 131.0255), +(26499, 1025, 5, 11, 2392.542, 1412.906, 129.5255), +(26499, 1025, 5, 12, 2390.052, 1412.106, 128.9655), +(26499, 1025, 6, 0, 2396.684, 1413.820, 130.0156), +(26499, 1025, 6, 1, 2392.062, 1412.613, 129.3716), +(26499, 1025, 6, 2, 2390.062, 1412.113, 129.3716), +(26499, 1025, 6, 3, 2384.812, 1410.613, 128.8716), +(26499, 1025, 6, 4, 2383.312, 1410.363, 128.6216), +(26499, 1025, 6, 5, 2377.312, 1408.863, 128.3716), +(26499, 1025, 6, 6, 2373.562, 1407.863, 128.1216), +(26499, 1025, 6, 7, 2372.312, 1407.613, 128.1216), +(26499, 1025, 6, 8, 2367.312, 1406.113, 129.1216), +(26499, 1025, 6, 9, 2363.440, 1404.906, 128.7275), +(26499, 121, 0, 0, 2363.440, 1404.906, 128.7275), +(26499, 121, 0, 1, 2358.990, 1405.489, 128.6729), +(26499, 121, 0, 2, 2348.990, 1406.239, 128.4229), +(26499, 121, 0, 3, 2340.740, 1406.989, 128.4229), +(26499, 121, 0, 4, 2339.039, 1407.072, 128.1182), +(26499, 121, 1, 0, 2345.191, 1406.526, 128.2732), +(26499, 121, 1, 1, 2340.630, 1407.124, 128.2652), +(26499, 121, 1, 2, 2339.130, 1407.374, 128.2652), +(26499, 121, 1, 3, 2333.380, 1409.624, 128.0152), +(26499, 121, 1, 4, 2331.068, 1410.722, 127.7572), +(26499, 121, 2, 0, 2335.882, 1408.518, 127.9085), +(26499, 121, 2, 1, 2333.191, 1409.975, 127.8890), +(26499, 121, 2, 2, 2331.191, 1410.975, 127.8890), +(26499, 121, 2, 3, 2330.441, 1412.725, 127.8890), +(26499, 121, 2, 4, 2328.191, 1417.225, 127.8890), +(26499, 121, 2, 5, 2325.941, 1421.225, 128.1390), +(26499, 121, 2, 6, 2325.501, 1421.931, 127.8694), +(26499, 121, 3, 0, 2329.097, 1414.691, 127.6474), +(26499, 121, 3, 1, 2327.793, 1417.433, 127.7593), +(26499, 121, 3, 2, 2325.793, 1421.683, 128.0093), +(26499, 121, 3, 3, 2325.543, 1422.183, 128.0093), +(26499, 121, 3, 4, 2320.793, 1432.433, 128.0093), +(26499, 121, 3, 5, 2318.043, 1438.433, 128.0093), +(26499, 121, 3, 6, 2313.990, 1446.675, 127.8712), +(26499, 121, 4, 0, 2316.703, 1440.844, 127.9002), +(26499, 121, 4, 1, 2314.089, 1446.997, 127.9399), +(26499, 121, 4, 2, 2312.339, 1449.997, 127.9399), +(26499, 121, 4, 3, 2308.589, 1457.747, 127.9399), +(26499, 121, 4, 4, 2307.589, 1460.247, 127.9399), +(26499, 121, 4, 5, 2305.589, 1463.997, 127.9399), +(26499, 121, 4, 6, 2303.476, 1467.651, 127.4796), +(26499, 121, 5, 0, 2308.176, 1458.273, 127.8228), +(26499, 121, 5, 1, 2307.366, 1460.375, 127.9764), +(26499, 121, 5, 2, 2305.366, 1464.375, 127.9764), +(26499, 121, 5, 3, 2303.616, 1467.875, 127.9764), +(26499, 121, 5, 4, 2303.366, 1469.125, 127.7264), +(26499, 121, 5, 5, 2301.055, 1478.977, 128.1299), +(26499, 124, 0, 0, 2301.055, 1478.977, 128.1299), +(26499, 124, 0, 1, 2300.165, 1482.206, 128.4268), +(26499, 124, 0, 2, 2297.415, 1493.456, 128.4268), +(26499, 124, 0, 3, 2294.415, 1504.456, 128.4268), +(26499, 124, 0, 4, 2293.774, 1505.934, 128.7237), +(26499, 125, 0, 0, 2293.774, 1505.934, 128.7237), +(26499, 125, 0, 1, 2294.480, 1504.757, 128.7930), +(26499, 125, 0, 2, 2297.480, 1494.007, 128.5430), +(26499, 125, 0, 3, 2299.687, 1487.080, 128.3622), +(26499, 125, 1, 0, 2299.220, 1488.567, 128.3622), +(26499, 125, 1, 1, 2299.924, 1487.100, 128.6501), +(26499, 125, 1, 2, 2301.424, 1482.600, 128.6501), +(26499, 125, 1, 3, 2305.924, 1470.350, 127.9001), +(26499, 125, 1, 4, 2306.127, 1469.633, 127.4379), +(26499, 125, 2, 0, 2305.861, 1470.353, 127.4057), +(26499, 125, 2, 1, 2306.282, 1469.703, 127.6345), +(26499, 125, 2, 2, 2306.782, 1468.453, 127.6345), +(26499, 125, 2, 3, 2309.282, 1460.953, 127.8845), +(26499, 125, 2, 4, 2309.782, 1459.953, 127.8845), +(26499, 125, 2, 5, 2312.532, 1451.703, 128.1345), +(26499, 125, 2, 6, 2312.702, 1451.052, 127.8632), +(26499, 127, 0, 0, 2312.702, 1451.052, 127.8632), +(26499, 127, 0, 1, 2317.856, 1438.543, 128.1186), +(26499, 127, 0, 2, 2320.011, 1433.034, 127.8741), +(26499, 127, 1, 0, 2318.402, 1436.999, 127.8968), +(26499, 127, 1, 1, 2320.325, 1432.932, 128.0935), +(26499, 127, 1, 2, 2323.075, 1420.182, 128.0935), +(26499, 127, 1, 3, 2323.325, 1418.432, 127.8435), +(26499, 127, 1, 4, 2324.075, 1415.432, 127.8435), +(26499, 127, 1, 5, 2324.748, 1411.865, 127.7902), +(26499, 127, 2, 0, 2324.370, 1413.555, 127.6901), +(26499, 127, 2, 1, 2324.838, 1411.816, 128.0130), +(26499, 127, 2, 2, 2324.088, 1409.566, 128.2630), +(26499, 127, 2, 3, 2322.588, 1404.066, 128.2630), +(26499, 127, 2, 4, 2322.588, 1402.816, 128.2630), +(26499, 127, 2, 5, 2320.807, 1396.578, 128.3358), +(27907, 1, 0, 0, 1670.256, 872.8734, 120.0351), +(27907, 1, 0, 1, 1671.586, 872.1134, 120.4314), +(27907, 1, 0, 2, 1672.917, 871.3535, 120.3277), +(27907, 2, 0, 0, 1672.917, 871.3535, 120.3277), +(27907, 2, 0, 1, 1667.076, 870.0946, 119.9527), +(27907, 2, 1, 0, 1669.969, 870.7180, 120.1384), +(27907, 2, 1, 1, 1667.148, 870.1765, 120.0045), +(27907, 2, 1, 2, 1662.828, 866.6351, 119.8706), +(27907, 2, 2, 0, 1664.689, 868.1503, 119.9065), +(27907, 2, 2, 1, 1662.898, 866.5289, 120.0467), +(27907, 2, 2, 2, 1658.108, 859.9075, 119.1869), +(27907, 2, 3, 0, 1659.009, 861.1918, 119.3174), +(27907, 2, 3, 1, 1658.206, 859.9042, 119.4396), +(27907, 2, 3, 2, 1653.903, 852.6165, 119.0619), +(27907, 2, 4, 0, 1655.873, 856.0323, 119.1204), +(27907, 2, 4, 1, 1654.021, 852.6975, 119.3411), +(27907, 2, 4, 2, 1648.169, 841.8626, 119.0619), +(27907, 2, 5, 0, 1650.059, 845.4074, 119.0619), +(27907, 2, 5, 1, 1648.144, 841.8294, 119.5816), +(27907, 2, 5, 2, 1644.644, 832.8294, 119.8316), +(27907, 2, 5, 3, 1641.229, 825.2514, 120.1012), +(27907, 2, 6, 0, 1642.712, 828.8032, 119.8451), +(27907, 2, 6, 1, 1641.215, 825.3640, 120.1445), +(27907, 2, 6, 2, 1638.217, 815.4248, 119.9439), +(27907, 2, 7, 0, 1638.808, 817.3542, 119.9748), +(27907, 2, 7, 1, 1638.145, 815.3091, 120.1469), +(27907, 2, 7, 2, 1633.981, 802.7640, 119.8189), +(27907, 2, 8, 0, 1635.010, 805.8387, 119.8493), +(27907, 2, 8, 1, 1633.980, 802.8589, 119.8655), +(27907, 2, 8, 2, 1630.980, 791.6089, 119.3655), +(27907, 2, 8, 3, 1628.730, 783.8589, 119.1155), +(27907, 2, 8, 4, 1627.451, 780.3792, 118.3817), +(27907, 2, 9, 0, 1628.106, 782.6379, 118.5758), +(27907, 2, 9, 1, 1627.364, 780.3354, 118.5013), +(27907, 2, 9, 2, 1626.114, 774.8354, 118.0013), +(27907, 2, 9, 3, 1625.122, 771.5330, 117.4269), +(27907, 2, 10, 0, 1625.746, 773.9089, 117.7027), +(27907, 2, 10, 1, 1625.181, 771.5463, 117.5337), +(27907, 2, 10, 2, 1623.431, 765.7963, 117.0337), +(27907, 2, 10, 3, 1621.931, 760.2963, 116.7837), +(27907, 2, 10, 4, 1620.617, 756.6836, 115.8646), +(27907, 2, 11, 0, 1621.453, 759.4308, 116.1794), +(27907, 2, 11, 1, 1620.671, 756.5874, 116.0332), +(27907, 2, 11, 2, 1619.671, 752.8374, 115.5332), +(27907, 2, 11, 3, 1618.921, 749.0874, 115.0332), +(27907, 2, 11, 4, 1617.421, 742.3374, 114.5332), +(27907, 2, 11, 5, 1616.889, 741.2440, 113.8870), +(27907, 2, 12, 0, 1617.759, 744.8360, 114.2508), +(27907, 2, 12, 1, 1617.185, 742.1613, 114.0811), +(27907, 2, 12, 2, 1616.935, 741.1613, 114.0811), +(27907, 2, 12, 3, 1615.685, 736.6613, 113.3311), +(27907, 2, 12, 4, 1614.935, 732.6613, 113.0811), +(27907, 2, 12, 5, 1614.185, 729.9113, 112.5811), +(27907, 2, 12, 6, 1613.611, 728.4866, 111.9114), +(27907, 2, 13, 0, 1614.082, 730.3239, 112.2263), +(27907, 2, 13, 1, 1613.991, 729.7391, 112.3380), +(27907, 2, 13, 2, 1613.491, 728.4891, 112.0880), +(27907, 2, 13, 3, 1612.741, 725.7391, 111.5880), +(27907, 2, 13, 4, 1611.741, 722.7391, 110.8380), +(27907, 2, 13, 5, 1610.491, 718.9891, 110.0880), +(27907, 2, 13, 6, 1609.491, 715.4891, 109.5880), +(27907, 2, 13, 7, 1608.241, 711.7391, 109.0880), +(27907, 2, 13, 8, 1606.400, 706.6543, 107.9497), +(27907, 2, 14, 0, 1607.669, 710.4952, 108.4556), +(27907, 2, 14, 1, 1606.452, 706.7616, 108.1364), +(27907, 2, 14, 2, 1604.952, 702.7616, 107.3864), +(27907, 2, 14, 3, 1603.702, 698.5116, 106.8864), +(27907, 2, 14, 4, 1602.202, 694.7616, 106.3864), +(27907, 2, 14, 5, 1601.236, 692.0279, 105.8172), +(27907, 2, 15, 0, 1601.766, 693.5259, 105.9085), +(27907, 2, 15, 1, 1601.327, 692.0245, 105.8733), +(27907, 2, 15, 2, 1600.077, 687.5245, 105.3733), +(27907, 2, 15, 3, 1598.388, 682.0231, 104.8380), +(27907, 2, 16, 0, 1599.201, 684.8760, 105.0273), +(27907, 2, 16, 1, 1598.270, 681.9597, 105.0760), +(27907, 2, 16, 2, 1596.020, 675.4597, 104.3260), +(27907, 2, 16, 3, 1593.770, 669.2097, 103.8260), +(27907, 2, 16, 4, 1592.339, 665.5434, 103.1246), +(27907, 2, 17, 0, 1593.179, 667.8270, 103.3361), +(27907, 2, 17, 1, 1592.436, 665.4673, 103.2942), +(27907, 2, 17, 2, 1588.686, 658.7173, 102.5442), +(27907, 2, 17, 3, 1586.192, 654.1075, 101.7524), +(27907, 2, 18, 0, 1587.781, 657.0647, 102.1362), +(27907, 2, 18, 1, 1586.085, 654.3907, 101.8541), +(27907, 2, 18, 2, 1583.389, 651.7168, 101.5720), +(27907, 2, 19, 0, 1586.359, 654.4169, 101.7926), +(27907, 2, 19, 1, 1586.304, 654.0751, 101.8038), +(27907, 2, 19, 2, 1583.304, 652.0751, 101.8038), +(27907, 2, 19, 3, 1577.749, 653.7333, 101.8150), +(27907, 2, 20, 0, 1581.581, 652.3631, 101.6499), +(27907, 2, 20, 1, 1577.755, 654.0015, 101.9234), +(27907, 2, 20, 2, 1571.428, 659.6400, 102.1970), +(27907, 2, 21, 0, 1574.082, 657.1602, 102.0366), +(27907, 2, 21, 1, 1571.396, 659.9266, 102.3597), +(27907, 2, 21, 2, 1564.711, 666.6931, 102.1827), +(27891, 1, 0, 0, 1605.242, 805.4160, 122.9956), +(27891, 1, 0, 1, 1604.245, 806.4799, 123.0291), +(27891, 1, 0, 2, 1604.988, 805.8108, 123.0291), +(27891, 1, 0, 3, 1608.775, 799.9248, 122.5304), +(27891, 1, 0, 4, 1609.356, 799.0145, 122.5348), +(27891, 1, 0, 5, 1609.356, 799.0145, 122.5348), +(27891, 1, 1, 0, 1608.523, 800.3172, 122.5636), +(27891, 1, 1, 1, 1609.076, 799.8616, 122.6980), +(27891, 1, 1, 2, 1609.576, 799.1116, 122.6980), +(27891, 1, 1, 3, 1612.576, 796.8616, 122.1980), +(27891, 1, 1, 4, 1613.629, 795.9061, 121.8324), +(27891, 2, 0, 0, 1613.629, 795.9061, 121.8324), +(27891, 2, 0, 1, 1619.153, 798.0073, 121.4171), +(27891, 2, 0, 2, 1622.903, 799.2573, 120.9171), +(27891, 2, 0, 3, 1623.677, 799.6086, 120.5017), +(27891, 2, 1, 0, 1621.165, 798.6823, 120.8382), +(27891, 2, 1, 1, 1622.956, 799.5746, 120.9384), +(27891, 2, 1, 2, 1623.706, 799.8246, 120.9384), +(27891, 2, 1, 3, 1624.456, 802.0746, 120.9384), +(27891, 2, 1, 4, 1624.456, 803.0746, 120.9384), +(27891, 2, 1, 5, 1623.956, 804.3246, 121.1884), +(27891, 2, 1, 6, 1624.747, 804.9668, 121.0387), +(27891, 2, 2, 0, 1624.479, 802.8323, 120.4636), +(27891, 2, 2, 1, 1624.002, 804.5530, 121.3668), +(27891, 2, 2, 2, 1624.752, 805.3030, 121.1168), +(27891, 2, 2, 3, 1623.752, 805.5530, 121.3668), +(27891, 2, 2, 4, 1623.526, 808.2736, 121.2700), +(27891, 3, 0, 0, 1623.526, 808.2736, 121.2700), +(27891, 3, 0, 1, 1626.520, 807.8563, 120.7418), +(27891, 3, 0, 2, 1628.014, 806.9391, 120.2136), +(27891, 3, 1, 0, 1626.385, 807.8394, 120.3929), +(27891, 3, 1, 1, 1628.291, 807.2866, 120.3352), +(27891, 3, 1, 2, 1630.197, 808.7338, 120.2776), +(27891, 3, 2, 0, 1628.905, 807.6716, 120.2397), +(27891, 3, 2, 1, 1630.320, 809.0569, 120.5691), +(27891, 3, 2, 2, 1630.235, 810.9423, 120.3985), +(27891, 4, 0, 0, 1630.235, 810.9423, 120.3985), +(27891, 4, 0, 1, 1637.624, 809.6946, 119.9439), +(27891, 4, 1, 0, 1633.221, 810.4380, 120.2148), +(27891, 4, 1, 1, 1637.633, 810.0463, 120.0794), +(27891, 4, 1, 2, 1641.046, 814.6545, 119.9439), +(27891, 4, 2, 0, 1638.513, 810.9830, 119.9439), +(27891, 4, 2, 1, 1641.174, 815.0283, 120.1939), +(27891, 4, 2, 2, 1643.836, 822.0737, 119.9439), +(27891, 4, 3, 0, 1642.674, 818.9854, 119.9439), +(27891, 4, 3, 1, 1644.072, 822.2241, 120.1545), +(27891, 4, 3, 2, 1645.969, 828.4629, 119.8652), +(27891, 4, 4, 0, 1644.710, 824.6933, 119.9116), +(27891, 4, 4, 1, 1646.290, 828.7598, 120.0492), +(27891, 4, 4, 2, 1650.040, 837.5098, 119.5492), +(27891, 4, 4, 3, 1650.369, 838.3262, 119.1869), +(27891, 4, 5, 0, 1649.444, 836.2549, 119.2863), +(27891, 4, 5, 1, 1650.179, 837.8422, 119.4052), +(27891, 4, 5, 2, 1650.679, 838.5922, 119.4052), +(27891, 4, 5, 3, 1655.414, 848.9295, 119.0240), +(27891, 4, 6, 0, 1654.576, 847.1667, 119.0511), +(27891, 4, 6, 1, 1655.585, 849.0662, 119.1610), +(27891, 4, 6, 2, 1660.595, 860.4657, 119.2708), +(27891, 4, 7, 0, 1659.596, 858.2399, 119.2232), +(27891, 4, 7, 1, 1660.843, 860.6360, 119.5880), +(27891, 4, 7, 2, 1666.843, 872.8860, 120.0880), +(27891, 4, 7, 3, 1667.591, 874.5321, 119.9527), +(27891, 4, 8, 0, 1666.319, 871.9752, 119.7821), +(27891, 4, 8, 1, 1667.038, 873.1796, 119.9924), +(27891, 4, 8, 2, 1667.788, 874.6796, 120.2424), +(27891, 4, 8, 3, 1673.258, 886.3840, 119.7027), +(27891, 4, 9, 0, 1671.561, 882.8347, 119.7776), +(27891, 4, 9, 1, 1673.602, 886.5914, 119.8583), +(27891, 4, 9, 2, 1679.643, 901.3481, 119.9391), +(27891, 4, 10, 0, 1678.839, 899.4649, 119.9093), +(27891, 4, 10, 1, 1679.969, 901.5616, 120.2496), +(27891, 4, 10, 2, 1683.098, 913.1584, 120.5898), +(27891, 4, 11, 0, 1682.465, 910.9940, 120.4706), +(27891, 4, 11, 1, 1683.396, 913.5186, 120.7802), +(27891, 4, 11, 2, 1685.327, 920.5432, 120.5898), +(27891, 4, 12, 0, 1684.195, 916.7935, 120.5898), +(27891, 4, 12, 1, 1685.654, 920.6906, 120.8133), +(27891, 4, 12, 2, 1689.612, 929.0876, 120.0367), +(27891, 4, 13, 0, 1687.636, 925.1472, 120.2918), +(27891, 4, 13, 1, 1689.939, 929.3484, 120.2842), +(27891, 4, 13, 2, 1693.242, 937.0495, 119.7766), +(27891, 4, 14, 0, 1691.542, 933.3212, 119.8984), +(27891, 4, 14, 1, 1693.478, 937.1957, 119.9730), +(27891, 4, 14, 2, 1697.413, 947.5701, 120.0476), +(27891, 4, 15, 0, 1696.199, 944.5081, 119.9687), +(27891, 4, 15, 1, 1697.549, 947.8503, 120.3882), +(27891, 4, 15, 2, 1700.049, 954.1003, 120.8882), +(27891, 4, 15, 3, 1701.398, 957.1926, 120.8076), +(27891, 4, 16, 0, 1700.771, 955.6768, 120.7328), +(27891, 4, 16, 1, 1701.678, 957.3701, 121.1093), +(27891, 4, 16, 2, 1702.178, 962.1201, 121.6093), +(27891, 4, 16, 3, 1703.085, 968.0635, 121.9858), +(27891, 4, 17, 0, 1702.531, 964.4929, 121.6341), +(27891, 4, 17, 1, 1703.102, 968.4348, 122.2155), +(27891, 4, 17, 2, 1699.173, 977.8768, 122.2970), +(27891, 4, 18, 0, 1699.959, 975.9057, 122.2345), +(27891, 4, 18, 1, 1699.201, 978.1485, 122.5168), +(27891, 4, 18, 2, 1692.942, 991.3913, 122.2992), +(27891, 4, 19, 0, 1693.720, 989.7047, 122.2989), +(27891, 4, 19, 1, 1692.886, 991.5643, 122.7157), +(27891, 4, 19, 2, 1688.386, 1000.314, 122.9657), +(27891, 4, 19, 3, 1687.053, 1002.424, 123.1325), +(27891, 4, 20, 0, 1688.126, 1000.414, 122.9252), +(27891, 4, 20, 1, 1686.979, 1002.745, 123.5141), +(27891, 4, 20, 2, 1685.729, 1008.245, 124.0141), +(27891, 4, 20, 3, 1684.832, 1010.575, 124.1030), +(27891, 4, 21, 0, 1685.289, 1008.901, 123.9621), +(27891, 4, 21, 1, 1684.719, 1010.909, 124.5019), +(27891, 4, 21, 2, 1683.969, 1017.409, 125.0019), +(27891, 4, 21, 3, 1683.149, 1020.417, 125.0417), +(27891, 4, 22, 0, 1683.598, 1017.778, 124.8063), +(27891, 4, 22, 1, 1683.211, 1020.651, 125.4366), +(27891, 4, 22, 2, 1682.461, 1025.651, 125.9366), +(27891, 4, 22, 3, 1681.325, 1035.525, 126.0669), +(27891, 4, 23, 0, 1681.661, 1032.742, 125.9537), +(27891, 4, 23, 1, 1681.260, 1035.870, 126.1730), +(27891, 4, 23, 2, 1680.360, 1054.498, 125.8924), +(27891, 4, 24, 0, 1680.544, 1050.879, 125.9257), +(27891, 4, 24, 1, 1680.535, 1054.749, 125.9715), +(27891, 4, 24, 2, 1680.526, 1066.620, 126.0174), +(27891, 4, 25, 0, 1680.476, 1062.975, 125.9798), +(27891, 4, 25, 1, 1680.652, 1066.777, 126.1676), +(27891, 4, 25, 2, 1681.828, 1078.079, 126.3554), +(27891, 4, 26, 0, 1681.482, 1075.029, 126.2654), +(27891, 4, 26, 1, 1682.196, 1078.414, 126.6603), +(27891, 4, 26, 2, 1683.446, 1087.914, 127.1603), +(27891, 4, 26, 3, 1683.910, 1090.798, 127.0551), +(27891, 4, 27, 0, 1683.277, 1086.956, 126.8661), +(27891, 4, 27, 1, 1683.617, 1088.229, 127.3948), +(27891, 4, 27, 2, 1684.117, 1090.979, 127.3948), +(27891, 4, 27, 3, 1687.117, 1094.729, 127.8948), +(27891, 4, 27, 4, 1688.957, 1097.002, 128.4234), +(27891, 4, 28, 0, 1687.148, 1094.779, 127.8260), +(27891, 4, 28, 1, 1689.088, 1097.265, 128.7533), +(27891, 4, 28, 2, 1692.588, 1099.265, 129.2533), +(27891, 4, 28, 3, 1694.088, 1100.265, 129.7533), +(27891, 4, 28, 4, 1697.338, 1102.265, 130.5033), +(27891, 4, 28, 5, 1699.528, 1103.752, 130.6805), +(27891, 4, 29, 0, 1696.527, 1101.835, 130.2339), +(27891, 4, 29, 1, 1697.750, 1102.589, 130.8327), +(27891, 4, 29, 2, 1699.750, 1104.089, 131.0827), +(27891, 4, 29, 3, 1702.500, 1105.589, 132.0827), +(27891, 4, 29, 4, 1705.500, 1107.339, 132.5827), +(27891, 4, 29, 5, 1707.250, 1108.339, 133.0827), +(27891, 4, 29, 6, 1710.000, 1109.839, 133.8327), +(27891, 4, 29, 7, 1710.973, 1110.343, 133.9314), +(27891, 4, 30, 0, 1709.266, 1109.362, 133.3899), +(27891, 4, 30, 1, 1710.148, 1109.964, 133.9583), +(27891, 4, 30, 2, 1711.148, 1110.714, 134.4583), +(27891, 4, 30, 3, 1713.148, 1111.464, 134.9583), +(27891, 4, 30, 4, 1714.898, 1112.214, 135.4583), +(27891, 4, 30, 5, 1717.398, 1113.464, 135.9583), +(27891, 4, 30, 6, 1719.148, 1114.214, 136.7083), +(27891, 4, 30, 7, 1720.898, 1114.964, 137.2083), +(27891, 4, 30, 8, 1723.031, 1116.066, 137.5268), +(27891, 4, 31, 0, 1719.710, 1114.490, 136.6331), +(27891, 4, 31, 1, 1721.044, 1115.318, 137.4891), +(27891, 4, 31, 2, 1723.294, 1116.318, 137.9891), +(27891, 4, 31, 3, 1725.794, 1117.818, 138.7391), +(27891, 4, 31, 4, 1727.294, 1118.568, 138.9891), +(27891, 4, 31, 5, 1730.044, 1120.068, 139.7391), +(27891, 4, 31, 6, 1731.544, 1121.068, 140.2391), +(27891, 4, 31, 7, 1733.379, 1122.147, 140.8451), +(27892, 1, 0, 0, 1601.366, 805.0612, 123.7103), +(27892, 1, 0, 1, 1600.004, 806.3074, 123.8376), +(27892, 1, 0, 2, 1600.781, 805.6780, 123.8376), +(27892, 1, 0, 3, 1604.224, 802.0498, 123.0886), +(27892, 1, 0, 4, 1606.311, 799.8455, 122.8354), +(27892, 1, 0, 5, 1606.311, 799.8455, 122.8354), +(27892, 1, 1, 0, 1604.806, 801.4352, 123.0180), +(27892, 1, 1, 1, 1606.652, 799.8110, 122.9106), +(27892, 1, 1, 2, 1609.497, 797.1868, 122.3031), +(27892, 1, 2, 0, 1606.937, 799.3236, 122.7309), +(27892, 1, 2, 1, 1609.646, 797.1644, 122.5922), +(27892, 1, 2, 2, 1612.855, 794.5053, 121.9534), +(27892, 1, 3, 0, 1611.604, 795.5046, 122.0837), +(27892, 1, 3, 1, 1613.088, 794.5215, 122.1889), +(27892, 1, 3, 2, 1617.072, 793.0383, 121.2942), +(27892, 1, 4, 0, 1614.179, 794.0447, 121.7464), +(27892, 1, 4, 1, 1617.402, 793.2491, 121.4646), +(27892, 1, 4, 2, 1621.126, 794.4536, 120.6827), +(27892, 1, 5, 0, 1616.998, 793.0639, 121.3057), +(27892, 1, 5, 1, 1621.170, 794.7802, 120.8156), +(27892, 1, 5, 2, 1624.841, 798.4964, 120.3256), +(27892, 1, 6, 0, 1622.230, 795.6549, 120.5766), +(27892, 1, 6, 1, 1624.831, 798.3754, 120.3729), +(27892, 1, 6, 2, 1626.933, 801.0958, 120.1692), +(27892, 1, 7, 0, 1624.277, 797.8823, 120.3798), +(27892, 1, 7, 1, 1624.999, 798.7412, 120.5467), +(27892, 1, 7, 2, 1626.999, 801.2412, 120.2967), +(27892, 1, 7, 3, 1628.722, 805.1000, 120.2136), +(27892, 2, 0, 0, 1628.722, 805.1000, 120.2136), +(27892, 2, 0, 1, 1629.004, 810.1380, 120.4927), +(27884, 1, 0, 0, 1639.946, 725.7776, 113.5619), +(27884, 1, 0, 1, 1637.886, 725.7106, 113.8119), +(27884, 1, 0, 2, 1636.136, 725.7106, 113.8119), +(27884, 1, 0, 3, 1635.827, 723.1434, 113.5619), +(27884, 2, 0, 0, 1635.827, 723.0861, 113.6452), +(27884, 2, 0, 1, 1636.886, 725.6819, 113.8536), +(27884, 2, 0, 2, 1639.946, 725.7776, 113.5619), +(27885, 70, 0, 0, 1602.132, 743.8040, 114.7303), +(27885, 70, 0, 1, 1605.358, 744.0162, 114.9277), +(27885, 70, 0, 2, 1611.608, 744.7662, 114.9277), +(27885, 70, 0, 3, 1612.858, 744.7662, 114.9277), +(27885, 70, 0, 4, 1614.108, 744.2662, 114.4277), +(27885, 70, 0, 5, 1614.583, 743.2285, 114.1251), +(27885, 70, 1, 0, 1611.180, 744.6971, 114.7383), +(27885, 70, 1, 1, 1613.148, 744.7632, 114.8577), +(27885, 70, 1, 2, 1614.398, 744.2632, 114.3577), +(27885, 70, 1, 3, 1614.648, 743.2632, 114.3577), +(27885, 70, 1, 4, 1617.615, 737.8293, 113.4772), +(27885, 70, 2, 0, 1616.893, 739.1165, 113.6317), +(27885, 70, 2, 1, 1617.805, 737.9444, 113.7083), +(27885, 70, 2, 2, 1619.805, 734.4444, 112.9583), +(27885, 70, 2, 3, 1622.555, 729.4444, 112.7083), +(27885, 70, 2, 4, 1623.717, 727.2723, 112.2850), +(27885, 70, 3, 0, 1622.905, 728.6694, 112.3143), +(27885, 70, 3, 1, 1623.866, 727.3546, 112.4240), +(27885, 70, 3, 2, 1628.827, 726.0397, 112.5336), +(27885, 70, 4, 0, 1625.025, 726.9567, 112.3486), +(27885, 70, 4, 1, 1629.196, 726.4058, 112.9477), +(27885, 70, 4, 2, 1631.196, 726.6558, 112.9477), +(27885, 70, 4, 3, 1632.196, 726.6558, 113.4477), +(27885, 70, 4, 4, 1633.366, 726.3549, 113.5467), +(27885, 71, 0, 0, 1633.366, 726.3549, 113.5467), +(27885, 71, 0, 1, 1632.387, 726.9871, 113.6156), +(27885, 71, 0, 2, 1630.887, 727.7371, 113.1156), +(27885, 71, 0, 3, 1631.387, 727.9871, 113.3656), +(27885, 71, 0, 4, 1630.887, 727.7371, 113.1156), +(27885, 71, 0, 5, 1629.887, 728.2371, 113.1156), +(27885, 71, 0, 6, 1631.387, 729.4871, 113.8656), +(27885, 71, 0, 7, 1631.637, 730.4871, 113.8656), +(27885, 71, 0, 8, 1630.407, 730.1193, 113.6845), +(27885, 72, 0, 0, 1630.407, 730.1193, 113.6845), +(27885, 72, 0, 1, 1630.917, 730.2725, 113.9209), +(27885, 72, 0, 2, 1629.667, 728.5225, 112.9209), +(27885, 72, 0, 3, 1624.917, 727.0225, 112.4209), +(27885, 72, 0, 4, 1620.917, 725.0225, 111.9209), +(27885, 72, 0, 5, 1618.417, 722.0225, 111.4209), +(27885, 72, 0, 6, 1616.167, 718.7725, 110.6709), +(27885, 72, 0, 7, 1613.928, 715.9256, 109.6573), +(27885, 72, 1, 0, 1623.199, 726.2747, 112.1131), +(27885, 72, 1, 1, 1620.688, 725.0859, 112.0865), +(27885, 72, 1, 2, 1618.188, 721.8359, 111.0865), +(27885, 72, 1, 3, 1615.938, 718.5859, 110.3365), +(27885, 72, 1, 4, 1614.188, 715.8359, 109.8365), +(27885, 72, 1, 5, 1612.938, 713.3359, 109.5865), +(27885, 72, 1, 6, 1611.188, 708.8359, 109.0865), +(27885, 72, 1, 7, 1609.688, 705.0859, 108.3365), +(27885, 72, 1, 8, 1608.688, 702.3359, 107.8365), +(27885, 72, 1, 9, 1607.678, 700.3972, 107.0600), +(27885, 72, 2, 0, 1612.112, 711.4092, 108.9662), +(27885, 72, 2, 1, 1611.035, 708.5569, 108.6749), +(27885, 72, 2, 2, 1609.535, 704.8069, 108.1749), +(27885, 72, 2, 3, 1608.285, 702.0569, 107.4249), +(27885, 72, 2, 4, 1607.785, 700.3069, 107.1749), +(27885, 72, 2, 5, 1606.535, 696.8069, 106.9249), +(27885, 72, 2, 6, 1604.285, 691.3069, 106.1749), +(27885, 72, 2, 7, 1601.958, 685.7047, 105.3837), +(27885, 72, 3, 0, 1605.050, 693.6397, 106.1223), +(27885, 72, 3, 1, 1604.178, 691.2042, 105.9571), +(27885, 72, 3, 2, 1601.928, 685.7042, 105.4571), +(27885, 72, 3, 3, 1599.928, 680.4542, 104.9571), +(27885, 72, 3, 4, 1597.928, 674.7042, 104.7071), +(27885, 72, 3, 5, 1596.307, 671.2687, 103.7920), +(27885, 72, 4, 0, 1598.042, 675.6906, 104.3130), +(27885, 72, 4, 1, 1597.688, 674.4025, 104.3032), +(27885, 72, 4, 2, 1596.188, 671.1525, 104.0532), +(27885, 72, 4, 3, 1594.188, 665.9025, 103.3032), +(27885, 72, 4, 4, 1592.188, 661.4025, 103.0532), +(27885, 72, 4, 5, 1590.834, 658.6144, 102.2933), +(27885, 72, 5, 0, 1594.380, 666.8188, 103.3112), +(27885, 72, 5, 1, 1593.886, 665.8480, 103.3166), +(27885, 72, 5, 2, 1591.886, 661.0980, 102.8166), +(27885, 72, 5, 3, 1590.886, 658.5980, 102.5666), +(27885, 72, 5, 4, 1588.636, 653.3480, 102.0666), +(27885, 72, 5, 5, 1586.136, 647.8480, 101.5666), +(27885, 72, 5, 6, 1583.393, 641.8773, 100.8220), +(27885, 72, 6, 0, 1586.642, 649.1833, 101.2471), +(27885, 72, 6, 1, 1585.855, 647.6183, 101.1272), +(27885, 72, 6, 2, 1583.355, 641.8683, 100.8772), +(27885, 72, 6, 3, 1578.605, 629.1183, 100.6272), +(27885, 72, 6, 4, 1577.569, 626.5533, 100.0073), +(27885, 72, 7, 0, 1579.374, 631.3001, 100.2685), +(27885, 72, 7, 1, 1578.524, 628.7549, 100.2654), +(27885, 72, 7, 2, 1577.524, 626.5049, 100.2654), +(27885, 72, 7, 3, 1577.024, 625.0049, 100.0154), +(27885, 72, 7, 4, 1575.274, 620.5049, 100.0154), +(27885, 72, 7, 5, 1575.024, 619.7549, 100.0154), +(27885, 72, 7, 6, 1574.774, 619.0049, 100.0154), +(27885, 72, 7, 7, 1572.675, 613.7097, 99.76225), +(27885, 72, 8, 0, 1575.843, 622.2479, 99.65166), +(27885, 72, 8, 1, 1574.988, 620.0990, 99.71298), +(27885, 72, 8, 2, 1574.738, 619.5990, 99.96298), +(27885, 72, 8, 3, 1574.488, 618.8490, 99.96298), +(27885, 72, 8, 4, 1572.738, 613.8490, 99.96298), +(27885, 72, 8, 5, 1569.633, 609.4501, 99.77429), +(27885, 72, 9, 0, 1572.403, 613.3293, 99.76333), +(27885, 72, 9, 1, 1569.547, 609.7275, 100.0184), +(27885, 72, 9, 2, 1565.190, 611.6257, 99.77345), +(27885, 1, 0, 0, 1603.050, 747.9994, 114.7605), +(27885, 1, 0, 1, 1604.049, 750.7614, 114.8151), +(27885, 1, 0, 2, 1603.475, 749.9422, 114.8151), +(27885, 1, 0, 3, 1602.821, 746.9496, 114.7310), +(27885, 1, 0, 4, 1602.132, 743.8040, 114.7303), +(27885, 1, 0, 5, 1602.132, 743.8040, 114.7303), +(27885, 2, 0, 0, 1602.132, 743.8040, 114.7303), +(27885, 2, 0, 1, 1602.813, 747.0300, 114.9824), +(27885, 2, 0, 2, 1603.493, 749.7560, 114.7345), +(27885, 3, 0, 0, 1603.493, 749.7560, 114.7345), +(27885, 3, 0, 1, 1602.813, 747.0300, 114.9824), +(27885, 3, 0, 2, 1602.132, 743.8040, 114.7303), +(27877, 1, 0, 0, 1561.571, 670.3199, 102.1444), +(27877, 1, 0, 1, 1565.856, 668.4106, 102.1827), +(27877, 1, 1, 0, 1564.340, 669.0860, 102.1692), +(27877, 1, 1, 1, 1566.094, 668.7725, 102.5262), +(27877, 1, 1, 2, 1566.594, 668.0225, 102.5262), +(27877, 1, 1, 3, 1568.348, 669.4590, 102.8832), +(27877, 2, 0, 0, 1568.348, 669.4590, 102.8832), +(27877, 2, 0, 1, 1570.132, 667.8282, 102.5401), +(27877, 2, 0, 2, 1570.132, 666.5782, 102.5401), +(27877, 2, 0, 3, 1573.416, 658.6976, 102.1970), +(27877, 2, 1, 0, 1572.105, 661.5780, 102.1970), +(27877, 2, 1, 1, 1573.661, 658.8035, 102.3220), +(27877, 2, 1, 2, 1579.911, 652.5535, 101.8220), +(27877, 2, 1, 3, 1580.717, 651.5290, 101.4470), +(27877, 2, 2, 0, 1577.634, 654.5538, 101.7866), +(27877, 2, 2, 1, 1580.112, 652.4617, 101.8577), +(27877, 2, 2, 2, 1580.862, 651.7117, 101.6077), +(27877, 2, 2, 3, 1588.590, 650.3696, 101.4288), +(27877, 2, 3, 0, 1585.335, 650.8489, 101.4363), +(27877, 2, 3, 1, 1588.816, 650.5333, 101.8634), +(27877, 2, 3, 2, 1591.066, 656.0333, 102.3634), +(27877, 2, 3, 3, 1593.566, 661.2833, 102.8634), +(27877, 2, 3, 4, 1593.797, 661.7178, 102.7905), +(27877, 2, 4, 0, 1592.303, 658.4574, 102.3747), +(27877, 2, 4, 1, 1593.883, 661.4075, 103.1464), +(27877, 2, 4, 2, 1594.133, 661.9075, 103.1464), +(27877, 2, 4, 3, 1596.383, 667.1575, 103.6464), +(27877, 2, 4, 4, 1598.633, 671.6575, 104.1464), +(27877, 2, 4, 5, 1599.962, 674.3575, 104.4181), +(27877, 2, 5, 0, 1598.789, 671.9459, 104.1030), +(27877, 2, 5, 1, 1600.133, 674.5853, 104.7467), +(27877, 2, 5, 2, 1601.883, 678.0853, 105.2467), +(27877, 2, 5, 3, 1604.383, 683.3353, 105.7467), +(27877, 2, 5, 4, 1606.477, 687.7247, 105.8904), +(27877, 2, 6, 0, 1605.371, 685.4503, 105.7326), +(27877, 2, 6, 1, 1606.650, 687.9642, 106.2105), +(27877, 2, 6, 2, 1608.900, 693.2142, 106.7105), +(27877, 2, 6, 3, 1610.900, 697.9642, 107.4605), +(27877, 2, 6, 4, 1611.928, 700.4782, 107.6884), +(27903, 1, 0, 0, 1588.942, 597.9799, 99.37262), +(27903, 1, 0, 1, 1589.883, 608.7765, 99.63657), +(27903, 1, 1, 0, 1589.730, 607.0264, 99.59379), +(27903, 1, 1, 1, 1589.919, 609.1281, 99.74018), +(27903, 1, 1, 2, 1588.607, 616.2296, 99.88657), +(27903, 1, 2, 0, 1589.159, 613.0059, 99.77844), +(27903, 1, 2, 1, 1588.610, 616.4816, 100.1237), +(27903, 1, 2, 2, 1586.060, 619.9573, 99.96897), +(27903, 1, 3, 0, 1587.032, 618.5356, 99.93755), +(27903, 1, 3, 1, 1586.021, 620.1125, 100.2397), +(27903, 1, 3, 2, 1580.011, 623.6895, 100.0418), +(27903, 2, 0, 0, 1580.011, 623.6895, 100.0418), +(27903, 2, 0, 1, 1576.298, 620.4587, 99.65415), +(27903, 3, 0, 0, 1576.298, 620.4587, 99.65415), +(27903, 3, 0, 1, 1579.411, 622.9457, 99.83286), +(27903, 3, 0, 2, 1583.411, 622.9457, 100.0829), +(27903, 3, 0, 3, 1586.523, 620.9327, 100.0116), +(27903, 3, 1, 0, 1584.299, 622.3154, 100.0116), +(27903, 3, 1, 1, 1586.711, 620.8452, 100.1366), +(27903, 3, 1, 2, 1589.123, 612.8749, 99.76157), +(27903, 3, 2, 0, 1588.503, 614.7979, 99.82124), +(27903, 3, 2, 1, 1589.286, 612.9751, 99.91640), +(27903, 3, 2, 2, 1591.070, 601.6522, 99.51157), +(27903, 3, 3, 0, 1590.331, 605.9120, 99.60647), +(27903, 3, 3, 1, 1591.018, 601.7597, 99.71784), +(27903, 3, 3, 2, 1590.768, 600.0097, 99.71784), +(27903, 3, 3, 3, 1590.768, 598.2597, 99.46784), +(27903, 3, 3, 4, 1591.268, 596.0097, 99.46784), +(27903, 3, 3, 5, 1591.268, 595.0097, 99.46784), +(27903, 3, 3, 6, 1591.268, 594.0097, 99.46784), +(27903, 3, 3, 7, 1591.268, 593.0097, 99.46784), +(27903, 3, 3, 8, 1591.705, 591.6074, 99.32922); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_25_02_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_25_02_world.sql new file mode 100644 index 00000000000..7f25e5c32b7 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_25_02_world.sql @@ -0,0 +1,10 @@ +-- +SET @DAY = 86400; +SET @CGUID = 111214; -- creature GUIDs (4 creature); +DELETE FROM `creature` WHERE `guid` BETWEEN 700300 AND 700303; +DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+00 AND @CGUID+03; +INSERT INTO `creature` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`position_x`,`position_y`,`position_z`,`orientation`,`spawntimesecs`,`spawndist`,`movementtype`) VALUES +(@CGUID+00, 27915, 595, 3, 1, 1813.298, 1283.578, 142.3258, 3.878161, @DAY, 0, 0), +(@CGUID+01, 28340, 595, 3, 1, 2398.715, 1207.334, 134.1223, 5.270895, @DAY, 0, 0), +(@CGUID+02, 28340, 595, 3, 1, 2401.265, 1202.789, 134.1039, 1.466077, @DAY, 0, 0), +(@CGUID+03, 28341, 595, 3, 1, 2402.654, 1205.786, 134.1223, 2.897247, @DAY, 0, 0); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_26_00_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_26_00_world.sql new file mode 100644 index 00000000000..15169ab85c2 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_26_00_world.sql @@ -0,0 +1,4 @@ +-- +DELETE FROM `creature_text` WHERE `CreatureID`=26532 AND `GroupID`=4; +DELETE FROM `spawn_group` WHERE `groupId`=52; +INSERT INTO `spawn_group` (`groupId`,`spawnType`,`spawnId`) VALUES (52, 0, 111214); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_26_01_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_26_01_world.sql new file mode 100644 index 00000000000..12a8500acf4 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_26_01_world.sql @@ -0,0 +1,64 @@ +-- +DELETE FROM `creature_addon` WHERE `guid`=106959; +UPDATE `creature_template_addon` SET `path_id`=272550, `bytes2`=1 WHERE `entry`=27255; +UPDATE `creature` SET `MovementType`=2 WHERE `id`=27255; + +DELETE FROM `waypoint_data` WHERE `id`=272550; +INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`) VALUES +(272550, 1, 2846.652, -18.03868, 0.5942773), +(272550, 2, 2859.129, -6.210721, 0.8772362), +(272550, 3, 2868.413, -4.458008, 0.8990343), +(272550, 4, 2881.048, 7.002713, 0.6996365), +(272550, 5, 2881.712, 14.12375, 0.3246365), +(272550, 6, 2883.564, 38.37462, 1.166026), +(272550, 7, 2886.205, 52.10439, 0.9160259), +(272550, 8, 2885.475, 55.2174, 0.9160259), +(272550, 9, 2883.057, 60.77968, 0.5410259), +(272550, 10, 2880.73, 64.77002, 0.5410259), +(272550, 11, 2881.537, 74.34549, 1.077996), +(272550, 12, 2882.853, 82.22849, 1.327996), +(272550, 13, 2871.807, 104.8361, 1.382215), +(272550, 14, 2868.9761, 108.4443, 1.2516), +(272550, 15, 2833.0100, 123.0882, 0.5406), +(272550, 16, 2814.2317, 120.1411, 0.4954), +(272550, 17, 2787.9084, 123.6816, 0.8508), +(272550, 18, 2758.4324, 109.4119, 2.1920), +(272550, 19, 2751.1382, 98.4347, 2.3503), +(272550, 20, 2751.3394, 82.3503, 3.3260), +(272550, 21, 2746.8130, 76.1211, 3.5752), +(272550, 22, 2751.3394, 82.3503, 3.3260), +(272550, 23, 2751.1382, 98.4347, 2.3503), +(272550, 24, 2758.4324, 109.4119, 2.1920), +(272550, 25, 2787.9084, 123.6816, 0.8508), +(272550, 26, 2814.2317, 120.1411, 0.4954), +(272550, 27, 2833.0100, 123.0882, 0.5406), +(272550, 28, 2868.9761, 108.4443, 1.2516), +(272550, 29, 2877.5859, 91.7811, 1.0588), +(272550, 30, 2882.8047, 77.9702, 1.1827), +(272550, 31, 2880.1309, 66.4228, 0.5722), +(272550, 32, 2885.8425, 53.4985, 0.8828), +(272550, 33, 2886.1099, 44.9907, 0.8721), +(272550, 34, 2881.2725, 31.9808, 1.2111), +(272550, 35, 2881.7593, 10.6438, 0.4511), +(272550, 36, 2879.105, 5.936632, 0.6996365), +(272550, 37, 2867.718, -4.473795, 0.9263781), +(272550, 38, 2858.986, -6.764106, 0.8442773), +(272550, 39, 2846.623, -17.78228, 0.5942773), +(272550, 40, 2828.276, -20.16325, 0.5493096), +(272550, 41, 2814.309, -15.23454, 0.5493096), +(272550, 42, 2802.623, -14.91173, 0.6743096), +(272550, 43, 2779.8772, -18.0462, 0.6422), +(272550, 44, 2763.3828, -10.1257, 1.3932), +(272550, 45, 2743.0781, -18.0336, 1.5010), +(272550, 46, 2731.222, -15.17006, 2.059937), +(272550, 47, 2717.93, -8.302789, 1.318791), +(272550, 48, 2719.173, -0.079698, 3.292424), +(272550, 49, 2718.575, -7.877007, 1.420842), +(272550, 50, 2730.189, -15.23438, 1.811467), +(272550, 51, 2743.433, -17.34923, 1.474984), +(272550, 52, 2761.801, -12.24403, 1.580453), +(272550, 53, 2772.806, -15.62581, 1.061682), +(272550, 54, 2782.825, -16.96083, 0.4842899), +(272550, 55, 2803.748, -14.84977, 0.6743096), +(272550, 56, 2813.47, -15.30463, 0.5493096), +(272550, 57, 2827.618, -20.49647, 0.5493096); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_26_02_world_335.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_26_02_world_335.sql new file mode 100644 index 00000000000..8885f92153b --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_26_02_world_335.sql @@ -0,0 +1,5 @@ +-- +UPDATE `player_classlevelstats` SET `basehp` = 97 WHERE `class` = 1 AND `level` = 10; +UPDATE `player_classlevelstats` SET `basehp` = 103 WHERE `class` = 1 AND `level` = 11; +UPDATE `player_classlevelstats` SET `basehp` = 129 WHERE `class` = 2 AND `level` = 14; +UPDATE `player_classlevelstats` SET `basehp` = 135 WHERE `class` = 2 AND `level` = 15; diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_26_03_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_26_03_world.sql new file mode 100644 index 00000000000..4a71d73beba --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_26_03_world.sql @@ -0,0 +1,8 @@ +-- +DELETE FROM `creature` WHERE `guid`=111168; +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`, `VerifiedBuild`) VALUES +(111168, 28656, 595, 4100, 0, 3, 1, 0, 0, 1810.875, 1285.035, 142.4917, 4.485496, 7200, 0, 0, 0, 0, 0, 0, 0, 0, 15595); -- 28656 (Area: 0 - Difficulty: 0) +DELETE FROM `gameobject` WHERE `guid`=9223; +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 +(9223, 190117, 595, 4100, 0, 3, 1, 1813.312, 1283.587, 142.2434, 4.81711, 0, 0, -0.6691303, 0.743145, 7200, 255, 1, 15595); -- 190117 (Area: 0 - Difficulty: 0) +UPDATE `creature` SET `equipment_id`=1 WHERE `id`=27915; diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_26_04_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_26_04_world.sql new file mode 100644 index 00000000000..8f2072212be --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_26_04_world.sql @@ -0,0 +1,30 @@ +-- +DELETE FROM `gameobject` WHERE `id`=186565; +DELETE FROM `spawn_group` WHERE `spawnId` IN (60391, 60392, 60393, 60394, 60395, 60396, 60397, 60398, 60399, 60400, 60401, 60391, 60392, 60393, 60394, 60395, 60396, 60397, 60398, 60399, 60400, 60401) AND `spawnType`=1; +UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=24077; +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (24077, 2407700) AND `source_type` IN (0, 9); +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `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 +(24077, 0, 0, 0, 11, 0, 100, 0, 0, 0, 0, 0, 0, 50, 186565, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Impaled Valgarde Scout - On Repawn - Summon Ceremonial Dragonflayer Harpoon"), +(24077, 0, 1, 0, 8, 0, 100, 1, 42968, 0, 0, 0, 0, 80, 2407700, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Impaled Valgarde Scout - On spell hit - Start Script"), +(2407700, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Impaled Valgarde Scout - On Script - Talk 0"), +(2407700, 9, 1, 0, 0, 0, 100, 0, 2000, 2000, 0, 0, 0, 91, 255, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Impaled Valgarde Scout - On Script - Remove Bytes 255"), +(2407700, 9, 2, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 90, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Impaled Valgarde Scout - On Script - Set Bytes 1"), +(2407700, 9, 3, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Impaled Valgarde Scout - On Script - Talk 1"), +(2407700, 9, 4, 0, 0, 0, 100, 0, 4000, 4000, 0, 0, 0, 37, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Impaled Valgarde Scout - On Script - Kill Self"), +(2407700, 9, 5, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 41, 5000, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Impaled Valgarde Scout - On Script - Despawn"); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 13 AND `SourceEntry` = 42968; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(13, 1, 42968, 0, 31, 3, 24077, 0, 0, '', "Removing Dragonflayer Harpoon"); + +DELETE FROM `creature_text` WHERE `CreatureID`=24077; +INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES +(24077, 0, 0, "%s groans.", 16, 0, 100, 0, 0, 0, 22743, 0, "Impaled Valgarde Scout"), +(24077, 0, 1, "%s screams in agony as the harpoon is removed.", 16, 0, 100, 0, 0, 0, 22744, 0, "Impaled Valgarde Scout"), +(24077, 0, 2, "%s whimpers.", 16, 0, 100, 0, 0, 0, 22745, 0, "Impaled Valgarde Scout"), +(24077, 1, 0, "Not... no... Our people... Wyrmskull... some live...", 12, 0, 100, 0, 0, 0, 22747, 0, "Impaled Valgarde Scout"), +(24077, 1, 1, "My injuries are too great. I won't make it... Our citizenry held in cages... ritual...", 12, 0, 100, 0, 0, 0, 22748, 0, "Impaled Valgarde Scout"), +(24077, 1, 2, "I'm done for... too much blood lost... Forget about me, tell Keller... People still alive inside...", 12, 0, 100, 0, 0, 0, 22749, 0, "Impaled Valgarde Scout"), +(24077, 1, 3, "My family must know... I... for them... always for them...", 12, 0, 100, 0, 0, 0, 22751, 0, "Impaled Valgarde Scout"), +(24077, 1, 4, "They left us here impaled as a warning to the others... Several still alive... prisoners of...", 12, 0, 100, 0, 0, 0, 22751, 0, "Impaled Valgarde Scout"), +(24077, 1, 5, "Don't let my death go unavenged, stranger... give... them... hell...", 12, 0, 100, 0, 0, 0, 22752, 0, "Impaled Valgarde Scout"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_26_05_world_335.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_26_05_world_335.sql new file mode 100644 index 00000000000..14693e1753d --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_26_05_world_335.sql @@ -0,0 +1,81 @@ +-- Servant of Razelikh +UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry` IN (7668,7669,7670,7671); +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (7668,7669,7670,7671) AND `source_type`=0; +DELETE FROM `smart_scripts` WHERE `entryorguid`=766800 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 +(7668,0,0,0,25,0,100,0,0,0,0,0,42,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Servant of Razelikh - On Reset - Set Invincibility at 1 HP"), +(7668,0,1,0,2,0,100,1,0,5,0,0,11,10794,0,0,0,0,0,1,0,0,0,0,0,0,0,"Servant of Razelikh - Between 0-5% Health - Cast 'Spirit Shock' (No Repeat)"), +(7668,0,2,0,2,0,100,1,0,5,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Servant of Razelikh - Between 0-5% Health - Say Line 0 (No Repeat)"), +(7668,0,3,0,2,0,100,1,0,5,0,0,106,16,0,0,0,0,0,15,141812,10,0,0,0,0,0,"Servant of Razelikh - Between 0-5% Health - Remove Gameobject Flag 'Not Selectable' (Stone of Binding)"), +(7668,0,4,0,8,0,100,1,10805,0,0,0,80,766800,2,0,0,0,0,1,0,0,0,0,0,0,0,"Servant of Razelikh - On spell hit - Run Script"), +(7669,0,0,0,25,0,100,0,0,0,0,0,42,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Servant of Grol - On Reset - Set Invincibility at 1 HP"), +(7669,0,1,0,2,0,100,1,0,5,0,0,11,10794,0,0,0,0,0,1,0,0,0,0,0,0,0,"Servant of Grol - Between 0-5% Health - Cast 'Spirit Shock' (No Repeat)"), +(7669,0,2,0,2,0,100,1,0,5,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Servant of Grol - Between 0-5% Health - Say Line 0 (No Repeat)"), +(7669,0,3,0,2,0,100,1,0,5,0,0,106,16,0,0,0,0,0,15,141857,10,0,0,0,0,0,"Servant of Grol - Between 0-5% Health - Remove Gameobject Flag 'Not Selectable' (Stone of Binding)"), +(7669,0,4,0,8,0,100,1,10834,0,0,0,80,766800,2,0,0,0,0,1,0,0,0,0,0,0,0,"Servant of Grol - On spell hit - Run Script"), +(7670,0,0,0,25,0,100,0,0,0,0,0,42,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Servant of Allistarj - On Reset - Set Invincibility at 1 HP"), +(7670,0,1,0,2,0,100,1,0,5,0,0,11,10794,0,0,0,0,0,1,0,0,0,0,0,0,0,"Servant of Allistarj - Between 0-5% Health - Cast 'Spirit Shock' (No Repeat)"), +(7670,0,2,0,2,0,100,1,0,5,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Servant of Allistarj - Between 0-5% Health - Say Line 0 (No Repeat)"), +(7670,0,3,0,2,0,100,1,0,5,0,0,106,16,0,0,0,0,0,15,141858,10,0,0,0,0,0,"Servant of Allistarj - Between 0-5% Health - Remove Gameobject Flag 'Not Selectable' (Stone of Binding)"), +(7670,0,4,0,8,0,100,1,10835,0,0,0,80,766800,2,0,0,0,0,1,0,0,0,0,0,0,0,"Servant of Allistarj - On spell hit - Run Script"), +(7671,0,0,0,25,0,100,0,0,0,0,0,42,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Servant of Sevine - On Reset - Set Invincibility at 1 HP"), +(7671,0,1,0,2,0,100,1,0,5,0,0,11,10794,0,0,0,0,0,1,0,0,0,0,0,0,0,"Servant of Sevine - Between 0-5% Health - Cast 'Spirit Shock' (No Repeat)"), +(7671,0,2,0,2,0,100,1,0,5,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Servant of Sevine - Between 0-5% Health - Say Line 0 (No Repeat)"), +(7671,0,3,0,2,0,100,1,0,5,0,0,106,16,0,0,0,0,0,15,141859,10,0,0,0,0,0,"Servant of Sevine - Between 0-5% Health - Remove Gameobject Flag 'Not Selectable' (Stone of Binding)"), +(7671,0,4,0,8,0,100,1,10836,0,0,0,80,766800,2,0,0,0,0,1,0,0,0,0,0,0,0,"Servant of Sevine - On spell hit - Run Script"), +(766800,9,0,0,0,0,100,0,3000,3000,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Servant of Razelikh - On Spellhit 'Shackle Shatter' - Say Line 2"), +(766800,9,1,0,0,0,100,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Servant of Razelikh - On Spellhit 'Shackle Shatter' - Say Line 1"), +(766800,9,2,0,0,0,100,0,0,0,0,0,37,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Servant of Razelikh - On Spellhit 'Shackle Shatter' - Kill Self"); + +-- Stone of Binding +UPDATE `gameobject_template` SET `AIName`="SmartGameObjectAI" WHERE `entry` IN (141812,141857,141858,141859); +UPDATE `gameobject_template_addon` SET `flags`=20 WHERE `entry` IN (141812,141857,141858,141859); +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (141812,141857,141858,141859) AND `source_type`=1; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(141812,1,0,0,70,0,100,0,2,0,0,0,11,10805,0,0,0,0,0,19,7668,10,0,0,0,0,0,"Stone of Binding - On Gameobject State Changed - Cast 'Shackle Shatter'"), +(141857,1,0,0,70,0,100,0,2,0,0,0,11,10834,0,0,0,0,0,19,7669,10,0,0,0,0,0,"Stone of Binding - On Gameobject State Changed - Cast 'Shackle Shatter'"), +(141858,1,0,0,70,0,100,0,2,0,0,0,11,10835,0,0,0,0,0,19,7670,10,0,0,0,0,0,"Stone of Binding - On Gameobject State Changed - Cast 'Shackle Shatter'"), +(141859,1,0,0,70,0,100,0,2,0,0,0,11,10836,0,0,0,0,0,19,7671,10,0,0,0,0,0,"Stone of Binding - On Gameobject State Changed - Cast 'Shackle Shatter'"); + +-- Spell "Shackle Shatter" +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry` IN (10805,10834,10835,10836); +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(13,3,10805,0,0,31,0,3,7668,0,0,0,0,"","Spell 'Shackle Shatter' can only hit Servant of Razelikh"), +(13,3,10834,0,1,31,0,3,7669,0,0,0,0,"","Spell 'Shackle Shatter' can only hit Servant of Grol"), +(13,3,10835,0,2,31,0,3,7670,0,0,0,0,"","Spell 'Shackle Shatter' can only hit Servant of Allistarj"), +(13,3,10836,0,2,31,0,3,7671,0,0,0,0,"","Spell 'Shackle Shatter' can only hit Servant of Sevine"); + +DELETE FROM `creature_text` WHERE `CreatureID` IN (7668,7669,7670,7671); +INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES +(7668,0,0,"%s's physical form is weakened. You notice the Stone of Binding near the creature is glowing! Strike now!",41,0,100,0,0,0,3642,0,"Servant of Razelikh"), +(7668,1,0,"FREEEEEEEEEEDDOOOOMM!",14,0,100,0,0,0,3641,0,"Servant of Razelikh"), +(7668,1,1,"Finally, the agony ceases....",12,0,100,0,0,0,3681,0,"Servant of Razelikh"), +(7668,1,2,"Give my regards to Commander Trebor.",12,0,100,0,0,0,3682,0,"Servant of Razelikh"), +(7668,1,3,"The Defiler... must warn Thrall...",12,0,100,0,0,0,3683,0,"Servant of Razelikh"), +(7668,1,4,"It was not his fault. Tell him that...",12,0,100,0,0,0,3684,0,"Servant of Razelikh"), +(7668,1,5,"Finally, released from his cursed grasp. Father, I come...",12,0,100,0,0,0,3685,0,"Servant of Razelikh"), +(7668,2,0,"Stone of Binding shatters, releasing the soul which it held.",16,0,100,0,0,0,0,0,"Servant of Razelikh"), +(7669,0,0,"%s's physical form is weakened. You notice the Stone of Binding near the creature is glowing! Strike now!",41,0,100,0,0,0,3642,0,"Servant of Grol"), +(7669,1,0,"FREEEEEEEEEEDDOOOOMM!",14,0,100,0,0,0,3641,0,"Servant of Grol"), +(7669,1,1,"Finally, the agony ceases....",12,0,100,0,0,0,3681,0,"Servant of Grol"), +(7669,1,2,"Give my regards to Commander Trebor.",12,0,100,0,0,0,3682,0,"Servant of Grol"), +(7669,1,3,"The Defiler... must warn Thrall...",12,0,100,0,0,0,3683,0,"Servant of Grol"), +(7669,1,4,"It was not his fault. Tell him that...",12,0,100,0,0,0,3684,0,"Servant of Grol"), +(7669,1,5,"Finally, released from his cursed grasp. Father, I come... ",12,0,100,0,0,0,3685,0,"Servant of Grol"), +(7669,2,0,"Stone of Binding shatters, releasing the soul which it held.",16,0,100,0,0,0,0,0,"Servant of Grol"), +(7670,0,0,"%s's physical form is weakened. You notice the Stone of Binding near the creature is glowing! Strike now!",41,0,100,0,0,0,3642,0,"Servant of Allistarj"), +(7670,1,0,"FREEEEEEEEEEDDOOOOMM!",14,0,100,0,0,0,3641,0,"Servant of Allistarj"), +(7670,1,1,"Finally, the agony ceases....",12,0,100,0,0,0,3681,0,"Servant of Allistarj"), +(7670,1,2,"Give my regards to Commander Trebor.",12,0,100,0,0,0,3682,0,"Servant of Allistarj"), +(7670,1,3,"The Defiler... must warn Thrall...",12,0,100,0,0,0,3683,0,"Servant of Allistarj"), +(7670,1,4,"It was not his fault. Tell him that...",12,0,100,0,0,0,3684,0,"Servant of Allistarj"), +(7670,1,5,"Finally, released from his cursed grasp. Father, I come... ",12,0,100,0,0,0,3685,0,"Servant of Allistarj"), +(7670,2,0,"Stone of Binding shatters, releasing the soul which it held.",16,0,100,0,0,0,0,0,"Servant of Allistarj"), +(7671,0,0,"%s's physical form is weakened. You notice the Stone of Binding near the creature is glowing! Strike now!",41,0,100,0,0,0,3642,0,"Servant of Sevine"), +(7671,1,0,"FREEEEEEEEEEDDOOOOMM!",14,0,100,0,0,0,3641,0,"Servant of Sevine"), +(7671,1,1,"Finally, the agony ceases....",12,0,100,0,0,0,3681,0,"Servant of Sevine"), +(7671,1,2,"Give my regards to Commander Trebor.",12,0,100,0,0,0,3682,0,"Servant of Sevine"), +(7671,1,3,"The Defiler... must warn Thrall...",12,0,100,0,0,0,3683,0,"Servant of Sevine"), +(7671,1,4,"It was not his fault. Tell him that...",12,0,100,0,0,0,3684,0,"Servant of Sevine"), +(7671,1,5,"Finally, released from his cursed grasp. Father, I come... ",12,0,100,0,0,0,3685,0,"Servant of Sevine"), +(7671,2,0,"Stone of Binding shatters, releasing the soul which it held.",16,0,100,0,0,0,0,0,"Servant of Sevine"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_26_06_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_26_06_world.sql new file mode 100644 index 00000000000..9cff6783632 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_26_06_world.sql @@ -0,0 +1,5 @@ +-- +UPDATE `gameobject_template` SET `AIName`="SmartGameObjectAI" WHERE `entry` IN (189313); +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (189313) AND `source_type`=1; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(189313,1,0,0,70,0,100,0,2,0,0,0,41,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Wolfsbane Root - On Gameobject state 2 - despawn"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_27_00_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_27_00_world.sql new file mode 100644 index 00000000000..6775fbd6307 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_27_00_world.sql @@ -0,0 +1,452 @@ +-- Living Inferno +UPDATE `creature_template` SET `dmgschool`=2, `DamageModifier`=42 WHERE `entry`=40681; -- assuming 23k raw damage +UPDATE `creature_template` SET `dmgschool`=2, `DamageModifier`=51.4 WHERE `entry`=40682; -- 28k raw damage +-- +-- Living Ember +UPDATE `creature_template` SET `dmgschool`=2, `DamageModifier`=9.1 WHERE `entry`=40683; -- assuming 5k raw damage +UPDATE `creature_template` SET `dmgschool`=2, `DamageModifier`=12.8 WHERE `entry`=40684; -- 7k raw damage +-- +-- Deformed Fanatic +-- `DamageModifier`=1 => 500 +UPDATE `creature_template` SET `DamageModifier`=60 WHERE `entry`=38135; -- 10N, 30k raw damage +UPDATE `creature_template` SET `DamageModifier`=100 WHERE `entry`=38395; -- 25N 50k raw damage +UPDATE `creature_template` SET `DamageModifier`=100 WHERE `entry`=38634; -- 10H, 50k raw damage +UPDATE `creature_template` SET `DamageModifier`=160 WHERE `entry`=38635; -- 25H, 80k raw damage +-- +-- https://docs.google.com/spreadsheets/d/1edy3LvpkPMViHhVQw4ABPufDNmkjstUmXZ8hkkfvN-Q/edit#gid=94525178 +UPDATE `creature_template` SET `DamageModifier`=71.7 WHERE `entry` IN (39863,40142); -- 10NM, 40k raw damage +UPDATE `creature_template` SET `DamageModifier`=217.5 WHERE `entry` IN (39864,40143); -- 25NM, 91k raw damage +UPDATE `creature_template` SET `DamageModifier`=102.2 WHERE `entry` IN (39944,40144); -- 10HC, 57k raw damage +UPDATE `creature_template` SET `DamageModifier`=385.4 WHERE `entry` IN (39945,40145); -- 25HC, 161k raw damage +-- +-- Baltharus the Warborn +UPDATE `creature_template` SET `DamageModifier`=101.6 WHERE `entry` IN (39751,39899); -- 10M, 56.7k raw damage +UPDATE `creature_template` SET `DamageModifier`=129.3 WHERE `entry` IN (39920,39922); -- 25M, 72k raw damage +-- Saviana Ragefire +UPDATE `creature_template` SET `DamageModifier`=90.5 WHERE `entry`=39747; -- 10M, 50k raw damage +UPDATE `creature_template` SET `DamageModifier`=141.7 WHERE `entry`=39823; -- 25M, 79k raw damage +-- General Zarithrian +UPDATE `creature_template` SET `DamageModifier`=80.6 WHERE `entry`=39746; -- 10M, 44.9k raw damage +UPDATE `creature_template` SET `DamageModifier`=160.4 WHERE `entry`=39805; -- 25M, 90k raw damage +-- +-- Charscale Invoker +UPDATE `creature_template` SET `DamageModifier`=56 WHERE `entry`=40417; -- 10M, 30k raw damage +UPDATE `creature_template` SET `DamageModifier`=90.2 WHERE `entry`=40418; -- 25M, 49k raw damage +-- Charscale Assaulter +UPDATE `creature_template` SET `DamageModifier`=56 WHERE `entry`=40419; -- 10M, 30k raw damage +UPDATE `creature_template` SET `DamageModifier`=90.2 WHERE `entry`=40420; -- 25M, 49k raw damage +-- Charscale Commander +UPDATE `creature_template` SET `DamageModifier`=50.9 WHERE `entry`=40423; -- 10M, 27.7k raw damage +UPDATE `creature_template` SET `DamageModifier`=98.6 WHERE `entry`=40424; -- 25M, 53.6k raw damage +-- +UPDATE `creature_template` SET `baseattacktime`=2000 WHERE `entry` IN (40421,40422); +UPDATE `creature_template` SET `DamageModifier`=70.9 WHERE `entry`=40421; -- 10M, 38k raw damage +UPDATE `creature_template` SET `DamageModifier`=98.6 WHERE `entry`=40422; -- 25M, 53.6k raw damage +-- +-- The Lich King +UPDATE `creature_template` SET `DamageModifier`=139 WHERE `entry`=36597; -- 10NM, 58k raw damage +UPDATE `creature_template` SET `DamageModifier`=276.1 WHERE `entry`=39166; -- 25NM, 115k raw damage +UPDATE `creature_template` SET `DamageModifier`=244.3 WHERE `entry`=39167; -- 10HC, 102k raw damage +UPDATE `creature_template` SET `DamageModifier`=492.9 WHERE `entry`=39168; -- 25HC, 206k raw damage +-- +UPDATE `creature_template` SET `baseattacktime`=1500 WHERE `entry` IN (36853,38265,38266,38267); +UPDATE `creature_template` SET `DamageModifier`=81.6 WHERE `entry`=36853; -- 10NM, 34k raw damage +UPDATE `creature_template` SET `DamageModifier`=158.7 WHERE `entry`=38265; -- 25NM, 66k raw damage +UPDATE `creature_template` SET `DamageModifier`=121.5 WHERE `entry`=38266; -- 10HC, 50k raw damage +UPDATE `creature_template` SET `DamageModifier`=342.7 WHERE `entry`=38267; -- 25HC, 143k raw damage +-- +-- Blood-Queen Lana'thel +UPDATE `creature_template` SET `DamageModifier`=80 WHERE `entry`=37955; -- 10NM, 44k raw damage +UPDATE `creature_template` SET `DamageModifier`=158.7 WHERE `entry`=38434; -- 25NM, 88k raw damage +UPDATE `creature_template` SET `DamageModifier`=105.5 WHERE `entry`=38435; -- 10HC, 58k raw damage +UPDATE `creature_template` SET `DamageModifier`=211.6 WHERE `entry`=38436; -- 25HC, 118k raw damage +-- +-- Prince Taldaram +UPDATE `creature_template` SET `DamageModifier`=85.7 WHERE `entry` IN (37970,37972,37973); -- 10NM, 47k raw damage +UPDATE `creature_template` SET `DamageModifier`=157.1 WHERE `entry` IN (38401,38399,38400); -- 25NM, 87k raw damage +UPDATE `creature_template` SET `DamageModifier`=124.3 WHERE `entry` IN (38784,38769,38771); -- 10HC, 69k raw damage +UPDATE `creature_template` SET `DamageModifier`=234.8 WHERE `entry` IN (38785,38770,38772); -- 25HC, 130k raw damage +-- +UPDATE `creature_template` SET `baseattacktime`=1500 WHERE `entry` IN (36678,38431,38585,38586); +UPDATE `creature_template` SET `DamageModifier`=87 WHERE `entry`=36678; -- 10NM, 36k raw damage +UPDATE `creature_template` SET `DamageModifier`=176.4 WHERE `entry`=38431; -- 25NM, 73k raw damage +UPDATE `creature_template` SET `DamageModifier`=118 WHERE `entry`=38585; -- 10HC, 49k raw damage +UPDATE `creature_template` SET `DamageModifier`=243.4 WHERE `entry`=38586; -- 25HC, 101k raw damage +-- +-- Festergut +UPDATE `creature_template` SET `DamageModifier`=75 WHERE `entry`=36626; -- 10NM, 41.8k raw damage +UPDATE `creature_template` SET `DamageModifier`=122.6 WHERE `entry`=37504; -- 25NM, 68k raw damage +UPDATE `creature_template` SET `DamageModifier`=116 WHERE `entry`=37505; -- 10HC, 64k raw damage +UPDATE `creature_template` SET `DamageModifier`=174.5 WHERE `entry`=37506; -- 25HC, 97k raw damage +-- +-- Rotface +UPDATE `creature_template` SET `DamageModifier`=74.5 WHERE `entry`=36627; -- 10NM, 41.5k raw damage +UPDATE `creature_template` SET `DamageModifier`=124.5 WHERE `entry`=38390; -- 25NM, 69.4k raw damage +UPDATE `creature_template` SET `DamageModifier`=117 WHERE `entry`=38549; -- 10HC, 65.2k raw damage +UPDATE `creature_template` SET `DamageModifier`=130.2 WHERE `entry`=38550; -- 25HC, 72k raw damage +-- +-- Deathbringer Saurfang +UPDATE `creature_template` SET `DamageModifier`=50.5 WHERE `entry`=37813; -- 10NM, 21k raw damage +UPDATE `creature_template` SET `DamageModifier`=120.8 WHERE `entry`=38402; -- 25NM, 50k raw damage +UPDATE `creature_template` SET `DamageModifier`=84.1 WHERE `entry`=38582; -- 10HC, 35k raw damage +UPDATE `creature_template` SET `DamageModifier`=199 WHERE `entry`=38583; -- 25HC, 83k raw damage +-- +-- Blood Beast +UPDATE `creature_template` SET `DamageModifier`=18.4 WHERE `entry` IN (38508,38596,38597,38598); -- 10k raw damage +-- +-- Muradin Bronzebeard +UPDATE `creature_template` SET `DamageModifier`=47 WHERE `entry` IN (36939,36948); -- 10NM, 26.2k raw damage +UPDATE `creature_template` SET `DamageModifier`=90 WHERE `entry` IN (38156,38157); -- 25NM, 50k raw damage +UPDATE `creature_template` SET `DamageModifier`=72.6 WHERE `entry` IN (38638,38639); -- 10HC, 40k raw damage +UPDATE `creature_template` SET `DamageModifier`=114.7 WHERE `entry` IN (38637,38640); -- 25HC, 64k raw damage +-- +-- Kor'kron Sergeant +UPDATE `creature_template` SET `DamageModifier`=20 WHERE `entry` IN (36950,38406,38685,38686); +-- +-- Lady Deathwhisper +UPDATE `creature_template` SET `DamageModifier`=69.3 WHERE `entry`=36855; -- 10NM, 38.6k raw damage +UPDATE `creature_template` SET `DamageModifier`=87.1 WHERE `entry`=38106; -- 25NM, 48.5k raw damage +UPDATE `creature_template` SET `DamageModifier`=68.3 WHERE `entry`=38296; -- 10HC, 38k raw damage +UPDATE `creature_template` SET `DamageModifier`=170 WHERE `entry`=38297; -- 25HC, 95k raw damage +-- +UPDATE `creature_template` SET `baseattacktime`=1000 WHERE `entry` IN (36612,37957,37958,37959); +UPDATE `creature_template` SET `DamageModifier`=112 WHERE `entry`=36612; -- 10NM, 31k raw damage +UPDATE `creature_template` SET `DamageModifier`=234 WHERE `entry`=37957; -- 25NM, 65k raw damage +UPDATE `creature_template` SET `DamageModifier`=177.82 WHERE `entry`=37958; -- 10HC, 49.5k raw damage +UPDATE `creature_template` SET `DamageModifier`=352 WHERE `entry`=37959; -- 25HC, 98k raw damage +-- +-- Shambling Horror +UPDATE `creature_template` SET `DamageModifier`=50 WHERE `entry`=37698; -- 10NM, 27k raw damage +UPDATE `creature_template` SET `DamageModifier`=131.9 WHERE `entry`=39299; -- 25NM, 73k raw damage +UPDATE `creature_template` SET `DamageModifier`=90.5 WHERE `entry`=39300; -- 10HC, 50k raw damage +UPDATE `creature_template` SET `DamageModifier`=214.8 WHERE `entry`=39301; -- 25HC, 119k raw damage +-- +-- Drudge Ghoul +UPDATE `creature_template` SET `DamageModifier`=8.5 WHERE `entry`=37695; -- 10NM, 4.3k raw damage +UPDATE `creature_template` SET `DamageModifier`=20.7 WHERE `entry`=39309; -- 25NM, 10.4k raw damage +UPDATE `creature_template` SET `DamageModifier`=13.2 WHERE `entry`=39310; -- 10HC, 6.6k raw damage +UPDATE `creature_template` SET `DamageModifier`=29.43 WHERE `entry`=39311; -- 25HC, 14.8k raw damage +-- +-- Raging Spirit +UPDATE `creature_template` SET `DamageModifier`=66.4 WHERE `entry`=36701; -- 10NM, 37k raw damage +UPDATE `creature_template` SET `DamageModifier`=152.4 WHERE `entry`=39302; -- 25NM, 85k raw damage +UPDATE `creature_template` SET `DamageModifier`=95.2 WHERE `entry`=39303; -- 10HC, 53k raw damage +UPDATE `creature_template` SET `DamageModifier`=219.2 WHERE `entry`=39304; -- 25HC, 122k raw damage +-- +-- Blistering Zombie +UPDATE `creature_template` SET `DamageModifier`=36.9 WHERE `entry`=37934; -- 10NM, 18.6k raw damage +UPDATE `creature_template` SET `DamageModifier`=81.8 WHERE `entry`=38170; -- 25NM, 41.2k raw damage +UPDATE `creature_template` SET `DamageModifier`=75 WHERE `entry`=38723; -- 10HC, 37.8k raw damage +UPDATE `creature_template` SET `DamageModifier`=137.9 WHERE `entry`=38733; -- 25HC, 69.5k raw damage +-- +-- Raging Spirit +UPDATE `creature_template` SET `DamageModifier`=8.9 WHERE `entry`=36791; -- 10NM, 5k raw damage +UPDATE `creature_template` SET `DamageModifier`=16.1 WHERE `entry`=38169; -- 25NM, 9k raw damage +UPDATE `creature_template` SET `DamageModifier`=20.6 WHERE `entry`=38721; -- 10HC, 11.5k raw damage +UPDATE `creature_template` SET `DamageModifier`=26.6 WHERE `entry`=38722; -- 25HC, 14.8k raw damage +-- +-- Gluttonous Abomination +UPDATE `creature_template` SET `DamageModifier`=25.8 WHERE `entry`=37886; -- 10NM, 14.3k raw damage +UPDATE `creature_template` SET `DamageModifier`=61.1 WHERE `entry`=38166; -- 25NM, 34k raw damage +UPDATE `creature_template` SET `DamageModifier`=44.3 WHERE `entry`=38724; -- 10HC, 24.6k raw damage +UPDATE `creature_template` SET `DamageModifier`=99.3 WHERE `entry`=38734; -- 25HC, 55.3k raw damage +-- +-- Rot Worm +UPDATE `creature_template` SET `DamageModifier`=12.6 WHERE `entry`=37907; -- 10NM, 6.3k raw damage +UPDATE `creature_template` SET `DamageModifier`=22.6 WHERE `entry`=38168; -- 25NM, 11.3k raw damage +UPDATE `creature_template` SET `DamageModifier`=16.7 WHERE `entry`=38726; -- 10HC, 8.4k raw damage +UPDATE `creature_template` SET `DamageModifier`=28.3 WHERE `entry`=38736; -- 25HC, 14.2k raw damage +-- +-- Cult Fanatic +UPDATE `creature_template` SET `DamageModifier`=25.4 WHERE `entry`=37890; -- 10NM, 13.8k raw damage +UPDATE `creature_template` SET `DamageModifier`=56.3 WHERE `entry`=38393; -- 25NM, 30k raw damage +UPDATE `creature_template` SET `DamageModifier`=53.8 WHERE `entry`=38628; -- 10HC, 29k raw damage +UPDATE `creature_template` SET `DamageModifier`=80.5 WHERE `entry`=38629; -- 25HC, 43.8k raw damage +-- +-- Cult Adherent +UPDATE `creature_template` SET `DamageModifier`=10.1 WHERE `entry`=37949; -- 10NM, 5.5k raw damage +UPDATE `creature_template` SET `DamageModifier`=18.4 WHERE `entry`=38394; -- 25NM, 10k raw damage +UPDATE `creature_template` SET `DamageModifier`=24.8 WHERE `entry`=38625; -- 10HC, 13.5k raw damage +UPDATE `creature_template` SET `DamageModifier`=36.7 WHERE `entry`=38626; -- 25HC, (assumed) 20k raw damage +-- +-- Highlord Tirion Fordring +UPDATE `creature_template` SET `DamageModifier`=19 WHERE `entry`=38995; -- all modes, 10.6k raw damage +-- +-- Little Ooze +UPDATE `creature_template` SET `DamageModifier`=1.8 WHERE `entry` IN (36897,38138); -- all modes, 1k raw damage +-- +-- Big Ooze +UPDATE `creature_template` SET `DamageModifier`=88.2 WHERE `entry`=36899; -- 10M, 48k raw damage +UPDATE `creature_template` SET `DamageModifier`=152.5 WHERE `entry`=38123; -- 25M, 83k raw damage +-- +-- Terenas Menethil +UPDATE `creature_template` SET `DamageModifier`=14.2 WHERE `entry` IN (36823,38579,39217); -- all modes, 7.1k raw damage +-- +-- Deformed Fanatic +UPDATE `creature_template` SET `DamageModifier`=3*25.4 WHERE `entry`=38135; -- 10NM, 3*13.8k raw damage +UPDATE `creature_template` SET `DamageModifier`=3*56.3 WHERE `entry`=38395; -- 25NM, 3*30k raw damage +UPDATE `creature_template` SET `DamageModifier`=3*53.8 WHERE `entry`=38634; -- 10HC, 3*29k raw damage +UPDATE `creature_template` SET `DamageModifier`=3*80.5 WHERE `entry`=38635; -- 25HC, 3*43.8k raw damage +-- +-- Archavon the Stone Watcher +UPDATE `creature_template` SET `DamageModifier`=36.8 WHERE `entry`=31125; -- 10M, 20.5k raw damage +UPDATE `creature_template` SET `DamageModifier`=70.24 WHERE `entry`=31722; -- 25M, 39k raw damage +-- Emalon the Storm Watcher +UPDATE `creature_template` SET `DamageModifier`=59.5 WHERE `entry`=33993; -- 10M, 33k raw damage +UPDATE `creature_template` SET `DamageModifier`=106.4 WHERE `entry`=33994; -- 25M, 59k raw damage +-- Koralon the Flame Watcher +UPDATE `creature_template` SET `DamageModifier`=66.5 WHERE `entry`=35013; -- 10M, 37k raw damage +UPDATE `creature_template` SET `DamageModifier`=91.9 WHERE `entry`=35360; -- 25M, 51k raw damage +-- Toravon the Ice Watcher +UPDATE `creature_template` SET `DamageModifier`=107.3 WHERE `entry`=38433; -- 10M, 59.8k raw damage +UPDATE `creature_template` SET `DamageModifier`=117.7 WHERE `entry`=38462; -- 25M, 65.6k raw damage +-- +-- Tempest Minion +UPDATE `creature_template` SET `DamageModifier`=15.5 WHERE `entry` IN (33998,34049); -- 10M, 8.4k raw damage +UPDATE `creature_template` SET `DamageModifier`=25 WHERE `entry` IN (34200,33999); -- 25M, 13.5k raw damage +-- Tempest Warder +UPDATE `creature_template` SET `DamageModifier`=47.6 WHERE `entry`=34015; -- 10M, 25.9k raw damage +UPDATE `creature_template` SET `DamageModifier`=91.3 WHERE `entry`=34016; -- 25M, 49.6k raw damage +-- +UPDATE `creature_template` SET `minlevel`=82, `maxlevel`=82 WHERE `entry` IN (35143,35359); +UPDATE `creature_template` SET `DamageModifier`=52 WHERE `entry`=35143; -- 10M, 28.3k raw damage +UPDATE `creature_template` SET `DamageModifier`=68.5 WHERE `entry`=35359; -- 25M, 37.3k raw damage +-- Frost Warder +UPDATE `creature_template` SET `DamageModifier`=84.7 WHERE `entry`=38482; -- 10M, 46.1k raw damage +UPDATE `creature_template` SET `DamageModifier`=87.8 WHERE `entry`=38483; -- 25M, 47.8k raw damage +-- +-- Archavon Warder +UPDATE `creature_template` SET `DamageModifier`=40.8 WHERE `entry`=32353; -- 10M, 20.5k raw damage +UPDATE `creature_template` SET `DamageModifier`=49.3 WHERE `entry`=32368; -- 25M, 24.8k raw damage +-- +-- Gormok the Impaler, level 83 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=45.6 WHERE `entry`=34796; -- 10NM, 25.5k raw damage +UPDATE `creature_template` SET `DamageModifier`=73.3 WHERE `entry`=35438; -- 25NM, 40.9k raw damage +UPDATE `creature_template` SET `DamageModifier`=54.7 WHERE `entry`=35439; -- 10HC, 30.5k raw damage +UPDATE `creature_template` SET `DamageModifier`=119.8 WHERE `entry`=35440; -- 25HC, 66.8k raw damage +-- Snobold Vassal, level 78 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=3.2 WHERE `entry`=34800; -- 10NM, 1.5 raw damage +UPDATE `creature_template` SET `DamageModifier`=5.4 WHERE `entry`=35441; -- 25NM, 2.5 raw damage +UPDATE `creature_template` SET `DamageModifier`=5.4 WHERE `entry`=35442; -- 10HC, 2.5 raw damage +UPDATE `creature_template` SET `DamageModifier`=9.7 WHERE `entry`=35443; -- 25HC, 4.5 raw damage +-- Acidmaw, level 83 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=43.2 WHERE `entry`=35144; -- 10NM, 24.1 raw damage +UPDATE `creature_template` SET `DamageModifier`=81.1 WHERE `entry`=35511; -- 25NM, 45.2 raw damage +UPDATE `creature_template` SET `DamageModifier`=78.0 WHERE `entry`=35512; -- 10HC, 43.5 raw damage +UPDATE `creature_template` SET `DamageModifier`=153.4 WHERE `entry`=35513; -- 25HC, 85.5 raw damage +-- Dreadscale, level 83 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=43.2 WHERE `entry`=34799; -- 10NM, 24.1 raw damage +UPDATE `creature_template` SET `DamageModifier`=81.1 WHERE `entry`=35514; -- 25NM, 45.2 raw damage +UPDATE `creature_template` SET `DamageModifier`=78.0 WHERE `entry`=35515; -- 10HC, 43.5 raw damage +UPDATE `creature_template` SET `DamageModifier`=153.4 WHERE `entry`=35516; -- 25HC, 85.5 raw damage +-- Icehowl, level 83 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=50.2 WHERE `entry`=34797; -- 10NM, 28.0 raw damage +UPDATE `creature_template` SET `DamageModifier`=99.6 WHERE `entry`=35447; -- 25NM, 55.5 raw damage +UPDATE `creature_template` SET `DamageModifier`=72.5 WHERE `entry`=35448; -- 10HC, 40.5 raw damage +UPDATE `creature_template` SET `DamageModifier`=161.8 WHERE `entry`=35449; -- 25HC, 90.2 raw damage +-- Lord Jaraxxus, level 83 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=64.2 WHERE `entry`=34780; -- 10NM, 35.6 raw damage +UPDATE `creature_template` SET `DamageModifier`=84.3 WHERE `entry`=35216; -- 25NM, 46.9 raw damage +UPDATE `creature_template` SET `DamageModifier`=70.3 WHERE `entry`=35268; -- 10HC, 39.1 raw damage +UPDATE `creature_template` SET `DamageModifier`=77.7 WHERE `entry`=35269; -- 25HC, 43.1 raw damage +-- Felflame Infernal, level 82 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=16.8 WHERE `entry`=34815; -- 10NM, 9.1 raw damage +UPDATE `creature_template` SET `DamageModifier`=26.3 WHERE `entry`=35262; -- 25NM, 14.3 raw damage +UPDATE `creature_template` SET `DamageModifier`=32.0 WHERE `entry`=35263; -- 10HC, 17.4 raw damage +UPDATE `creature_template` SET `DamageModifier`=49.2 WHERE `entry`=35264; -- 25HC, 26.8 raw damage +-- Mistress of Pain, level 82 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=46.4 WHERE `entry`=34826; -- 10NM, 25.3 raw damage +UPDATE `creature_template` SET `DamageModifier`=57.1 WHERE `entry`=35270; -- 25NM, 31.1 raw damage +UPDATE `creature_template` SET `DamageModifier`=54.5 WHERE `entry`=35271; -- 10HC, 29.7 raw damage +UPDATE `creature_template` SET `DamageModifier`=72.2 WHERE `entry`=35272; -- 25HC, 39.3 raw damage +-- Cat, level 80 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=0.3 WHERE `entry`=35610; -- 10NM, 0.2 raw damage +UPDATE `creature_template` SET `DamageModifier`=0.7 WHERE `entry`=35774; -- 25NM, 0.3 raw damage +UPDATE `creature_template` SET `DamageModifier`=1.0 WHERE `entry`=35775; -- 10HC, 0.5 raw damage +UPDATE `creature_template` SET `DamageModifier`=2.0 WHERE `entry`=35776; -- 25HC, 1.0 raw damage +-- Zhaagrym, level 80 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=1.8 WHERE `entry`=35465; -- 10NM, 0.9 raw damage +UPDATE `creature_template` SET `DamageModifier`=2.0 WHERE `entry`=36301; -- 25NM, 1.0 raw damage +UPDATE `creature_template` SET `DamageModifier`=2.0 WHERE `entry`=36302; -- 10HC, 1.0 raw damage +UPDATE `creature_template` SET `DamageModifier`=3.0 WHERE `entry`=36303; -- 25HC, 1.5 raw damage +-- Treant, level 80 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=2.7 WHERE `entry`=36070; -- 10NM, 0.6 raw damage +UPDATE `creature_template` SET `DamageModifier`=3.4 WHERE `entry`=36473; -- 25NM, 0.7 raw damage +UPDATE `creature_template` SET `DamageModifier`=4.9 WHERE `entry`=36474; -- 10HC, 1.0 raw damage +UPDATE `creature_template` SET `DamageModifier`=9.7 WHERE `entry`=36475; -- 25HC, 2.0 raw damage +-- Fjola Lightbane, level 83 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=41.2 WHERE `entry`=34497; -- 10NM, 22.9 raw damage +UPDATE `creature_template` SET `DamageModifier`=56.6 WHERE `entry`=35350; -- 25NM, 31.4 raw damage +UPDATE `creature_template` SET `DamageModifier`=41.0 WHERE `entry`=35351; -- 10HC, 22.8 raw damage +UPDATE `creature_template` SET `DamageModifier`=69.7 WHERE `entry`=35352; -- 25HC, 38.7 raw damage +-- Eydis Darkbane, level 83 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=41.2 WHERE `entry`=34496; -- 10NM, 22.9 raw damage +UPDATE `creature_template` SET `DamageModifier`=56.6 WHERE `entry`=35347; -- 25NM, 31.4 raw damage +UPDATE `creature_template` SET `DamageModifier`=41.0 WHERE `entry`=35348; -- 10HC, 22.8 raw damage +UPDATE `creature_template` SET `DamageModifier`=69.7 WHERE `entry`=35349; -- 25HC, 38.7 raw damage +-- Anub'arak, level 83 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=101.5 WHERE `entry`=34564; -- 10NM, 56.6 raw damage +UPDATE `creature_template` SET `DamageModifier`=146.0 WHERE `entry`=34566; -- 25NM, 81.4 raw damage +UPDATE `creature_template` SET `DamageModifier`=89.2 WHERE `entry`=35615; -- 10HC, 49.7 raw damage +UPDATE `creature_template` SET `DamageModifier`=149.1 WHERE `entry`=35616; -- 25HC, 83.2 raw damage +-- Nerubian Burrower, level 78 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=17.2 WHERE `entry`=34607; -- 10NM, 8.0 raw damage +UPDATE `creature_template` SET `DamageModifier`=29.3 WHERE `entry`=34648; -- 25NM, 13.6 raw damage +UPDATE `creature_template` SET `DamageModifier`=16.2 WHERE `entry`=35655; -- 10HC, 7.6 raw damage +UPDATE `creature_template` SET `DamageModifier`=33.6 WHERE `entry`=35656; -- 25HC, 15.6 raw damage +-- Swarm Scarab, level 79 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=1.0 WHERE `entry`=34605; -- 10NM, 0.5 raw damage +UPDATE `creature_template` SET `DamageModifier`=1.7 WHERE `entry`=34650; -- 25NM, 0.8 raw damage +UPDATE `creature_template` SET `DamageModifier`=1.7 WHERE `entry`=35658; -- 10HC, 0.8 raw damage +UPDATE `creature_template` SET `DamageModifier`=2.1 WHERE `entry`=35659; -- 25HC, 1.0 raw damage +-- +-- Argent Champion, level 80 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=74.6 WHERE `entry`=37928; -- 10NM, 37.6 k raw damage +-- Ebon Champion, level 80 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=74.6 WHERE `entry`=37996; -- 10NM, 37.6 k raw damage +-- The Damned, level 80 NPC, 1000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=36.9 WHERE `entry`=37011; -- 10NM, 9.3 k raw damage +UPDATE `creature_template` SET `DamageModifier`=57.5 WHERE `entry`=38061; -- 25NM, 14.5 k raw damage +-- Servant of the Throne, level 80 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=23.9 WHERE `entry`=38057; -- 25NM, 11.9 k raw damage +-- Deathbound Ward, level 82 NPC, 1000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=70.5 WHERE `entry`=37007; -- 10NM, 19.2 k raw damage +UPDATE `creature_template` SET `DamageModifier`=102.9 WHERE `entry`=38031; -- 25NM, 28.0 k raw damage +-- Ancient Skeletal Soldier, level 80 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=35.0 WHERE `entry`=38059; -- 25NM, 17.7 k raw damage +-- Nerub'ar Broodkeeper, level 80 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=22.6 WHERE `entry`=38058; -- 25NM, 11.3 k raw damage +-- Deathspeaker Attendant, level 82 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=13.3 WHERE `entry`=38072; -- 25NM, 6.0 k raw damage +-- Deathspeaker Disciple, level 82 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=13.3 WHERE `entry`=38073; -- 25NM, 6.0 k raw damage +-- Deathspeaker Servant, level 82 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=13.9 WHERE `entry`=38075; -- 25NM, 6.3 k raw damage +-- Deathspeaker Zealot, level 82 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=35.1 WHERE `entry`=36808; -- 10NM, 19.1 k raw damage +UPDATE `creature_template` SET `DamageModifier`=67.0 WHERE `entry`=38076; -- 25NM, 36.5 k raw damage +-- Deathspeaker High Priest, level 82 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=83.8 WHERE `entry`=36829; -- 10NM, 45.0 k raw damage +UPDATE `creature_template` SET `DamageModifier`=90.8 WHERE `entry`=38074; -- 25NM, 48.8 k raw damage +-- Skybreaker Dreadblade, level 82 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=34.5 WHERE `entry`=37004; -- 10NM, 18.8 k raw damage +UPDATE `creature_template` SET `DamageModifier`=39.6 WHERE `entry`=38079; -- 25NM, 21.5 k raw damage +-- Kor'kron Reaver, level 82 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=34.5 WHERE `entry`=37029; -- 10NM, 18.8 k raw damage +UPDATE `creature_template` SET `DamageModifier`=39.6 WHERE `entry`=38092; -- 25NM, 21.5 k raw damage +-- Skybreaker Vindicator, level 82 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=30.6 WHERE `entry`=37003; -- 10NM, 16.4 k raw damage +UPDATE `creature_template` SET `DamageModifier`=57.3 WHERE `entry`=38086; -- 25NM, 30.8 k raw damage +-- Kor'kron Vanquisher, level 82 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=30.6 WHERE `entry`=37035; -- 10NM, 16.4 k raw damage +UPDATE `creature_template` SET `DamageModifier`=57.3 WHERE `entry`=38096; -- 25NM, 30.8 k raw damage +-- Kor'kron Defender, level 82 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=32.6 WHERE `entry`=37032; -- 10NM, 17.7 k raw damage +UPDATE `creature_template` SET `DamageModifier`=34.7 WHERE `entry`=38087; -- 25NM, 18.9 k raw damage +-- Skybreaker Protector, level 82 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=32.6 WHERE `entry`=36998; -- 10NM, 17.7 k raw damage +UPDATE `creature_template` SET `DamageModifier`=34.7 WHERE `entry`=38082; -- 25NM, 18.9 k raw damage +-- Kor'kron Stalker, level 82 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=40.5 WHERE `entry`=37028; -- 10NM, 22.1 k raw damage +UPDATE `creature_template` SET `DamageModifier`=54.6 WHERE `entry`=38094; -- 25NM, 29.7 k raw damage +-- Skybreaker Assassin, level 82 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=40.5 WHERE `entry`=37017; -- 10NM, 22.1 k raw damage +UPDATE `creature_template` SET `DamageModifier`=54.6 WHERE `entry`=38078; -- 25NM, 29.7 k raw damage +-- Spire Minion, level 82 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=31.7 WHERE `entry`=37545; -- 10NM, 17.0 k raw damage +UPDATE `creature_template` SET `DamageModifier`=59.4 WHERE `entry`=38445; -- 25NM, 31.9 k raw damage +-- Frenzied Abomination, level 82 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=87.9 WHERE `entry`=37546; -- 10NM, 47.8 k raw damage +UPDATE `creature_template` SET `DamageModifier`=87.9 WHERE `entry`=38446; -- 25NM, 47.8 k raw damage +-- Spire Frostwyrm, level 82 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=61.6 WHERE `entry`=37230; -- 10NM, 33.1 k raw damage +UPDATE `creature_template` SET `DamageModifier`=100.4 WHERE `entry`=38444; -- 25NM, 53.9 k raw damage +-- Rotting Frost Giant, level 82 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=93.0 WHERE `entry`=38494; -- 10NM, 50.6 k raw damage +-- Val'kyr Herald, level 80 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=59.1 WHERE `entry`=37098; -- 10NM, 29.8 k raw damage +UPDATE `creature_template` SET `DamageModifier`=73.8 WHERE `entry`=38418; -- 25NM, 37.2 k raw damage +-- Severed Essence, level 80 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=18.6 WHERE `entry`=38419; -- 25NM, 9.3 k raw damage +-- Blighted Abomination, level 80 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=34.3 WHERE `entry`=37022; -- 10NM, 17.3 k raw damage +UPDATE `creature_template` SET `DamageModifier`=50.5 WHERE `entry`=38108; -- 25NM, 25.5 k raw damage +-- Plague Scientist, level 80 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=23.5 WHERE `entry`=37023; -- 10NM, 11.7 k raw damage +UPDATE `creature_template` SET `DamageModifier`=37.7 WHERE `entry`=38062; -- 25NM, 18.8 k raw damage +-- Pustulating Horror, level 80 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=23.8 WHERE `entry`=10404; -- 10NM, 12.0 k raw damage +UPDATE `creature_template` SET `DamageModifier`=44.6 WHERE `entry`=38110; -- 25NM, 22.5 k raw damage +-- Vengeful Fleshreaper, level 80 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=18.2 WHERE `entry`=38063; -- 25NM, 9.1 k raw damage +-- Decaying Colossus, level 80 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=78.2 WHERE `entry`=36880; -- 10NM, 39.4 k raw damage +UPDATE `creature_template` SET `DamageModifier`=95.2 WHERE `entry`=37655; -- 25NM, 48.0 k raw damage +-- Stinky, level 80 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=29.6 WHERE `entry`=37025; -- 10NM, 14.9 k raw damage +UPDATE `creature_template` SET `DamageModifier`=62.6 WHERE `entry`=38064; -- 25NM, 31.6 k raw damage +-- Precious, level 80 NPC, 1000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=59.1 WHERE `entry`=37217; -- 10NM, 14.9 k raw damage +UPDATE `creature_template` SET `DamageModifier`=125.4 WHERE `entry`=38103; -- 25NM, 31.6 k raw damage +-- Darkfallen Archmage, level 82 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=24.1 WHERE `entry`=38099; -- 25NM, 10.9 k raw damage +-- Darkfallen Blood Knight, level 82 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=27.8 WHERE `entry`=37595; -- 10NM, 12.6 k raw damage +UPDATE `creature_template` SET `DamageModifier`=52.3 WHERE `entry`=38100; -- 25NM, 23.6 k raw damage +-- Darkfallen Noble, level 82 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=43.9 WHERE `entry`=38480; -- 25NM, 19.8 k raw damage +-- Darkfallen Advisor, level 82 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=29.0 WHERE `entry`=38098; -- 25NM, 13.1 k raw damage +-- Darkfallen Lieutenant, level 82 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=21.8 WHERE `entry`=37665; -- 10NM, 9.9 k raw damage +UPDATE `creature_template` SET `DamageModifier`=42.2 WHERE `entry`=38101; -- 25NM, 19.1 k raw damage +-- Darkfallen Tactician, level 82 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=31.5 WHERE `entry`=37666; -- 10NM, 14.3 k raw damage +UPDATE `creature_template` SET `DamageModifier`=43.9 WHERE `entry`=38479; -- 25NM, 19.8 k raw damage +-- Darkfallen Commander, level 82 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=23.5 WHERE `entry`=37662; -- 10NM, 10.6 k raw damage +UPDATE `creature_template` SET `DamageModifier`=45.6 WHERE `entry`=38102; -- 25NM, 20.6 k raw damage +-- Warhawk, level 80 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=13.4 WHERE `entry`=38154; -- 10NM, 6.8 k raw damage +-- Ymirjar Huntress, level 80 NPC, 1000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=27.3 WHERE `entry`=38131; -- 25NM, 13.7 k raw damage +-- Ymirjar Warlord, level 80 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=25.0 WHERE `entry`=37133; -- 10NM, 12.6 k raw damage +UPDATE `creature_template` SET `DamageModifier`=47.1 WHERE `entry`=38133; -- 25NM, 23.8 k raw damage +-- Ymirjar Battle-Maiden, level 80 NPC, 1000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=74.6 WHERE `entry`=37132; -- 10NM, 18.8 k raw damage +UPDATE `creature_template` SET `DamageModifier`=94.4 WHERE `entry`=38132; -- 25NM, 23.8 k raw damage +-- Ymirjar Deathbringer, level 80 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=24.5 WHERE `entry`=38130; -- 25NM, 12.2 k raw damage +-- Sister Svalna, level 82 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=125.7 WHERE `entry`=37126; -- 10NM, 27.0 k raw damage +UPDATE `creature_template` SET `DamageModifier`=161.0 WHERE `entry`=38258; -- 25NM, 34.6 k raw damage +-- Frostwarden Sorceress, level 80 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=25.2 WHERE `entry`=38137; -- 25NM, 12.7 k raw damage +-- Frostwarden Warrior, level 80 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=24.8 WHERE `entry`=38134; -- 25NM, 12.5 k raw damage +-- Nerub'ar Broodling, level 80 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=3.5 WHERE `entry`=38362; -- 25NM, 1.8 k raw damage +-- Nerub'ar Champion, level 80 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=24.8 WHERE `entry`=38197; -- 25NM, 12.5 k raw damage +-- Frostwarden Handler, level 80 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=157.9 WHERE `entry`=38139; -- 25NM, 32.4 k raw damag +-- Frostwing Whelp, level 80 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=14.0 WHERE `entry`=38151; -- 25NM, 2.7 k raw damage +-- Rimefang, level 82 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=88.6 WHERE `entry`=37533; -- 10NM, 47.6 k raw damage +UPDATE `creature_template` SET `DamageModifier`=105.0 WHERE `entry`=38220; -- 25NM, 56.4 k raw damage +-- Spinestalker, level 82 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=74.2 WHERE `entry`=37534; -- 10NM, 39.9 k raw damage +UPDATE `creature_template` SET `DamageModifier`=132.6 WHERE `entry`=38219; -- 25NM, 71.2 k raw damage +-- Captain Arnath, level 81 NPC, 1500 ms attack time +UPDATE `creature_template` SET `DamageModifier`=61.9 WHERE `entry`=38349; -- 25NM, 24.1 k raw damage +-- Captain Brandon, level 81 NPC, 1500 ms attack time +UPDATE `creature_template` SET `DamageModifier`=77.3 WHERE `entry`=38350; -- 25NM, 30.1 k raw damage +-- Captain Grondel, level 81 NPC, 1500 ms attack time +UPDATE `creature_template` SET `DamageModifier`=77.3 WHERE `entry`=38351; -- 25NM, 30.3 k raw damage +-- Captain Rupert, level 81 NPC, 1500 ms attack time +UPDATE `creature_template` SET `DamageModifier`=82.4 WHERE `entry`=38352; -- 25NM, 32.4 k raw damage +-- Crok Scourgebane, level 83 NPC, 2000 ms attack time +UPDATE `creature_template` SET `DamageModifier`=33.7 WHERE `entry`=37129; -- 10NM, 18.8 k raw damage +UPDATE `creature_template` SET `DamageModifier`=67.4 WHERE `entry`=38000; -- 25NM, 37.6 k raw damage diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_27_01_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_27_01_world.sql new file mode 100644 index 00000000000..e28fccf06f6 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_27_01_world.sql @@ -0,0 +1,2 @@ +-- +UPDATE `smart_scripts` SET `action_param3`=1 WHERE `entryorguid`=28566 AND `source_type`=0 AND `id`=2; diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_27_02_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_27_02_world.sql new file mode 100644 index 00000000000..2b4231d0679 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_27_02_world.sql @@ -0,0 +1,3 @@ +-- +DELETE FROM `gameobject_loot_template` WHERE `entry`=1570 AND `Item`!=3706; +DELETE FROM `gameobject_loot_template` WHERE `entry`=3394 AND `Item`!=5882; diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_27_03_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_27_03_world.sql new file mode 100644 index 00000000000..61d250858d0 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_27_03_world.sql @@ -0,0 +1,7 @@ +DELETE FROM `creature_text` WHERE `CreatureID` IN (14509, 11347, 11348) AND `GroupId`=2; +DELETE FROM `creature_text` WHERE `CreatureID`=14509 AND `GroupId`=3; +INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES +(14509, 2, 0, "%s dies.", 16, 0, 100, 0, 0, 0, 12195, 0, "High Priest Thekal"), +(14509, 3, 0, "%s goes into a frenzy!", 16, 0, 100, 0, 0, 0, 1191, 0, "High Priest Thekal"), +(11347, 2, 0, "%s dies.", 16, 0, 100, 0, 0, 0, 10453, 0, "Zealoth Lor'khan"), +(11348, 2, 0, "%s dies.", 16, 0, 100, 0, 0, 0, 12195, 0, "Zealot Zath"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_28_00_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_28_00_world.sql new file mode 100644 index 00000000000..9ba191bba0b --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_28_00_world.sql @@ -0,0 +1,2 @@ +DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_item_dimensional_ripper_area52'; +INSERT INTO `spell_script_names` VALUES (36890,'spell_item_dimensional_ripper_area52'); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_28_01_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_28_01_world.sql new file mode 100644 index 00000000000..00b99addd44 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_28_01_world.sql @@ -0,0 +1,2 @@ +DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_q12611_deathbolt'; +INSERT INTO `spell_script_names` VALUES (51854,'spell_q12611_deathbolt'); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_29_00_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_29_00_world.sql new file mode 100644 index 00000000000..be171cc208f --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_29_00_world.sql @@ -0,0 +1,2 @@ +DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_q12823_remove_collapsing_cave_aura'; +INSERT INTO `spell_script_names` VALUES (55693,'spell_q12823_remove_collapsing_cave_aura'); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_29_01_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_29_01_world.sql new file mode 100644 index 00000000000..7e5afdfc8e0 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_29_01_world.sql @@ -0,0 +1,2 @@ +DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_item_ultrasafe_transporter'; +INSERT INTO `spell_script_names` VALUES (36941,'spell_item_ultrasafe_transporter'); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_29_02_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_29_02_world.sql new file mode 100644 index 00000000000..3ba2064d088 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_29_02_world.sql @@ -0,0 +1,18 @@ +-- +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (1636400, 1636401, 1636402, 1636403, 1636404, 1636405, 1636406, 1636407, 1636408) AND `source_type`=9; +DELETE FROM `smart_scripts` WHERE `entryorguid`=23837 AND `source_type`=0 AND `id` IN (3, 4); +DELETE FROM `smart_scripts` WHERE `entryorguid`=16364 AND `source_type`=0 AND `id`=5; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(23837, 0, 3, 0, 38, 0, 100, 512, 30, 30, 0, 0, 0, 80, 1636401, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "ELM General Purpose Bunny - On Data Set - Run ActionList"), +(23837, 0, 4, 0, 38, 0, 100, 512, 31, 31, 0, 0, 0, 80, 1636402, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "ELM General Purpose Bunny - On Data Set - Run ActionList"), +(1636400, 9, 0, 0, 0, 0, 100, 0, 3000, 3000, 0, 0, 0, 45, 30, 30, 0, 0, 0, 0, 19, 23837, 0, 0, 0, 0, 0, 0, 0, "Infused Crystal - Script - Set Data ELM General Purpose Bunny"), +(1636400, 9, 1, 0, 0, 0, 100, 0, 30000, 30000, 0, 0, 0, 45, 31, 31, 0, 0, 0, 0, 19, 23837, 0, 0, 0, 0, 0, 0, 0, "Infused Crystal - Script - Set Data ELM General Purpose Bunny"), +(1636400, 9, 2, 0, 0, 0, 100, 0, 27000, 27000, 0, 0, 0, 33, 16364, 0, 0, 0, 0, 0, 12, 1, 0, 0, 0, 0, 0, 0, 0, "Infused Crystal - Script - Complete quest (Powering our Defenses)"), +(1636400, 9, 3, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Infused Crystal - Script - Say"), +(1636400, 9, 4, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Infused Crystal - Script - Despawn"), +(1636401, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 12, 17086, 6, 60000, 0, 0, 0, 8, 0, 0, 0, 0, 8318.2246, -7213.9136, 140.2572, 3.07977, "Infused Crystal - On Script - Spawn Enraged Wraith"), +(1636401, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 12, 17086, 6, 60000, 0, 0, 0, 8, 0, 0, 0, 0, 8268.6064, -7174.1279, 137.0559, 5.03934, "Infused Crystal - On Script - Spawn Enraged Wraith"), +(1636401, 9, 2, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 12, 17086, 6, 60000, 0, 0, 0, 8, 0, 0, 0, 0, 8250.7012, -7247.7314, 139.5843, 0.76284, "Infused Crystal - On Script - Spawn Enraged Wraith"), +(1636402, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 12, 17086, 6, 60000, 0, 0, 0, 8, 0, 0, 0, 0, 8300.4414, -7247.9800, 139.8134, 2.05089, "Infused Crystal - On Script - Spawn Enraged Wraith"), +(1636402, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 12, 17086, 6, 60000, 0, 0, 0, 8, 0, 0, 0, 0, 8290.9619, -7176.1738, 137.3834, 4.45421, "Infused Crystal - On Script - Spawn Enraged Wraith"), +(1636402, 9, 2, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 12, 17086, 6, 60000, 0, 0, 0, 8, 0, 0, 0, 0, 8236.4082, -7213.2451, 138.9022, 6.24885, "Infused Crystal - On Script - Spawn Enraged Wraith"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_30_00_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_30_00_world.sql new file mode 100644 index 00000000000..5f3892e78fa --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_30_00_world.sql @@ -0,0 +1,2 @@ +-- +UPDATE `quest_template_addon` SET `PrevQuestID`=0 WHERE `ID` IN (9884, 9885, 9887); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_30_01_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_30_01_world.sql new file mode 100644 index 00000000000..bec6d0652f6 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_30_01_world.sql @@ -0,0 +1,22 @@ +-- +UPDATE `creature` SET `modelid`=0, `spawndist`=0, `MovementType`=0 WHERE `id`=30037; +UPDATE `creature` SET `orientation`=4.01702 WHERE `guid`=122274; +UPDATE `creature` SET `position_x`=8418.1152, `position_y`=3099.1055, `position_z`=588.1407, `orientation`=2.39233 WHERE `guid`=122282; +UPDATE `creature` SET `position_x`=8389.5381, `position_y`=3089.6367, `position_z`=588.1461, `orientation`=0.19321 WHERE `guid`=122277; +UPDATE `creature` SET `position_x`=8407.9512, `position_y`=3067.1392, `position_z`=588.1420, `orientation`=2.35367 WHERE `guid`=122280; +UPDATE `creature` SET `position_x`=8403.9629, `position_y`=3071.0413, `position_z`=588.1420, `orientation`=5.55800 WHERE `guid`=122272; +UPDATE `creature` SET `position_x`=8432.4512, `position_y`=3076.2439, `position_z`=588.1423, `orientation`=5.98605 WHERE `guid`=122276; +UPDATE `creature` SET `position_x`=8468.8838, `position_y`=3095.4836, `position_z`=588.1412, `orientation`=0.79457 WHERE `guid`=122275; +UPDATE `creature` SET `position_x`=8461.1221, `position_y`=3120.8025, `position_z`=588.1393, `orientation`=1.90437 WHERE `guid`=122281; +UPDATE `creature` SET `position_x`=8460.2520, `position_y`=3125.6013, `position_z`=588.1425, `orientation`=4.88889 WHERE `guid`=122271; +UPDATE `creature` SET `position_x`=8449.5693, `position_y`=3149.9019, `position_z`=588.1426, `orientation`=2.80751 WHERE `guid`=122273; +UPDATE `creature` SET `position_x`=8445.9375, `position_y`=3151.6152, `position_z`=588.1661, `orientation`=5.83915 WHERE `guid`=122284; + +DELETE FROM `creature` WHERE `guid`=111259; +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 +(111259, 30037, 571, 0, 0, 1, 1, 0, 1, 8412.42, 3161.56, 588.106, 0.757619, 300, 0, 0, 12175, 0, 0, 0, 0, 0, "", 0); + +DELETE FROM `creature_addon` WHERE `guid` IN (122271, 122272, 122273, 122274, 122275, 122276, 122277, 122280, 122281, 122282, 122283, 122284, 122287, 122288, 122289, 122290, 122291, 122292, 122293); +DELETE FROM `creature_template_addon` WHERE `entry`=30037; +INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `visibilityDistanceType`, `auras`) VALUES +(30037, 0, 0, 0, 1, 333, 0, ""); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_30_02_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_30_02_world.sql new file mode 100644 index 00000000000..8f90f79220e --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_30_02_world.sql @@ -0,0 +1,5 @@ +UPDATE `creature_template` SET `AIName`='', `ScriptName`='npc_frostwing_ymirjar_vrykul' WHERE `entry` IN (37132,38125,37127,37134,37133); +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (37132,38125,37127,37134,37133) AND `source_type`=0; + +-- Dual wield for 'Ymirjar Battle-Maiden' +UPDATE `creature_template` SET `flags_extra`=2048 WHERE `entry` IN (37132,38132); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_30_03_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_30_03_world.sql new file mode 100644 index 00000000000..b0fa402b1b3 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_06_30_03_world.sql @@ -0,0 +1,58 @@ +-- +DELETE FROM `smart_scripts` WHERE `entryorguid`=30037 AND `source_type`=0; +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (3003700, 3003701) AND `source_type`=9; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(30037, 0, 0, 1, 25, 0, 100, 512, 0, 0, 0, 0, 0, 22, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Mjordin Combatant - On Reset - Set Event Phase 1"), +(30037, 0, 1, 0, 61, 0, 100, 512, 0, 0, 0, 0, 0, 17, 333, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Mjordin Combatant - On Reset - Set Emote State STATE_READY1H"), +(30037, 0, 2, 0, 1, 1, 100, 0, 3000, 3000, 3000, 3000, 0, 5, 36, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Mjordin Combatant - OOC - Play Emote ONESHOT_ATTACK1H (Phase 1)"), +(30037, 0, 3, 0, 1, 1, 20, 0, 10000, 90000, 90000, 120000, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Mjordin Combatant - OOC - Say Line 1 (Phase 1)"), +(30037, 0, 4, 0, 4, 1, 100, 0, 0, 0, 0, 0, 0, 22, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Mjordin Combatant - On Aggro - Set Event Phase 2 (Phase 1)"), +(30037, 0, 5, 0, 4, 2, 30, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Mjordin Combatant - On Aggro - Say Line 0 (Phase 2)"), +(30037, 0, 6, 0, 6, 4, 100, 512, 0, 0, 0, 0, 0, 33, 30038, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, "Mjordin Combatant - Just Died - Quest Credit 'Honor Challenge' (Phase 3)"), +(30037, 0, 7, 0, 8, 1, 100, 0, 21855, 0, 0, 0, 0, 80, 3003700, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Mjordin Combatant - On Spellhit 'Challenge Flag' - Run Actionlist (Phase 1)"), +(30037, 0, 8, 0, 38, 1, 100, 0, 1, 1, 0, 0, 0, 80, 3003701, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Mjordin Combatant - On Data 1 1 Set - Run Actionlist (Phase 1)"), +(30037, 0, 9, 0, 4, 0, 100, 0, 0, 0, 0, 0, 0, 11, 61227, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, "Mjordin Combatant - On Aggro - Cast 'Jump Attack'"), +(30037, 0, 10, 0, 0, 0, 100, 0, 1000, 2600, 13000, 14000, 0, 11, 50370, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, "Mjordin Combatant - In Combat - Cast 'Sunder Armor'"), +(30037, 0, 11, 0, 0, 0, 100, 0, 7000, 9000, 9000, 11000, 0, 11, 32736, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, "Mjordin Combatant - In Combat - Cast 'Mortal Strike'"), +(30037, 0, 12, 0, 0, 0, 100, 0, 6000, 8000, 20000, 25000, 0, 11, 49807, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Mjordin Combatant - In Combat - Cast 'Whirlwind'"), +(3003700, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 22, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Mjordin Combatant - On Script - Set Event Phase 3"), +(3003700, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Mjordin Combatant - On Script - Set Emote State 0"), +(3003700, 9, 2, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 66, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, "Mjordin Combatant - On Script - Face Invoker"), +(3003700, 9, 3, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 45, 1, 1, 0, 0, 0, 0, 19, 30037, 8, 0, 0, 0, 0, 0, 0, "Mjordin Combatant - On Script - Set Data 1 1 (Mjordin Combatant)"), +(3003700, 9, 4, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, "Mjordin Combatant - On Script - Say Line 2"), +(3003700, 9, 5, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 11, 52991, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Mjordin Combatant - On Script - Cast Spell 'Duel Flag'"), +(3003701, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 22, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Mjordin Combatant - On Script - Set Event Phase 2"), +(3003701, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Mjordin Combatant - On Script - Set Emote State 0"), +(3003701, 9, 2, 0, 0, 0, 100, 0, 5000, 5000, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Mjordin Combatant - On Script - Despawn"); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=22 AND `SourceEntry`=30037; +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry`=21855; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(22, 3, 30037, 0, 0, 29, 1, 30037, 8, 0, 0, 0, 0, "", "Run SAI for Mjordin Combatant only if there's a Mjordin Combatant within 8 yards"), +(13, 1, 21855, 0, 0, 31, 0, 3, 30037, 0, 0, 0, 0, "", "Spell 'Challenge Flag' only hits Mjordin Combatant"); + +DELETE FROM `creature_text` WHERE `CreatureID`=30037; +INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES +(30037, 0, 0, "Haraak foln!", 12, 0, 100, 0, 0, 13541, 30506, 0, "Mjordin Combatant"), +(30037, 0, 1, "I'll eat your heart!", 12, 0, 100, 0, 0, 13542, 30508, 0, "Mjordin Combatant"), +(30037, 0, 2, "I will take pleasure in gutting you!", 12, 0, 100, 0, 0, 13533, 30498, 0, "Mjordin Combatant"), +(30037, 0, 3, "Die, maggot!", 12, 0, 100, 0, 0, 13536, 30501, 0, "Mjordin Combatant"), +(30037, 0, 4, "Your entrails will make a fine necklace.", 12, 0, 100, 0, 0, 13535, 30500, 0, "Mjordin Combatant"), +(30037, 0, 5, "I will feed you to the dogs!", 12, 0, 100, 0, 0, 13534, 30499, 0, "Mjordin Combatant"), +(30037, 0, 6, "Ugglin oo bjorr!", 12, 0, 100, 0, 0, 13540, 30505, 0, "Mjordin Combatant"), +(30037, 1, 0, "You're weak, old woman!", 12, 0, 100, 14, 0, 0, 30635, 0, "Mjordin Combatant"), +(30037, 1, 1, "Hela take you!", 12, 0, 100, 14, 0, 0, 30636, 0, "Mjordin Combatant"), +(30037, 1, 2, "I will feast in the halls of Ymirheim tonight and you will pour my mead, cur.", 12, 0, 100, 14, 0, 0, 30637, 0, "Mjordin Combatant"), +(30037, 1, 3, "The runes foretold victory for me today!", 12, 0, 100, 14, 0, 0, 30638, 0, "Mjordin Combatant"), +(30037, 1, 4, "Getting tired? Hahahahaha!", 12, 0, 100, 14, 0, 0, 30639, 0, "Mjordin Combatant"), +(30037, 1, 5, "You'll sleep in the underworld tonight!", 12, 0, 100, 14, 0, 0, 30640, 0, "Mjordin Combatant"), +(30037, 1, 6, "You'll wish you'd never been awakened, boy.", 12, 0, 100, 14, 0, 0, 30641, 0, "Mjordin Combatant"), +(30037, 1, 7, "You complain much, like a shield-maiden!", 12, 0, 100, 14, 0, 0, 30642, 0, "Mjordin Combatant"), +(30037, 2, 0, "You think you can challenge me, little $r?", 12, 0, 100, 0, 0, 0, 30690, 0, "Mjordin Combatant"), +(30037, 2, 1, "Your race has no honor. But come anyway... you'll die like all the others!", 12, 0, 100, 0, 0, 0, 30691, 0, "Mjordin Combatant"), +(30037, 2, 2, "By Thorim's beard, this should be good sport!", 12, 0, 100, 0, 0, 0, 30692, 0, "Mjordin Combatant"), +(30037, 2, 3, "Come then, $r $c, I do not have all day!", 12, 0, 100, 0, 0, 0, 30693, 0, "Mjordin Combatant"), +(30037, 2, 4, "It will not get me any closer to proving myself at Valhalas to kill you, but it should be entertaining!", 12, 0, 100, 0, 0, 0, 30694, 0, "Mjordin Combatant"), +(30037, 2, 5, "If you seek death, you have found it!", 12, 0, 100, 0, 0, 0, 30695, 0, "Mjordin Combatant"), +(30037, 2, 6, "A quick trip to the underworld for you, and a laugh for me. Sounds like a fair trade!", 12, 0, 100, 0, 0, 0, 30696, 0, "Mjordin Combatant"), +(30037, 2, 7, "A Drakkari, one of the so-called Scarlet Onslaught, a gnome, a Hyldnir shield-maiden, and now you? Is this a joke?", 12, 0, 100, 0, 0, 0, 30697, 0, "Mjordin Combatant"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_01_00_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_01_00_world.sql new file mode 100644 index 00000000000..4301ed3d3aa --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_01_00_world.sql @@ -0,0 +1,15 @@ +-- +DELETE FROM `creature_text` WHERE `CreatureID`=29915; +INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES +(29915, 0, 0, "You call that fighting? Let me go grab your dolly. Maybe she could teach you how to swing.", 12, 0, 100, 0, 0, 0, 30569, 0, "Instructor Hroegar"), +(29915, 0, 1, "My dead grandmater, rest her soul, could beat you... even now!", 12, 0, 100, 0, 0, 0, 30570, 0, "Instructor Hroegar"), +(29915, 0, 2, "I've half a mind to cut you both down where you stand! The other half isn't arguing!", 12, 0, 100, 0, 0, 0, 30571, 0, "Instructor Hroegar"), +(29915, 0, 3, "Well hello, ladies. What do you think this is... Skorn?", 12, 0, 100, 0, 0, 0, 30572, 0, "Instructor Hroegar"), +(29915, 0, 4, "You will practice until your lungs are bursting and your arms are aching, and then we'll really start!", 12, 0, 100, 0, 0, 0, 30573, 0, "Instructor Hroegar"), +(29915, 0, 5, "Only the best of the best get a shot in Valhalas to go to Ymirheim. Everyone else dies... or worse!", 12, 0, 100, 0, 0, 0, 30574, 0, "Instructor Hroegar"), +(29915, 0, 6, "Stop trying to hit him and HIT HIM already!", 12, 0, 100, 0, 0, 0, 30575, 0, "Instructor Hroegar"), +(29915, 0, 7, "Are you trying to make me look bad? That's the only thing that you're good for today!", 12, 0, 100, 0, 0, 0, 30575, 0, "Instructor Hroegar"); + +DELETE FROM `smart_scripts` WHERE `entryorguid`=29915 AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(29915, 0, 0, 0, 1, 0, 100, 0, 10000, 30000, 120000, 240000, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Instructor Hroegar - OOC - Say Line 0"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_01_01_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_01_01_world.sql new file mode 100644 index 00000000000..661f1820194 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_01_01_world.sql @@ -0,0 +1,45 @@ +-- +SET @GUID := 111225; + +DELETE FROM `creature` WHERE `guid` IN (@GUID, @GUID+1, @GUID+2, @GUID+3); +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 , 15655, 530, 0, 0, 1, 1, 0, 0, 9301.48, -6958.67, 8.01523, 6.19155, 60, 0, 0, 120, 0, 0, 0, 0, 0, "", 0), +(@GUID+1, 15655, 530, 0, 0, 1, 1, 0, 0, 9298.69, -6960.92, 7.68314, 6.19155, 60, 0, 0, 120, 0, 0, 0, 0, 0, "", 0), +(@GUID+2, 15655, 530, 0, 0, 1, 1, 0, 0, 9296.88, -6958.01, 7.37056, 6.19155, 60, 0, 0, 120, 0, 0, 0, 0, 0, "", 0), +(@GUID+3, 15655, 530, 0, 0, 1, 1, 0, 0, 9300.1, -6955.84, 7.74662, 6.19155, 60, 0, 0, 120, 0, 0, 0, 0, 0, "", 0); + +UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=15655; +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (15416, -@GUID, -(@GUID+1), -(@GUID+2), -(@GUID+3)) AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(15416, 0, 0, 0, 0, 0, 100, 0, 0, 0, 3100, 3700, 0, 11, 20811, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, "Ranger Jaela - Combat CMC - Cast 'Fireball'"), +(15416, 0, 1, 0, 1, 0, 100, 0, 10000, 30000, 300000, 540000, 0, 45, 1, 1, 0, 0, 0, 0, 10, @GUID, 15655, 0, 0, 0, 0, 0, 0, "Ranger Jaela - OOC - Set Data 1 1 (Rotlimb Cannibal)"), +(-@GUID, 0, 0, 1, 11, 0, 100, 0, 0, 0, 0, 0, 0, 47, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Rotlimb Cannibal - On Spawn - Set Invisible"), +(-@GUID, 0, 1, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Rotlimb Cannibal - On Spawn - Set ReactState Passive"), +(-@GUID, 0, 2, 3, 38, 0, 100, 0, 1, 1, 0, 0, 0, 47, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Rotlimb Cannibal - On Data 1 1 Set - Set Visible"), +(-@GUID, 0, 3, 4, 61, 0, 100, 0, 0, 0, 0, 0, 0, 53, 1, 1565500, 0, 0, 120000, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Rotlimb Cannibal - On Data 1 1 Set - Start Waypoint"), +(-@GUID, 0, 4, 5, 61, 0, 100, 0, 0, 0, 0, 0, 0, 45, 1, 1, 0, 0, 0, 0, 10, @GUID+1, 15655, 0, 0, 0, 0, 0, 0, "Rotlimb Cannibal - On Data 1 1 Set - Set Data 1 1 (Rotlimb Cannibal)"), +(-@GUID, 0, 5, 6, 61, 0, 100, 0, 0, 0, 0, 0, 0, 45, 1, 1, 0, 0, 0, 0, 10, @GUID+2, 15655, 0, 0, 0, 0, 0, 0, "Rotlimb Cannibal - On Data 1 1 Set - Set Data 1 1 (Rotlimb Cannibal)"), +(-@GUID, 0, 6, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, 45, 1, 1, 0, 0, 0, 0, 10, @GUID+3, 15655, 0, 0, 0, 0, 0, 0, "Rotlimb Cannibal - On Data 1 1 Set - Set Data 1 1 (Rotlimb Cannibal)"), +(-@GUID, 0, 7, 0, 40, 0, 100, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 19, 15416, 0, 0, 0, 0, 0, 0, 0, "Rotlimb Cannibal - On Waypoint 1 Reached - Say Line 0 (Ranger Jaela)"), +(-(@GUID+1), 0, 1, 2, 11, 0, 100, 0, 0, 0, 0, 0, 0, 47, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Rotlimb Cannibal - On Spawn - Set Invisible"), +(-(@GUID+1), 0, 2, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Rotlimb Cannibal - On Spawn - Set ReactState Passive"), +(-(@GUID+1), 0, 3, 4, 38, 0, 100, 0, 1, 1, 0, 0, 0, 47, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Rotlimb Cannibal - On Data 1 1 Set - Set Visible"), +(-(@GUID+1), 0, 4, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, 53, 1, 1565500, 0, 0, 120000, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Rotlimb Cannibal - On Data 1 1 Set - Start Waypoint"), +(-(@GUID+2), 0, 1, 2, 11, 0, 100, 0, 0, 0, 0, 0, 0, 47, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Rotlimb Cannibal - On Spawn - Set Invisible"), +(-(@GUID+2), 0, 2, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Rotlimb Cannibal - On Spawn - Set ReactState Passive"), +(-(@GUID+2), 0, 3, 4, 38, 0, 100, 0, 1, 1, 0, 0, 0, 47, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Rotlimb Cannibal - On Data 1 1 Set - Set Visible"), +(-(@GUID+2), 0, 4, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, 53, 1, 1565500, 0, 0, 120000, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Rotlimb Cannibal - On Data 1 1 Set - Start Waypoint"), +(-(@GUID+3), 0, 1, 2, 11, 0, 100, 0, 0, 0, 0, 0, 0, 47, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Rotlimb Cannibal - On Spawn - Set Invisible"), +(-(@GUID+3), 0, 2, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Rotlimb Cannibal - On Spawn - Set ReactState Passive"), +(-(@GUID+3), 0, 3, 4, 38, 0, 100, 0, 1, 1, 0, 0, 0, 47, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Rotlimb Cannibal - On Data 1 1 Set - Set Visible"), +(-(@GUID+3), 0, 4, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, 53, 1, 1565500, 0, 0, 120000, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Rotlimb Cannibal - On Data 1 1 Set - Start Waypoint"); + +DELETE FROM `creature_text` WHERE `CreatureID`=15416; +INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES +(15416, 0, 0, "Slay them! Don't let the Scourge scum defile our city!", 14, 0, 100, 0, 0, 0, 12861, 0, "Ranger Jaela"), +(15416, 0, 1, "The enemy approaches from the south. Ready your weapons!", 14, 0, 100, 0, 0, 0, 12862, 0, "Ranger Jaela"), +(15416, 0, 2, "The undead are approaching. Attack!", 14, 0, 100, 0, 0, 0, 12863, 0, "Ranger Jaela"); + +DELETE FROM `waypoints` WHERE `entry`=1565500; +INSERT INTO `waypoints` (`entry`, `pointid`, `position_x`, `position_y`, `position_z`, `point_comment`) VALUES +(1565500, 1, 9347.2148, -6964.3096, 15.5277, "Rotlimb Cannibal"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_01_02_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_01_02_world.sql new file mode 100644 index 00000000000..d321b2994fd --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_01_02_world.sql @@ -0,0 +1,40 @@ +-- +SET @GUID := 111185; + +DELETE FROM `creature` WHERE `guid` IN (@GUID, @GUID+1, @GUID+2); +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 , 15655, 530, 0, 0, 1, 1, 0, 0, 8607.49, -6788.45, 101.839, 0.00836706, 60, 0, 0, 120, 0, 0, 0, 0, 0, "", 0), +(@GUID+1, 15654, 530, 0, 0, 1, 1, 0, 1, 8605.56, -6790.09, 102.006, 0.00836706, 60, 0, 0, 120, 0, 0, 0, 0, 0, "", 0), +(@GUID+2, 15654, 530, 0, 0, 1, 1, 0, 1, 8605.38, -6786.45, 102.481, 0.00836706, 60, 0, 0, 120, 0, 0, 0, 0, 0, "", 0); + +UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry` IN (15942, 15655); +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (15942, -@GUID, -(@GUID+1), -(@GUID+2)) AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(15942, 0, 0, 0, 1, 0, 100, 0, 10000, 30000, 300000, 540000, 0, 45, 1, 1, 0, 0, 0, 0, 10, @GUID, 15655, 0, 0, 0, 0, 0, 0, "Ranger Sareyn - OOC - Set Data 1 1 (Rotlimb Cannibal)"), +(-@GUID, 0, 0, 1, 11, 0, 100, 0, 0, 0, 0, 0, 0, 47, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Rotlimb Cannibal - On Spawn - Set Invisible"), +(-@GUID, 0, 1, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Rotlimb Cannibal - On Spawn - Set ReactState Passive"), +(-@GUID, 0, 2, 3, 38, 0, 100, 0, 1, 1, 0, 0, 0, 47, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Rotlimb Cannibal - On Data 1 1 Set - Set Visible"), +(-@GUID, 0, 3, 4, 61, 0, 100, 0, 0, 0, 0, 0, 0, 53, 0, 1565501, 0, 0, 120000, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Rotlimb Cannibal - On Data 1 1 Set - Start Waypoint"), +(-@GUID, 0, 4, 5, 61, 0, 100, 0, 0, 0, 0, 0, 0, 45, 1, 1, 0, 0, 0, 0, 10, @GUID+1, 15654, 0, 0, 0, 0, 0, 0, "Rotlimb Cannibal - On Data 1 1 Set - Set Data 1 1 (Plaguebone Villager)"), +(-@GUID, 0, 5, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, 45, 1, 1, 0, 0, 0, 0, 10, @GUID+2, 15654, 0, 0, 0, 0, 0, 0, "Rotlimb Cannibal - On Data 1 1 Set - Set Data 1 1 (Plaguebone Villager)"), +(-(@GUID+1), 0, 0, 0, 0, 0, 100, 0, 5900, 12200, 11900, 22100, 0, 11, 11976, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, "Plaguebone Pillager - In Combat - Cast 'Strike'"), +(-(@GUID+1), 0, 1, 2, 11, 0, 100, 0, 0, 0, 0, 0, 0, 47, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Plaguebone Pillager - On Spawn - Set Invisible"), +(-(@GUID+1), 0, 2, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Plaguebone Pillager - On Spawn - Set ReactState Passive"), +(-(@GUID+1), 0, 3, 4, 38, 0, 100, 0, 1, 1, 0, 0, 0, 47, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Plaguebone Pillager - On Data 1 1 Set - Set Visible"), +(-(@GUID+1), 0, 4, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, 53, 0, 1565501, 0, 0, 120000, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Plaguebone Pillager - On Data 1 1 Set - Start Waypoint"), +(-(@GUID+1), 0, 5, 0, 40, 0, 100, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 19, 15942, 0, 0, 0, 0, 0, 0, 0, "Plaguebone Pillager - On Waypoint 1 Reached - Say Line 0 (Ranger Sareyn)"), +(-(@GUID+2), 0, 0, 0, 0, 0, 100, 0, 5900, 12200, 11900, 22100, 0, 11, 11976, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, "Plaguebone Pillager - In Combat - Cast 'Strike'"), +(-(@GUID+2), 0, 1, 2, 11, 0, 100, 0, 0, 0, 0, 0, 0, 47, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Plaguebone Pillager - On Spawn - Set Invisible"), +(-(@GUID+2), 0, 2, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Plaguebone Pillager - On Spawn - Set ReactState Passive"), +(-(@GUID+2), 0, 3, 4, 38, 0, 100, 0, 1, 1, 0, 0, 0, 47, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Plaguebone Pillager - On Data 1 1 Set - Set Visible"), +(-(@GUID+2), 0, 4, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, 53, 0, 1565501, 0, 0, 120000, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Plaguebone Pillager - On Data 1 1 Set - Start Waypoint"); + +DELETE FROM `waypoints` WHERE `entry`=1565501; +INSERT INTO `waypoints` (`entry`, `pointid`, `position_x`, `position_y`, `position_z`, `point_comment`) VALUES +(1565501, 1, 8648.8262, -6790.4302, 96.2708, "Rotlimb Cannibal/Plaguebone Villager"); + +DELETE FROM `creature_text` WHERE `CreatureID`=15942; +INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES +(15942, 0, 0, "Open fire!", 14, 0, 100, 0, 0, 0, 12417, 0, "Ranger Sareyn"), +(15942, 0, 1, "Enemy sighted! Ready your weapons!", 14, 0, 100, 0, 0, 0, 12418, 0, "Ranger Sareyn"), +(15942, 0, 2, "Hold your positions!", 14, 0, 100, 0, 0, 0, 12419, 0, "Ranger Sareyn"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_01_03_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_01_03_world.sql new file mode 100644 index 00000000000..c511052085f --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_01_03_world.sql @@ -0,0 +1,19 @@ +-- +UPDATE `quest_template_addon` SET `PrevQuestID`=0, `ExclusiveGroup`=0 WHERE `ID` IN (9927, 9928, 9931, 9932); +UPDATE `quest_template_addon` SET `PrevQuestID`=0 WHERE `ID`=9934; +UPDATE `quest_template_addon` SET `NextQuestID`=0 WHERE `ID` IN (10107, 10108); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=19 AND `SourceEntry` IN (9927, 9928, 9931, 9932, 9933, 9934); +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(19, 0, 9927, 0, 0, 8, 0, 10107, 0, 0, 0, 0, 0, "", "Quest Ruthless Cunning requires quest Diplomatic Measures (Horde) rewarded OR"), +(19, 0, 9927, 0, 1, 8, 0, 10108, 0, 0, 0, 0, 0, "", "Quest Ruthless Cunning requires quest Diplomatic Measures (Alliance) rewarded"), +(19, 0, 9928, 0, 0, 8, 0, 10107, 0, 0, 0, 0, 0, "", "Quest Armaments for Deception requires quest Diplomatic Measures (Horde) rewarded OR"), +(19, 0, 9928, 0, 1, 8, 0, 10108, 0, 0, 0, 0, 0, "", "Quest Armaments for Deception requires quest Diplomatic Measures (Alliance) rewarded"), +(19, 0, 9931, 0, 0, 8, 0, 9927, 0, 0, 0, 0, 0, "", "Quest Returning the Favor requires quest Ruthless Cunning rewarded AND"), +(19, 0, 9931, 0, 0, 8, 0, 9928, 0, 0, 0, 0, 0, "", "Quest Returning the Favor requires quest Armaments for Deception rewarded"), +(19, 0, 9932, 0, 0, 8, 0, 9927, 0, 0, 0, 0, 0, "", "Quest Body of Evidence requires quest Ruthless Cunning rewarded AND"), +(19, 0, 9932, 0, 0, 8, 0, 9928, 0, 0, 0, 0, 0, "", "Quest Body of Evidence requires quest Armaments for Deception rewarded"), +(19, 0, 9933, 0, 0, 8, 0, 9931, 0, 0, 0, 0, 0, "", "Quest Message to Telaar requires quest Returning the Favor rewarded AND"), +(19, 0, 9933, 0, 0, 8, 0, 9932, 0, 0, 0, 0, 0, "", "Quest Message to Telaar requires quest Body of Evidence rewarded"), +(19, 0, 9934, 0, 0, 8, 0, 9931, 0, 0, 0, 0, 0, "", "Quest Message to Garadar requires quest Returning the Favor rewarded AND"), +(19, 0, 9934, 0, 0, 8, 0, 9932, 0, 0, 0, 0, 0, "", "Quest Message to Garadar requires quest Body of Evidence rewarded"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_01_04_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_01_04_world.sql new file mode 100644 index 00000000000..92b7b1687d3 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_01_04_world.sql @@ -0,0 +1,2 @@ +-- +UPDATE `conditions` SET `ConditionTypeOrReference`=9, `NegativeCondition`=0 WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=9874; diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_01_05_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_01_05_world.sql new file mode 100644 index 00000000000..2cab05fad38 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_01_05_world.sql @@ -0,0 +1,9 @@ +-- +DELETE FROM `creature_template_addon` WHERE `entry`=29366; +INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `auras`) VALUES +(29366, 0, 0, 0, 0, 333, ""); + +UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=29366; +DELETE FROM `smart_scripts` WHERE `entryorguid`=29366 AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(29366, 0, 0, 0, 1, 0, 100, 0, 3000, 4000, 3000, 4000, 0, 5, 36, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Brunnhildar Challenger - OOC - Play Attack Emote"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_01_06_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_01_06_world.sql new file mode 100644 index 00000000000..f194f0538c3 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_01_06_world.sql @@ -0,0 +1,2 @@ +-- +UPDATE `creature` SET `MovementType`=0, `spawndist`=0 WHERE `id`=30174; diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_01_07_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_01_07_world.sql new file mode 100644 index 00000000000..525f9a55f89 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_01_07_world.sql @@ -0,0 +1,10 @@ +-- +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (30012, 3001200) AND `source_type` IN (0, 9); +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `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 +(30012, 0, 0, 0, 25, 0, 100, 512, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Victorious Challenger - On Reset - Set Faction 0"), +(30012, 0, 1, 2, 62, 0, 100, 512, 9865, 0, 0, 0, 0, 72, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Victorious Challenger - On Gossip Option 0 Selected - Close Gossip"), +(30012, 0, 2, 3, 61, 0, 100, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Victorious Challenger - On Gossip Option 0 Selected - Say Line 0"), +(30012, 0, 3, 4, 61, 0, 100, 0, 0, 0, 0, 0, 0, 2, 14, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Victorious Challenger - On Gossip Option 0 Selected - Set Faction 14"), +(30012, 0, 4, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, 49, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Victorious Challenger - On Gossip Option 0 Selected - Start Attacking"), +(30012, 0, 5, 0, 9, 0, 100, 0, 0, 5, 5000, 10000, 0, 11, 11971, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Victorious Challenger - Within 0-5 Range - Cast 'Sunder Armor'"), +(30012, 0, 6, 0, 0, 0, 100, 0, 10000, 15000, 15000, 20000, 0, 11, 11977, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, "Victorious Challenger - In Combat - Cast 'Rend'"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_01_08_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_01_08_world.sql new file mode 100644 index 00000000000..2f2312ebed8 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_01_08_world.sql @@ -0,0 +1,2 @@ +DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_item_dimensional_ripper_everlook'; +INSERT INTO `spell_script_names` VALUES (23442,'spell_item_dimensional_ripper_everlook'); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_03_00_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_03_00_world.sql new file mode 100644 index 00000000000..ffb955a9c8c --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_03_00_world.sql @@ -0,0 +1,13 @@ +-- +DELETE FROM `npc_vendor` WHERE `entry`=19227; +INSERT INTO `npc_vendor` (`entry`, `slot`, `item`, `VerifiedBuild`) VALUES +(19227, 0, 27978, 12340), +(19227, 1, 27992, 12340), +(19227, 2, 27979, 12340), +(19227, 3, 27945, 12340), +(19227, 4, 27941, 12340), +(19227, 5, 27976, 12340), +(19227, 6, 27982, 12340), +(19227, 7, 27944, 12340), +(19227, 8, 27940, 12340), +(19227, 9, 34249, 12340); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_03_01_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_03_01_world.sql new file mode 100644 index 00000000000..17872d5ebba --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_03_01_world.sql @@ -0,0 +1,75 @@ +-- +UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry` IN (31019, 31023, 31028); +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (31019, 31023, 31028) AND `source_type`=0; +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (3101900, 3102300, 3102800) AND `source_type`=9; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(31019, 0, 0, 0, 10, 0, 100, 7, 1, 10, 0, 0, 0, 80, 3101900, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Stephanie Sindree - Within 1-10 Range Out of Combat LoS - Call Actionlist"), +(3101900, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 19, 31126, 0, 0, 0, 0, 0, 0, "Stephanie Sindree - On Script - Say Line 2 (Agitated Statholme Citizen)"), +(3101900, 9, 1, 0, 0, 0, 100, 0, 7000, 7000, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Stephanie Sindree - On Script - Say Line 0"), +(3101900, 9, 2, 0, 0, 0, 100, 0, 7000, 7000, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 19, 31126, 0, 0, 0, 0, 0, 0, "Stephanie Sindree - On Script - Say Line 3 (Agitated Statholme Citizen)"), +(3101900, 9, 3, 0, 0, 0, 100, 0, 7000, 7000, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Stephanie Sindree - On Script - Say Line 1"), +(3101900, 9, 4, 0, 0, 0, 100, 0, 7000, 7000, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 19, 31126, 0, 0, 0, 0, 0, 0, "Stephanie Sindree - On Script - Say Line 4 (Agitated Statholme Citizen)"), +(3101900, 9, 5, 0, 0, 0, 100, 0, 7000, 7000, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Stephanie Sindree - On Script - Say Line 2"), +(3101900, 9, 6, 0, 0, 0, 100, 0, 7000, 7000, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0, 19, 31126, 0, 0, 0, 0, 0, 0, "Stephanie Sindree - On Script - Say Line 5 (Agitated Statholme Citizen)"), +(31023, 0, 0, 0, 10, 0, 100, 7, 1, 10, 0, 0, 0, 80, 3102300, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Brandon Eiredeck - Within 1-10 Range Out of Combat LoS - Call Actionlist"), +(3102300, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0, 9, 31126, 1, 20, 0, 0, 0, 0, "Brandon Eiredeck - On Script - Say Line 6 (Agitated Statholme Citizen)"), +(3102300, 9, 1, 0, 0, 0, 100, 0, 7000, 7000, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Brandon Eiredeck - On Script - Say Line 0"), +(3102300, 9, 2, 0, 0, 0, 100, 0, 7000, 7000, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Brandon Eiredeck - On Script - Say Line 1"), +(3102300, 9, 3, 0, 0, 0, 100, 0, 7000, 7000, 0, 0, 0, 1, 7, 0, 0, 0, 0, 0, 9, 31126, 1, 20, 0, 0, 0, 0, "Brandon Eiredeck - On Script - Say Line 7 (Agitated Statholme Citizen)"), +(3102300, 9, 4, 0, 0, 0, 100, 0, 7000, 7000, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 9, 31126, 1, 20, 0, 0, 0, 0, "Brandon Eiredeck - On Script - Say Line 8 (Agitated Statholme Citizen)"), +(3102300, 9, 5, 0, 0, 0, 100, 0, 7000, 7000, 0, 0, 0, 1, 9, 0, 0, 0, 0, 0, 9, 31126, 1, 20, 0, 0, 0, 0, "Brandon Eiredeck - On Script - Say Line 9 (Agitated Statholme Citizen)"), +(3102300, 9, 6, 0, 0, 0, 100, 0, 7000, 7000, 0, 0, 0, 1, 10, 0, 0, 0, 0, 0, 9, 31126, 1, 20, 0, 0, 0, 0, "Brandon Eiredeck - On Script - Say Line 10 (Agitated Statholme Citizen)"), +(3102300, 9, 7, 0, 0, 0, 100, 0, 7000, 7000, 0, 0, 0, 1, 11, 0, 0, 0, 0, 0, 9, 31126, 1, 20, 0, 0, 0, 0, "Brandon Eiredeck - On Script - Say Line 11 (Agitated Statholme Citizen)"), +(3102300, 9, 8, 0, 0, 0, 100, 0, 7000, 7000, 0, 0, 0, 1, 12, 0, 0, 0, 0, 0, 9, 31126, 1, 20, 0, 0, 0, 0, "Brandon Eiredeck - On Script - Say Line 12 (Agitated Statholme Citizen)"), +(3102300, 9, 9, 0, 0, 0, 100, 0, 7000, 7000, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Brandon Eiredeck - On Script - Say Line 2"), +(3102300, 9, 10, 0, 0, 0, 100, 0, 7000, 7000, 0, 0, 0, 1, 13, 0, 0, 0, 0, 0, 9, 31126, 1, 20, 0, 0, 0, 0, "Brandon Eiredeck - On Script - Say Line 13 (Agitated Statholme Citizen)"), +(31028, 0, 0, 0, 10, 0, 100, 7, 1, 10, 0, 0, 0, 80, 3102800, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Patricia O'Reilly - Within 1-10 Range Out of Combat LoS - Call Actionlist"), +(31028, 0, 1, 0, 10, 0, 100, 7, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Patricia O'Reilly - Within 1-1 Range Out of Combat LoS - Say Line 1"), +(3102800, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 14, 0, 0, 0, 0, 0, 9, 31126, 1, 20, 0, 0, 0, 0, "Patricia O'Reilly - On Script - Say Line 14 (Agitated Statholme Citizen)"), +(3102800, 9, 1, 0, 0, 0, 100, 0, 7000, 7000, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 9, 31127, 1, 20, 0, 0, 0, 0, "Patricia O'Reilly - On Script - Say Line 0 (Agitated Statholme Resident"), +(3102800, 9, 2, 0, 0, 0, 100, 0, 7000, 7000, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Patricia O'Reilly - On Script - Say Line 0"), +(3102800, 9, 3, 0, 0, 0, 100, 0, 7000, 7000, 0, 0, 0, 1, 15, 0, 0, 0, 0, 0, 9, 31126, 1, 20, 0, 0, 0, 0, "Patricia O'Reilly - On Script - Say Line 15 (Agitated Statholme Citizen)"), +(3102800, 9, 4, 0, 0, 0, 100, 0, 7000, 7000, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 9, 31127, 1, 20, 0, 0, 0, 0, "Patricia O'Reilly - On Script - Say Line 1 (Agitated Statholme Resident"), +(3102800, 9, 5, 0, 0, 0, 100, 0, 7000, 7000, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Patricia O'Reilly - On Script - Say Line 0"), +(3102800, 9, 6, 0, 0, 0, 100, 0, 7000, 7000, 0, 0, 0, 1, 16, 0, 0, 0, 0, 0, 9, 31126, 1, 20, 0, 0, 0, 0, "Patricia O'Reilly - On Script - Say Line 16 (Agitated Statholme Citizen)"), +(3102800, 9, 7, 0, 0, 0, 100, 0, 7000, 7000, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 9, 31127, 1, 20, 0, 0, 0, 0, "Patricia O'Reilly - On Script - Say Line 2 (Agitated Statholme Resident"), +(3102800, 9, 8, 0, 0, 0, 100, 0, 7000, 7000, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Patricia O'Reilly - On Script - Say Line 0"), +(3102800, 9, 9, 0, 0, 0, 100, 0, 7000, 7000, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 9, 31127, 1, 20, 0, 0, 0, 0, "Patricia O'Reilly - On Script - Say Line 3 (Agitated Statholme Resident"), +(3102800, 9, 10, 0, 0, 0, 100, 0, 7000, 7000, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Patricia O'Reilly - On Script - Say Line 0"); + +DELETE FROM `creature_text` WHERE `CreatureID` IN (31019, 31023, 31028, 31127); +DELETE FROM `creature_text` WHERE `CreatureID`=31126 AND `GroupID` NOT IN (0, 1); +INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES +(31019, 0, 0, "Look, I'm sorry, I really am, but all of my food is fresh!", 12, 0, 100, 0, 0, 0, 31792, 0, "Stephanie Sindree"), +(31019, 1, 0, "It wasn't my food!", 12, 0, 100, 0, 0, 0, 31838, 0, "Stephanie Sindree"), +(31019, 2, 0, "Please, it's not my fault! If... if I give you a refund, maybe you can speak to a healer? I don't know what you expect me to do!", 12, 0, 100, 0, 0, 0, 31840, 0, "Stephanie Sindree"), +(31126, 2, 0, "I bought food from this stall just yesterday and now my family's taken ill!", 12, 0, 100, 0, 0, 0, 31791, 0, "Agitated Stratholme Citizen"), +(31126, 3, 0, "My husband and children are sick in bed because of the poison you sold me!", 12, 0, 100, 0, 0, 0, 31837, 0, "Agitated Stratholme Citizen"), +(31126, 4, 0, "Don't try to weasel out of this!", 12, 0, 100, 0, 0, 0, 31839, 0, "Agitated Stratholme Citizen"), +(31126, 5, 0, "That... no, keep your filthy money! It won't help my family!", 12, 0, 100, 0, 0, 0, 31842, 0, "Agitated Stratholme Citizen"), +(31126, 6, 0, "I think it's your grain that's making us sick!", 12, 0, 100, 0, 0, 0, 32032, 0, "Agitated Stratholme Citizen"), +(31126, 7, 0, "Give us one good reason why we shouldn't set fire to these sacks!", 12, 0, 100, 0, 0, 0, 32036, 0, "Agitated Stratholme Citizen"), +(31126, 8, 0, "The whole city's ill!", 12, 0, 100, 0, 0, 0, 32031, 0, "Agitated Stratholme Citizen"), +(31126, 9, 0, "You brought this down on us! I'd bet gold on it!", 12, 0, 100, 0, 0, 0, 32033, 0, "Agitated Stratholme Citizen"), +(31126, 10, 0, "My family's sick!", 12, 0, 100, 0, 0, 0, 32030, 0, "Agitated Stratholme Citizen"), +(31126, 11, 0, "We were fine until we ate from this tainted grain of yours!", 12, 0, 100, 0, 0, 0, 32035, 0, "Agitated Stratholme Citizen"), +(31126, 12, 0, "This is all your fault!", 12, 0, 100, 0, 0, 0, 32037, 0, "Agitated Stratholme Citizen"), +(31126, 13, 0, "It's poison! Cartloads of poison!", 12, 0, 100, 0, 0, 0, 32034, 0, "Agitated Stratholme Citizen"), +(31126, 14, 0, "We want to speak to the magistrate!", 12, 0, 100, 0, 0, 0, 32058, 0, "Agitated Stratholme Citizen"), +(31126, 15, 0, "What are we supposed to do?!", 12, 0, 100, 0, 0, 0, 32059, 0, "Agitated Stratholme Citizen"), +(31126, 16, 0, "Where's Barthilas?!", 12, 0, 100, 0, 0, 0, 32057, 0, "Agitated Stratholme Citizen"), +(31023, 0, 0, "I just delivered it!", 12, 0, 100, 0, 0, 0, 32039, 0, "Brandon Eiredeck"), +(31023, 1, 0, "I didn't touch it! I promise you!", 12, 0, 100, 0, 0, 0, 32043, 0, "Brandon Eiredeck"), +(31023, 2, 0, "Please, I'm just a delivery man!", 12, 0, 100, 0, 0, 0, 32044, 0, "Brandon Eiredeck"), +(31023, 3, 0, "I haven't done anything!", 12, 0, 100, 0, 0, 0, 32045, 0, "Brandon Eiredeck"), +(31028, 0, 0, "The magistrate is very busy.", 12, 0, 100, 0, 0, 0, 32068, 0, "Patricia O'Reilly"), +(31028, 0, 1, "Please, return to your homes.", 12, 0, 100, 0, 0, 0, 32069, 0, "Patricia O'Reilly"), +(31028, 0, 2, "Everyone, please remain calm...", 12, 0, 100, 0, 0, 0, 32070, 0, "Patricia O'Reilly"), +(31028, 0, 3, "Magistrate Barthilas is unavailable at the moment...", 12, 0, 100, 0, 0, 0, 32071, 0, "Patricia O'Reilly"), +(31028, 1, 0, "Please don't go back there!", 12, 0, 100, 0, 0, 0, 32073, 0, "Patricia O'Reilly"), +(31028, 1, 1, "Don't disturb the magistrate, please!", 12, 0, 100, 0, 0, 0, 32074, 0, "Patricia O'Reilly"), +(31028, 1, 2, "Come back; we're not open!", 12, 0, 100, 0, 0, 0, 32076, 0, "Patricia O'Reilly"), +(31127, 0, 0, "We need leadership!", 12, 0, 100, 0, 0, 0, 32060, 0, "Agitated Stratholme Resident"), +(31127, 1, 0, "Stop hiding, Barthilas!", 12, 0, 100, 0, 0, 0, 32061, 0, "Agitated Stratholme Resident"), +(31127, 2, 0, "Let us through!", 12, 0, 100, 0, 0, 0, 32062, 0, "Agitated Stratholme Resident"), +(31127, 3, 0, "We'll drag you out here if we have to!", 12, 0, 100, 0, 0, 0, 32063, 0, "Agitated Stratholme Resident"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_03_02_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_03_02_world.sql new file mode 100644 index 00000000000..4b602c9acd8 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_03_02_world.sql @@ -0,0 +1,2 @@ +-- +UPDATE `creature_template` SET `npcflag`=`npcflag`&~4096 WHERE `entry`=16280; diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_04_00_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_04_00_world.sql new file mode 100644 index 00000000000..762db275dc5 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_04_00_world.sql @@ -0,0 +1,4 @@ +-- +DELETE FROM `quest_template_addon` WHERE `ID` IN (1758); +INSERT INTO `quest_template_addon` (`ID`, `AllowableClasses`) VALUES +(1758, 256); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_04_01_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_04_01_world.sql new file mode 100644 index 00000000000..7825cf82f27 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_04_01_world.sql @@ -0,0 +1,28 @@ +-- +DELETE FROM `creature_template_addon` WHERE `entry`=24525; +INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `auras`) VALUES +(24525, 0, 0, 0, 0, 10, ""); + +UPDATE `creature_template` SET AIName="SmartAI" WHERE `entry`=26531; +DELETE FROM `smart_scripts` WHERE `entryorguid`=26531 AND `source_type`=0; +DELETE FROM `smart_scripts` WHERE `entryorguid`=24525 AND `id`=1 AND `source_type`=0; +DELETE FROM `smart_scripts` WHERE `entryorguid`=2452500 AND `source_type`=9; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`,`action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(26531, 0, 0, 0, 38, 0, 100, 0, 1, 1, 0, 0, 0, 66, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 3.52819, "Mesmerized Frog - On Data 1 1 Set - Set Orientation"), +(24525, 0, 1, 0, 1, 0, 100, 0, 30000, 60000, 300000, 600000, 0, 1, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Zeh'gehn - OOC - Talk 2"), +(2452500, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 83, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Zeh'gehn - On Script - Remove Npcflag Gossip+Questgiver"), +(2452500, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Zeh'gehn - On Script - Set EmoteState 0"), +(2452500, 9, 2, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 12, 26531, 1, 16000, 0, 0, 0, 8, 0, 0, 0, 0, -133.458, -3545.55, 2.89468, 4.5204, "Zeh'gehn - On Script - Spawn Mesmerized Frog"), +(2452500, 9, 3, 0, 0, 0, 100, 0, 3000, 3000, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Zeh'gehn - On Script - Say Line 1"), +(2452500, 9, 4, 0, 0, 0, 100, 0, 3000, 3000, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 19, 26531, 0, 0, 0, 0, 0, 0, 0, "Zeh'gehn - On Script - Say Line 1 (Mesmerized Frog)"), +(2452500, 9, 5, 0, 0, 0, 100, 0, 5000, 5000, 0, 0, 0, 45, 1, 1, 0, 0, 0, 0, 19, 26531, 0, 0, 0, 0, 0, 0, 0, "Zeh'gehn - On Script - Set Data 1 1 (Mesmerized Frog)"), +(2452500, 9, 6, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 19, 26531, 0, 0, 0, 0, 0, 0, 0, "Zeh'gehn - On Script - Say Line 2 (Mesmerized Frog)"), +(2452500, 9, 7, 0, 0, 0, 100, 0, 5000, 5000, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Zeh'gehn - On Script - Say Line 2"), +(2452500, 9, 8, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 17, 10, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Zeh'gehn - On Script - Set EmoteState Dance"), +(2452500, 9, 9, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 82, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Zeh'gehn - On Script - Add Npcflag Gossip+Questgiver"); + +DELETE FROM `creature_text` WHERE `CreatureID`=24525 AND `GroupID`=2; +INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES +(24525, 2, 0, "Watch nah, ye bogfiddler! I an' I gunna show ye 'ow a jig meant fe be jigged to!", 12, 0, 100, 0, 0, 0, 23580, 0, "Zeh'gehn"), +(24525, 2, 1, "Yah, me bredren! Galang now and pass us a grog, just dead men yahso.", 12, 0, 100, 0, 0, 0, 23579, 0, "Zeh'gehn"), +(24525, 2, 2, "Yarrrr, mon!", 12, 0, 100, 0, 0, 0, 23849, 0, "Zeh'gehn"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_05_00_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_05_00_world.sql new file mode 100644 index 00000000000..60191109234 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_05_00_world.sql @@ -0,0 +1,138 @@ +-- +UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry` IN (28474, 28488, 28490, 29194, 29210); +UPDATE `creature` SET `modelid`=0, `spawntimesecs`=20 WHERE `id`=28490; +UPDATE `creature` SET `spawntimesecs`=20 WHERE id=28488; + +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (28474, 28490, 28488, 29194, 29210) AND `source_type`=0; +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (2847400, 2847401, 2849000) AND `source_type`=9; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(28474, 0, 0, 0, 25, 0, 100, 0, 0, 0, 0, 0, 0, 18, 768, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Reset - Set Immune To NPC+PC"), +(28474, 0, 1, 0, 1, 0, 100, 0, 5000, 20000, 970000, 980000, 0, 80, 2847400, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Amal'thazad - OOC - Run Actionlist"), +(29194, 0, 0, 0, 25, 0, 100, 0, 0, 0, 0, 0, 0, 18, 768, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Reset - Set Immune To NPC+PC"), +(29194, 0, 1, 0, 1, 0, 100, 0, 5000, 20000, 970000, 980000, 0, 80, 2847401, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Amal'thazad - OOC - Run Actionlist"), +(28490, 0, 0, 0, 13, 0, 100, 0, 15000, 20000, 0, 0, 0, 11, 53550, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, "Disciple of Frost - On Victim Casting - Cast 'Mind Freeze'"), +(28490, 0, 1, 0, 0, 0, 100, 0, 5000, 10000, 15000, 20000, 0, 11, 50349, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, "Disciple of Frost - In Combat - Cast 'Icy Touch'"), +(28490, 0, 2, 0, 0, 1, 100, 0, 16000, 16000, 30000, 40000, 0, 11, 51209, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, "Disciple of Frost - In Combat - Cast 'Hungering Cold' (Phase 1)"), +(28490, 0, 3, 0, 0, 1, 100, 0, 27000, 27000, 30000, 40000, 0, 11, 53536, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, "Disciple of Frost - In Combat - Cast 'Howling Blast' (Phase 1)"), +(28490, 0, 4, 5, 25, 0, 100, 0, 0, 0, 0, 0, 0, 18, 768, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Disciple of Frost - On Reset - Set Immune To NPC+PC"), +(28490, 0, 5, 6, 61, 0, 100, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Disciple of Frost - On Reset - Set Run Off"), +(28490, 0, 6, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, 2, 2104, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Disciple of Frost - On Reset - Set Faction"), +(28490, 0, 7, 8, 6, 0, 100, 0, 0, 0, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0, 19, 28474, 50, 0, 0, 0, 0, 0, 0, "Disciple of Frost - On Death - Say Line 5 (Amal'thazad)"), +(28490, 0, 8, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0, 19, 29194, 50, 0, 0, 0, 0, 0, 0, "Disciple of Frost - On Death - Say Line 5 (Amal'thazad)"), +(28490, 0, 9, 10, 5, 0, 100, 0, 0, 0, 0, 28488, 0, 1, 6, 0, 0, 0, 0, 0, 19, 28474, 50, 0, 0, 0, 0, 0, 0, "Disciple of Frost - On Killed Coldwraith - Say Line 6 (Amal'thazad)"), +(28490, 0, 10, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0, 19, 29194, 50, 0, 0, 0, 0, 0, 0, "Disciple of Frost - On Killed Coldwraith - Say Line 6 (Amal'thazad)"), +(28490, 0, 11, 12, 5, 0, 100, 0, 0, 0, 0, 29210, 0, 1, 6, 0, 0, 0, 0, 0, 19, 28474, 50, 0, 0, 0, 0, 0, 0, "Disciple of Frost - On Killed Frigid Bones - Say Line 6 (Amal'thazad)"), +(28490, 0, 12, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0, 19, 29194, 50, 0, 0, 0, 0, 0, 0, "Disciple of Frost - On Killed Frigid Bones - Say Line 6 (Amal'thazad)"), +(28490, 0, 13, 0, 34, 0, 100, 0, 0, 1, 0, 0, 0, 66, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0.58552, "Disciple of Frost - On Point 1 Reached - Set Orientation"), +(28490, 0, 14, 0, 34, 0, 100, 0, 0, 2, 0, 0, 0, 66, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 3.82097, "Disciple of Frost - On Point 2 Reached - Set Orientation"), +(28490, 0, 15, 0, 38, 0, 100, 0, 1, 1, 0, 0, 0, 69, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 2414.7710, -5532.0576, 377.0268, 0, "Disciple of Frost - On Data 1 1 Set - Move To Pos"), +(28490, 0, 16, 17, 38, 0, 100, 0, 2, 2, 0, 0, 0, 19, 768, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Disciple of Frost - On Data 2 2 Set - Remove Immune To NPC+PC"), +(28490, 0, 17, 18, 61, 0, 100, 0, 0, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Disciple of Frost - On Data 2 2 Set - Set Run On"), +(28490, 0, 18, 19, 61, 0, 100, 0, 0, 0, 0, 0, 0, 2, 2081, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Disciple of Frost - On Data 2 2 Set - Set Faction"), +(28490, 0, 19, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, 49, 0, 0, 0, 0, 0, 0, 19, 28488, 10, 0, 0, 0, 0, 0, 0, "Disciple of Frost - On Data 2 2 Set - Attack Coldwraith"), +(28490, 0, 20, 0, 38, 0, 100, 0, 3, 3, 0, 0, 0, 80, 2849000, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Disciple of Frost - On Data 3 3 Set - Run Actionlist"), +(28490, 0, 21, 0, 38, 0, 100, 0, 4, 4, 0, 0, 0, 69, 2, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 2422.0012, -5527.2939, 377.0545, 0, "Disciple of Frost - On Data 4 4 Set - Move To Pos"), +(28488, 0, 0, 0, 0, 0, 100, 0, 1000, 2000, 4000, 5000, 0, 11, 15043, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, "Coldwraith - In Combat - Cast 'Frostbolt'"), +(28488, 0, 1, 0, 11, 0, 100, 0, 0, 0, 0, 0, 0, 11, 53539, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Coldwraith - On Respawn - Cast Spell"), +(28488, 0, 2, 0, 25, 0, 100, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Coldwraith - On Reset - Set Run Off"), +(28488, 0, 3, 0, 38, 0, 100, 0, 1, 1, 0, 0, 0, 69, 1, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 2422.0012, -5527.2939, 377.0545, 0, "Coldwraith - On Data 1 1 Set - Move To Pos"), +(28488, 0, 4, 0, 38, 0, 100, 0, 2, 2, 0, 0, 0, 69, 2, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 2414.7710, -5532.0576, 377.0268, 0, "Coldwraith - On Data 2 2 Set - Move To Pos"), +(28488, 0, 5, 0, 34, 0, 100, 0, 0, 1, 0, 0, 0, 66, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 3.82097, "Coldwraith - On Point 1 Reached - Set Orientation"), +(28488, 0, 6, 0, 34, 0, 100, 0, 0, 2, 0, 0, 0, 66, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0.58552, "Coldwraith - On Point 2 Reached - Set Orientation"), +(29210, 0, 0, 1, 54, 0, 100, 0, 0, 0, 0, 0, 0, 11, 53539, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Frigid Bones - On Just Summoned - Cast Spell"), +(29210, 0, 1, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 0, 19, 28490, 4, 0, 0, 0, 0, 0, 0, "Frigid Bones - On Just Summoned - Attack Disciple of Frost"), +(2847400, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Say Line 0"), +(2847400, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 45, 1, 1, 0, 0, 0, 0, 10, 128535, 28490, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Set Data 1 1 (Disciple of Frost)"), +(2847400, 9, 2, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 45, 1, 1, 0, 0, 0, 0, 10, 128525, 28488, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Set Data 1 1 (Coldwraith)"), +(2847400, 9, 3, 0, 0, 0, 100, 0, 8000, 8000, 0, 0, 0, 45, 2, 2, 0, 0, 0, 0, 10, 128535, 28490, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Set Data 2 2 (Disciple of Frost)"), +(2847400, 9, 4, 0, 0, 0, 100, 0, 8000, 8000, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Say Line 1"), +(2847400, 9, 5, 0, 0, 0, 100, 0, 12000, 12000, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Say Line 2"), +(2847400, 9, 6, 0, 0, 0, 100, 0, 240000, 245000, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Say Line 0"), +(2847400, 9, 7, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 45, 1, 1, 0, 0, 0, 0, 10, 128538, 28490, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Set Data 1 1 (Disciple of Frost)"), +(2847400, 9, 8, 0, 0, 0, 100, 0, 4000, 4000, 0, 0, 0, 45, 3, 3, 0, 0, 0, 0, 10, 128538, 28490, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Set Data 3 3 (Disciple of Frost)"), +(2847400, 9, 9, 0, 0, 0, 100, 0, 15000, 15000, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Say Line 3"), +(2847400, 9, 10, 0, 0, 0, 100, 0, 11000, 11000, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Say Line 4"), +(2847400, 9, 11, 0, 0, 0, 100, 0, 240000, 245000, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Say Line 0"), +(2847400, 9, 12, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 45, 4, 4, 0, 0, 0, 0, 10, 128540, 28490, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Set Data 4 4 (Disciple of Frost)"), +(2847400, 9, 13, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 45, 2, 2, 0, 0, 0, 0, 10, 128526, 28488, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Set Data 2 2 (Coldwraith)"), +(2847400, 9, 14, 0, 0, 0, 100, 0, 8000, 8000, 0, 0, 0, 45, 2, 2, 0, 0, 0, 0, 10, 128540, 28490, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Set Data 2 2 (Disciple of Frost)"), +(2847400, 9, 15, 0, 0, 0, 100, 0, 8000, 8000, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Say Line 1"), +(2847400, 9, 16, 0, 0, 0, 100, 0, 12000, 12000, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Say Line 2"), +(2847400, 9, 17, 0, 0, 0, 100, 0, 240000, 245000, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Say Line 0"), +(2847400, 9, 18, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 45, 4, 4, 0, 0, 0, 0, 10, 128542, 28490, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Set Data 4 4 (Disciple of Frost)"), +(2847400, 9, 19, 0, 0, 0, 100, 0, 4000, 4000, 0, 0, 0, 45, 3, 3, 0, 0, 0, 0, 10, 128542, 28490, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Set Data 3 3 (Disciple of Frost)"), +(2847400, 9, 20, 0, 0, 0, 100, 0, 15000, 15000, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Say Line 3"), +(2847400, 9, 21, 0, 0, 0, 100, 0, 11000, 11000, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Say Line 4"), +(2847401, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Say Line 0"), +(2847401, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 45, 1, 1, 0, 0, 0, 0, 10, 125858, 28490, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Set Data 1 1 (Disciple of Frost)"), +(2847401, 9, 2, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 45, 1, 1, 0, 0, 0, 0, 10, 125841, 28488, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Set Data 1 1 (Coldwraith)"), +(2847401, 9, 3, 0, 0, 0, 100, 0, 8000, 8000, 0, 0, 0, 45, 2, 2, 0, 0, 0, 0, 10, 125858, 28490, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Set Data 2 2 (Disciple of Frost)"), +(2847401, 9, 4, 0, 0, 0, 100, 0, 8000, 8000, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Say Line 1"), +(2847401, 9, 5, 0, 0, 0, 100, 0, 12000, 12000, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Say Line 2"), +(2847401, 9, 6, 0, 0, 0, 100, 0, 240000, 245000, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Say Line 0"), +(2847401, 9, 7, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 45, 1, 1, 0, 0, 0, 0, 10, 125856, 28490, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Set Data 1 1 (Disciple of Frost)"), +(2847401, 9, 8, 0, 0, 0, 100, 0, 4000, 4000, 0, 0, 0, 45, 3, 3, 0, 0, 0, 0, 10, 125856, 28490, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Set Data 3 3 (Disciple of Frost)"), +(2847401, 9, 9, 0, 0, 0, 100, 0, 15000, 15000, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Say Line 3"), +(2847401, 9, 10, 0, 0, 0, 100, 0, 11000, 11000, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Say Line 4"), +(2847401, 9, 11, 0, 0, 0, 100, 0, 240000, 245000, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Say Line 0"), +(2847401, 9, 12, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 45, 4, 4, 0, 0, 0, 0, 10, 125857, 28490, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Set Data 4 4 (Disciple of Frost)"), +(2847401, 9, 13, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 45, 2, 2, 0, 0, 0, 0, 10, 125842, 28488, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Set Data 2 2 (Coldwraith)"), +(2847401, 9, 14, 0, 0, 0, 100, 0, 8000, 8000, 0, 0, 0, 45, 2, 2, 0, 0, 0, 0, 10, 125857, 28490, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Set Data 2 2 (Disciple of Frost)"), +(2847401, 9, 15, 0, 0, 0, 100, 0, 8000, 8000, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Say Line 1"), +(2847401, 9, 16, 0, 0, 0, 100, 0, 12000, 12000, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Say Line 2"), +(2847401, 9, 17, 0, 0, 0, 100, 0, 240000, 245000, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Say Line 0"), +(2847401, 9, 18, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 45, 4, 4, 0, 0, 0, 0, 10, 125859, 28490, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Set Data 4 4 (Disciple of Frost)"), +(2847401, 9, 19, 0, 0, 0, 100, 0, 4000, 4000, 0, 0, 0, 45, 3, 3, 0, 0, 0, 0, 10, 125859, 28490, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Set Data 3 3 (Disciple of Frost)"), +(2847401, 9, 20, 0, 0, 0, 100, 0, 15000, 15000, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Say Line 3"), +(2847401, 9, 21, 0, 0, 0, 100, 0, 11000, 11000, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Amal'thazad - On Script - Say Line 4"), +(2849000, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 22, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Disciple of Frost - On Script - Set Event Phase 1"), +(2849000, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 19, 768, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Disciple of Frost - On Script - Remove Immune To NPC+PC"), +(2849000, 9, 2, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 11, 53525, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Disciple of Frost - On Script - Cast 'Summon Frigid Bones"), +(2849000, 9, 3, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 0, 11, 53525, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Disciple of Frost - On Script - Cast 'Summon Frigid Bones"), +(2849000, 9, 4, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 0, 11, 53525, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Disciple of Frost - On Script - Cast 'Summon Frigid Bones"); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=22 AND `SourceEntry`=28490; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(22, 12, 28490, 0, 0, 29, 1, 29210, 50, 0, 1, 0, 0, "", "Run SAI only if there are no alive 'Frigid Bones' nearby"), +(22, 13, 28490, 0, 0, 29, 1, 29210, 50, 0, 1, 0, 0, "", "Run SAI only if there are no alive 'Frigid Bones' nearby"); + +DELETE FROM `creature_text` WHERE `CreatureID` IN (28474, 29194); +INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES +(28474, 0, 0, "Step forth disciple. Show me what you have learned.", 12, 0, 100, 0, 0, 0, 29664, 0, "Amal'thazad"), +(28474, 0, 1, "It is time for your learning to be put to the test. Step forth.", 12, 0, 100, 0, 0, 0, 29667, 0, "Amal'thazad"), +(28474, 0, 2, "Do not let the ice in your blood slow your step. Prove your prowess, disciple.", 12, 0, 100, 0, 0, 0, 29668, 0, "Amal'thazad"), +(28474, 0, 3, "You have stood and listened long enough. Step forth.", 12, 0, 100, 0, 0, 0, 29669, 0, "Amal'thazad"), +(28474, 0, 4, "Prove that you understand my teachings, disciple.", 12, 0, 100, 0, 0, 0, 29670, 0, "Amal'thazad"), +(28474, 0, 5, "It is time for your challenge disciple. Use my teachings well.", 12, 0, 100, 0, 0, 0, 29671, 0, "Amal'thazad"), +(28474, 1, 0, "Its spells would be less threatening if its incantations were slowed by your icy touch...", 12, 0, 100, 0, 0, 0, 29665, 0, "Amal'thazad"), +(28474, 2, 1, "Do not let it consider its next spell so freely, disciple... freeze its mind.", 12, 0, 100, 0, 0, 0, 29666, 0, "Amal'thazad"), +(28474, 3, 0, "You are not overwhelmed just yet disciple... let the hungering cold of death halt this onslaught.", 12, 0, 100, 0, 0, 0, 29673, 0, "Amal'thazad"), +(28474, 4, 1, "Frozen solid, ripe for the slaughter. Let loose a howling blast and shatter them into pieces, disciple.", 12, 0, 100, 0, 0, 0, 29674, 0, "Amal'thazad"), +(28474, 5, 0, "Do not be frightened child... welcome the cold embrace of death...", 12, 0, 100, 0, 0, 0, 29836, 0, "Amal'thazad"), +(28474, 5, 1, "Such is the price of failure.", 12, 0, 100, 0, 0, 0, 29837, 0, "Amal'thazad"), +(28474, 5, 2, "Death is the reward for your weakness.", 12, 0, 100, 0, 0, 0, 29838, 0, "Amal'thazad"), +(28474, 5, 3, "Your retention was poor.", 12, 0, 100, 0, 0, 0, 29839, 0, "Amal'thazad"), +(28474, 6, 0, "Well done.", 12, 0, 100, 0, 0, 0, 29840, 0, "Amal'thazad"), +(28474, 6, 1, "You have more learning ahead of you disciple. Return to your studies.", 12, 0, 100, 0, 0, 0, 29841, 0, "Amal'thazad"), +(28474, 6, 2, "You have learned well. Continue on your path, disciple.", 12, 0, 100, 0, 0, 0, 29842, 0, "Amal'thazad"), +(28474, 6, 3, "A good start. Return, disciple.", 12, 0, 100, 0, 0, 0, 29844, 0, "Amal'thazad"), +(29194, 0, 0, "Step forth disciple. Show me what you have learned.", 12, 0, 100, 0, 0, 0, 29664, 0, "Amal'thazad"), +(29194, 0, 1, "It is time for your learning to be put to the test. Step forth.", 12, 0, 100, 0, 0, 0, 29667, 0, "Amal'thazad"), +(29194, 0, 2, "Do not let the ice in your blood slow your step. Prove your prowess, disciple.", 12, 0, 100, 0, 0, 0, 29668, 0, "Amal'thazad"), +(29194, 0, 3, "You have stood and listened long enough. Step forth.", 12, 0, 100, 0, 0, 0, 29669, 0, "Amal'thazad"), +(29194, 0, 4, "Prove that you understand my teachings, disciple.", 12, 0, 100, 0, 0, 0, 29670, 0, "Amal'thazad"), +(29194, 0, 5, "It is time for your challenge disciple. Use my teachings well.", 12, 0, 100, 0, 0, 0, 29671, 0, "Amal'thazad"), +(29194, 1, 0, "Its spells would be less threatening if its incantations were slowed by your icy touch...", 12, 0, 100, 0, 0, 0, 29665, 0, "Amal'thazad"), +(29194, 2, 1, "Do not let it consider its next spell so freely, disciple... freeze its mind.", 12, 0, 100, 0, 0, 0, 29666, 0, "Amal'thazad"), +(29194, 3, 0, "You are not overwhelmed just yet disciple... let the hungering cold of death halt this onslaught.", 12, 0, 100, 0, 0, 0, 29673, 0, "Amal'thazad"), +(29194, 4, 1, "Frozen solid, ripe for the slaughter. Let loose a howling blast and shatter them into pieces, disciple.", 12, 0, 100, 0, 0, 0, 29674, 0, "Amal'thazad"), +(29194, 5, 0, "Do not be frightened child... welcome the cold embrace of death...", 12, 0, 100, 0, 0, 0, 29836, 0, "Amal'thazad"), +(29194, 5, 1, "Such is the price of failure.", 12, 0, 100, 0, 0, 0, 29837, 0, "Amal'thazad"), +(29194, 5, 2, "Death is the reward for your weakness.", 12, 0, 100, 0, 0, 0, 29838, 0, "Amal'thazad"), +(29194, 5, 3, "Your retention was poor.", 12, 0, 100, 0, 0, 0, 29839, 0, "Amal'thazad"), +(29194, 6, 0, "Well done.", 12, 0, 100, 0, 0, 0, 29840, 0, "Amal'thazad"), +(29194, 6, 1, "You have more learning ahead of you disciple. Return to your studies.", 12, 0, 100, 0, 0, 0, 29841, 0, "Amal'thazad"), +(29194, 6, 2, "You have learned well. Continue on your path, disciple.", 12, 0, 100, 0, 0, 0, 29842, 0, "Amal'thazad"), +(29194, 6, 3, "A good start. Return, disciple.", 12, 0, 100, 0, 0, 0, 29844, 0, "Amal'thazad"); + +UPDATE `creature_addon` SET `auras`="" WHERE `guid`= 128526; diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_05_01_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_05_01_world.sql new file mode 100644 index 00000000000..ba512f95e21 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_05_01_world.sql @@ -0,0 +1,59 @@ +-- +-- Kum'isha the Collector +UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=7363; +DELETE FROM `smart_scripts` WHERE `entryorguid`=7363 AND `source_type`=0; +DELETE FROM `smart_scripts` WHERE `entryorguid`=736300 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 +(7363,0,0,0,20,0,100,0,2521,0,0,0,80,736300,0,0,0,0,0,1,0,0,0,0,0,0,0,"Kum'isha the Collector - On Quest 'To Serve Kum'isha' Finished - Run Script"), +(736300,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,"Kum'isha the Collector - On Script - Remove Npc Flag Questgiver+Gossip"), +(736300,9,1,0,0,0,100,0,0,0,0,0,66,0,0,0,0,0,0,8,0,0,0,0,0,0,1.03552,"Kum'isha the Collector - On Script - Set Orientation"), +(736300,9,2,0,0,0,100,0,1000,1000,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Kum'isha the Collector - On Script - Say Line 0"), +(736300,9,3,0,0,0,100,0,0,0,0,0,12,7364,8,0,0,0,0,8,0,0,0,-11359.4,-2977.5,-0.447796,4.13626,"Kum'isha the Collector - On Script - Summon Creature 'Flawless Draenethyst Sphere'"), +(736300,9,4,0,0,0,100,0,4000,4000,0,0,11,65633,0,0,0,0,0,1,0,0,0,0,0,0,0,"Kum'isha the Collector - On Script - Cast 'Arcane Cast Visual'"), +(736300,9,5,0,0,0,100,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Kum'isha the Collector - On Script - Say Line 1"), +(736300,9,6,0,0,0,100,0,3000,3000,0,0,50,137167,26,0,0,0,0,8,0,0,0,-11359.4,-2977.5,-0.447796,0.185707,"Kum'isha the Collector - On Script - Summon Gameobject 'Nether Rift'"), +(736300,9,7,0,0,0,100,0,2000,2000,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Kum'isha the Collector - On Script - Say Line 2"), +(736300,9,8,0,0,0,100,0,0,0,0,0,107,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Kum'isha the Collector - On Script - Summon Group"), +(736300,9,9,0,0,0,100,0,10000,10000,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,"Kum'isha the Collector - On Script - Say Line 3"), +(736300,9,10,0,0,0,100,0,15000,15000,0,0,86,58538,0,19,7364,0,0,1,0,0,0,0,0,0,0,"Kum'isha the Collector - On Script - Cross Cast 'Arcane Explosion Visual'"), +(736300,9,11,0,0,0,100,0,500,500,0,0,41,0,0,0,0,0,0,19,7364,0,0,0,0,0,0,"Kum'isha the Collector - On Script - Despawn Creature 'Flawless Draenethyst Sphere'"), +(736300,9,12,0,0,0,100,0,3000,3000,0,0,1,4,0,0,0,0,0,1,0,0,0,0,0,0,0,"Kum'isha the Collector - On Script - Say Line 4"), +(736300,9,13,0,0,0,100,0,0,0,0,0,82,3,0,0,0,0,0,1,0,0,0,0,0,0,0,"Kum'isha the Collector - On Script - Add Npc Flag Questgiver+Gossip"), +(736300,9,14,0,0,0,100,0,5000,5000,0,0,66,0,0,0,0,0,0,8,0,0,0,0,0,0,2.79076,"Kum'isha the Collector - On Script - Set Orientation"); + +DELETE FROM `creature_summon_groups` WHERE `summonerId`=7363; +INSERT INTO `creature_summon_groups` (`summonerId`, `summonerType`, `groupId`, `entry`, `position_x`, `position_y`, `position_z`, `orientation`, `summonType`, `summonTime`) VALUES +(7363,0,1,7401,-11303.2,-2989.65,5.53587,2.83237,8,300000), +(7363,0,1,7401,-11309.1,-2972.41,8.33972,3.24362,8,300000), +(7363,0,1,7401,-11317.0,-2978.34,5.48171,3.21221,8,300000), +(7363,0,1,7401,-11328.8,-2979.58,6.07384,3.19257,8,300000), +(7363,0,1,7401,-11321.9,-2974.86,7.56403,3.30645,8,300000); + +DELETE FROM `creature_text` WHERE `CreatureID`=7363; +INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES +(7363,0,0,"%s releases the flawless draenethyst sphere, allowing it to hover before him.",16,0,100,0,0,0,3441,0,"Kum'isha the Collector"), +(7363,1,0,"%s chants in an unknown tongue.",16,0,100,0,0,0,3442,0,"Kum'isha the Collector"), +(7363,2,0,"Success, the rift is open!! My brethren, rise and return home! The Outland awaits!",14,0,100,0,0,0,3475,0,"Kum'isha the Collector"), +(7363,3,0,"Hurry brothers! You must go now! I do not know how much longer the rift will remain open!",12,0,100,0,0,0,3476,0,"Kum'isha the Collector"), +(7363,4,0,"And now you know why I live in a crater.",12,0,100,0,0,0,3477,0,"Kum'isha the Collector"); + +DELETE FROM `gossip_menu` WHERE `MenuID`=752 AND `TextID`=1303; +INSERT INTO `gossip_menu` (`MenuID`, `TextID`, `VerifiedBuild`) VALUES +(752,1303,0); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=14 AND `SourceGroup`=752; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(14,752,1303,0,0,8,0,2521,0,0,0,0,0,"","Show gossip text 1303 if quest 'To Serve Kum'isha' is rewarded"); + +-- Draenei Refugee +UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=7401; +DELETE FROM `smart_scripts` WHERE `entryorguid`=7401 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 +(7401,0,0,0,54,0,100,0,0,0,0,0,53,0,7401,0,0,0,0,1,0,0,0,0,0,0,0,"Draenei Refugee - Just Summoned - Start Waypoint"), +(7401,0,1,0,58,0,100,0,0,0,0,0,11,51347,0,0,0,0,0,1,0,0,0,0,0,0,0,"Draenei Refugee - On Waypoint Ended - Cast 'Teleport Visual Only'"), +(7401,0,2,0,58,0,100,0,0,0,0,0,41,1000,0,0,0,0,0,1,0,0,0,0,0,0,0,"Draenei Refugee - On Waypoint Ended - Despawn after 1 second"); + +DELETE FROM `waypoints` WHERE `entry`=7401; +INSERT INTO `waypoints` (`entry`,`pointid`,`position_x`,`position_y`,`position_z`,`point_comment`) VALUES +(7401,1,-11336.5,-2981.66,2.98413,""), +(7401,2,-11359.4,-2977.5,-0.447796,""); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_05_02_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_05_02_world.sql new file mode 100644 index 00000000000..5bc9b735876 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_05_02_world.sql @@ -0,0 +1,2 @@ +-- +DELETE FROM `smart_scripts` WHERE `entryorguid`=338900 AND `source_type`=9 AND `id` IN (26, 27); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_05_03_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_05_03_world.sql new file mode 100644 index 00000000000..6eb0f75d0ed --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_05_03_world.sql @@ -0,0 +1,3 @@ +-- +UPDATE `creature_template` SET `AIName`="", `ScriptName`="npc_ironhand_guardian" WHERE `entry`=8982; +DELETE FROM `smart_scripts` WHERE `entryorguid`=8982 AND `source_type`=0; diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_06_00_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_06_00_world.sql new file mode 100644 index 00000000000..bc264df5a9f --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_06_00_world.sql @@ -0,0 +1,2 @@ +-- +UPDATE `gameobject` SET `position_x`=4044.34, `position_y`=-3334.22 WHERE `id`=181072 AND `guid`=1578; diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_06_01_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_06_01_world.sql new file mode 100644 index 00000000000..eb3e6af01be --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_06_01_world.sql @@ -0,0 +1,2 @@ +-- +UPDATE `smart_scripts` SET `event_param1`=0, `event_param2`=0, `action_param1`=60000 WHERE `entryorguid` IN (2931900,2932700) AND `source_type`=9 AND `id`=4; diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_07_00_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_07_00_world.sql new file mode 100644 index 00000000000..ad1672f6c31 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_07_00_world.sql @@ -0,0 +1,9 @@ +-- +DELETE FROM `spell_script_names` WHERE `ScriptName`="spell_urom_frostbomb"; +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES +(51103, "spell_urom_frostbomb"); + +DELETE FROM `spelldifficulty_dbc` WHERE `id` IN (51110, 51121); +INSERT INTO `spelldifficulty_dbc` (`id`, `spellid0`, `spellid1`) VALUES +(51110, 51110, 59377), +(51121, 51121, 59376); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_07_01_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_07_01_world.sql new file mode 100644 index 00000000000..8a0f825c0d0 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_07_01_world.sql @@ -0,0 +1,2 @@ +-- +UPDATE `trainer_spell` SET `ReqAbility1`=0 WHERE `SpellId` IN (33391, 34090, 34091); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_07_02_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_07_02_world.sql new file mode 100644 index 00000000000..72c8e7d2343 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_07_02_world.sql @@ -0,0 +1,8 @@ +-- +DELETE FROM `creature_movement_override` WHERE `SpawnId` IN (117664, 117670, 117671, 117672, 117677); +INSERT INTO `creature_movement_override` (`SpawnId`, `Ground`, `Swim`, `Flight`, `Rooted`) VALUES +(117664, 1, 0, 1, 0), +(117670, 1, 0, 1, 0), +(117671, 1, 0, 1, 0), +(117672, 1, 0, 1, 0), +(117677, 1, 0, 1, 0); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_08_00_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_08_00_world.sql new file mode 100644 index 00000000000..e1df8449bd6 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_08_00_world.sql @@ -0,0 +1,4 @@ +DELETE FROM `spell_script_names` WHERE `ScriptName` IN ('spell_item_brittle_armor','spell_item_mercurial_shield'); +INSERT INTO `spell_script_names` VALUES +(24590,'spell_item_brittle_armor'), +(26465,'spell_item_mercurial_shield'); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_08_01_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_08_01_world.sql new file mode 100644 index 00000000000..0fc6b13ee3a --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_08_01_world.sql @@ -0,0 +1,245 @@ +-- +SET @BLOODELF := 18191; +SET @TAUREN := 18189; +SET @UNDEAD := 18190; +SET @TROLL := 18188; +SET @ORC := 18187; + +DELETE FROM `creature_formations` WHERE `leaderGUID`=64973; +INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`) VALUES +(64973, 64973, 0, 0, 515), +(64973, 64971, 3, 45, 515), +(64973, 64972, 3, 0, 515), +(64973, 64970, 3, 315, 515), +(64973, 64969, 3, 270, 515); + +DELETE FROM `creature_text` WHERE `CreatureID` IN (@BLOODELF, @TAUREN, @UNDEAD, @TROLL, @ORC); +INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES +(@BLOODELF, 0, 0, "This is merely part of what Silvermoon once was. Much of the city was lost after Arthas swept through our lands.", 12, 1, 100, 1, 0, 0, 14883, 0, "Ambassador Kelemar"), +(@BLOODELF, 0, 1, "We lost many of our kin in the war... so yes, the city is not perhaps as lively as it once was. We will endure, however.", 12, 1, 100, 1, 0, 0, 14884, 0, "Ambassador Kelemar"), +(@BLOODELF, 1, 0, "It is not simply a beautification measure, but also a morale booster. It demonstrates to our people that we have a great deal of power at our fingertips, and with it... we can do nearly anything.", 12, 1, 100, 1, 0, 0, 14895, 0, "Ambassador Kelemar"), +(@BLOODELF, 2, 0, "Think about it carefully, my friends. If we can afford to spend our magic on simple aesthetic enhancements, clearly we hold a vast reservoir of power at our beck and call.", 12, 1, 100, 1, 0, 0, 14894, 0, "Ambassador Kelemar"), +(@BLOODELF, 2, 1, "This must be somewhat different from the environment to which you're accustomed. It is a visible demonstration of the power we hold, nothing more. We're mindful of our resources.", 12, 1, 100, 1, 0, 0, 14893, 0, "Ambassador Kelemar"), +(@BLOODELF, 3, 0, "Yes, well... luckily for us all, the troll will not be in a position of power within our fair city anytime soon.", 12, 1, 100, 1, 0, 0, 14899, 0, "Ambassador Kelemar"), +(@BLOODELF, 4, 0, "The regent lord is a very busy man. I'm sure you understand.", 12, 1, 100, 1, 0, 0, 14907, 0, "Ambassador Kelemar"), +(@BLOODELF, 4, 1, "He is unable to see you just yet, but do not trouble yourselves over it. I'm certain he will find a way to fit you into his busy schedule.", 12, 1, 100, 1, 0, 0, 14908, 0, "Ambassador Kelemar"), +(@BLOODELF, 4, 2, "In due course. There is no rush, after all - our hospitality is extended to you indefinitely. Even the troll.", 12, 1, 100, 1, 0, 0, 14909, 0, "Ambassador Kelemar"), +(@BLOODELF, 5, 0, "Exercise caution during your stay. Some close-minded individuals may still cling to old alliances long since dissolved...", 12, 1, 100, 0, 0, 0, 14970, 0, "Ambassador Kelemar"), +(@BLOODELF, 5, 1, "Thank you for making the journey here. I hope you will find Silvermoon to your liking.", 12, 1, 100, 0, 0, 0, 14964, 0, "Ambassador Kelemar"), +(@BLOODELF, 5, 2, "Behold the wonders of our fair city.", 12, 1, 100, 0, 0, 0, 14965, 0, "Ambassador Kelemar"), +(@BLOODELF, 6, 0, "Our people are strong. We bring you a mastery over arcane magics that you have previously lacked - ah, no offense intended, of course.", 12, 1, 100, 1, 0, 0, 14857, 0, "Ambassador Kelemar"), +(@BLOODELF, 6, 1, "Surely you see the advantage in our relationship. The powers we command are immense. With our aid, your enemies could well be decimated.", 12, 1, 100, 1, 0, 0, 14858, 0, "Ambassador Kelemar"), +(@BLOODELF, 6, 2, "I realize we have had somewhat differing loyalties in the past, but put your suspicions aside. Our considerable power has been pledged to your leaders in good faith.", 12, 1, 100, 1, 0, 0, 14859, 0, "Ambassador Kelemar"), +(@BLOODELF, 7, 0, "I'm afraid your ancestry is the cause, troll. Decades of fighting with your green-skinned brethren have hardened their hearts against your kind.", 12, 1, 100, 1, 0, 0, 14922, 0, "Ambassador Kelemar"), +(@BLOODELF, 8, 0, "Keep your chin up. Perhaps with time, our people will see you as the ally you are, rather than the enemy you appear to be.", 12, 1, 100, 1, 0, 0, 14926, 0, "Ambassador Kelemar"), +(@TAUREN, 0, 0, "This city is very... expansive, but it seems to be lacking something. I can't put my finger on what...", 12, 1, 100, 6, 0, 0, 14891, 0, "Dela Runetotem"), +(@TAUREN, 1, 0, "It seems that a great deal of your power is used for... and I hope you'll pardon the term... frivolous things. Isn't that, well, wasteful?", 12, 1, 100, 6, 0, 0, 14892, 0, "Dela Runetotem"), +(@TAUREN, 2, 0, "Tatai, please. We're guests here.", 12, 1, 100, 1, 0, 0, 14898, 0, "Dela Runetotem"), +(@TAUREN, 3, 0, "There's an ethereal beauty about this place... but for all the trees and plant life, it's still so... unnatural.", 12, 1, 100, 0, 0, 0, 14918, 0, "Dela Runetotem"), +(@TAUREN, 4, 0, "As you say, ambassador. We can wait.", 12, 1, 100, 1, 0, 0, 14916, 0, "Dela Runetotem"), +(@TAUREN, 5, 0, "Tell us, Ambassador Kelemar... how do the blood elves plan to aid us, exactly?", 12, 1, 100, 6, 0, 0, 14870, 0, "Dela Runetotem"), +(@TAUREN, 6, 0, "Dela Runetotem's brow furrows, but she remains silent.", 16, 0, 100, 0, 0, 0, 14866, 0, "Dela Runetotem"), +(@TAUREN, 7, 0, "My condolences. These past years have been hard on us all.", 12, 1, 100, 1, 0, 0, 14890, 0, "Dela Runetotem"), +(@TAUREN, 8, 0, "I don't know. It still seems like such a waste.", 12, 1, 100, 1, 0, 0, 14903, 0, "Dela Runetotem"), +(@UNDEAD, 0, 0, "You're not the only victims of the Scourge. Our lady Sylvanas sympathizes with your plight.", 12, 1, 100, 1, 0, 0, 14889, 0, "Kristine Denny"), +(@UNDEAD, 1, 0, "Your choice of decor is intriguing, Kelemar. Tell me - why the arcane frippery?", 12, 1, 100, 1, 0, 0, 14905, 0, "Kristine Denny"), +(@UNDEAD, 2, 0, "An understandable expenditure, as I see it. Show everyone, enemies and allies alike, that you're not afraid to use your power.", 12, 1, 100, 1, 0, 0, 14900, 0, "Kristine Denny"), +(@UNDEAD, 3, 0, "Such marvelous sights. I regret being unable to see it when I was younger.", 12, 1, 100, 0, 0, 0, 14963, 0, "Kristine Denny"), +(@UNDEAD, 4, 0, "Truly an advantageous alliance.", 12, 1, 100, 1, 0, 0, 14864, 0, "Kristine Denny"), +(@UNDEAD, 5, 0, "I thought we were going to speak with the regent lord. I'm beginning to question whether or not he exists at all at this point.", 12, 1, 100, 1, 0, 0, 14917, 0, "Kristine Denny"), +(@UNDEAD, 6, 0, "This is becoming tiresome.", 12, 1, 100, 1, 0, 0, 14915, 0, "Kristine Denny"), +(@UNDEAD, 7, 0, "Troll, if you can't keep a civil tongue in your head, I'll be happy to remove it for you.", 12, 1, 100, 1, 0, 0, 14912, 0, "Kristine Denny"), +(@UNDEAD, 8, 0, "%s smirks triumphantly.", 16, 0, 100, 0, 0, 0, 14914, 0, "Kristine Denny"), +(@TROLL, 0, 0, "Bah! If I ever be in charge'a dis place, da first t'ing I be doin' is stoppin' alla dat. Ja be markin' my words.", 12, 1, 100, 1, 0, 0, 14897, 0, "Tatai"), +(@TROLL, 1, 0, "Dis place be huge. Why ja be needin' all dis space?", 12, 1, 100, 1, 0, 0, 14882, 0, "Tatai"), +(@TROLL, 2, 0, "Why be all dese t'ings floatin' an' movin' by demselves?", 12, 1, 100, 1, 0, 0, 14904, 0, "Tatai"), +(@TROLL, 3, 0, "Dis place be too bright fa my tastes.", 12, 1, 100, 0, 0, 0, 14969, 0, "Tatai"), +(@TROLL, 4, 0, "What help be ja givin' de Horde, anyway?", 12, 1, 100, 6, 0, 0, 14868, 0, "Tatai"), +(@TROLL, 5, 0, "Just what I be t'inkin'. More delays.", 12, 1, 100, 1, 0, 0, 14911, 0, "Tatai"), +(@TROLL, 6, 0, "Ja be keepin' away from me.", 12, 1, 100, 1, 0, 0, 14913, 0, "Tatai"), +(@TROLL, 7, 0, "I be gettin' tired'a dis. Dese elves, dey be treatin' me like I stole somet'in'.", 12, 1, 100, 1, 0, 0, 14919, 0, "Tatai"), +(@TROLL, 8, 0, "Don't ja start...", 12, 1, 100, 1, 0, 0, 14928, 0, "Tatai"), +(@TROLL, 9, 0, "Dis be a big waste, if ja be askin' me.", 12, 1, 100, 1, 0, 0, 14886, 0, "Tatai"), +(@TROLL, 10, 0, "%s grumbles under his breath.", 16, 0, 100, 0, 0, 0, 14888, 0, "Tatai"), +(@TROLL, 11, 0, "T'ink ja be contributin' less glarin' in dis troll's direction?", 12, 1, 100, 6, 0, 0, 14861, 0, "Tatai"), +(@TROLL, 12, 0, "%s sighs in resignation and falls silent.", 16, 0, 100, 0, 0, 0, 14863, 0, "Tatai"), +(@ORC, 0, 0, "If your people are as strong as you purport, I'm sure you'll find your stride again.", 12, 1, 100, 6, 0, 0, 14885, 0, "Cheneta"), +(@ORC, 1, 0, "%s taps a finger on her chin, lost in thought.", 16, 0, 100, 0, 0, 0, 14896, 0, "Cheneta"), +(@ORC, 1, 1, "I suppose we'll see the measure of your dedication in due time.", 12, 1, 100, 1, 0, 0, 14860, 0, "Cheneta"), +(@ORC, 2, 0, "I don't suppose Lor'themar Theron is available for an audience yet?", 12, 1, 100, 1, 0, 0, 14906, 0, "Cheneta"), +(@ORC, 3, 0, "I'll accept that answer for the time being, Kelemar, but my patience is not exactly boundless.", 12, 1, 100, 1, 0, 0, 14910, 0, "Cheneta"), +(@ORC, 4, 0, "Remind me, ambassador... what precisely will your people be contributing to our efforts?", 12, 1, 100, 1, 0, 0, 14854, 0, "Cheneta"), +(@ORC, 5, 0, "You should be used to those looks, Tatai. Do you remember the reason you were drafted into this job?", 12, 1, 100, 1, 0, 0, 14927, 0, "Cheneta"), +(@ORC, 6, 0, "I'm no happier about being your babysitter than you are about being watched. Just remember... it could have been worse.", 12, 1, 100, 1, 0, 0, 14929, 0, "Cheneta"), +(@ORC, 7, 0, "Well, no one asked you, Tatai.", 12, 1, 100, 1, 0, 0, 14887, 0, "Cheneta"), +(@ORC, 8, 0, "Tatai!", 12, 1, 100, 1, 0, 0, 14862, 0, "Cheneta"); + +UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=18191; +DELETE FROM `smart_scripts` WHERE `entryorguid`=18191 AND `source_type`=0; +DELETE FROM `smart_scripts` WHERE `entryorguid` BETWEEN 1819100 AND 1819124 AND `source_type`=9; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(18191, 0, 0, 0, 11, 0, 100, 0, 0, 0, 0, 0, 0, 53, 0, 18191, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Respawn - Start WP"), +(18191, 0, 1, 0, 1, 0, 100, 0, 10000, 30000, 60000, 90000, 0, 88, 1819100, 1819122, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - OOC - Call Random Actionlist"), +(18191, 0, 2, 3, 55, 0, 100, 0, 0, 0, 0, 0, 0, 127, 0, 1, 0, 0, 0, 0, 19, @TAUREN, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Respawn - Stop Movement (Dela Runetotem)"), +(18191, 0, 3, 4, 61, 0, 100, 0, 0, 0, 0, 0, 0, 127, 0, 1, 0, 0, 0, 0, 19, @TROLL, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Respawn - Stop Movement (Tatai)"), +(18191, 0, 4, 5, 61, 0, 100, 0, 0, 0, 0, 0, 0, 127, 0, 1, 0, 0, 0, 0, 19, @ORC, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Respawn - Stop Movement (Cheneta)"), +(18191, 0, 5, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, 127, 0, 1, 0, 0, 0, 0, 19, @UNDEAD, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Respawn - Stop Movement (Kristine Denny)"), +(1819100, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 54, 15000, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Pause WP"), +(1819100, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 19, @TAUREN, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 0 (Dela Runetotem)"), +(1819100, 9, 2, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 0"), +(1819100, 9, 3, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 19, @UNDEAD, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 0 (Kristine Denny)"), +(1819101, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 54, 19000, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Pause WP"), +(1819101, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 19, @UNDEAD, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 1 (Kristine Denny)"), +(1819101, 9, 2, 0, 0, 0, 100, 0, 8000, 8000, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 1"), +(1819101, 9, 3, 0, 0, 0, 100, 0, 8000, 8000, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 19, @UNDEAD, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 2 (Kristine Denny)"), +(1819102, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 54, 30000, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Pause WP"), +(1819102, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 19, @TAUREN, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 1 (Dela Runetotem)"), +(1819102, 9, 2, 0, 0, 0, 100, 0, 8000, 8000, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 2"), +(1819102, 9, 3, 0, 0, 0, 100, 0, 8000, 8000, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 19, @TROLL, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 0 (Tatai)"), +(1819102, 9, 4, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 19, @TAUREN, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 2 (Dela Runetotem)"), +(1819102, 9, 5, 0, 0, 0, 100, 0, 5000, 5000, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 3"), +(1819103, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 54, 15000, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Pause WP"), +(1819103, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 19, @TROLL, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 1 (Tatai)"), +(1819103, 9, 2, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 0"), +(1819103, 9, 3, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 19, @ORC, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 0 (Cheneta)"), +(1819104, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 54, 15000, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Pause WP"), +(1819104, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 19, @TROLL, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 1 (Tatai)"), +(1819104, 9, 2, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 0"), +(1819104, 9, 3, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 1, 7, 0, 0, 0, 0, 0, 19, @TAUREN, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 7 (Dela Runetotem)"), +(1819105, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 54, 17000, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Pause WP"), +(1819105, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 19, @TROLL, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 2 (Tatai)"), +(1819105, 9, 2, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 2"), +(1819105, 9, 3, 0, 0, 0, 100, 0, 8000, 8000, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 19, @ORC, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 1 (Cheneta)"), +(1819106, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 54, 15000, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Pause WP"), +(1819106, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 19, @ORC, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 2 (Cheneta)"), +(1819106, 9, 2, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 4"), +(1819106, 9, 3, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 19, @ORC, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 3 (Cheneta)"), +(1819107, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 19, @TAUREN, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 3 (Dela Runetotem)"), +(1819108, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 5"), +(1819109, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 19, @UNDEAD, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 3 (Kristine Denny)"), +(1819110, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 19, @TROLL, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 3 (Tatai)"), +(1819111, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 54, 15000, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Pause WP"), +(1819111, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 19, @ORC, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 2 (Cheneta)"), +(1819111, 9, 2, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 4"), +(1819111, 9, 3, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 19, @TAUREN, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 4 (Dela Runetotem)"), +(1819112, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 54, 17000, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Pause WP"), +(1819112, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0, 19, @TAUREN, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 5 (Dela Runetotem)"), +(1819112, 9, 2, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 6"), +(1819112, 9, 3, 0, 0, 0, 100, 0, 8000, 8000, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 19, @UNDEAD, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 4 (Kristine Denny)"), +(1819113, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 54, 19000, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Pause WP"), +(1819113, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 19, @TROLL, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 4 (Tatai)"), +(1819113, 9, 2, 0, 0, 0, 100, 0, 8000, 8000, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 6"), +(1819113, 9, 3, 0, 0, 0, 100, 0, 8000, 8000, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0, 19, @TAUREN, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 6 (Dela Runetotem)"), +(1819114, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 54, 17000, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Pause WP"), +(1819114, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 19, @TAUREN, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 1 (Dela Runetotem)"), +(1819114, 9, 2, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 2"), +(1819114, 9, 3, 0, 0, 0, 100, 0, 8000, 8000, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 19, @ORC, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 1 (Cheneta)"), +(1819115, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 54, 15000, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Pause WP"), +(1819115, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0, 19, @UNDEAD, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 5 (Kristine Denny)"), +(1819115, 9, 2, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 4"), +(1819115, 9, 3, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0, 19, @UNDEAD, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 6 (Kristine Denny)"), +(1819116, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 54, 35000, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Pause WP"), +(1819116, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0, 19, @UNDEAD, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 5 (Kristine Denny)"), +(1819116, 9, 2, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 4"), +(1819116, 9, 3, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0, 19, @TROLL, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 5 (Tatai)"), +(1819116, 9, 4, 0, 0, 0, 100, 0, 8000, 8000, 0, 0, 0, 1, 7, 0, 0, 0, 0, 0, 19, @UNDEAD, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 7 (Kristine Denny)"), +(1819116, 9, 5, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0, 19, @TROLL, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 6 (Tatai)"), +(1819116, 9, 6, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 19, @UNDEAD, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 8 (Kristine Denny)"), +(1819117, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 54, 15000, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Pause WP"), +(1819117, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 19, @ORC, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 4 (Cheneta)"), +(1819117, 9, 2, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 6"), +(1819117, 9, 3, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 19, @UNDEAD, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 4 (Kristine Denny)"), +(1819118, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 54, 35000, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Pause WP"), +(1819118, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 7, 0, 0, 0, 0, 0, 19, @TROLL, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 7 (Tatai)"), +(1819118, 9, 2, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 1, 7, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 7"), +(1819118, 9, 3, 0, 0, 0, 100, 0, 8000, 8000, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 8"), +(1819118, 9, 4, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0, 19, @ORC, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 5 (Cheneta)"), +(1819118, 9, 5, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 19, @TROLL, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 8 (Tatai)"), +(1819118, 9, 6, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0, 19, @ORC, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 6 (Cheneta)"), +(1819119, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 54, 21000, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Pause WP"), +(1819119, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 19, @TAUREN, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 0 (Dela Runetotem)"), +(1819119, 9, 2, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 0"), +(1819119, 9, 3, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 1, 9, 0, 0, 0, 0, 0, 19, @TROLL, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 9 (Tatai)"), +(1819119, 9, 4, 0, 0, 0, 100, 0, 4000, 4000, 0, 0, 0, 1, 7, 0, 0, 0, 0, 0, 19, @ORC, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 7 (Cheneta)"), +(1819119, 9, 5, 0, 0, 0, 100, 0, 2000, 2000, 0, 0, 0, 1, 10, 0, 0, 0, 0, 0, 19, @TROLL, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 10 (Tatai)"), +(1819120, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 54, 24000, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Pause WP"), +(1819120, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 19, @ORC, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 4 (Cheneta)"), +(1819120, 9, 2, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 6"), +(1819120, 9, 3, 0, 0, 0, 100, 0, 8000, 8000, 0, 0, 0, 1, 11, 0, 0, 0, 0, 0, 19, @TROLL, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 11 (Tatai)"), +(1819120, 9, 4, 0, 0, 0, 100, 0, 3000, 3000, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 19, @ORC, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 8 (Cheneta)"), +(1819120, 9, 5, 0, 0, 0, 100, 0, 3000, 3000, 0, 0, 0, 1, 12, 0, 0, 0, 0, 0, 19, @TROLL, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 11 (Tatai)"), +(1819121, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 54, 15000, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Pause WP"), +(1819121, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 19, @TROLL, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 4 (Tatai)"), +(1819121, 9, 2, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 6"), +(1819121, 9, 3, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 19, @UNDEAD, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 4 (Kristine Denny)"), +(1819122, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 54, 17000, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Pause WP"), +(1819122, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 19, @UNDEAD, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 1 (Kristine Denny)"), +(1819122, 9, 2, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 2"), +(1819122, 9, 3, 0, 0, 0, 100, 0, 8000, 8000, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 19, @ORC, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 1 (Cheneta)"), +(1819123, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 54, 19000, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Pause WP"), +(1819123, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 19, @UNDEAD, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 1 (Kristine Denny)"), +(1819123, 9, 2, 0, 0, 0, 100, 0, 8000, 8000, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 1"), +(1819123, 9, 3, 0, 0, 0, 100, 0, 8000, 8000, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 19, @TAUREN, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 8 (Dela Runetotem)"), +(1819124, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 54, 17000, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Pause WP"), +(1819124, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 19, @TROLL, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 2 (Tatai)"), +(1819124, 9, 2, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 2"), +(1819124, 9, 3, 0, 0, 0, 100, 0, 8000, 8000, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 19, @TAUREN, 20, 0, 0, 0, 0, 0, 0, "Ambassador Kelemar - On Script - Say Line 8 (Dela Runetotem)"); + +DELETE FROM `waypoints` WHERE `entry`=18191; +INSERT INTO `waypoints` (`entry`, `pointid`, `position_x`, `position_y`, `position_z`, `point_comment`) VALUES +(18191, 1, 9766.644, -7420.849, 13.32809, "Ambassador Kelemar"), +(18191, 2, 9767.317, -7397.038, 14.40992, "Ambassador Kelemar"), +(18191, 3, 9793.185, -7396.188, 14.39689, "Ambassador Kelemar"), +(18191, 4, 9793.472, -7416.236, 13.47621, "Ambassador Kelemar"), +(18191, 5, 9814.813, -7416.992, 13.30725, "Ambassador Kelemar"), +(18191, 6, 9838.742, -7417.316, 13.31029, "Ambassador Kelemar"), +(18191, 7, 9858.839, -7416.551, 13.30519, "Ambassador Kelemar"), +(18191, 8, 9877.918, -7415.571, 13.26435, "Ambassador Kelemar"), +(18191, 9, 9884.725, -7406.513, 13.26442, "Ambassador Kelemar"), +(18191, 10, 9884.544, -7387.953, 13.57377, "Ambassador Kelemar"), +(18191, 11, 9884.457, -7368.342, 20.71559, "Ambassador Kelemar"), +(18191, 12, 9890.258, -7351.883, 20.66186, "Ambassador Kelemar"), +(18191, 13, 9888.833, -7334.159, 22.39869, "Ambassador Kelemar"), +(18191, 14, 9874.329, -7325.186, 25.62724, "Ambassador Kelemar"), +(18191, 15, 9855.509, -7309.603, 26.33494, "Ambassador Kelemar"), +(18191, 16, 9846.362, -7291.694, 26.11968, "Ambassador Kelemar"), +(18191, 17, 9843.352, -7277.609, 26.13196, "Ambassador Kelemar"), +(18191, 18, 9827.675, -7269.892, 26.18945, "Ambassador Kelemar"), +(18191, 19, 9809.237, -7275.437, 26.31381, "Ambassador Kelemar"), +(18191, 20, 9791.453, -7287.26, 26.82441, "Ambassador Kelemar"), +(18191, 21, 9771.111, -7302.365, 24.56629, "Ambassador Kelemar"), +(18191, 22, 9754.345, -7312.55, 24.41137, "Ambassador Kelemar"), +(18191, 23, 9735.25, -7319.729, 24.41145, "Ambassador Kelemar"), +(18191, 24, 9714.172, -7324.894, 15.75442, "Ambassador Kelemar"), +(18191, 25, 9696.763, -7330.135, 11.54095, "Ambassador Kelemar"), +(18191, 26, 9678.04, -7323.132, 13.83196, "Ambassador Kelemar"), +(18191, 27, 9677.861, -7310.32, 13.93523, "Ambassador Kelemar"), +(18191, 28, 9697.274, -7309.414, 14.60203, "Ambassador Kelemar"), +(18191, 29, 9698.917, -7300.569, 15.29607, "Ambassador Kelemar"), +(18191, 30, 9678.09, -7296.735, 13.89384, "Ambassador Kelemar"), +(18191, 31, 9673.152, -7279.396, 14.02804, "Ambassador Kelemar"), +(18191, 32, 9663.593, -7275.106, 13.94319, "Ambassador Kelemar"), +(18191, 33, 9649.802, -7275.843, 13.94803, "Ambassador Kelemar"), +(18191, 34, 9623.62, -7275.927, 13.94715, "Ambassador Kelemar"), +(18191, 35, 9591.255, -7275.979, 13.94938, "Ambassador Kelemar"), +(18191, 36, 9546.264, -7276.316, 13.9549, "Ambassador Kelemar"), +(18191, 37, 9520.747, -7276.504, 13.99732, "Ambassador Kelemar"), +(18191, 38, 9505.359, -7285.873, 14.01533, "Ambassador Kelemar"), +(18191, 39, 9505.387, -7314.867, 14.11899, "Ambassador Kelemar"), +(18191, 40, 9519.284, -7327.308, 14.12039, "Ambassador Kelemar"), +(18191, 41, 9548.444, -7326.636, 14.11241, "Ambassador Kelemar"), +(18191, 42, 9588.311, -7328.308, 14.15363, "Ambassador Kelemar"), +(18191, 43, 9594.816, -7337.806, 14.10255, "Ambassador Kelemar"), +(18191, 44, 9596.521, -7367.296, 13.45036, "Ambassador Kelemar"), +(18191, 45, 9573.284, -7369.289, 14.39706, "Ambassador Kelemar"), +(18191, 46, 9573.251, -7383.854, 14.40098, "Ambassador Kelemar"), +(18191, 47, 9594.366, -7385.737, 13.40563, "Ambassador Kelemar"), +(18191, 48, 9594.833, -7414.787, 13.30561, "Ambassador Kelemar"), +(18191, 49, 9608.597, -7427.897, 13.30611, "Ambassador Kelemar"), +(18191, 50, 9627.091, -7428.699, 13.30116, "Ambassador Kelemar"), +(18191, 51, 9655.597, -7430.606, 13.29329, "Ambassador Kelemar"), +(18191, 52, 9668.763, -7436.929, 13.29329, "Ambassador Kelemar"), +(18191, 53, 9686.283, -7439.897, 13.29328, "Ambassador Kelemar"), +(18191, 54, 9707.063, -7431.239, 13.29329, "Ambassador Kelemar"), +(18191, 55, 9723.932, -7422.51, 13.27548, "Ambassador Kelemar"), +(18191, 56, 9750.73, -7421.802, 13.20032, "Ambassador Kelemar"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_09_00_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_09_00_world.sql new file mode 100644 index 00000000000..9cd4b34edc6 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_09_00_world.sql @@ -0,0 +1,48 @@ +-- +SET @GUID := 9867; +DELETE FROM `gameobject` WHERE `guid` BETWEEN @GUID AND @GUID+22; +INSERT INTO `gameobject` (`guid`, `id`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `rotation2`, `rotation3`, `spawntimesecs`, `state`) VALUES +(@GUID , 187675, 571, 3567.028, 5530.725, 86.75361, -2.91469, -0.9935713, 0.1132084, -60, 1), +(@GUID+1 , 187676, 571, 3558.709, 5530.077, 75.47846, 2.82743, 0.9876881, 0.1564362, -60, 1), +(@GUID+2 , 187676, 571, 3562.421, 5538.395, 75.21444, -1.553341, -0.7009087, 0.7132511, -60, 1), +(@GUID+3 , 187676, 571, 3581.925, 5524.272, 86.65974, 1.396262, 0.642787, 0.766045, -60, 1), +(@GUID+4 , 187676, 571, 3565.865, 5514.692, 85.72919, 2.059488, 0.8571672, 0.5150382, -60, 1), +(@GUID+5 , 187676, 571, 3551.815, 5537.208, 85.85419, 0.5934101, 0.2923708, 0.956305, -60, 1), +(@GUID+6 , 187676, 571, 3571.787, 5544.2, 87.26057, 0.383971, 0.1908083, 0.9816273, -60, 1), +(@GUID+7 , 187676, 571, 3580.394, 5536.65, 86.5073, 1.134463, 0.5372992, 0.8433917, -60, 1), +(@GUID+8 , 187676, 571, 3573.253, 5517.944, 86.92722, 2.024579, 0.8480473, 0.5299206, -60, 1), +(@GUID+9 , 187676, 571, 3560.757, 5544.268, 87.7508, -0.5061446, -0.2503796, 0.9681478, -60, 1), +(@GUID+10, 187676, 571, 3571.316, 5533.095, 74.98383, -1.239183, -0.5807028, 0.8141156, -60, 1), +(@GUID+11, 187675, 571, 3590.992, 5631.12, 75.53494, 1.186823, 0.5591927, 0.8290377, -60, 1), +(@GUID+12, 187676, 571, 3595.712, 5626.938, 65.27551, -3.124123, -0.9999619, 0.008734641, -60, 1), +(@GUID+13, 187676, 571, 3594.721, 5637.131, 65.02226, 0.95993, 0.4617481, 0.8870111, -60, 1), +(@GUID+14, 187676, 571, 3607.263, 5631.061, 75.13552, -1.099556, -0.5224981, 0.8526405, -60, 1), +(@GUID+15, 187676, 571, 3601.689, 5621.226, 75.40459, -1.221729, -0.573576, 0.8191524, -60, 1), +(@GUID+16, 187676, 571, 3592.143, 5614.887, 75.2258, 2.862335, 0.9902678, 0.1391754, -60, 1), +(@GUID+17, 187676, 571, 3580.775, 5620.292, 75.61076, 1.06465, 0.5075378, 0.8616294, -60, 1), +(@GUID+18, 187676, 571, 3575.896, 5629.07, 75.41689, -2.007128, -0.8433914, 0.5372996, -60, 1), +(@GUID+19, 187676, 571, 3579.39, 5642.362, 77.59373, -1.012289, -0.4848089, 0.8746201, -60, 1), +(@GUID+20, 187676, 571, 3591.921, 5646.228, 75.15994, 2.042035, 0.8526402, 0.5224986, -60, 1), +(@GUID+21, 187676, 571, 3601.01, 5642.266, 75.64725, 1.483528, 0.6755896, 0.7372779, -60, 1), +(@GUID+22, 187676, 571, 3586.417, 5635.277, 65.31032, 1.815142, 0.7880106, 0.6156617, -60, 1); + +UPDATE `creature` SET `spawndist`=0, `MovementType`=0 WHERE `id` IN (25441, 25442, 25443); +UPDATE `creature` SET `position_z`=66.0809 WHERE `id`=25441; +UPDATE `creature` SET `position_z`=75.99450 WHERE `id`=25443; +UPDATE `gameobject` SET `spawntimesecs`=-60 WHERE `id` IN (187675, 187676); + +UPDATE `smart_scripts` SET `link`=1 WHERE `entryorguid` IN (25441, 25442, 25443) AND `source_type`=0 AND `id`=0; +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (25441, 25442, 25443) 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`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(25441, 0, 1, 2, 61, 0, 100, 0, 0, 0, 0, 0, 0, 70, 60, 0, 0, 0, 0, 0, 15, 187675, 50, 0, 0, 0, 0, 0, 0, "North Platform - On Spellhit 'Throw Gnomish Grenade' - Respawn Nearby Gameobjects 'Borean Tundra Fire Large'"), +(25441, 0, 2, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, 70, 60, 0, 0, 0, 0, 0, 15, 187676, 50, 0, 0, 0, 0, 0, 0, "North Platform - On Spellhit 'Throw Gnomish Grenade' - Respawn Nearby Gameobjects 'Borean Tundra Fire Small'"), +(25442, 0, 1, 2, 61, 0, 100, 0, 0, 0, 0, 0, 0, 70, 60, 0, 0, 0, 0, 0, 15, 187675, 50, 0, 0, 0, 0, 0, 0, "East Platform - On Spellhit 'Throw Gnomish Grenade' - Respawn Nearby Gameobjects 'Borean Tundra Fire Large'"), +(25442, 0, 2, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, 70, 60, 0, 0, 0, 0, 0, 15, 187676, 50, 0, 0, 0, 0, 0, 0, "East Platform - On Spellhit 'Throw Gnomish Grenade' - Respawn Nearby Gameobjects 'Borean Tundra Fire Small'"), +(25443, 0, 1, 2, 61, 0, 100, 0, 0, 0, 0, 0, 0, 70, 60, 0, 0, 0, 0, 0, 15, 187675, 50, 0, 0, 0, 0, 0, 0, "West Platform - On Spellhit 'Throw Gnomish Grenade' - Respawn Nearby Gameobjects 'Borean Tundra Fire Large'"), +(25443, 0, 2, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, 70, 60, 0, 0, 0, 0, 0, 15, 187676, 50, 0, 0, 0, 0, 0, 0, "West Platform - On Spellhit 'Throw Gnomish Grenade' - Respawn Nearby Gameobjects 'Borean Tundra Fire Small'"); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=17 AND `SourceEntry`=45583; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(17, 0, 45583, 0, 0, 29, 0, 25441, 40, 0, 0, 0, 0, "", "Throw Gnomish Grenade can be used within 40 yards of North Platform OR"), +(17, 0, 45583, 0, 1, 29, 0, 25442, 40, 0, 0, 0, 0, "", "Throw Gnomish Grenade can be used within 40 yards of East Platform OR"), +(17, 0, 45583, 0, 2, 29, 0, 25443, 40, 0, 0, 0, 0, "", "Throw Gnomish Grenade can be used within 40 yards of West Platform"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_09_01_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_09_01_world.sql new file mode 100644 index 00000000000..a5bbcf280c9 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_09_01_world.sql @@ -0,0 +1,132 @@ +-- +DELETE FROM `creature_addon` WHERE `guid`=66689; +UPDATE `creature_template_addon` SET `path_id`=185270 WHERE `entry`=18527; +UPDATE `creature` SET `position_x`=9503.076, `position_y`=-7266.791, `position_z`=14.35056, `orientation`=2.990923 WHERE `guid`=66689; + +UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=18527; +DELETE FROM `smart_scripts` WHERE `entryorguid`=18527 AND `source_type`=0; +DELETE FROM `smart_scripts` WHERE `entryorguid` BETWEEN 1852700 AND 1852705 AND `source_type`=9; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(18527, 0, 0, 0, 1, 0, 100, 0, 5000, 10000, 60000, 160000, 0, 88, 1852700, 1852705, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Conjurer Tyren - OOC - Call Random Actionlist"), +(1852700, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 11, 12051, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Conjurer Tyren - On Script - Cast Spell 'Evocation'"), +(1852701, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 11, 11544, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Conjurer Tyren - On Script - Cast Spell 'Yellow Rose Firework'"), +(1852702, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 11, 32475, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Conjurer Tyren - On Script - Cast Spell 'Hellfire Visual (DND)'"), +(1852703, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 11, 11542, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Conjurer Tyren - On Script - Cast Spell 'Red Streaks Firework'"), +(1852704, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 11, 30161, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Conjurer Tyren - On Script - Cast Spell 'Purple Firework'"), +(1852705, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 11, 11540, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Conjurer Tyren - On Script - Cast Spell 'Blue Firework'"); + +DELETE FROM `waypoint_data` WHERE `id`=666890; +DELETE FROM `waypoint_data` WHERE `id`=185270; +INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `delay`) VALUES +(185270, 1, 9525.83, -7264.368, 14.29412, 0), +(185270, 2, 9555.74, -7264.021, 14.24792, 0), +(185270, 3, 9565.372, -7262.795, 14.27687, 0), +(185270, 4, 9571.793, -7261.719, 14.30366, 0), +(185270, 5, 9579.403, -7262.639, 14.27172, 0), +(185270, 6, 9583.036, -7263.716, 14.238, 0), +(185270, 7, 9593.344, -7264.484, 14.2086, 0), +(185270, 8, 9601.985, -7267.124, 13.86666, 0), +(185270, 9, 9607.529, -7267.409, 13.86902, 0), +(185270, 10, 9622.397, -7267.357, 13.86774, 0), +(185270, 11, 9634.858, -7267.739, 13.87062, 0), +(185270, 12, 9646.49, -7267.261, 13.86557, 0), +(185270, 13, 9653.177, -7264.745, 14.20316, 0), +(185270, 14, 9659.288, -7260.724, 14.25711, 0), +(185270, 15, 9661.345, -7260.638, 14.24835, 160000), +(185270, 16, 9664.87, -7253.128, 14.26376, 0), +(185270, 17, 9667.089, -7247.808, 14.2601, 0), +(185270, 18, 9671.11, -7242.395, 13.93584, 0), +(185270, 19, 9674.306, -7237.416, 13.96349, 0), +(185270, 20, 9673.825, -7233.556, 14.20105, 0), +(185270, 21, 9671.942, -7231.321, 14.30227, 0), +(185270, 22, 9669.491, -7231.277, 14.3052, 0), +(185270, 23, 9665.034, -7231.147, 14.30523, 0), +(185270, 24, 9660.11, -7230.576, 14.63309, 0), +(185270, 25, 9657.628, -7229.685, 14.94244, 0), +(185270, 26, 9655.798, -7227.885, 15.28191, 0), +(185270, 27, 9655.33, -7225.428, 15.62823, 0), +(185270, 28, 9655.853, -7221.955, 15.63705, 0), +(185270, 29, 9662.243, -7216.792, 14.30528, 0), +(185270, 30, 9666.57, -7216.749, 14.30529, 0), +(185270, 31, 9671.489, -7216.527, 14.3053, 0), +(185270, 32, 9674.929, -7213.607, 14.30419, 0), +(185270, 33, 9676.145, -7209.757, 13.98104, 0), +(185270, 34, 9674.326, -7203.975, 13.96977, 0), +(185270, 35, 9669.352, -7201.253, 14.31973, 0), +(185270, 36, 9663.998, -7200.293, 14.32058, 0), +(185270, 37, 9664.278, -7198.672, 14.3207, 160000), +(185270, 38, 9655.878, -7192.329, 14.32253, 0), +(185270, 39, 9648.602, -7190.215, 14.32354, 0), +(185270, 40, 9641.105, -7187.674, 14.32352, 0), +(185270, 41, 9633.334, -7184.746, 14.31826, 0), +(185270, 42, 9626.474, -7182.906, 14.31192, 0), +(185270, 43, 9621.006, -7182.036, 14.30669, 0), +(185270, 44, 9614.548, -7181.054, 14.29494, 0), +(185270, 45, 9605.972, -7177.758, 14.28037, 0), +(185270, 46, 9601.303, -7174.567, 14.27075, 0), +(185270, 47, 9596.593, -7167.143, 14.26718, 0), +(185270, 48, 9592.958, -7161.62, 14.2672, 0), +(185270, 49, 9588.81, -7154.42, 14.26773, 0), +(185270, 50, 9584.6, -7148.086, 14.25677, 0), +(185270, 51, 9580.141, -7142.188, 14.25466, 0), +(185270, 52, 9577.233, -7135.599, 14.25943, 0), +(185270, 53, 9579.829, -7136.315, 14.26142, 160000), +(185270, 54, 9582.844, -7125.709, 14.33732, 0), +(185270, 55, 9586.646, -7121.539, 14.37463, 0), +(185270, 56, 9591.073, -7119.295, 14.39802, 0), +(185270, 57, 9600.336, -7115.224, 14.45064, 0), +(185270, 58, 9606.748, -7113.093, 14.44458, 0), +(185270, 59, 9617.806, -7110.341, 14.38485, 0), +(185270, 60, 9624.748, -7106.712, 14.36993, 0), +(185270, 61, 9630.475, -7102.962, 14.36568, 0), +(185270, 62, 9637.075, -7099.869, 14.34035, 0), +(185270, 63, 9640.724, -7099.007, 14.31583, 0), +(185270, 64, 9647.447, -7098.322, 14.27178, 0), +(185270, 65, 9654.606, -7098.396, 14.31958, 0), +(185270, 66, 9661.563, -7101.602, 14.32034, 0), +(185270, 67, 9664.166, -7107.86, 14.3234, 0), +(185270, 68, 9664.803, -7115.409, 14.32384, 0), +(185270, 69, 9670.005, -7120.562, 14.32511, 0), +(185270, 70, 9672.925, -7119.867, 14.325, 160000), +(185270, 71, 9683.609, -7114.696, 14.32453, 0), +(185270, 72, 9689.89, -7121.827, 14.32379, 0), +(185270, 73, 9692.474, -7125.519, 14.32378, 0), +(185270, 74, 9697.283, -7133.035, 14.32398, 0), +(185270, 75, 9701.83, -7143.789, 13.92369, 0), +(185270, 76, 9704.126, -7157.538, 13.91884, 0), +(185270, 77, 9701.934, -7170.944, 13.91428, 0), +(185270, 78, 9697.442, -7175.639, 13.91493, 0), +(185270, 79, 9693.155, -7178.723, 13.91556, 0), +(185270, 80, 9688.754, -7184.653, 13.93028, 0), +(185270, 81, 9684.507, -7193.309, 13.94777, 0), +(185270, 82, 9680.572, -7202.682, 13.96665, 0), +(185270, 83, 9675.43, -7212.983, 14.30399, 0), +(185270, 84, 9673.156, -7215.233, 14.3048, 0), +(185270, 85, 9668.141, -7216.213, 14.30531, 0), +(185270, 86, 9663.368, -7216.781, 14.30528, 0), +(185270, 87, 9656.968, -7217.948, 14.96112, 0), +(185270, 88, 9655.109, -7219.812, 15.62181, 0), +(185270, 89, 9655.357, -7224.03, 15.63319, 0), +(185270, 90, 9659.113, -7231.174, 14.63404, 0), +(185270, 91, 9668.264, -7231.758, 14.30523, 0), +(185270, 92, 9674.341, -7233.996, 14.21699, 0), +(185270, 93, 9677.061, -7237.09, 14.04281, 0), +(185270, 94, 9682.192, -7242.183, 14.00031, 0), +(185270, 95, 9688.502, -7246.363, 14.25585, 0), +(185270, 96, 9687.255, -7247.573, 14.27575, 160000), +(185270, 97, 9689.044, -7255.803, 14.26559, 0), +(185270, 98, 9689.769, -7260.857, 14.26465, 0), +(185270, 99, 9688.377, -7266.877, 14.29548, 0), +(185270, 100, 9686.974, -7272.359, 14.343, 0), +(185270, 101, 9681.692, -7277.843, 14.08473, 0), +(185270, 102, 9672.991, -7282.88, 14.05452, 0), +(185270, 103, 9659.612, -7282.505, 14.01126, 0), +(185270, 104, 9647.426, -7282.733, 14.01161, 0), +(185270, 105, 9623.108, -7282.724, 14.00799, 0), +(185270, 106, 9577.864, -7282.284, 14.00856, 0), +(185270, 107, 9533.067, -7282.263, 14.01119, 0), +(185270, 108, 9524.143, -7278.108, 13.97925, 0), +(185270, 109, 9520.332, -7274.874, 13.9996, 0), +(185270, 110, 9516.705, -7271.591, 14.01897, 0), +(185270, 111, 9509.566, -7267.776, 14.34473, 0), +(185270, 112, 9503.076, -7266.791, 14.35056, 160000); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_09_02_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_09_02_world.sql new file mode 100644 index 00000000000..d5a22976ef8 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_09_02_world.sql @@ -0,0 +1,14 @@ +-- +UPDATE `quest_template_addon` SET `PrevQuestID`=0 WHERE `ID` IN (9253, 9280); +UPDATE `quest_template_addon` SET `BreadcrumbForQuestId`=8490 WHERE `ID`=9253; +UPDATE `quest_template_addon` SET `BreadcrumbForQuestId`=9280 WHERE `ID`=9279; +UPDATE `quest_template_addon` SET `BreadcrumbForQuestId`=1708 WHERE `ID`=1704; +UPDATE `quest_template_addon` SET `BreadcrumbForQuestId`=1710 WHERE `ID`=1703; +UPDATE `quest_template_addon` SET `BreadcrumbForQuestId`=1705 WHERE `ID`=1700; +UPDATE `quest_template_addon` SET `BreadcrumbForQuestId`=8330 WHERE `ID` IN (10068, 10069, 10070, 10071, 10072, 10073); +DELETE FROM `quest_template_addon` WHERE `ID`=8888; +INSERT INTO `quest_template_addon` (`ID`, `BreadcrumbForQuestId`) VALUES +(8888, 8889); +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=19 AND `SourceEntry`=8330; +UPDATE `quest_template` SET `AllowableRaces`=1 WHERE `ID`=1700; +UPDATE `quest_template` SET `AllowableRaces`=4+64 WHERE `ID`=1704; diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_09_03_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_09_03_world.sql new file mode 100644 index 00000000000..07497f3d16a --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_09_03_world.sql @@ -0,0 +1,3 @@ +-- +UPDATE `quest_template` SET `AllowableRaces`=1+4+8+64 WHERE `ID`=1698; +UPDATE `quest_template` SET `AllowableRaces`=1024 WHERE `ID`=10371; diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_09_04_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_09_04_world.sql new file mode 100644 index 00000000000..f8b4d182323 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_09_04_world.sql @@ -0,0 +1,23 @@ +-- +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=19 AND `SourceEntry`=10302; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(19, 0, 10302, 0, 0, 8, 0, 9280, 0, 0, 0, 0, 0, "", "Quest 'Volatile Mutations' is available only if quest 'Replenishing the Healing Crystals' (Draenei-only version) is rewarded OR"), +(19, 0, 10302, 0, 1, 8, 0, 9369, 0, 0, 0, 0, 0, "", "Quest 'Volatile Mutations' is available only if quest 'Replenishing the Healing Crystals' (non-Draenei version) is rewarded"); + +DELETE FROM `quest_template_addon` WHERE `ID`=9358; +INSERT INTO `quest_template_addon` (`ID`, `BreadcrumbForQuestId`) VALUES +(9358, 9252); +UPDATE `quest_template_addon` SET `PrevQuestID`=0 WHERE `ID` IN (8490, 9395); +UPDATE `quest_template_addon` SET `BreadcrumbForQuestId`=10302 WHERE `ID`=9371; +UPDATE `quest_template_addon` SET `BreadcrumbForQuestId`=364 WHERE `ID`=363; +UPDATE `quest_template_addon` SET `BreadcrumbForQuestId`=12188 WHERE `ID`=12181; +UPDATE `quest_template_addon` SET `ExclusiveGroup`=10183 WHERE `ID` IN (11036, 11037, 11040, 11042, 10183); +DELETE FROM `quest_template_addon` WHERE `ID`=11039; +INSERT INTO `quest_template_addon` (`ID`, `PrevQuestID`, `ExclusiveGroup`, `BreadcrumbForQuestId`, `RequiredMinRepFaction`, `RequiredMinRepValue`) VALUES +(11039, 10211, 10183, 10189, 934, 3000); +UPDATE `quest_template_addon` SET `PrevQuestID`=10211, `ExclusiveGroup`=10183, `BreadcrumbForQuestId`=10241 WHERE `ID`=11038; +UPDATE `quest_template_addon` SET `PrevQuestId`=10211 WHERE `ID` IN (10189, 10243); + +UPDATE `quest_offer_reward` SET `Emote1`=4 WHERE `ID`=8468; +UPDATE `quest_offer_reward` SET `Emote1`=6, `Emote2`=1, `Emote3`=1, `Emote4`=15 WHERE `ID`=11864; +UPDATE `quest_offer_reward` SET `Emote1`=15, `Emote2`=66 WHERE `ID`=8885; diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_10_00_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_10_00_world.sql new file mode 100644 index 00000000000..b4d4536fcbc --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_10_00_world.sql @@ -0,0 +1,39 @@ +-- +UPDATE `quest_template_addon` SET `BreadcrumbForQuestId`=0 WHERE `ID`=12181; +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=19 AND `SourceEntry`=12181; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(19, 0, 12181, 0, 0, 47, 0, 12189, 1, 0, 0, 0, 0, "", "Quest 'Give it a Name' can only be taken if quest 'Imbeciles Abound!' is not taken/complete/rewarded AND"), +(19, 0, 12181, 0, 0, 47, 0, 12188, 1, 0, 0, 0, 0, "", "Quest 'Give it a Name' can only be taken if quest 'The Forsaken Blight and You: How Not to Die' is not taken/complete/rewarded"); + +UPDATE `quest_template_addon` SET `ExclusiveGroup`=10068 WHERE `ID` IN (10068, 10069, 10070, 10071, 10072, 10073); +UPDATE `quest_template_addon` SET `ExclusiveGroup`=1522 WHERE `ID` IN (1522, 1523, 2983, 2984); +UPDATE `quest_template_addon` SET `ExclusiveGroup`=1528 WHERE `ID` IN (1528, 1529, 2985, 2986); +UPDATE `quest_template_addon` SET `ExclusiveGroup`=4736 WHERE `ID` IN (4736, 4737, 4738, 4739); +UPDATE `quest_template_addon` SET `ExclusiveGroup`=4965 WHERE `ID` IN (4965, 4967, 4968, 4969); +UPDATE `quest_template_addon` SET `ExclusiveGroup`=5066 WHERE `ID` IN (5066, 5090, 5091, 10373); +UPDATE `quest_template_addon` SET `ExclusiveGroup`=5093 WHERE `ID` IN (5093, 5094, 5095, 10374); +UPDATE `quest_template_addon` SET `ExclusiveGroup`=3763 WHERE `ID` IN (3763, 3789, 3790, 10520); +UPDATE `quest_template_addon` SET `ExclusiveGroup`=235 WHERE `ID` IN (235, 742, 6382); +UPDATE `quest_template_addon` SET `ExclusiveGroup`=9500 WHERE `ID` IN (9500, 9502, 10490); +UPDATE `quest_template_addon` SET `ExclusiveGroup`=9547 WHERE `ID` IN (9547, 9551, 10491); +UPDATE `quest_template_addon` SET `ExclusiveGroup`=2260 WHERE `ID` IN (2260, 2298, 2300); +UPDATE `quest_template_addon` SET `ExclusiveGroup`=936 WHERE `ID` IN (936, 3762, 3784); +UPDATE `quest_template_addon` SET `ExclusiveGroup`=1698 WHERE `ID` IN (1698, 10371); +UPDATE `quest_template_addon` SET `ExclusiveGroup`=5249 WHERE `ID` IN (5249, 5250); +UPDATE `quest_template_addon` SET `ExclusiveGroup`=6611 WHERE `ID` IN (6611, 6612); +UPDATE `quest_template_addon` SET `ExclusiveGroup`=10891 WHERE `ID` IN (10891, 10892); +UPDATE `quest_template_addon` SET `ExclusiveGroup`=11177 WHERE `ID` IN (11177, 11225); +UPDATE `quest_template_addon` SET `ExclusiveGroup`=11302 WHERE `ID` IN (11302, 11312); +UPDATE `quest_template_addon` SET `ExclusiveGroup`=787 WHERE `ID` IN (787, 4641); +UPDATE `quest_template_addon` SET `ExclusiveGroup`=2996 WHERE `ID` IN (2996, 3001); +UPDATE `quest_template_addon` SET `ExclusiveGroup`=3787 WHERE `ID` IN (3787, 3788); +UPDATE `quest_template_addon` SET `ExclusiveGroup`=8275 WHERE `ID` IN (8275, 8276); +UPDATE `quest_template_addon` SET `ExclusiveGroup`=11995 WHERE `ID` IN (11995, 12440); +UPDATE `quest_template_addon` SET `ExclusiveGroup`=12161 WHERE `ID` IN (12161, 12425); +UPDATE `quest_template_addon` SET `ExclusiveGroup`=12182 WHERE `ID` IN (12182, 12189); +UPDATE `quest_template_addon` SET `ExclusiveGroup`=13226 WHERE `ID` IN (13226, 13227); +UPDATE `quest_template_addon` SET `ExclusiveGroup`=1478 WHERE `ID` IN (1478, 10789); +UPDATE `quest_template_addon` SET `ExclusiveGroup`=12208 WHERE `ID` IN (12208, 12210); +UPDATE `quest_template_addon` SET `ExclusiveGroup`=11481 WHERE `ID` IN (11481, 11482); +UPDATE `quest_template_addon` SET `ExclusiveGroup`=1506 WHERE `ID` IN (1506, 10790); +UPDATE `quest_template_addon` SET `ExclusiveGroup`=1685 WHERE `ID` IN (1685, 1715); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_11_00_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_11_00_world.sql new file mode 100644 index 00000000000..a7c079fa507 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_11_00_world.sql @@ -0,0 +1,2 @@ +-- +UPDATE `smart_scripts` SET `action_param3`=1 WHERE `entryorguid`=36856 AND `source_type`=0 AND `id`=2; diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_11_01_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_11_01_world.sql new file mode 100644 index 00000000000..fbbb18f7a85 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_11_01_world.sql @@ -0,0 +1,10 @@ +-- +SET @ENTRY := 23876; +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY 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 +(@ENTRY,0,0,0,60,0,100,0,1000,1000,3000,5000,11,42526,0,0,0,0,0,1,0,0,0,0,0,0,0,"Spore - On update - Cast Spore Cloud"), +(@ENTRY,0,1,0,25,0,100,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Spore - On reset - Set passive"), +(@ENTRY,0,2,0,8,0,100,1,43354,0,0,0,33,24235,0,0,0,0,0,7,0,0,0,0,0,0,0,"Spore - On Spellhit By 43354 - Quest Credit (Phase 1)"), +(@ENTRY,0,3,0,8,0,100,1,43354,0,0,0,41,6000,0,0,0,0,0,1,0,0,0,0,0,0,0,"Spore - On Spellhit By 43354 - Despawn"), +(@ENTRY,0,4,0,8,0,100,1,43354,0,0,0,75,42525,0,0,0,0,0,1,0,0,0,0,0,0,0,"Spore - On Spellhit By 43354 - Add aura"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_11_02_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_11_02_world.sql new file mode 100644 index 00000000000..6b174265453 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_11_02_world.sql @@ -0,0 +1,137 @@ +-- +-- Blacksouled Keeper 23875 +DELETE FROM `creature` WHERE `guid` IN (111180,111190); +INSERT INTO `creature` (`guid`, `id`, `map`, `spawnMask`, `phaseMask`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`) VALUES +(111180,23875,571,1,1,0,0,2470.21,-4603.03,234.733,5.60195,180,0,0,9291,0,2), +(111190,23875,571,1,1,0,0,2455.24,-4720.49,230.349,4.26509,180,0,0,9291,0,2); +DELETE FROM `creature_addon` WHERE `guid` IN (111180,111190); +INSERT INTO `creature_addon` (`guid`, `path_id`, `bytes1`, `bytes2`, `auras`) VALUES +(111180,1111800,0,1,''), +(111190,1111900,0,1,''); +DELETE FROM `waypoint_data` WHERE `id` IN (1111800, 1111900); +INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`, `delay`, `action_chance`, `orientation`) VALUES +-- #111180 +(1111800,1,2478.51,-4613.5,234.417,0,100,5.23039), +(1111800,2,2492.81,-4636.65,234.161,0,100,5.22647), +(1111800,3,2498.1,-4655.35,230.79,0,100,4.3429), +(1111800,4,2491.21,-4670.68,229.235,0,100,4.2997), +(1111800,5,2483.43,-4685.07,229.007,0,100,3.76873), +(1111800,6,2468.05,-4692.43,229.946,0,100,3.65485), +(1111800,7,2459.08,-4696.33,229.174,0,100,3.4742), +(1111800,8,2444.72,-4701.14,226.746,0,100,3.52133), +(1111800,9,2425.7,-4718.24,227.139,0,100,3.8669), +(1111800,10,2405.41,-4716.37,226.896,0,100,3.08151), +(1111800,11,2396.18,-4704.45,228.558,0,100,2.2372), +(1111800,12,2380.31,-4684.05,229.875,0,100,2.13353), +(1111800,13,2377.3,-4662.07,229.808,0,100,1.69619), +(1111800,14,2376.84,-4650.88,230.322,0,100,1.64121), +(1111800,15,2372.1,-4635.83,228.382,0,100,1.8729), +(1111800,16,2369.41,-4628.65,227.601,0,100,1.94359), +(1111800,17,2366.61,-4608.53,226.49,0,100,1.49591), +(1111800,18,2373.94,-4600.79,226.767,0,100,0.745667), +(1111800,19,2399.32,-4588.86,225.256,0,100,0.482558), +(1111800,20,2415.37,-4578.92,225.447,0,100,0.561098), +(1111800,21,2428.03,-4571.64,227.168,0,100,6.25524), +(1111800,22,2443.54,-4581.6,231.8,0,100,5.72369), +(1111800,23,2454.26,-4589.16,233.748,0,100,5.57447), +(1111800,24,2470.21,-4603.03,234.733,0,100,5.60195), +-- #111190 +(1111900,1,2440.4,-4731.53,231.221,0,100,3.66835), +(1111900,2,2425.67,-4733.7,232.26,0,100,3.23656), +(1111900,3,2439.71,-4732.08,231.338,0,100,0.149941), +(1111900,4,2455.1,-4720.43,230.186,0,100,0.786114), +(1111900,5,2462.82,-4704.11,229.941,0,100,1.10512), +(1111900,6,2471.99,-4698.22,231.145,0,100,0.504287), +(1111900,7,2482.55,-4704.81,234.468,0,100,5.35805), +(1111900,8,2488.04,-4724.23,235.626,0,100,4.06215), +(1111900,9,2472.04,-4736.54,233.44,0,100,3.84522), +(1111900,10,2455.55,-4751.09,235.301,0,100,3.86093), +(1111900,11,2434.76,-4752.96,236.099,0,100,3.29151), +(1111900,12,2424.86,-4756.98,237.455,0,100,3.58211), +(1111900,13,2420.06,-4759.16,234.806,0,100,3.55855), +(1111900,14,2413.5,-4761.26,233.434,0,100,3.49179), +(1111900,15,2406.13,-4763.82,232.643,0,100,2.49041), +(1111900,16,2392.59,-4741.84,231.298,0,100,3.25098), +(1111900,17,2373.22,-4741.71,230.737,0,100,3.13317), +(1111900,18,2356.26,-4758.1,235.155,0,100,2.52841), +(1111900,19,2337.51,-4743.85,235.03,0,100,1.61107), +(1111900,20,2342.91,-4712.95,233.052,0,100,1.39224), +(1111900,21,2337.25,-4743.73,235.051,0,100,5.66873), +(1111900,22,2346.26,-4750.73,233.919,0,100,5.6059), +(1111900,23,2356.51,-4758.64,235.287,0,100,0.82282), +(1111900,24,2372.62,-4743.4,231.188,0,100,0.304457), +(1111900,25,2391.83,-4741.76,231.306,0,100,6.25778), +(1111900,26,2405.65,-4763.99,232.714,0,100,0.0177803), +(1111900,27,2413.11,-4761.78,233.321,0,100,0.414406), +(1111900,28,2420.44,-4758.42,234.822,0,100,0.441895), +(1111900,29,2424.69,-4756.97,237.421,0,100,0.359429), +(1111900,30,2438.09,-4752.19,235.739,0,100,0.194495), +(1111900,31,2455.16,-4751.18,235.357,0,100,0.170933), +(1111900,32,2472.15,-4737.2,233.518,0,100,0.681442), +(1111900,33,2488.66,-4723.39,235.827,0,100,0.834595), +(1111900,34,2484.38,-4708.99,234.997,0,100,1.94593), +(1111900,35,2481.69,-4700.64,234.191,0,100,2.35434), +(1111900,36,2472.5,-4697.91,231.213,0,100,3.16243), +(1111900,37,2463.07,-4703.52,229.966,0,100,3.97306), +(1111900,38,2455.54,-4719.86,230.121,0,100,4.35398); + +SET @ENTRY := 23875; +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY 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 +(@ENTRY,0,0,0,1,0,100,0,1000,2000,3000,5000,11,43619,0,0,0,0,0,2,0,0,0,0,0,0,0,"Blacksouled Keeper - In Combat - Cast Wrath"); + +-- Keeper Witherleaf 24638 +UPDATE `creature` SET `spawndist` = 0, `MovementType` = 2 WHERE `id` = 24638; +DELETE FROM `creature_addon` WHERE `guid` IN (101930); +INSERT INTO `creature_addon` (`guid`, `path_id`, `bytes1`, `bytes2`, `auras`) VALUES +(101930,1019300,0,1,''); +DELETE FROM `waypoint_data` WHERE `id` IN (1019300); +INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`, `delay`, `action_chance`, `orientation`) VALUES +(1019300,1,2380.02,-4637.22,229.025,0,100,2.26126), +(1019300,2,2386.59,-4645.91,229.719,0,100,5.45783), +(1019300,3,2398.2,-4654.05,227.657,0,100,5.85444), +(1019300,4,2404.72,-4655.27,225.988,0,100,6.08221), +(1019300,5,2410.54,-4649.25,225.331,0,100,0.710082), +(1019300,6,2417.16,-4644.32,225.415,0,100,0.568711), +(1019300,7,2412.84,-4634.45,227.032,0,100,2.05311), +(1019300,8,2399.96,-4609.89,227.408,0,100,2.05704), +(1019300,9,2406.23,-4624.53,226.931,0,100,5.2379), +(1019300,10,2416.96,-4644.17,225.448,0,100,5.38712), +(1019300,11,2427.17,-4648,225.262,0,100,5.81809), +(1019300,12,2440.45,-4661.32,226.722,0,100,5.00521), +(1019300,13,2461.58,-4655.55,228.373,0,100,0.229988), +(1019300,14,2441.09,-4661.59,226.794,0,100,3.34231), +(1019300,15,2431.33,-4673.61,225.299,0,100,3.64076), +(1019300,16,2417.36,-4674.24,224.728,0,100,3.20879), +(1019300,17,2411.02,-4685.15,226.215,0,100,4.24552), +(1019300,18,2399.08,-4704.58,228.217,0,100,4.19054), +(1019300,19,2407.75,-4688.01,226.742,0,100,1.02539), +(1019300,20,2417.05,-4674.43,224.709,0,100,1.00182), +(1019300,21,2408.54,-4663.15,225.177,0,100,2.05818), +(1019300,22,2405.02,-4655.24,225.923,0,100,1.86183), +(1019300,23,2393.69,-4652.46,228.717,0,100,2.85536), +(1019300,24,2386.69,-4646.15,229.726,0,100,2.32522), +(1019300,25,2380.32,-4637.13,229.036,0,100,2.21526), +(1019300,26,2386.61,-4646.11,229.727,0,100,5.43147), +(1019300,27,2397.76,-4653.73,227.777,0,100,5.8438), +(1019300,28,2408.36,-4663.27,225.181,0,100,5.37256), +(1019300,29,2417.52,-4673.89,224.762,0,100,4.44816), +(1019300,30,2407.66,-4687.27,226.752,0,100,4.24003), +(1019300,31,2398.99,-4704.73,228.224,0,100,4.32642), +(1019300,32,2407.82,-4687.7,226.73,0,100,1.00026), +(1019300,33,2416.65,-4674.57,224.695,0,100,0.776419), +(1019300,34,2431.17,-4673.4,225.286,0,100,0.0459989), +(1019300,35,2439.51,-4666.3,226.405,0,100,0.768565), +(1019300,36,2449.95,-4659.31,227.381,0,100,0.407282), +(1019300,37,2461.59,-4655.8,228.347,0,100,0.30518), +(1019300,38,2440.82,-4662.09,226.73,0,100,2.42811), +(1019300,39,2434.39,-4653.97,226.085,0,100,2.31613), +(1019300,40,2427.9,-4648.44,225.317,0,100,2.46535), +(1019300,41,2417.48,-4644.35,225.402,0,100,2.08836), +(1019300,42,2406.76,-4625.14,226.92,0,100,2.04124), +(1019300,43,2400.04,-4609.8,227.403,0,100,2.03731), +(1019300,44,2406.48,-4624.74,226.926,0,100,5.06895), +(1019300,45,2413.64,-4646.34,225.283,0,100,4.50346), +(1019300,46,2407.68,-4654.67,225.396,0,100,4.16824), +(1019300,47,2393.6,-4652.38,228.74,0,100,2.90159); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_11_03_world_335.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_11_03_world_335.sql new file mode 100644 index 00000000000..adbd61eb5d5 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_11_03_world_335.sql @@ -0,0 +1,3 @@ +-- +DELETE FROM `creature` WHERE `guid` IN (89157) AND `id`=23790; -- aura 42726 +DELETE FROM `creature_addon` WHERE `guid` IN (89157); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_11_04_world_335.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_11_04_world_335.sql new file mode 100644 index 00000000000..aa0aa6a6331 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_11_04_world_335.sql @@ -0,0 +1,3 @@ +-- +DELETE FROM `creature` WHERE `guid` IN (89212) AND `id`=24444; +DELETE FROM `creature_addon` WHERE `guid` IN (89212); -- aura 42726 diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_11_05_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_11_05_world.sql new file mode 100644 index 00000000000..c6b15609387 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_11_05_world.sql @@ -0,0 +1,33 @@ +-- +DELETE FROM `smart_scripts` WHERE `entryorguid`=24044 AND `source_type`=0 AND `id`=6; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`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 +(24044,0,6,0,8,0,100,1,42905,0,0,0,11,45254,0,0,0,0,0,1,0,0,0,0,0,0,0,"Winterskorn Guard - On spell hit - Cast Suicide"); +UPDATE `smart_scripts` SET `action_type`=11, `action_param1`=42905, `target_type`=11, `target_param1`=24044, `target_param2`=40, `target_param3`=1, `comment`= "Forsaken Crossbowman - On Data Set - cast shot" WHERE `entryorguid`=23883 AND `source_type`=0 AND `id`=1; + +DELETE FROM `smart_scripts` WHERE `entryorguid`=2378000 AND `source_type`=9; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(2378000, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 22, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "High Executor Anselm - On Script - Set Phase 1"), +(2378000, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 107, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "High Executor Anselm - On Script - Summon Group 1"), +(2378000, 9, 2, 0, 0, 0, 100, 0, 5000, 5000, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "High Executor Anselm - On Script - Say 0"), +(2378000, 9, 3, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 107, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "High Executor Anselm - On Script - Summon Group 2"), +(2378000, 9, 4, 0, 0, 0, 100, 0, 12000, 12000, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "High Executor Anselm - On Script - Say 1"), +(2378000, 9, 5, 0, 0, 0, 100, 0, 8000, 8000, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 19, 24041, 0, 0, 0, 0, 0, 0, 0, "High Executor Anselm - On Script - Say 0 (Prince Keleseth)"), +(2378000, 9, 6, 0, 0, 0, 100, 0, 12000, 12000, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 19, 24041, 0, 0, 0, 0, 0, 0, 0, "High Executor Anselm - On Script - Say 1 (Prince Keleseth)"), +(2378000, 9, 7, 0, 0, 0, 100, 0, 12000, 12000, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 19, 24041, 0, 0, 0, 0, 0, 0, 0, "High Executor Anselm - On Script - Say 2 (Prince Keleseth)"), +(2378000, 9, 8, 0, 0, 0, 100, 0, 12000, 12000, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 19, 24041, 0, 0, 0, 0, 0, 0, 0, "High Executor Anselm - On Script - Say 3 (Prince Keleseth)"), +(2378000, 9, 9, 0, 0, 0, 100, 0, 12000, 12000, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 19, 24041, 0, 0, 0, 0, 0, 0, 0, "High Executor Anselm - On Script - Say 4 (Prince Keleseth)"), +(2378000, 9, 10, 0, 0, 0, 100, 0, 8000, 8000, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "High Executor Anselm - On Script - Say"), +(2378000, 9, 11, 0, 0, 0, 100, 0, 9000, 9000, 0, 0, 0, 45, 1, 1, 0, 0, 0, 0, 9, 23883, 0, 200, 0, 0, 0, 0, 0, "High Executor Anselm - On Script - Set Data on Forsaken Crossbow Man"), +(2378000, 9, 12, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 45, 2, 2, 0, 0, 0, 0, 9, 24044, 0, 200, 0, 0, 0, 0, 0, "High Executor Anselm - On Script - Set Data on Winterskorn Guard"), +(2378000, 9, 13, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "High Executor Anselm - On Script - Say 2"), +(2378000, 9, 14, 0, 0, 0, 100, 0, 3000, 3000, 0, 0, 0, 45, 3, 3, 0, 0, 0, 0, 9, 24044, 0, 200, 0, 0, 0, 0, 0, "High Executor Anselm - On Script - Set Data on Winterskorn Guard"), +(2378000, 9, 15, 0, 0, 0, 100, 0, 3000, 3000, 0, 0, 0, 1, 5, 0, 0, 0, 0, 0, 19, 24041, 0, 0, 0, 0, 0, 0, 0, "High Executor Anselm - On Script - Say 5 (Prince Keleseth)"), +(2378000, 9, 16, 0, 0, 0, 100, 0, 2000, 2000, 0, 0, 0, 45, 1, 1, 0, 0, 0, 0, 19, 24041, 0, 0, 0, 0, 0, 0, 0, "High Executor Anselm - On Script - Say"), +(2378000, 9, 17, 0, 0, 0, 100, 0, 2000, 2000, 0, 0, 0, 45, 2, 2, 0, 0, 0, 0, 9, 23883, 0, 200, 0, 0, 0, 0, 0, "High Executor Anselm - On Script - Set Data on Forsaken Crossbow Man"), +(2378000, 9, 18, 0, 0, 0, 100, 0, 2000, 2000, 0, 0, 0, 45, 2, 2, 0, 0, 0, 0, 19, 24041, 0, 0, 0, 0, 0, 0, 0, "High Executor Anselm - On Script - Say"), +(2378000, 9, 19, 0, 0, 0, 100, 0, 4000, 4000, 0, 0, 0, 1, 6, 0, 0, 0, 0, 0, 19, 24041, 0, 0, 0, 0, 0, 0, 0, "High Executor Anselm - On Script - Say"), +(2378000, 9, 20, 0, 0, 0, 100, 0, 8000, 8000, 0, 0, 0, 1, 7, 0, 0, 0, 0, 0, 19, 24041, 0, 0, 0, 0, 0, 0, 0, "High Executor Anselm - On Script - Say"), +(2378000, 9, 21, 0, 0, 0, 100, 0, 8000, 8000, 0, 0, 0, 22, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, "High Executor Anselm - On Script - Set Phase 2"), +(2378000, 9, 22, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 19, 24041, 0, 0, 0, 0, 0, 0, 0, "High Executor Anselm - On Script - Despawn Prince Keleseth"), +(2378000, 9, 23, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 9, 24044, 0, 200, 0, 0, 0, 0, 0, "High Executor Anselm - On Script - Despawn Winterskorn Guard"), +(2378000, 9, 24, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 9, 23883, 0, 200, 0, 0, 0, 0, 0, "High Executor Anselm - On Script - Despawn Forsaken Crossbow Man"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_11_06_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_11_06_world.sql new file mode 100644 index 00000000000..ccc1f808d6a --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_11_06_world.sql @@ -0,0 +1,4 @@ +-- +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 17 AND `SourceEntry` = 36532; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `ErrorTextId`, `ScriptName`, `Comment`, `NegativeCondition`) VALUES +(17, 0, 36532, 0, 30, 0, 184713, 30, 0, 0, '', "'Bladespire Clan Banner'", 1); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_12_00_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_12_00_world.sql new file mode 100644 index 00000000000..e4aedc713da --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_12_00_world.sql @@ -0,0 +1,272 @@ +-- High Executor Anselm +UPDATE `creature_addon` SET `mount`=10721 WHERE `guid`=117743; +-- Forsaken Croaabowman +UPDATE `creature_addon` SET `bytes2`=2 WHERE `guid` IN (102612,102618,102620); +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (-102612,-102618,-102620) AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(-102612,0,0,0,1,0,100,0,1000,2000,2000,4000,0,11,42611,0,0,0,0,0,19,5202,0,0,0,0,0,0,0,"Forsaken Crossbowman - Out of Combat - Cast 'Shoot'"), +(-102618,0,0,0,1,0,100,0,1000,2000,2000,4000,0,11,42611,0,0,0,0,0,19,5202,0,0,0,0,0,0,0,"Forsaken Crossbowman - Out of Combat - Cast 'Shoot'"), +(-102620,0,0,0,1,0,100,0,1000,2000,2000,4000,0,11,42611,0,0,0,0,0,19,5202,0,0,0,0,0,0,0,"Forsaken Crossbowman - Out of Combat - Cast 'Shoot'"); +-- Vengeance Landing Deathguard +DELETE FROM `creature_addon` WHERE `guid` IN (117673,117674); +INSERT INTO `creature_addon` (`guid`, `mount`, `bytes1`, `bytes2`, `path_id`) VALUES +(117673,10718,0,1,1176730), -- master +(117674,10718,0,1,0); +DELETE FROM `creature_formations` WHERE `leaderGUID` IN (117673); +INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`, `point_1`, `point_2`) VALUES +(117673,117673,0,0,515,0,0), +(117673,117674,4,90,515,0,0); +-- Waypoints +UPDATE `creature` SET `SpawnDist` = 0, `MovementType` = 2 WHERE `guid` = 117673; +UPDATE `creature` SET `position_x` = 2013.908936, `position_y` = -6164.616699, `position_z` = 15.733516, `orientation` = 1.57369, `SpawnDist` = 0, `MovementType` = 0 WHERE `guid` = 117674; +DELETE FROM `waypoint_data` WHERE `id` IN (1176730); +INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `delay`, `action`, `orientation`, `action_chance`, `move_type`) VALUES +(1176730,1,2016.24,-6157.87,13.1977,0,0,1.52477,100,0), +(1176730,2,2015.83,-6145.55,7.88017,0,0,1.67348,100,0), +(1176730,3,2014.28,-6133.29,6.46747,0,0,1.66955,100,0), +(1176730,4,2012.94,-6120.86,6.03301,0,0,1.6774,100,0), +(1176730,5,2011.75,-6107.13,6.63284,0,0,1.69704,100,0), +(1176730,6,2009.53,-6095.89,7.08266,0,0,1.88946,100,0), +(1176730,7,2007.67,-6090.07,7.64141,0,0,2.00334,100,0), +(1176730,8,2004.53,-6084.76,8.83384,0,0,2.26095,100,0), +(1176730,9,1998.68,-6080.14,10.576,0,0,2.64344,100,0), +(1176730,10,1989.88,-6077.4,12.7546,0,0,2.94582,100,0), +(1176730,11,1973.77,-6074.59,16.3861,0,0,3.21678,100,0), +(1176730,12,1965.13,-6075.81,17.5653,0,0,3.60556,100,0), +(1176730,13,1958.82,-6080.25,18.4291,0,0,3.73772,100,0), +(1176730,14,1951.8,-6085.63,20.1726,0,0,3.82412,100,0), +(1176730,15,1941.9,-6094.04,20.6644,0,0,3.93407,100,0), +(1176730,16,1939.54,-6099.86,20.5402,0,0,4.53882,100,0), +(1176730,17,1939.1,-6105.71,21.2091,0,0,4.75088,100,0), +(1176730,18,1939.12,-6110.8,22.4324,0,0,4.47285,100,0), +(1176730,19,1936.42,-6121.51,23.2113,0,0,4.498,100,0), +(1176730,20,1933.25,-6130.15,23.1697,0,0,4.71729,100,0), +(1176730,21,1934.82,-6135.03,23.2975,0,0,5.10213,100,0), +(1176730,22,1938.9,-6145.15,23.7109,0,0,5.01966,100,0), +(1176730,23,1939.97,-6152.59,23.7182,0,0,4.76205,100,0), +(1176730,24,1943.13,-6159.74,23.7036,0,0,5.38599,100,0), +(1176730,25,1950.22,-6169.12,24.1232,0,0,5.46453,100,0), +(1176730,26,1956.32,-6174.43,24.2589,0,0,5.84389,100,0), +(1176730,27,1964.69,-6178.04,24.0037,0,0,5.89102,100,0), +(1176730,28,1972.11,-6180.07,23.7833,0,0,6.1227,100,0), +(1176730,29,1978.29,-6180.39,23.7011,0,0,6.26015,100,0), +(1176730,30,1987.2,-6179.4,23.1245,0,0,0.03194,100,0), +(1176730,31,1995.8,-6178.26,19.8625,0,0,0.11048,100,0), +(1176730,32,2006.32,-6176.85,15.3594,0,0,0.14975,100,0), +(1176730,33,2013.16,-6175.09,15.3707,0,0,0.668113,100,0), +(1176730,34,2015.35,-6170.03,15.5007,0,0,1.28465,100,0), +(1176730,35,2015.85,-6164.67,15.7319,0,0,1.5831,100,0); + +-- Apothecary Celestine +DELETE FROM `creature_template_addon` WHERE `entry` IN (23781); +INSERT INTO `creature_template_addon` (`entry`, `emote`) VALUES +(23781,69); +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry`=42442; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition` ,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(13,1,42442,0,1,31,0,3,24921,0,0,0,'','Vengeance Landing Cannonfire'), +(13,1,42442,0,0,31,0,3,23803,0,0,0,'','Vengeance Landing Cannonfire'); +DELETE FROM `creature_template_movement` WHERE `CreatureId` IN (23805); +INSERT INTO `creature_template_movement` (`CreatureId`, `Ground`, `Swim`, `Flight`, `Rooted`) VALUES +(23805, 0, 0, 1, 0); +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry` IN (23805,23968); +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (23805,23968) AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(23805,0,0,0,1,0,100,0,1000,2000,4000,7000,0,11,42442,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Vengeance Landing Cannon Controller - Out of Combat - Cast 'Vengeance Landing Cannonfire'"), +(23968,0,0,0,1,0,100,0,1000,30000,30000,45000,0,11,42686,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Hanes Fire Trigger - Out of Combat - Cast 'Serverside - Summon Fire'"); + +-- Forsaken Recruit +UPDATE `creature` SET `position_x` = 1972.96, `position_y` = -6254.06, `position_z` = 1.25329, `orientation` = 0.390811, `spawndist` = 0, `MovementType` = 2 WHERE `guid` = 118404; +UPDATE `creature` SET `position_x` = 1973.1, `position_y` = -6254.7, `position_z` = 1.25329, `orientation` = 0.390811, `spawndist` = 0, `MovementType` = 0 WHERE `guid` = 118403; +UPDATE `creature` SET `position_x` = 1972.64, `position_y` = -6253.59, `position_z` = 1.25329, `orientation` = 0.390811, `spawndist` = 0, `MovementType` = 0 WHERE `guid` = 118401; +UPDATE `creature` SET `position_x` = 1972.43, `position_y` = -6254.23, `position_z` = 1.25329, `orientation` = 0.34326, `spawndist` = 0, `MovementType` = 0 WHERE `guid` = 118402; +DELETE FROM `creature_formations` WHERE `leaderGUID` IN (118404); +INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`, `point_1`, `point_2`) VALUES +(118404,118404,0,0,515,0,0), +(118404,118403,2,90,515,0,0), +(118404,118401,2,270,515,0,0), +(118404,118402,2,360,515,0,0); +DELETE FROM creature_addon WHERE guid IN (118404); +INSERT INTO creature_addon (guid, mount, bytes1, bytes2, path_id) VALUES +(118404,0,0,1,1184040); +DELETE FROM `waypoint_data` WHERE `id` IN (1184040); +INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `delay`, `action`, `orientation`, `action_chance`, `move_type`) VALUES +(1184040,1,1977.54,-6251.92,1.25325,2000,0,0.482814,100,0), +(1184040,2,1989.75,-6244.71,1.25325,0,0,0.561354,100,0), +(1184040,3,1999.49,-6238.68,1.26237,0,0,0.384639,100,0), +(1184040,4,2007.32,-6235.63,5.29081,0,0,0.376785,100,0), +(1184040,5,2010.27,-6236.29,5.32908,0,0,5.38134,100,0), +(1184040,6,2009.43,-6239.24,5.32908,0,0,3.69667,100,0), +(1184040,7,2003.54,-6241.83,8.41202,0,0,3.49247,100,0), +(1184040,8,1997.87,-6242.26,8.58237,0,0,2.60889,100,0), +(1184040,9,1990.17,-6237.41,8.58352,0,0,2.45574,100,0), +(1184040,10,1987.09,-6234.06,8.62203,0,0,2.03241,100,0), +(1184040,11,1985.3,-6226.95,7.73933,10000,0,3.11693,100,0), +(1184040,12,1985.91,-6221.04,7.73933,0,0,0.821211,100,0), +(1184040,13,1997.99,-6214.67,7.73933,0,0,0.420497,100,0), +(1184040,14,2007.97,-6210.96,7.7388,0,0,0.65219,100,0), +(1184040,15,2011.58,-6204.69,7.89962,0,0,1.31585,100,0), +(1184040,16,2015.14,-6195.65,11.6578,0,0,1.43994,100,0), +(1184040,17,2015.56,-6185.98,15.7973,0,0,1.5105,100,0), +(1184040,18,2015.46,-6176.38,15.3872,0,0,1.61039,100,0), +(1184040,19,2014.71,-6164.41,15.7934,0,0,1.64181,100,0), +(1184040,20,2015.76,-6156.04,12.4072,0,0,1.57505,100,0), +(1184040,21,2015.16,-6145.36,7.86001,0,0,1.64181,100,0), +(1184040,22,2014.01,-6131.76,6.38754,0,0,1.66537,100,0), +(1184040,23,2012.71,-6120.14,5.99595,0,0,1.71249,100,0), +(1184040,24,2011.76,-6108.17,6.56669,0,0,1.64966,100,0), +(1184040,25,2009.49,-6095.97,7.07232,0,0,1.88921,100,0), +(1184040,26,2006.13,-6088.4,8.03768,0,0,2.13268,100,0), +(1184040,27,2001.07,-6082.28,9.85732,0,0,2.54894,100,0), +(1184040,28,1994.55,-6078.78,11.6305,0,0,2.76493,100,0), +(1184040,29,1986.24,-6075.43,13.6475,0,0,2.94164,100,0), +(1184040,30,1975.85,-6074.51,15.9894,0,0,3.13406,100,0), +(1184040,31,1967.14,-6075.05,17.3374,0,0,3.20082,100,0), +(1184040,32,1961.05,-6075.53,17.7725,0,0,2.82148,100,0), +(1184040,33,1956.93,-6073.34,17.4238,0,0,2.31725,100,0), +(1184040,34,1953.77,-6067.5,16.3958,0,0,1.99524,100,0), +(1184040,35,1952.29,-6060.38,15.2479,0,0,1.5829,100,0), +(1184040,36,1952.62,-6052.13,14.5453,0,0,1.29231,100,0), +(1184040,37,1956.05,-6045.36,13.7723,0,0,0.971828,100,0), +(1184040,38,1963.5,-6040.85,13.5027,0,0,0.418122,100,0), +(1184040,39,1972.26,-6036.53,12.5244,5000,0,0.484881,100,0); + +-- Dark Ranger +DELETE FROM creature WHERE guid IN (89157,89212); +INSERT INTO creature (guid, id, map, spawnmask, phasemask, modelid, equipment_id, position_x, position_y, position_z, orientation, spawntimesecs, spawndist, currentwaypoint, curhealth, curmana, MovementType) values +(89157,23776,571,1,1,0,1,1966.86,-6262.24,13.636,0.416786,300,0,0,14415,0,2), +(89212,23776,571,1,1,0,1,1966.45,-6261.53,13.636,0.334319,300,0,0,14415,0,0); +DELETE FROM creature_addon WHERE guid IN (89157,89212); +INSERT INTO creature_addon (guid, mount, bytes1, bytes2, path_id) VALUES +(89157,10718,0,1,891570), -- master +(89212,10718,0,1,0); +DELETE FROM `creature_formations` WHERE `leaderGUID` IN (89157); +INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`, `point_1`, `point_2`) VALUES +(89157,89157,0,0,515,0,0), +(89157,89212,4,0,515,0,0); +DELETE FROM `waypoint_data` WHERE `id` IN (891570); +INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `delay`, `action`, `orientation`, `action_chance`, `move_type`) VALUES +(891570,1,1968.06,-6261.8,13.637,120000,5,0.380826,100, 0), +(891570,2,1972.76,-6259.87,14.6937,0,0,0.608592,100,0), +(891570,3,1976.97,-6255.25,14.4775,0,0,1.00129,100,0), +(891570,4,1986.89,-6242.99,13.8749,0,0,0.639729,100,0), +(891570,5,1991.34,-6240.14,8.58528,0,0,1.39371,100,0), +(891570,6,1991.53,-6237.17,8.58528,0,0,2.21524,100,0), +(891570,7,1987.39,-6234.63,8.48948,0,0,1.90815,100,0), +(891570,8,1985.53,-6224.06,7.73862,0,0,1.7118,100,0), +(891570,9,1992.64,-6219.13,7.73862,0,0,0.588678,100,0), +(891570,10,2001.36,-6212.46,7.73862,0,0,0.631875,100,0), +(891570,11,2012.76,-6204.6,7.89861,0,0,0.623161,100,0), +(891570,12,2015,-6202.05,8.90979,0,0,1.23577,100,0), +(891570,13,2014.37,-6186.23,15.6992,0,0,1.64038,100,0), +(891570,14,2012.21,-6179.49,15.394,0,0,2.14696,100,0), +(891570,15,2006.72,-6176.76,15.3592,0,0,2.89152,100,0), +(891570,16,1997.09,-6177.13,19.2825,0,0,3.17583,100,0), +(891570,17,1987.3,-6177.98,23.3879,0,0,3.26615,100,0), +(891570,18,1976.95,-6178.97,23.7202,0,0,3.08316,100,0), +(891570,19,1967.51,-6178.25,23.9363,0,0,3.03603,100,0), +(891570,20,1958.1,-6175.62,24.2028,0,0,2.76507,100,0), +(891570,21,1949.09,-6169.15,24.0711,0,0,2.50981,100,0), +(891570,22,1941.59,-6166,23.6998,0,0,3.07923,100,0), +(891570,23,1924.51,-6166.94,23.7876,0,0,3.1774,100,0), +(891570,24,1912.73,-6165.86,23.0089,0,0,2.80041,100,0), +(891570,25,1905.4,-6159.84,21.6651,0,0,2.25063,100,0), +(891570,26,1900.11,-6149.83,18.502,0,0,2.05036,100,0), +(891570,27,1895.57,-6141.51,18.0577,0,0,2.0857,100,0), +(891570,28,1893.9,-6137.66,18.0577,0,0,1.57519,100,0), +(891570,29,1894.31,-6126.74,18.1256,0,0,1.45765,100,0), +(891570,30,1895.81,-6118.22,18.3296,0,0,1.97602,100,0), +(891570,31,1887.19,-6109.54,18.1207,0,0,2.60434,100,0), +(891570,32,1878.36,-6103.71,18.0258,0,0,2.69858,100,0), +(891570,33,1868.98,-6100.17,17.2504,0,0,2.93333,100,0), +(891570,34,1857.29,-6100.18,15.4363,0,0,3.16109,100,0), +(891570,35,1842.48,-6102.49,13.5645,0,0,3.56165,100,0), +(891570,36,1833.03,-6107.17,12.5284,0,0,3.91491,100,0), +(891570,37,1825.68,-6115.29,10.637,0,0,4.04843,100,0), +(891570,38,1814.87,-6129.22,10.0362,0,0,4.07984,100,0), +(891570,39,1809.67,-6138.8,9.84111,0,0,4.38222,100,0), +(891570,40,1806.8,-6155.59,8.07283,0,0,4.57071,100,0), +(891570,41,1804.64,-6170.94,5.94955,0,0,4.57464,100,0), +(891570,42,1803.19,-6183.59,5.57056,5000,0,4.62569,100,0); +-- Morris Family +DELETE FROM `creature_formations` WHERE `leaderGUID` IN (118144); +INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`, `point_1`, `point_2`) VALUES +(118144,118144,0,0,515,0,0), +(118144,115143,1,270,515,0,0), +(118144,118200,2,270,515,0,0), +(118144,118249,3,0,515,0,0), +(118144,115231,3,15,515,0,0), +(118144,118045,3,30,515,0,0); +DELETE FROM creature_addon WHERE guid IN (118144); +INSERT INTO creature_addon (guid, mount, bytes1, bytes2, path_id) VALUES +(118144,0,0,1,1181440); +UPDATE creature SET spawndist = 0, MovementType = 2 WHERE guid = 118144; -- master +DELETE FROM `waypoint_data` WHERE `id` IN (1181440); +INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `delay`, `action`, `orientation`, `action_chance`, `move_type`) VALUES +(1181440,1,1979.35,-6255.47,8.58476,40000,0,0.376571,100,0), +(1181440,2,1984.87,-6253.24,8.58476,0,0,0.32552,100,0), +(1181440,3,1990.82,-6250.85,8.58476,0,0,0.451184,100,0), +(1181440,4,1995.73,-6248.42,8.58476,0,0,1.16982,100,0), +(1181440,5,1995.47,-6241.94,8.58302,0,0,1.80207,100,0), +(1181440,6,1990.43,-6237.06,8.58344,0,0,2.46573,100,0), +(1181440,7,1987.03,-6234.24,8.5071,0,0,1.69054,100,0), +(1181440,8,1985.58,-6226.35,7.73876,20000,0,3.31475,100,0), +(1181440,9,1986.77,-6221.69,7.73876,0,0,0.65618,100,0), +(1181440,10,1994.25,-6216.97,7.73876,0,0,0.515594,100,0), +(1181440,11,2003.94,-6211.56,7.73876,0,0,0.515594,100,0), +(1181440,12,2013.67,-6204.89,7.89386,0,0,1.65049,100,0), +(1181440,13,2014.42,-6195.4,11.7727,0,0,1.48949,100,0), +(1181440,14,2014.66,-6186,15.7962,0,0,1.57195,100,0), +(1181440,15,2014.63,-6176.89,15.3869,0,0,1.59039,100,0), +(1181440,16,2014.64,-6164.27,15.8498,0,0,1.55897,100,0), +(1181440,17,2016.01,-6155.96,12.3781,0,0,1.53934,100,0), +(1181440,18,2015.22,-6145.53,7.87425,0,0,1.60217,100,0), +(1181440,19,2013.88,-6129.59,6.28219,0,0,1.72391,100,0), +(1181440,20,2012.7,-6117.38,6.04007,0,0,1.64144,100,0), +(1181440,21,2011.24,-6105.77,6.73958,0,0,1.73569,100,0), +(1181440,22,2009.26,-6096.05,7.03634,0,0,1.86921,100,0), +(1181440,23,2005.91,-6088.15,8.11917,0,0,2.16373,100,0), +(1181440,24,2000.91,-6081.72,9.93104,0,0,2.76063,100,0), +(1181440,25,1994.18,-6078.81,11.7192,5000,0,2.90975,100,0); + +DELETE FROM `creature_text` WHERE `CreatureID` IN (29302,29419,29422); +INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES +-- +(29302,0,0,"Looks like you brought the whole family! What's your business here, then?",12,0,100,0,0,0,29933,0,"Deathguard Hemil"), +(29419,0,0,"We're here for civilian work, sir.",12,0,100,0,0,0,30118,0,"Julian Morris"), +(29302,1,0,"Work? You are aware this is a warzone, citizen? What is your profession?",12,0,100,0,0,0,29934,0,"Deathguard Hemil"), +(29419,1,0,"Well... we\'re undertakers, sir.",12,0,100,0,0,0,30119,0,"Julian Morris"), +(29302,2,0,"Right. Go ahead.",12,0,100,0,0,0,29935,0,"Deathguard Hemil"), +-- +(29302,3,0,"Her Majesty sends Dark Rangers! Stand aside, boys!",12,0,100,0,0,0,29936,0,"Deathguard Hemil"), +-- +(29302,4,0,"You must be the sorriest bunch of recruits I've seen today! Fall in formations and report to High Executor Anselm!",12,0,100,0,0,0,29938,0,"Deathguard Hemil"), +(29302,4,1,"Aren't you a sorry sight! I suppose you're a little better than yesterday's bunch. Formations, now! Report for duty!",12,0,100,0,0,0,29939,0,"Deathguard Hemil"), +(29302,4,2,"Wipe that worthless grin off your faces, recruits! If the High Executor sees you like that he will kill you all himself!,",12,0,100,0,0,0,29940,0,"Deathguard Hemil"), +(29422,0,0,"Yes, sir!",12,0,100,66,0,0,30120,0,"Forsaken Recruit"); + +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry` IN (29419,23776,29422); +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (29419,23776,29422) AND `source_type`=0; +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (2941900,2942200) 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 +(29419,0,0,0,34,0,100,0,2,7,0,0,80,2941900,0,0,0,0,0,1,0,0,0,0,0,0,0,"Julian Morris - In movement informer - action list"), +(2941900,9,0,0,0,0,100,0,2000,2000,0,0,1,0,0,0,0,0,0,19,29302,0,0,0,0,0,0,"Julian Morris - Action list - Say text"), +(2941900,9,1,0,0,0,100,0,5000,5000,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Julian Morris - Action list - Say text"), +(2941900,9,2,0,0,0,100,0,4000,4000,0,0,1,1,0,0,0,0,0,19,29302,0,0,0,0,0,0,"Julian Morris - Action list - Say text"), +(2941900,9,3,0,0,0,100,0,4000,4000,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Julian Morris - Action list - Say text"), +(2941900,9,5,0,0,0,100,0,3000,3000,0,0,1,2,0,0,0,0,0,19,29302,0,0,0,0,0,0,"Julian Morris - Action list - Say text"), +(29419,0,1,0,34,0,100,0,2,24,0,0,41,0,0,0,0,0,0,19,29420,0,0,0,0,0,0,"Julian Morris - In movement informer - Despawn"), +(29419,0,2,0,34,0,100,0,2,24,0,0,41,0,0,0,0,0,0,19,30157,0,0,0,0,0,0,"Julian Morris - In movement informer - Despawn"), +(29419,0,3,0,34,0,100,0,2,24,0,0,41,0,0,0,0,0,0,19,29421,0,0,0,0,0,0,"Julian Morris - In movement informer - Despawn"), +(29419,0,4,0,34,0,100,0,2,24,0,0,41,0,0,0,0,0,0,19,30158,0,0,0,0,0,0,"Julian Morris - In movement informer - Despawn"), +(29419,0,5,0,34,0,100,0,2,24,0,0,41,0,0,0,0,0,0,19,29418,0,0,0,0,0,0,"Julian Morris - In movement informer - Despawn"), +(29419,0,6,0,34,0,100,0,2,24,0,0,41,1000,0,0,0,0,0,1,0,0,0,0,0,0,0,"Julian Morris - In movement informer - Despawn"), +(29422,0,0,0,34,0,100,0,2,10,0,0,80,2942200,0,0,0,0,0,1,0,0,0,0,0,0,0,"Forsaken Recruit - In movement informer - Action list"), +(2942200,9,0,0,0,0,100,0,3000,3000,0,0,1,4,0,0,0,0,0,19,29302,0,0,0,0,0,0,"Forsaken Recruit - Action list - Say text"), +(2942200,9,1,0,0,0,100,0,5000,5000,0,0,45,1,1,0,0,0,0,11,29422,30,0,0,0,0,0,"Forsaken Recruit - Action list - Set data"), +(2942200,9,2,0,0,0,100,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Forsaken Recruit - Action list - Say text"), +(29422,0,1,0,34,0,100,0,2,38,0,0,41,0,0,0,0,0,0,11,29422,30,0,0,0,0,0,"Forsaken Recruit - In movement informer - Despawn"), +(29422,0,2,0,34,0,100,0,2,38,0,0,41,1000,0,0,0,0,0,1,0,0,0,0,0,0,0,"Forsaken Recruit - In movement informer - Despawn"), +(29422,0,3,0,38,0,100,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Forsaken Recruit - On data set - Say text"), +(23776,0,0,0,34,0,100,0,2,7,0,0,1,3,0,0,0,0,0,19,29302,0,0,0,0,0,0,"Dark Ranger - In movement informer - Say text"), +(23776,0,1,0,34,0,100,0,2,41,0,0,41,0,0,0,0,0,0,19,23776,0,0,0,0,0,0,"Dark Ranger - In movement informer - Despawn"), +(23776,0,2,0,34,0,100,0,2,41,0,0,41,1000,0,0,0,0,0,1,0,0,0,0,0,0,0,"Dark Ranger - In movement informer - Despawn"); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_12_01_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_12_01_world.sql new file mode 100644 index 00000000000..cdf2aefaf81 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_12_01_world.sql @@ -0,0 +1,2 @@ +-- +DELETE FROM `waypoint_data` WHERE `id`=2851100; diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_13_00_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_13_00_world.sql new file mode 100644 index 00000000000..25d51416223 --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_13_00_world.sql @@ -0,0 +1,4 @@ +-- Blood Tap +DELETE FROM `spell_script_names` WHERE `ScriptName` = 'spell_dk_blood_tap'; +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES +(45529, 'spell_dk_blood_tap'); diff --git a/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_13_01_world.sql b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_13_01_world.sql new file mode 100644 index 00000000000..235fdd27d7a --- /dev/null +++ b/sql/old/3.3.5a/world/19061_2019_07_15/2019_07_13_01_world.sql @@ -0,0 +1,6 @@ +-- +DELETE FROM `command` WHERE `name`='debug guidlimits'; +INSERT INTO `command` (`name`,`permission`,`help`) VALUES +('debug guidlimits',300,'Syntax: .debug guidlimits <optional map id> +Shows the current Creature and GameObject highest Guid for the specified map id or for all maps if none is specified +'); |