BFA Update (still lots of testing to do tho)
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
DELETE FROM `rbac_permissions` WHERE `id`=698;
|
||||
INSERT INTO `rbac_permissions` (`id`, `name`) VALUES
|
||||
(698, 'Command: character changeaccount');
|
||||
INSERT INTO `rbac_linked_permissions` (`id`, `linkedId`) VALUES
|
||||
(196, 698);
|
||||
@@ -0,0 +1,7 @@
|
||||
UPDATE `account` SET `expansion`=7 WHERE `expansion`=6;
|
||||
|
||||
ALTER TABLE `account` CHANGE `expansion` `expansion` tinyint(3) unsigned NOT NULL DEFAULT '7';
|
||||
|
||||
UPDATE `realmlist` SET `gamebuild`=28153 WHERE `gamebuild`=26972;
|
||||
|
||||
ALTER TABLE `realmlist` CHANGE `gamebuild` `gamebuild` int(10) unsigned NOT NULL DEFAULT '28153';
|
||||
@@ -0,0 +1,8 @@
|
||||
TRUNCATE `character_pvp_talent`;
|
||||
ALTER TABLE `character_pvp_talent`
|
||||
DROP PRIMARY KEY,
|
||||
CHANGE `talentId` `talentId0` int(10) unsigned NOT NULL AFTER `guid`,
|
||||
ADD `talentId1` int(10) unsigned NOT NULL AFTER `talentId0`,
|
||||
ADD `talentId2` int(10) unsigned NOT NULL AFTER `talentId1`,
|
||||
ADD `talentId3` int(10) unsigned NOT NULL AFTER `talentId2`,
|
||||
ADD PRIMARY KEY(`guid`,`talentGroup`);
|
||||
@@ -0,0 +1,32 @@
|
||||
DROP TABLE IF EXISTS `total_honor_at_honor_level`;
|
||||
CREATE TABLE `total_honor_at_honor_level` (
|
||||
`HonorLevel` int(10) UNSIGNED NOT NULL,
|
||||
`Prestige0` int(10) UNSIGNED NOT NULL,
|
||||
`Prestige1` int(10) UNSIGNED NOT NULL,
|
||||
PRIMARY KEY (`HonorLevel`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
INSERT INTO `total_honor_at_honor_level` VALUES
|
||||
(0,0,0),(1,350,800),(2,700,1600),(3,1050,2400),(4,1400,3200),
|
||||
(5,1750,4000),(6,2100,4800),(7,2450,5600),(8,2800,6400),(9,3150,7200),
|
||||
(10,3500,8000),(11,3900,8850),(12,4300,9700),(13,4700,10550),(14,5100,11400),
|
||||
(15,5500,12250),(16,5900,13100),(17,6300,13950),(18,6700,14800),(19,7100,15650),
|
||||
(20,7500,16500),(21,7950,17400),(22,8400,18300),(23,8850,19200),(24,9300,20100),
|
||||
(25,9750,21000),(26,10200,21900),(27,10650,22800),(28,11100,23700),(29,11550,24600),
|
||||
(30,12000,25500),(31,12500,26450),(32,13000,27400),(33,13500,28350),(34,14000,29300),
|
||||
(35,14500,30250),(36,15000,31200),(37,15500,32150),(38,16000,33100),(39,16500,34050),
|
||||
(40,17000,35000),(41,17550,36000),(42,18100,37000),(43,18650,38000),(44,19200,39000),
|
||||
(45,19750,40000),(46,20300,41000),(47,20850,42000),(48,21400,43000),(49,21950,44000);
|
||||
|
||||
-- first compensate for prestige levels above first
|
||||
UPDATE `characters` SET `honor`=`honor`+44000*(`prestigeLevel`-1) WHERE `prestigeLevel`>0;
|
||||
-- compensate for honor levels in prestige for characters above first prestige
|
||||
UPDATE `characters` SET `honor`=`honor`+(SELECT th.`Prestige1` FROM `total_honor_at_honor_level` th WHERE th.`HonorLevel`=(`characters`.`honorLevel`-1)) WHERE `prestigeLevel`>0;
|
||||
-- compensate for honor levels in first prestige level
|
||||
UPDATE `characters` SET `honor`=`honor`+(SELECT th.`Prestige0` FROM `total_honor_at_honor_level` th WHERE th.`HonorLevel`=(`characters`.`honorLevel`-1)) WHERE `prestigeLevel`=0;
|
||||
|
||||
-- reset honor levels, will be recalculated from refunded honor at first login (and grant achievements)
|
||||
UPDATE `characters` SET `honorLevel`=1;
|
||||
|
||||
ALTER TABLE `characters` DROP `prestigeLevel`;
|
||||
DROP TABLE IF EXISTS `total_honor_at_honor_level`;
|
||||
@@ -0,0 +1,135 @@
|
||||
--
|
||||
-- Table structure for table `profession_skill_migration_data`
|
||||
--
|
||||
DROP TABLE IF EXISTS `profession_skill_migration_data`;
|
||||
CREATE TABLE `profession_skill_migration_data` (
|
||||
`SkillID` int(10) unsigned,
|
||||
`ParentSkillLineID` int(10) unsigned,
|
||||
`MaxValue` int(10) unsigned,
|
||||
`NewMaxValue` int(10) unsigned,
|
||||
`SpellID_A` int(10) unsigned,
|
||||
`SpellID_H` int(10) unsigned,
|
||||
PRIMARY KEY (`SkillID`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
|
||||
--
|
||||
-- Dumping data for table `profession_skill_migration_data`
|
||||
--
|
||||
INSERT INTO `profession_skill_migration_data` VALUES
|
||||
(2437,164,900,150,264448,265803),
|
||||
(2454,164,800,100,264446,264446),
|
||||
(2472,164,700,100,264444,264444),
|
||||
(2473,164,600,75,264442,264442),
|
||||
(2474,164,525,75,264440,264440),
|
||||
(2475,164,450,75,264438,264438),
|
||||
(2476,164,375,75,264436,264436),
|
||||
(2477,164,300,300,264434,264434),
|
||||
(2478,171,900,150,264255,265787),
|
||||
(2479,171,800,100,264250,264250),
|
||||
(2480,171,700,100,264247,264247),
|
||||
(2481,171,600,75,264245,264245),
|
||||
(2482,171,525,75,264243,264243),
|
||||
(2483,171,450,75,264220,264220),
|
||||
(2484,171,375,75,264213,264213),
|
||||
(2485,171,300,300,264211,264211),
|
||||
(2486,333,900,150,264473,265805),
|
||||
(2487,333,800,100,264471,264471),
|
||||
(2488,333,700,100,264469,264469),
|
||||
(2489,333,600,75,264467,264467),
|
||||
(2491,333,525,75,264464,264464),
|
||||
(2492,333,450,75,264462,264462),
|
||||
(2493,333,375,75,264460,264460),
|
||||
(2494,333,300,300,264455,264455),
|
||||
(2499,202,900,150,264492,265807),
|
||||
(2500,202,800,100,264490,264490),
|
||||
(2501,202,700,100,264487,264487),
|
||||
(2502,202,600,75,264485,264485),
|
||||
(2503,202,525,75,264483,264483),
|
||||
(2504,202,450,75,264481,264481),
|
||||
(2505,202,375,75,264479,264479),
|
||||
(2506,202,300,300,264475,264475),
|
||||
(2507,773,900,150,264508,265809),
|
||||
(2508,773,800,100,264506,264506),
|
||||
(2509,773,700,100,264504,264504),
|
||||
(2510,773,600,75,264502,264502),
|
||||
(2511,773,525,75,264500,264500),
|
||||
(2512,773,450,75,264498,264498),
|
||||
(2513,773,375,75,264496,264496),
|
||||
(2514,773,300,300,264494,264494),
|
||||
(2517,755,900,150,264548,265811),
|
||||
(2518,755,800,100,264546,264546),
|
||||
(2519,755,700,100,264544,264544),
|
||||
(2520,755,600,75,264542,264542),
|
||||
(2521,755,525,75,264539,264539),
|
||||
(2522,755,450,75,264537,264537),
|
||||
(2523,755,375,75,264534,264534),
|
||||
(2524,755,300,300,264532,264532),
|
||||
(2525,165,900,150,264592,265813),
|
||||
(2526,165,800,100,264590,264590),
|
||||
(2527,165,700,100,264588,264588),
|
||||
(2528,165,600,75,264585,264585),
|
||||
(2529,165,525,75,264583,264583),
|
||||
(2530,165,450,75,264581,264581),
|
||||
(2531,165,375,75,264579,264579),
|
||||
(2532,165,300,300,264577,264577),
|
||||
(2533,197,900,150,264630,265815),
|
||||
(2534,197,800,100,264628,264628),
|
||||
(2535,197,700,100,264626,264626),
|
||||
(2536,197,600,75,264624,264624),
|
||||
(2537,197,525,75,264622,264622),
|
||||
(2538,197,450,75,264620,264620),
|
||||
(2539,197,375,75,264618,264618),
|
||||
(2540,197,300,300,264616,264616),
|
||||
(2541,185,825,150,264646,265817),
|
||||
(2542,185,750,100,264644,264644),
|
||||
(2543,185,700,100,264642,264642),
|
||||
(2544,185,600,75,264640,264640),
|
||||
(2545,185,525,75,264638,264638),
|
||||
(2546,185,450,75,264636,264636),
|
||||
(2547,185,375,75,264634,264634),
|
||||
(2548,185,300,300,264632,264632),
|
||||
(2549,182,900,150,265831,265835),
|
||||
(2550,182,800,100,265834,265834),
|
||||
(2551,182,700,100,265829,265829),
|
||||
(2552,182,600,75,265827,265827),
|
||||
(2553,182,525,75,265825,265825),
|
||||
(2554,182,450,75,265823,265823),
|
||||
(2555,182,375,75,265821,265821),
|
||||
(2556,182,300,300,265819,265819),
|
||||
(2557,393,900,150,265869,265871),
|
||||
(2558,393,800,100,265867,265867),
|
||||
(2559,393,700,100,265865,265865),
|
||||
(2560,393,600,75,265863,265863),
|
||||
(2561,393,525,75,265861,265861),
|
||||
(2562,393,450,75,265859,265859),
|
||||
(2563,393,375,75,265857,265857),
|
||||
(2564,393,300,300,265855,265855),
|
||||
(2565,186,900,150,265851,265853),
|
||||
(2566,186,800,100,265849,265849),
|
||||
(2567,186,700,100,265847,265847),
|
||||
(2568,186,600,75,265845,265845),
|
||||
(2569,186,525,75,265843,265843),
|
||||
(2570,186,450,75,265841,265841),
|
||||
(2571,186,375,75,265839,265839),
|
||||
(2572,186,300,300,265837,265837),
|
||||
(2585,356,825,150,271675,271677),
|
||||
(2586,356,750,100,271672,271672),
|
||||
(2587,356,700,100,271664,271664),
|
||||
(2588,356,600,75,271662,271662),
|
||||
(2589,356,525,75,271660,271660),
|
||||
(2590,356,450,75,271658,271658),
|
||||
(2591,356,375,75,271656,271656),
|
||||
(2592,356,300,300,271616,271616);
|
||||
|
||||
INSERT IGNORE INTO `character_spell`
|
||||
SELECT cs.`guid`, IF(c.`race` IN (1,3,4,7,11,22,25,29,30,34), psmd.`SpellID_A`, psmd.`SpellID_H`), 1, 0
|
||||
FROM `profession_skill_migration_data` psmd
|
||||
INNER JOIN `character_skills` cs ON psmd.`ParentSkillLineID` = cs.`skill` AND psmd.`MaxValue` <= cs.`max`
|
||||
INNER JOIN `characters` c ON cs.`guid` = c.`guid`;
|
||||
|
||||
INSERT IGNORE INTO `character_skills`
|
||||
SELECT cs.`guid`, psmd.`SkillID`, CASE WHEN psmd.`MaxValue` < cs.`value` THEN psmd.`NewMaxValue` WHEN psmd.`MaxValue` - cs.`value` < psmd.`NewMaxValue` THEN psmd.`NewMaxValue` + cs.`value` - psmd.`MaxValue` ELSE 1 END, psmd.`NewMaxValue`
|
||||
FROM `profession_skill_migration_data` psmd
|
||||
INNER JOIN `character_skills` cs ON psmd.`ParentSkillLineID` = cs.`skill` AND psmd.`MaxValue` <= cs.`max`;
|
||||
|
||||
DROP TABLE IF EXISTS `profession_skill_migration_data`;
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,27 @@
|
||||
--
|
||||
-- Table structure for table `animation_data`
|
||||
--
|
||||
DROP TABLE IF EXISTS `animation_data`;
|
||||
CREATE TABLE `animation_data` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Fallback` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`BehaviorTier` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`BehaviorID` int(11) NOT NULL DEFAULT '0',
|
||||
`Flags1` int(11) NOT NULL DEFAULT '0',
|
||||
`Flags2` int(11) NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
--
|
||||
-- Table structure for table `num_talents_at_level`
|
||||
--
|
||||
DROP TABLE IF EXISTS `num_talents_at_level`;
|
||||
CREATE TABLE `num_talents_at_level` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`NumTalents` int(11) NOT NULL DEFAULT '0',
|
||||
`NumTalentsDeathKnight` int(11) NOT NULL DEFAULT '0',
|
||||
`NumTalentsDemonHunter` int(11) NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
@@ -0,0 +1,10 @@
|
||||
--
|
||||
-- Table structure for table `hotfix_blob`
|
||||
--
|
||||
DROP TABLE IF EXISTS `hotfix_blob`;
|
||||
CREATE TABLE `hotfix_blob` (
|
||||
`TableHash` INT(10) UNSIGNED NOT NULL,
|
||||
`RecordId` INT(11) NOT NULL,
|
||||
`Blob` BLOB,
|
||||
PRIMARY KEY (`TableHash`,`RecordId`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
@@ -14235,7 +14235,7 @@ UPDATE `creature_model_info` SET `BoundingRadius`=0.2700765 WHERE `DisplayID`=32
|
||||
UPDATE `creature_model_info` SET `BoundingRadius`=5.458125 WHERE `DisplayID`=36753;
|
||||
UPDATE `creature_model_info` SET `BoundingRadius`=0.3828198 WHERE `DisplayID`=1141;
|
||||
|
||||
DELETE FROM `creature_equip_template` WHERE (`CreatureID`=68 AND `ID`=2) OR (`CreatureID`=45798 AND `ID`=3) OR (`CreatureID`=1976 AND `ID`=2) OR (`CreatureID`=1976 AND `ID`=3) OR (`CreatureID`=45798 AND `ID`=2) OR (`CreatureID`=45798 AND `ID`=1) OR (`CreatureID`=50602 AND `ID`=2) OR (`CreatureID`=49361 AND `ID`=1) OR (`CreatureID`=49364 AND `ID`=1) OR (`CreatureID`=48176 AND `ID`=1) OR (`CreatureID`=45334 AND `ID`=2) OR (`CreatureID`=47168 AND `ID`=2) OR (`CreatureID`=47168 AND `ID`=1) OR (`CreatureID`=46922 AND `ID`=1) OR (`CreatureID`=95928 AND `ID`=1) OR (`CreatureID`=46807 AND `ID`=1) OR (`CreatureID`=42775 AND `ID`=3) OR (`CreatureID`=42775 AND `ID`=2) OR (`CreatureID`=42775 AND `ID`=1) OR (`CreatureID`=61841 AND `ID`=1) OR (`CreatureID`=54218 AND `ID`=1) OR (`CreatureID`=54216 AND `ID`=1) OR (`CreatureID`=54217 AND `ID`=1) OR (`CreatureID`=61838 AND `ID`=1) OR (`CreatureID`=61836 AND `ID`=1) OR (`CreatureID`=61834 AND `ID`=1) OR (`CreatureID`=112912 AND `ID`=1) OR (`CreatureID`=68980 AND `ID`=1) OR (`CreatureID`=114246 AND `ID`=1) OR (`CreatureID`=113211 AND `ID`=1) OR (`CreatureID`=29016 AND `ID`=3) OR (`CreatureID`=24927 AND `ID`=1) OR (`CreatureID`=52809 AND `ID`=1) OR (`CreatureID`=51307 AND `ID`=1) OR (`CreatureID`=3296 AND `ID`=3);;
|
||||
DELETE FROM `creature_equip_template` WHERE (`CreatureID`=68 AND `ID`=2) OR (`CreatureID`=45798 AND `ID`=3) OR (`CreatureID`=1976 AND `ID`=2) OR (`CreatureID`=1976 AND `ID`=3) OR (`CreatureID`=45798 AND `ID`=2) OR (`CreatureID`=45798 AND `ID`=1) OR (`CreatureID`=50602 AND `ID`=2) OR (`CreatureID`=49361 AND `ID`=1) OR (`CreatureID`=49364 AND `ID`=1) OR (`CreatureID`=48176 AND `ID`=1) OR (`CreatureID`=45334 AND `ID`=2) OR (`CreatureID`=47168 AND `ID`=2) OR (`CreatureID`=47168 AND `ID`=1) OR (`CreatureID`=46922 AND `ID`=1) OR (`CreatureID`=95928 AND `ID`=1) OR (`CreatureID`=46807 AND `ID`=1) OR (`CreatureID`=42775 AND `ID`=3) OR (`CreatureID`=42775 AND `ID`=2) OR (`CreatureID`=42775 AND `ID`=1) OR (`CreatureID`=61841 AND `ID`=1) OR (`CreatureID`=54218 AND `ID`=1) OR (`CreatureID`=54216 AND `ID`=1) OR (`CreatureID`=54217 AND `ID`=1) OR (`CreatureID`=61838 AND `ID`=1) OR (`CreatureID`=61836 AND `ID`=1) OR (`CreatureID`=61834 AND `ID`=1) OR (`CreatureID`=112912 AND `ID`=1) OR (`CreatureID`=68980 AND `ID`=1) OR (`CreatureID`=114246 AND `ID`=1) OR (`CreatureID`=113211 AND `ID`=1) OR (`CreatureID`=29016 AND `ID`=3) OR (`CreatureID`=24927 AND `ID`=1) OR (`CreatureID`=52809 AND `ID`=1) OR (`CreatureID`=51307 AND `ID`=1) OR (`CreatureID`=3296 AND `ID`=3);
|
||||
INSERT INTO `creature_equip_template` (`CreatureID`, `ID`, `ItemID1`, `ItemID2`, `ItemID3`) VALUES
|
||||
(45798, 3, 31604, 0, 0), -- Crushblow Warrior
|
||||
(45798, 2, 31601, 0, 0), -- Crushblow Warrior
|
||||
|
||||
@@ -0,0 +1,127 @@
|
||||
--
|
||||
DELETE FROM `page_text` WHERE `ID` IN (5302 /*5302*/, 5301 /*5301*/, 5300 /*5300*/, 5305 /*5305*/, 5304 /*5304*/, 5303 /*5303*/, 5299 /*5299*/, 6882 /*6882*/, 5260 /*5260*/, 5155 /*5155*/, 5153 /*5153*/, 4899 /*4899*/, 5125 /*5125*/, 5124 /*5124*/, 5123 /*5123*/, 4912 /*4912*/, 4911 /*4911*/, 4948 /*4948*/, 4947 /*4947*/, 4946 /*4946*/, 4945 /*4945*/, 4944 /*4944*/, 4970 /*4970*/, 4969 /*4969*/, 4968 /*4968*/, 4967 /*4967*/, 4966 /*4966*/, 4965 /*4965*/, 4964 /*4964*/, 4963 /*4963*/, 4962 /*4962*/, 4954 /*4954*/, 4522 /*4522*/, 4521 /*4521*/, 4480 /*4480*/, 4479 /*4479*/, 4518 /*4518*/, 4501 /*4501*/, 4511 /*4511*/, 4418 /*4418*/, 4423 /*4423*/, 4422 /*4422*/, 4421 /*4421*/, 4420 /*4420*/, 4315 /*4315*/, 4672 /*4672*/, 4671 /*4671*/, 4670 /*4670*/, 4669 /*4669*/, 4668 /*4668*/, 4667 /*4667*/, 4666 /*4666*/, 4936 /*4936*/, 4503 /*4503*/, 4559 /*4559*/, 4457 /*4457*/, 4528 /*4528*/, 4510 /*4510*/, 4561 /*4561*/, 4665 /*4665*/, 4515 /*4515*/, 4565 /*4565*/, 4656 /*4656*/, 4655 /*4655*/, 4627 /*4627*/, 4626 /*4626*/, 4625 /*4625*/, 4624 /*4624*/, 4648 /*4648*/, 4647 /*4647*/, 4604 /*4604*/, 4659 /*4659*/, 4658 /*4658*/, 4607 /*4607*/, 4606 /*4606*/, 4653 /*4653*/, 4652 /*4652*/, 4651 /*4651*/, 4634 /*4634*/, 4633 /*4633*/, 4632 /*4632*/, 4631 /*4631*/, 4537 /*4537*/, 4505 /*4505*/, 4618 /*4618*/, 4619 /*4619*/, 4456 /*4456*/, 4657 /*4657*/, 4616 /*4616*/, 4502 /*4502*/, 4509 /*4509*/, 4379 /*4379*/, 4416 /*4416*/, 4415 /*4415*/, 4504 /*4504*/, 4383 /*4383*/, 4514 /*4514*/, 4520 /*4520*/, 4562 /*4562*/, 4866 /*4866*/, 4865 /*4865*/, 4864 /*4864*/, 4863 /*4863*/, 4862 /*4862*/, 4861 /*4861*/, 4860 /*4860*/, 4859 /*4859*/, 4858 /*4858*/, 4549 /*4549*/, 4535 /*4535*/, 4530 /*4530*/);
|
||||
INSERT INTO `page_text` (`ID`, `Text`, `NextPageID`, `PlayerConditionID`, `Flags`, `VerifiedBuild`) VALUES
|
||||
(5302, 'While the Order is lucky that Balaadur has not been able to enter Azeroth, it also makes it nearly impossible to deal with his attacks. All mages of the Order have been warned of his predations.', 0, 0, 0, 27843), -- 5302
|
||||
(5301, 'While information is sparse, it has become apparent that the Order of Tirisfal\'s success has garnered the attention of the greater demonic lords.\n\nUpon several occasions now mages have been attacked, even ambushed, by demons under the direction of one Balaadur, a powerful eredar. This has caused many setbacks in the Order\'s plans. In the case of powerful conjurers or archmages, Balaadur himself has entered the fray, somehow creating tears in reality and forcing or convincing said mage to enter it.\n\nIn the extremely rare case where someone has lived to tell the tale, Balaadur has been seen sporting the weapons of his dead targets, flaunting them as trophies.', 5302, 0, 0, 27843), -- 5301
|
||||
(5300, '<most of the book is indecipherable with age>\n... and so it was his fate to be cast into the Twisting Nether, never to return to Azeroth. Even his own son, Millhouse, turned on him in the end, though it is my opinion that Millhouse did it for reasons other than the fate of Dalaran and Azeroth.\n\nIt is absurd to think that Magnus could ever free himself of the magical wandering prison we crafted, but there is tiny particle of doubt that pervades my thoughts. Still, we had no choice. Magnus had the impossibly rare problem of being more dangerous dead than alive.\n\n<There are a few more legible notes on the creation of something called the Phantasm Zone, a prison dimension within a dimension that would fly through the Twisting Nether forever, its occupant able to see out, but never escape.>', 0, 0, 0, 27843), -- 5300
|
||||
(5305, '<another page is readable but the rest of the book is too far gone...>\nWe had a visitor today. Medivh came to speak with Arrexis about some secret matters but he was given a tour afterwards. \n\nHe was very interested in Arrexis\'s plan and offered to help. Arrexis mentioned the weakness of reality during the ritual of bringing up the wards and Medivh said he would look into it and encouraged Arrexis to try his ritual on the demonic realms.\n\nIts strange, but for a brief moment I saw Medivh with a very strange smile on his face as he stared at the wards. It was... unsettling. Then he was all serious and helpful again so it was probably a figment of my imagination.', 0, 0, 0, 27843), -- 5305
|
||||
(5304, '<much of the book is unreadable...>\nToday\'s experiments were quite positive. Within the wards Karazhan\'s reality bending corruption seems completely gone! Arrexis was very pleased even though it took forever to get them up due to the mana leeches. It seems as though the act of bringing up the wards brings them in droves.', 5305, 0, 0, 27843), -- 5304
|
||||
(5303, 'I am writing to inform you that both Antonius and Decindra, and their apprentices, have chosen to accompany King Thoradin on his quest. The entire company left before dawn so as to not attract attention.\n\nI personally believe they are on a fools\' errand but few can say no to the king. At any rate, I believe you can add this to the Annals of the One Hundred. I will keep you informed of their progress if I am able.\n\nI will remain in Lordaeron for the forseeable future. I intend to protect this city named after my uncle until I am buried next to him. You can put that in your book as well.\n\nRegards,\nKelsing', 0, 0, 0, 27843), -- 5303
|
||||
(5299, 'What a disaster! Arrexis and all his apprentices dead! What remains of the Council wants no repeat of it, they are cleansing all record of Arrexis and his ritual. Daio has been sent packing for his part in this debacle.\n\nThey consider it an accident and failed experiment, but with the death of other members of the order I suspect foul play. Balaadur has been exceptionally successful at catching mages at their most vulnerable as of late. Too successful, I must look into this more.\n\n- K', 0, 0, 0, 27843), -- 5299
|
||||
(6882, '<Levia\'s notes detail the precise components and incantations necessary to make contact with a powerful demon. The final page seems to contain Levia\'s personal reflections before performing the ritual.>\n\nIn all of the Kirin Tor\'s research into succubi and other sayaad, they have come to one conclusion - they are not to be trusted. But after meeting Agatha, I am left to wonder, were they wrong?\n\nShe has already granted me such power as I had never touched as a mage of the Kirin Tor, and she cares for me more than any on their council ever did.\n\nThere is only one way I can know for sure. I must go to her.', 0, 0, 0, 27843), -- 6882
|
||||
(5260, '- DO NOT ENTER -\n\nLegion agents have been sighted in this area.\n\nPlease report any suspicious activity to Warden Alturas in the Violet Hold immediately.', 0, 0, 0, 27843), -- 5260
|
||||
(5155, '<The writing becomes increasingly frantic as the page goes on.>\n\nHuge mistake - remembered my S.E.L.F.I.E. camera, somehow didn\'t bring my hearthstone.\n\nRavagers keep coming\n\nBackpack full\n\nTell my story', 0, 0, 0, 27791), -- 5155
|
||||
(5153, 'Now that I found a S.E.L.F.I.E. camera I\'m going to chronicle what I find in Tanaan behind the Iron Horde lines. I had to use a dozen potions and a few engineering tools but I finally managed to sneak past all the patrols and ships along the coast to make it in to the thick of Tanaan. The wilds are dangerous and even the Iron Horde seems content to leave them alone. I think I\'ve found a place where the Ravagers just keep coming - I\'m going to stay here for a while and stockpile hides before hearthing back to Ashran.', 5155, 0, 0, 27791), -- 5153
|
||||
(4899, 'Kaelynara,$b$b It is with some regret that I must inform you that I am relieving you of your duties as my apprentice. I blame myself for being mistaken of your potential; I hope you can understand that even the most talented of mages sometimes make mistakes. At least now you can put your ineptitude behind you and pursue a reasonable goal. Perhaps basket weaving may prove more suitable for your...talents.$b$b Unfortunately I do not associate myself with any basket weavers specifically and am too busy to write you a recommendation. Please return to Azeroth at your soonest convenience.$b$b -Astalor', 0, 0, 0, 27602), -- 4899
|
||||
(5125, 'Not long ago Gul\'dan sent a courier to make sure I was still alive and following orders. I assured him that everything was going according to plan.\n\nIt would be difficult to fail this mission into exile. Aside from some wildlife and Bleeding Hollow scavengers that showed up a short time ago, nothing has happened.\n\nWhile clearing the ruins of the Dark Portal, I have found that it still contains remnants of its power. I will begin fortifying what is left of the enchantments and send a message to Gul\'dan. Perhaps this initiative will win me back into his good graces.', 0, 0, 0, 27602), -- 5125
|
||||
(5124, 'Curses! Managing the fel conversion pits should have been MY task! Nethekurse has outmaneuvered me again.\n\nNow I am given the task of overseeing the clearing of the Dark Portal and guarding the local area. Guarding it from what?! Vines? Gul\'dan says prepare, but I think it more likely that my \"brethren\" discredited me and I have been sent into exile...', 5125, 0, 0, 27602), -- 5124
|
||||
(5123, 'The warlock Gul\'dan promises victory, but our clan should still look after its own. I understand a lot of weapons and armor were left behind when the southern docks were abandoned.\n\nTake a small force and loot as much as possible. An assault by our enemies is long overdue.', 0, 0, 0, 27602), -- 5123
|
||||
(4912, 'I am nearing a breakthrough on imbuing armor with Felbreaker magic. If I accomplish this we can equip any soldier with this magic. We will be unstoppable! I am not to be disturbed for any reason. The Sorcerer King is already angry at how expensive and time consuming this is, we cannot afford any mistakes!\n\nReglaak', 0, 0, 0, 27602), -- 4912
|
||||
(4911, 'This fortress is in a sorry state of disrepair. It will be hard to improve the Felbreaker\'s armor here until we get this place into shape. We need space in case of arcane mishaps and safe areas to store our materials. Make this happen quickly!\n\nReglaak', 0, 0, 0, 27602), -- 4911
|
||||
(4948, 'I was busy skinning some fresh meat when a large boulder hit the side of my \"camp\". I almost fell off. When I spun around the magnaron was just standing there as usual, watching the horizon and drawing in the earth.$b$bI think it might have looked at me out of the corner of its eye though. I think my time here is nearly done...', 0, 0, 0, 27602), -- 4948
|
||||
(4947, 'Another group arrived and were beaten back many times.$b$bWhile the group did manage to do noticeable damage they eventually were forced to retreat after extremely heavy losses.$b$bDuring the encounter I swear the monster looked straight at me as it crushed a human paladin to paste. I think it knows I am watching...', 4948, 0, 0, 27602), -- 4947
|
||||
(4946, 'A group of adventurers from the other world arrived and set upon Drov. It crushed them utterly. It is without emotion I think and its power is overwhelming.$b$bI am not sure it can be conquered...', 4947, 0, 0, 27602), -- 4946
|
||||
(4945, 'The beast stands there most days tracing runes in the earth, almost if it is casting spells. Other magnaron wander about killing and destroying the earth but this one watches.$b$bIt may have some way to talk to the others I cannot understand.', 4946, 0, 0, 27602), -- 4945
|
||||
(4944, 'I have set up a small camp in a spot far enough from my target to avoid detection. The Laughing Skull we have \"persuaded\" to give us information call this one Drov the Ruiner.$b$bThese magnaron can be used for the Iron Horde, I know it!', 4945, 0, 0, 27602), -- 4944
|
||||
(4970, 'Rukhmar, terrified of the curse, would never land in Arak again. She would fly far away to new lands, and create a new race of people to command the skies - a people who would combine her power and grace with the guile and thirst for knowledge of Anzu.\n\nShe called them Arakkoa, in hopes that one day they would return to Arak to bask in the wind and sun as she once had.', 0, 0, 0, 27602), -- 4970
|
||||
(4969, 'Soon Anzu felt Sethe\'s hatred coursing through him. His back twisted. His wings became weak. His mind was wracked with painful visions.\n\nThe raven god had contained Sethe\'s curse by taking it upon himself.\n\nAnzu would grapple with the curse for some time before retreating to the shadows.', 4970, 0, 0, 27602), -- 4969
|
||||
(4968, 'Looking up at the raven god, Sethe uttered a dying curse: \n\n\"My blood shall blacken the sea until it runs thick as tar! My flesh shall fester and spoil until the very sky rots with it!\"\n\nAnzu replied, \"Then we shall leave no blood nor flesh.\"\n\nHe feasted on the writhing wind serpent and picked the bones clean.\n\nOnly a small trickle of blood managed to escape the broken spire and blight the valley below.', 4969, 0, 0, 27602), -- 4968
|
||||
(4967, 'Rukhmar\'s talons found Sethe\'s head with ease. With a great flap of her wings, she split the very sky upon him like the crack of a whip. \n\nSethe crashed into a spire with such force that it crumbled and fell around him.\n\nIn a flash, Anzu fell upon Sethe, pinning him underfoot.', 4968, 0, 0, 27602), -- 4967
|
||||
(4966, 'Sethe coveted the favor of the wind and the warmth of the sun. He persuaded Anzu to help him slay Rukhmar and take the sky for themselves.\n\nBut Anzu was cunning, and cared little for the wind serpents. In the dark of night, he sent a raven to warn Rukhmar of Sethe\'s intentions.\n\nAnzu watched from the top of a mountain spire as Rukhmar and Sethe clashed.\n\nSethe struck exactly as Anzu had warned, and Rukhmar avoided him with ease. She flew high, put the sun at her back, and dove at Sethe.', 4967, 0, 0, 27602), -- 4966
|
||||
(4965, 'Sethe was cold-blooded and scornful. When he flew, the wind bit his flesh. He would sun himself on the mountainsides, but he could never taste warmth.\n\nHis scales were frosted glass, and his children were the wind serpents.', 4966, 0, 0, 27602), -- 4965
|
||||
(4964, 'Anzu was physically meager, but possessed a great intellect. He preferred the cool of the shade and the peace of the twilight hours where he could be alone in quiet contemplation. He would converse with the gods of the abyss, and he would find them dull, witless creatures.\n\nHis down was an inky midnight, and his children were the dread ravens.', 4965, 0, 0, 27602), -- 4964
|
||||
(4963, 'Rukhmar was strong, youthful and ambitious. She flew higher, ever higher, for she loved to feel the sun\'s warmth upon her feathers. She would climb until she caught fire, but she did not burn. The flames cascaded off of her in long stokes of brilliant red and gold.\n\nThe sky was her canvas, and her children were the kaliri.', 4964, 0, 0, 27602), -- 4963
|
||||
(4962, 'The ancient skies of Arak were once shared by three gods...', 4963, 0, 0, 27602), -- 4962
|
||||
(4954, 'Dedicated to those that lost their lives securing the shores of Tanaan Jungle.', 0, 0, 0, 27602), -- 4954
|
||||
(4522, 'The servant races were not permitted to carry weapons during the reign of the mogu, so Kang determined that the pandaren themselves would become the weapons. So it came to pass that pandaren monks began their training in the martial arts, and Kang became known as the Fist of First Dawn.$b$bHistory does not report if Kang and his son ever met again, but it was this father\'s love that sparked the rebellion that would change the face of Pandaria forever.', 0, 0, 0, 27377), -- 4522
|
||||
(4521, 'Even by mogu standards, Emperor Lao-Fe was a monster among beasts. His favored punishment among pandaren slaves was to separate families. Slaves who displeased him would have their children sent to the Serpent\'s Spine, to suffer and die as fodder for the mantid swarms.$b$bThis was the fate that befell a young pandaren monk named Kang. Kang was so grief-stricken over the loss of his cub that he chose to wear all black. In a moment of clarity, he saw the mogu overlords for what they were: weak. They possessed dark magics and horrific weapons, but their empire was completely reliant on slave labor.', 4522, 0, 0, 27377), -- 4521
|
||||
(4480, 'Incantations fae and primal\nBought on promises of gold\nBind the glamour to the thing\nThat quenches fires and fears of old\n\nComprehend this sacred recipe\nPerform it as I\'ve penned\nDrive its fruit through Blood of Ancients\nAnd your terror-war shall end.', 0, 0, 0, 27377), -- 4480
|
||||
(4479, 'When the horror comes a-rising\nAnd the heavens hum with war\nOur great vessel of salvation\nMust be broken from its core.\n\nRending daggers of the great ones\nShall be bound with wood and shade\nIf the fiery wings of sunset kings\nAre ever to be stayed.', 4480, 0, 0, 27377), -- 4479
|
||||
(4518, 'Amber is the cornerstone of mantid society. They use this material in their architecture, their art, and their technology. $b$bMasters of sound, the mantid long ago found a way to use amber to extend the range of their acoustic casting. In this way they are able to communicate over vast distances. No army has successfully marched on mantid lands undetected, and even lone travellers are urged caution as their movements are no doubt being watched the moment they venture beyond the wall. $b$b The Empress and her council of Klaxxi safeguard the great trees of Townlong Steppes - the \"kypari\" they are called - as the only source of their precious amber. Legend has it that the kypari once flourished east of the wall, but the mogu cut them all down in their never-ending war against the mantid swarm.', 0, 0, 0, 27377), -- 4518
|
||||
(4501, 'When the mogu declared the purging of the saurok, a number of legions were still deployed in the field. Word reached the saurok of their masters\' treachery, and so they turned on their officers, and vanished behind enemy lines in the mantid lands. Many legions of mogu and their slaves were dispatched to hunt down and destroy these deserters. None ever returned.', 0, 0, 0, 27377), -- 4501
|
||||
(4511, '$p,$b$bYour companions that survived the battle with the Sha of Doubt are now in the care of Binan Village, home to Pandaria\'s finest healers. It looks as though they shall recover their physical injuries.$b$bThe journey to Binan will take you up the Veiled Stair to the very doorstep of Kun-Lai Summit. I urge you to bring this missive to Mayor Bramblestaff in Binan Village. There, he can direct you to your companions.$b$bI look forward to our paths crossing again.$b$b-Lorewalker Cho', 0, 0, 0, 27356), -- 4511
|
||||
(4418, 'There is a valley where dreamers sleep,$BWhere flowers bloom and willows weep,$BWhere loamy earth springs life anew,$BAnd waters sparkle, clear and blue,$BWhere every hearth brings peaceful ease,$BAnd beauty sings on every breeze.$B$BHere the Sacred Pools spring pure$BHere, seek any who desire cure$BHoly, nature, powers divine,$BTurn death to life, death to life.', 0, 0, 0, 27356), -- 4418
|
||||
(4423, 'The Vanguard has washed up on an unfamiliar shore. The ship is still, and all around me, I hear silence.\n\nNo one has come for me, and I fear that the crew is dead.\n\nThe cabin is filling with water, so I must find a way out soon.\n\nIf any Alliance soldier finds this, know that I, Prince Anduin Wrynn, am alive.\n\nI am going to travel inland and search for food and aid.\n\nPlease tell my father that I am well.', 0, 0, 0, 27356), -- 4423
|
||||
(4422, 'I awoke in the middle of the night to the sound of a great, loud noise, like thunder.\n\nThe ship was running aground on the rocks.\n\nThe ship groaned and listed, and shouts and screams erupted on deck.\n\nI rushed to the door of my cabin, but my bodyguard locked me inside.\n\nThere is nothing I can do now but wait.', 4423, 0, 0, 27356), -- 4422
|
||||
(4421, 'Those that did not perish in the initial battle were lost in the ensuing storm.\n\nAs our battered ships fought their way through rain and fog, the most critically injured succumbed to their injuries.\n\nI did what I could to staunch their wounds, but it was not enough.\n\nWhy am I always too late to save my friends?', 4422, 0, 0, 27356), -- 4421
|
||||
(4420, 'The battle is more fearsome than I could have imagined.\n\nAll around us, I hear the booming of Horde artillery.\n\nTheir shells rain upon the deck above, and the screams of the crew are drowned out only by the roar of return fire.\n\nAdmiral Taylor bade me hide here, in the hold, until the fighting ceases.\n\nThey have posted guards outside my door.\n\nI feel restless. I should be out there, helping them!', 4421, 0, 0, 27356), -- 4420
|
||||
(4315, '<Most of the pages are soaked in water. You can make out a few passages.>', 4420, 0, 0, 27356), -- 4315
|
||||
(4672, 'Day 21$b$bAlliance gunship spotted south of our position. I have ordered our grunts to the guns. I will see to the defense of Garrosh\'ar Point personally.$b$bI feel a great darkness inside me. The spilling of Alliance blood should bring relief. I am ready.', 0, 0, 0, 27356), -- 4672
|
||||
(4671, 'Day 19$b$bThe pandaren sent an envoy to ask us to stop cutting down their trees. I told him that his people should\'ve listened to my request for more wood, and sent him back with scars. Releasing my anger felt good.$b$bThe Alliance is coming, and my time grows short. I must find a way to make the pandaren listen. Perhaps if I took something they valued, that would both show our strength and give us something to bargain with? Bellandra of the Forsaken had the interesting notion of taking their cubs.', 4672, 0, 0, 27356), -- 4671
|
||||
(4670, 'Day 17$b$bThe Alliance is coming. I can feel it. I do not know why - I have an overpowering sense of unease and dread. Something about this land is eating away at me. I have ordered my warlocks to summon a demonic observer so that we can watch the shores. They insist we will not be able to control it. I am surrounded by cowards in my time of need. Why do I feel such doubt? I swear my very skin is losing color.', 4671, 0, 0, 27356), -- 4670
|
||||
(4669, 'Day 15$b$bBy now news of our victory at sea and discovery of this new land will have reached Orgrimmar. No doubt reinforcements are on the way. Our lookouts have spotted Alliance scout ships snooping around the debris field marking the location of the sea battle - they will likely come looking for their own. We will be ready.$b$bThe pandaren have proven to be useless to our cause. They are not interested in the goods we have for trade: they turned up their black noses at even the most powerful of fel artifacts. My troops will need food, we cannot eat the corpses of drowned sailors like the disgusting undead. Pandaren arrogance is making my blood boil. I cannot seem to escape my rage.', 4670, 0, 0, 27356), -- 4669
|
||||
(4668, 'Day 14$b$bScouts have discovered ancient, unclaimed ruins backed up against the mountains that overlook the cove. It is an ideal stronghold. I do not anticipate reinforcements from Orgrimmar for several weeks. For this reason I have opened the ancient texts and commanded our warlocks to begin summoning demonic forces to bolster our army. This show of force will no doubt intimidate the pandaren into aiding our cause.$b$bAn entire battalion of Forsaken forces swam ashore in the dead of night, survivors from the battle at sea. It seems they are impossible to drown. The stench is overwhelming, but they may have their uses.', 4669, 0, 0, 27356), -- 4668
|
||||
(4667, 'Day 13$b$bA fat race of bear-creatures calls this land home. They are the \"pandaren.\" Dalgan tells me that a pandaren was present at the founding of Orgrimmar, but he is always full of grog and lies.$b$bThese pandaren do not appear to be a threat, but they have supplies which will be useful to our campaign: food, wood, stone... If this indicates the wealth of this new land, then it will make a fine prize for the Horde.', 4668, 0, 0, 27356), -- 4667
|
||||
(4666, 'Day 12$b$bHonorable Warchief-$b$bI have assumed command of the fleet after Krug fell during battle with the Alliance flagship. He died with great honor, and did not choke his last breath until he learned of the Alliance defeat. $b$bThe battle has taken a heavy toll on the fleet, but one by one our scattered vessels are arriving victoriously to the shores of this strange land. It is not on any of our charts.$b$bI have tasked our peons with the construction of a safe harbor from which we can make repairs.', 4667, 0, 0, 27356), -- 4666
|
||||
(4936, 'In honor of Admiral Taylor\n\nAdmiral Taylor was a true hero of the Alliance. His numerous accomplishments on the battlefield serving his people will not be forgotten.\n\nHe bravely set out to establish a garrison stronghold among these spires to further the Draenor campaign, but was cut down by his own men before his time. \n\nMay he rest in peace.', 0, 0, 0, 27602), -- 4936
|
||||
(4503, 'The mogu view their dead as a collection of parts. Souls could be bound to stone for later use. Flesh and blood could be reforged to extend the lives of those loyal to the emperor. To be buried intact was a symbol of great power and respect.$b$bHere lies the Valley of Emperors, the resting grounds of a hundred generations of warlords, kings, and emperors who once ruled this land.$b$bGrave-rob at your own risk!', 0, 0, 0, 27377), -- 4503
|
||||
(4559, 'The Shado-Pan order was founded ten thousand years ago under a charter from Shaohao, the Last Emperor of Pandaria.$b$bEmperor Shaohao knew that the dark energy of the Sha - the physical embodiment of negative emotions like anger, fear, hatred or doubt - represented a great threat to the pandaren if allowed to fester beneath the land. He tasked the greatest warriors of Pandaria with the duty to restrain and control the Sha.$b$bOn this very location, mere hours after Emperor Shaohao bested his own anger, hatred, and violence, the first of the Shado-Pan took their knee and spoke an oath to the Last Emperor. The same words have been spoken by every Shado-Pan initiate ever since, for the last ten thousand years.', 0, 0, 0, 27377), -- 4559
|
||||
(4457, 'The hozen of the Kun-Lai mountains are unusually aggressive, even by hozen standards. Food and supplies are often scarce in this hostile terrain. When times are hard, the hozen leadership may declare a \"ravage\" on nearby settlements.$b$bDuring a ravage, every hozen strong enough to walk joins in on a massive swarm attack on nearby villages. In this way, they either acquire enough food to last the winter, or they lose enough of their weakest to ensure their current supplies are enough.$b$bFor years, the Shado-Pan and grummles have maintained an uneasy peace with the hozen in exchange for food tributes. Fear of the Shado-Pan keeps the local tribes in check... Usually.', 0, 0, 0, 27377), -- 4457
|
||||
(4528, 'Forced to survive in the harsh terrain of the Townlong Steppes since the time of the last pandaren emperor, the yaungol have adapted their tactics accordingly.$b$bThe race is constantly on the move, establishing short-lived \"Fire Camps\" in areas of abundant natural resources (specifically oil and game) before moving on. Where to set up camp, how long to stay, and when to move out remains the sole discretion of the chieftain.$b$bIn combat, the yaungol prefer to hit hard and fast, making heavy use of cavalry to flank and harass the enemy while hard-hitting infantry assaults the weakest parts of the enemy line. Fire sorcery and flaming siege weapons back this initial assault.$b$bYaungol are known to retreat as quickly as they charge, always reading the enemy and only fully committing their forces to sure victories.', 0, 0, 0, 27377), -- 4528
|
||||
(4510, 'The jinyu operate in a strict caste society, clearly evidenced by this stone tablet engraved with names. Eggs are sorted early on based on the needs of the community.$b$bMany jinyu are cast as workers, diligently put to work building dams or other structures. Others are selected to be craftsmen, and immediately undergo a rigid apprenticeship on hatching.$b$bOnly warriors and priests are given access to the most food and finest shelters, and only the most successful of priests can ascend to the role of elder or waterspeaker. It is a taboo for the jinyu castes to intermingle.', 0, 0, 0, 27377), -- 4510
|
||||
(4561, 'On this site many generations ago stood Shen-zin\'s Sundries, a supplier well-liked by the local farmers. One day the first Pandaren explorer, Liu Lang, walked into the store with a most unusual shopping list, records of which have survived to this day:$b$b One lantern$b Three liters lamp oil$b Four packages of dehydrated fruit$b Two sacks of dried peas$b Four haunches of salt pork$b Twelve liters of fresh water$b One basket of hardtack$b One compass$b One spyglass$b$bLiu Lang announced his intention to explore the world. Shen-Zin, humoring his client, suggested that Liu Lang should also bring an umbrella. He generously offered one for free.$b$bBeaming, a grateful Liu Lang told Shen-Zin, \"I shall name my sea turtle after you!\" He happily carted away his supplies, whistling as he headed toward the beach, trailed by dozens of curious onlookers.', 0, 0, 0, 27377), -- 4561
|
||||
(4665, 'Winding like a snake between the fertile lowlands of the Valley of Four Winds and the rolling steppes of Kun-Lai Summit, the Veiled Stair is truly a pandaren wonder.$b$bIt was hand-chiseled by pandaren slaves during the third mogu dynasty. To the best of our knowledge, this means the steps are over twelve thousand years old!$b$bThe grummles believe that it is very lucky for travellers to count the steps as they ascend. This may be true; but nobody has ever been able to agree on a definitive count.$b$bHow many do YOU see?', 0, 0, 0, 27377), -- 4665
|
||||
(4515, 'While some of the more tame forest hozen have chosen to integrate with pandaren culture, they remain at their core a simple race driven by their passions. They love hunting and fishing, and often will assault anyone and everything in their hunting grounds. An unfortunate situation, since the hozen hunting grounds seldom have consistent bordering or signage. Thankfully, most hozen are often kept in check by pandaren monks.', 0, 0, 0, 27377), -- 4515
|
||||
(4565, 'Father of the Heartswell Brew.$b$bThe Heartswell Brew infuses the drinker\'s entire being with a profound sense of warmth and wellbeing. It is said that Xin Wo Yin so loved the product of his art that he wept tears of heavy sorrow over every keg that left his brewery.', 0, 0, 0, 27366), -- 4565
|
||||
(4656, 'With a grin and a smile, the grummle said to the mogu: \"I saw what I wanted to see. You heard what you wanted to hear.\"', 0, 0, 0, 27366), -- 4656
|
||||
(4655, 'What the mogu did not realize, was that the hozen were building their tunnels that would lead them behind the mogu defenses. The jinyu listened to the waters to divine where the mogu would first respond when the rebellion started. And the pandaren were not dancing, but training to fight unarmed.$b$bWhen the rebellion began, the mogu was outraged by his surprise.$b$b\"You said you did not find any enemies of mine!\" said the mogu to the grummle.', 4656, 0, 0, 27366), -- 4655
|
||||
(4627, 'The grummle blinked and thought. He thought and thought and finally spoke: \"I smell with nose and look with eye but no enemies of yours did I spy. In the mountains I saw hozen, carving their little tunnels. In the caves near the river I saw the jinyu, speaking to their water. In the fields I saw the pandaren, dancing a funny dance.\"$b$bThe mogu pondered this, and grew relaxed.$b$bMany times the grummle would leave, and each time the mogu would ask him the same question when he returned. And the grummle\'s answer was always the same.', 4655, 0, 0, 27366), -- 4627
|
||||
(4626, 'And so the grummle went, with arms of strong and nose of a tool and mind that never forgets, to look for \"enemies\", this word the mogu used. And deliver food he did and looked for trails but not an enemy found.$b$b\"What news of my enemies?\" said the mogu to the grummle. \"Do they hide in the mountain passes? Do they hide in the caves near the river? Do they hide in the fields of the farmland?\"', 4627, 0, 0, 27366), -- 4626
|
||||
(4625, '\"And what a good sense of direction you have, said the mogu to the trogg, \"I shall use my magic to make you never forget a trail, so that you may learn the paths of my enemies.\"$b$bThe mogu used the very waters of the Vale of Eternal Blossoms to shape this creature in to a weapon.$b$bWhen the smoke cleared and the dust settled, what should the mogu see? But a grummle, standing there gleefully.$b$b\"With strong arms, and powerful nose and mind that never forgets a trail,\" said the mogu to the grummle, \"take this food from the farms of the east to the wall of the west. Find every trail in between and tell me of the enemies you see.\"', 4626, 0, 0, 27366), -- 4625
|
||||
(4624, 'Long ago and under hill, there lived a creature called a trogg. It wandered inside the mountain caves and tunnels, exploring and sniffing, and it was content. Then one day it met a mogu.$b$b\"What strong arms you have,\" said the mogu to the trogg. \"I shall use my magic to make them stronger, so they may crush my enemies.\"$b$b\"And what a mighty nose you have,\" said the mogu to the trogg, \"I shall use my magic to make it powerful, so that it may sniff out my enemies.\"', 4625, 0, 0, 27366), -- 4624
|
||||
(4648, 'The grummle was impressed by the General\'s confidence and good fortune. \"You put the morale of your men on the line!\" he said. \"How could you be so sure?\"$b$bSmiling, the General withdrew the coin from his pocket and held for the grummle to inspect. Both sides were heads. \"It has been my experience that we all make our own luck,\" he answered.', 0, 0, 0, 27366), -- 4648
|
||||
(4647, 'Nodding, the General withdrew a coin from his pocket. \"Let us see how the winds blow!\" he said, tossing the coin into the air. \"If it is heads, our defense will hold. If it is tails, the wall will be overrun.\"$b$bBy now, many of his men had gathered to see the outcome, and a crowd of soldiers eagerly pressed forward to watch the coin land. It bounced, spun, and came to rest. Heads! Cheers erupted.$b$bThe next day battle was fought. The mantid swarmed and the defenders prevailed. Outnumbered thirty to one, the defenders were victorious.', 4648, 0, 0, 27366), -- 4647
|
||||
(4604, 'Many generations ago, a Shado-Pan General stood on the Serpent\'s Spine wall, awaiting the mantid swarm. A young grummle approached him to drop off the last of his supplies, and asked if the General thought the battle would go well.$b$b\"If fortune favors us, we will win the day,\" the General answered, scanning the horizon.$b$bHere, he spoke of matters the grummle knew intimately well. \"Fortune is so fickle! How do you know it will favor you?\" he asked.', 4647, 0, 0, 27366), -- 4604
|
||||
(4659, 'The monk stared at his roommate. \"Well!\" he said at last. \"What is the answer to your riddle?\"$b$bWordlessly, the farmhand handed the monk 5 gold coins.', 0, 0, 0, 27366), -- 4659
|
||||
(4658, 'For his turn, the farmhand pinched his face deep in thought. Finally, he asked: \"What has the heart of a tiger, the wisdom of an eagle, and the strength of an ox?\"$b$bDelighted by the riddle, the monk leapt to his feet and began pacing around the room. For six hours he was mercifully silent as he pondered the farmhand\'s conundrum. Soon, he grew irritable. Eventually his face sunk with fury and disdain. \"Alas, alas! I give up!\" he cried, waving his arms. Reluctantly he withdrew a sack of coins and counted out fifty precious gold pieces for the farmhand. The tiller happily accepted his winnings.', 4659, 0, 0, 27366), -- 4658
|
||||
(4607, 'At this, the farmhand agreed.$b$b\"Very well!\" exclaimed the monk. He eagerly tried to think of a question sufficient to challenge the farmhand, but simple enough to keep the game interesting. \"How would one measure the volume of an irregularly shaped object?\" he asked, his eyes gleaming.$b$bWithout even bothering to think about it, the farmhand handed the monk 5 gold coins.$b$bThe monk was disappointed, but prepared himself for the farmhand\'s challenge.', 4658, 0, 0, 27366), -- 4607
|
||||
(4606, 'A young farmhand was once unfortunate enough to share a room at the inn with an old monk, who talked incessantly from evening\'s light to morning glow about matters of philosophy and science. Bored of the one-sided conversation, the monk soon proposed a challenge of wits.$b$bThe farmhand was uninterested in testing his wits against the monk, no matter how much his roommate raised the stakes. Finally the monk offered the farmhand substantial odds: \"I will give you 50 gold coins for every question of yours I cannot answer, if you will give me 5 gold coins for every question YOU cannot answer.\"', 4607, 0, 0, 27366), -- 4606
|
||||
(4653, 'Jiang and Lo were heroes! From that day forward, the serpent became a symbol of hope to the pandaren people, and the Order of the Cloud Serpent was founded. To this day they protect and serve all of the Jade Forest.', 0, 0, 0, 27366), -- 4653
|
||||
(4652, 'And then what should appear to the eyes of an onlooker? Ji riding atop her friend Lo!$b$bThe two friends swooped in, plucking the Zandalari from the bridge and striking down their bat riders. None could stand before the fury of these two friends.$b$bThe war would still take many months to win, but this was the turning point. Soon Ji was training other pandaren how to ride as she did, upon the backs of other serpents.', 4653, 0, 0, 27366), -- 4652
|
||||
(4651, 'Several days later, the Zandalari had pushed in from the coast. It was on the great bridge near Dawn\'s Blossom that the pandaren champions stood their ground. With an effort they tried to hold back the trolls, and were losing. The Zandalari numbers were vast, and their bat riders fought in such a way the pandaren had no counter to. All hope of victory began to fade.', 4652, 0, 0, 27366), -- 4651
|
||||
(4634, 'She tried to explain to them how serpents could help, how Lo had saved her, how she knew how to turn the tide of battle.$b$bBut her words fell on deaf ears. The monks were mired in their own wisdom, and chose to continue their defense in the way they sought fit. $b$bJiang did not give up though. This rejection only fueled her resolve.', 4651, 0, 0, 27366), -- 4634
|
||||
(4633, 'It was in one of these battles that Jiang nearly perished at the hands of a troll spear. Just as the weapon was inches from her heart, Lo came to the rescue.$b$bThe serpent, only half grown, swooped in and ripped the troll limb from limb. He then gathered up the wounded Jiang and flew her far from the battle to safety.$b$bWhen she was well enough, Jiang approached the leaders of Pandaria\'s defenses. These were the great warrior monks who defended the land from the trolls and other dangers.', 4634, 0, 0, 27366), -- 4633
|
||||
(4632, 'This was much to the lament of the common people. Serpents, you see, were feared as monsters and wild animals, both cunning and dangerous. The townsfolk shunned Jiang, and begged for her to get rid of Lo before he became old enough to hurt her.$b$bOne day, the Zandalari army had pushed as far south as the Jade Forest. Monsters from the sea, these trolls launched an attack against Pandaria. Jiang answered the call to arms, and defended her people on the beaches.', 4633, 0, 0, 27366), -- 4632
|
||||
(4631, 'During the Zandalari Wars just after the founding of the Pandaren Empire, a young girl named Jiang was walking through the Arboretum when she heard a noise. A small cloud serpent lay there on the ground, injured and near death. With a mother\'s gentleness, Jiang took this small creature in to her arms and in to her care. She named him Lo, and they became fast friends.', 4632, 0, 0, 27366), -- 4631
|
||||
(4537, 'It was at this very location ten thousand years ago that Shaohao, the last emperor of Pandaria, defeated the Sha of Doubt and imprisoned it within the land.$b$bFrom the Book of Burdens, Chapter 5:$b$b\"Shaohao meditated for three days and three nights, for the counsel of the Jade Serpent was unclear. How could one purge oneself of all doubt?\"$b$b\"Weary of waiting, Shaohao\'s travelling companion the Monkey King whittled a strange grimacing visage out of bamboo. He urged the Emperor to place the mask of doubt on his face...\"$b$bWhile mischief was the Monkey King\'s motivation, the mask worked - As Shaohao pulled the mask away, his doubts took on a physical form. For seven hours they fought, until the Sha of Doubt was buried.$b$bFrom that day onward, the last emperor had no doubt that he would save Pandaria from the Sundering. He became a creature of faith.', 0, 0, 0, 27366), -- 4537
|
||||
(4505, 'For many ages, the mogu used flesh as a weapon: warped, bent, and twisted to their malevolent will. But after their failures in creating the saurok race, the mogu sought to create another weapon... this time forged with total obedience.$b$bTheir ancient research delivered to them methods of turning flesh to stone, and back again. Lifeless rock could be animated, providing a willing (or unwilling) soul could be captured within.$b$bThese dark rituals created the Stoneborn, soldiers of jade and dark magic forged from the living essence of conquered victims. These creations were powerful, terrible to behold, and above all else, one hundred percent loyal to their mogu masters.', 0, 0, 0, 27366), -- 4505
|
||||
(4618, 'Beware the jinyu$b$bThey are a bunch of dookers$b$bOok\'em in the jerb.', 0, 0, 0, 27377), -- 4618
|
||||
(4619, 'A slicky in hand$b$bIs worth two in the dooker$b$bSo says Chief Ee Ee!', 0, 0, 0, 27377), -- 4619
|
||||
(4456, 'The hozen are a short lived race. Their elders typically are no more than twenty years old. As a result, their relative maturity when compared to the other speaking races is quite minimal.$b$bIn contrast to the very reserved and polite jinyu, the hozen are a passionate people that love to love, love to hate, and love to feel any emotion they can feel, as long as they feel it strongly.', 0, 0, 0, 27377), -- 4456
|
||||
(4657, 'The saurok laughed at this and claimed: \"and this would kill us both. For if I kill you I would drown.\"$b$bThe jinyu thought on this and then agreed. With some effort the heavy saurok climbed on the back of the jinyu and the two began to swim across the river.$b$bBut as they travelled deeper in to the water, the saurok, without thinking, slew the jinyu with a simple, practiced move of his claws.$b$bAs the jinyu sank to the bottom of the river, so did the heavy saurok.$b$bEven at the risk of his own life, the saurok could not escape his nature.', 0, 0, 0, 27377), -- 4657
|
||||
(4616, 'A jinyu once sat by the side of a river, contemplating this and that, when along came a saurok. The jinyu was nervous at first, and prepared to lunge in to the river to get away.$b$bBut the saurok raised his hands and said \"I wish only to cross the river, but I do not know how to swim. You are a swimmer. Perhaps I could ride on your back to the other side.\"$b$bAt this the jinyu replied: \"but you will stab me, or bite me, or try to eat my head.\"', 4657, 0, 0, 27377), -- 4616
|
||||
(4502, 'Defiant to the last, the saurok stood their ground against the mogu in the swamps of Krasarang. It was here they had a fighting chance, drawing the imperial forces deeper in to unfamiliar territory.$b$bThe mogu death toll began to climb as the rebels poisoned water supplies and sabotaged structures.$b$bIn his fury, the Emperor Dojan continued to send troops, slaves, and weapons to Krasarang in an effort to eradicate what remained of the saurok.$b$bThey were never successful.', 0, 0, 0, 27377), -- 4502
|
||||
(4509, 'This early jinyu shrine may provide some insight to the origins of the race. Depicted is a collection of squat, primitive aquatic creatures. They surround a series of pools on a field of gold - perhaps a rendering of the Vale of Eternal Blossoms.$b$bOne of the primitive creatures holds a staff aloft beside the waters, but the symbols that surround his head are of an unknown language that likely predates the first mogu dynasty.$b$bThe exact connection between these early aquatic creatures and the Vale remains unclear.', 0, 0, 0, 27377), -- 4509
|
||||
(4379, 'Sentinel Commander Lyalia,$b$bWest beyond the Ruins of Dojan are the marshes of the Krasarang River.$b$bAmong the riverlands I came across a refugee camp of pandaren who have fled their Crane Temple along the southern coast.$b$bThey appear to be faced with a physical manifestation of despair that is welling up from the ground infecting the local habitat.$b$bThey need help.$b$bIt is my intention to assist these refugees and then rejoin the rest of the sentinels as soon as possible.', 0, 0, 0, 27377), -- 4379
|
||||
(4416, 'With this conquest, the Firecrown used his new thralls to construct the Dungeons of Dojan. It quickly became one of the most feared and renowned dungeons in the known world. Fortified with countless traps and weaponry, it showed the empire that the Firecrown would not endure the insult of rebellion.$b$bTo ensure their reputation, the Imperial Magisters crafted wards and arcanic oubliettes in great number. Those foolish enough to try and use a magic portal to assault the seat of the empire would quickly find themselves redirected to an arcanic oubliette or worse.$b$bIn time, the only successful teleportation magics of the region were limited to the nearby port of Korja.', 0, 0, 0, 27377), -- 4416
|
||||
(4415, '--Translationed by Lorekeeper Vaeldrin--$b$bIt was the Sovereign Emperor, Dojan Firecrown, who brought the legions down upon the Krasarang Jungle, crushing its defenses and adding it to the empire.$b$bKrasarang was the last of the freeholds, a festering jungle of brigands and rebels, seeking to hide from his grace\'s wrath.$b$bThe true prize though was the legendary Pools of Youth. The Firecrown was late in his years and dreamed of the power such pools could provide if under his sway.', 4416, 0, 0, 27377), -- 4415
|
||||
(4504, 'Even by mogu standards, the reign of Emperor Dojan II was short and brutish. His maniacal drive to finish his father\'s work and complete the great purge against the rebellious saurok legions drove him to leave his court in disarray while he set out on a doomed military campaign.$b$bFrom his perch high on the cliffs overlooking the Krasarang Wilds he oversaw the slow clear-cutting of the jungle, the establishment of Dojanni Dungeons, and the gradual genocide of the saurok race.$b$bWhat he didn\'t expect was for the remains of the saurok fifth and seventh legions to scale the enormity of the cliffs in the dead of night, ambushing his imperial pavilion from the Valley of Four Winds and forcing him over the edge. His body was never found, and the resulting disarray in the capitol left the empire in chaos for over two years while the saurok melted back into the wilds and disappeared...', 0, 0, 0, 27377), -- 4504
|
||||
(4383, 'The Reclamation$b$bBy order of his exalted, the reclaimers shall be dispatched to the ruins of Dojan. There they are to recover any artifacts that may be used to arm our people.$b$bWe need guardian statues, scrolls, any arcane devices that will help us rekindle our ancient glory.$b$bPriority must be given to the Pools of Youth on the north side of Dojan. Those waters are vital to the continued strength of the empire.$b$b-Groundbreaker Brojai,$b$b The Lord Reclaimer\n', 0, 0, 0, 27377), -- 4383
|
||||
(4514, 'Father of Dichotomy Dark and Pale Ale and the school of Balanced Inebriation.$b$bSeeking to mitigate negative effects of beer without diminishing its virtues, Quan Tou Kuo developed a two part system of drinking designed to result in a state of balanced inebriation. When imbibed separately in the proper ratios, the Pale Ale of the spirit and the Dark Ale of the mind combine in the drinker\'s stomach to achieve a state of enlightenment and goodwill without the loss of judgment and self-control typically experienced by heavy drinkers.', 0, 0, 0, 27377), -- 4514
|
||||
(4520, 'During the dark days of the mogu dynasties, pandaren slaves were not permitted weapons of any kind. When training in secret, pandaren monks would often use farm tools or simple bamboo staves for practice. Emphasis was also placed on unarmed strikes.$b$bIn contrast, the favored weapons of the mogu were based on fear rather than practicality. They were large, cumbersome, and difficult to wield. Pandaren monks took advantage, developing fast strikes and the skill to quickly move around the battlefield. The larger, slower mogu were often completely disoriented by the speed of the pandaren monks in open combat.$b$bOver the years, fighting styles have changed dramatically, incorporating any number of other abilities, weapons, styles, etc. But the core foundation of pandaren fighting techniques remains the same: Defeat an opponent of any size with your bare paws if you have to.', 0, 0, 0, 27377), -- 4520
|
||||
(4562, 'Many generations ago, Liu Lang the explorer returned to Pandaria every five years on the back of a giant sea turtle, collecting more and more explorers with each visit. Locals had taken to naming it \"The Wandering Isle,\" for the turtle had grown so large as to have a small town and temple built upon its back.$b$bOne year, local widow Mab Stormstout was grief-stricken over the loss of her husband to a tragic grape-press accident. She declared that Pandaria no longer had anything to offer her. With that, she and her young son Liao Stormstout climbed aboard the turtle, among the first brewmasters to do so.$b$bThe Wandering Isle has not returned to Pandaria in many generations. It is presumed that the turtle, Shen-zin Su, stopped returning to the mainland shortly after the death of his beloved friend Liu Lang.', 0, 0, 0, 27377), -- 4562
|
||||
(4866, 'Yesterday, we found one of our clan defiling the spirits of our ancestors.$B$BThe Chieftain is livid. It is clear - this new magic is dangerous. It leads us down a path from which we cannot return.$B$BFrom this day forth, let it be known. The powers of shadow are forbidden to the clan.$B$BThe \"Dark Star\" is evil.', 0, 0, 0, 27547), -- 4866
|
||||
(4865, 'Since the crystals fell, our power has grown in ways we do not fully understand.$B$BWe have always spoken the language of the stars and the earth. Now, we hear another - the voice of shadow.', 4866, 0, 0, 27547), -- 4865
|
||||
(4864, 'Shortly afterward, a shadow appeared in the sky beneath the pale moon. Some stare at it in fear, others in adoration.$B$BThe clan has given it many names: great father, dark mother.$B$BThe Chieftain calls it the \"Dark Star.\"', 4865, 0, 0, 27547), -- 4864
|
||||
(4863, 'Today, a bright fire exploded across the heavens, and four great white stones fell from the sky.$B$BOne such stone landed in the plains below our village.$B$BWe know not what it is. Is it a gift from our ancestors?', 4864, 0, 0, 27547), -- 4863
|
||||
(4862, 'Since the crystals fell, our power has grown in ways we do not fully understand.$B$BWe have always spoken the language of the stars and the earth. Now, we hear another - the voice of shadow.', 0, 0, 0, 27547), -- 4862
|
||||
(4861, 'Shortly afterward, a shadow appeared in the sky beneath the pale moon. Some stare at it in fear, others in adoration.$B$BThe clan has given it many names: great father, dark mother.$B$BThe Chieftain calls it the \"Dark Star.\"', 4862, 0, 0, 27547), -- 4861
|
||||
(4860, 'Today, a bright fire exploded across the heavens, and four great white stones fell from the sky.$B$BOne such stone landed in the plains below our village.$B$BWe know not what it is. Is it a gift from our ancestors?', 4861, 0, 0, 27547), -- 4860
|
||||
(4859, 'Shortly afterward, a shadow appeared in the sky beneath the pale moon. Some stare at it in fear, others in adoration.$B$BThe clan has given it many names: great father, dark mother.$B$BThe Chieftain calls it the \"Dark Star.\"', 0, 0, 0, 27547), -- 4859
|
||||
(4858, 'Today, a bright fire exploded across the heavens, and four great white stones fell from the sky.$B$BOne such stone landed in the plains below our village.$B$BWe know not what it is. Is it a gift from our ancestors?', 4859, 0, 0, 27547), -- 4858
|
||||
(4549, 'It was at this very location ten thousand years ago that Shaohao, the Last Emperor of Pandaria, defeated the Sha of Fear and imprisoned it within the land.$b$bFrom the Book of Burdens, Chapter 14:$b$b\"Although purged of doubt and despair, Emperor Shaohao was still overcome by fear. He sought the counsel of the Black Ox, spirit of bravery and fortitude, who lived in the steppes beyond the wall.\"$b$b\"The Black Ox, Red Crane, Emperor, and Monkey King discussed the nature of fear at great length, until at last the Monkey King was inspired to act. A mask of fear was created, terrifying to behold. With trembling hands, the Emperor donned the horrific mask, so as to draw forth his own fears...\"$b$bThe battle against the Sha of Fear lasted a week and a day, during which time legend has it that the sun never rose. When the Sha was at last defeated and imprisoned in the earth, Emperor Shaohao was forever changed, for he no longer felt his own fears. He became a creature of courage.', 0, 0, 0, 27377), -- 4549
|
||||
(4535, 'The origins of the yaungol are unclear. The earliest historical record of the race dates back to the time of the mogu emperor Qiang the Merciless. His scholars describe nomadic tribes of \"intelligent bovine hunters\" who roamed \"expansive hunting grounds beyond the western reaches of the empire.\"$b$bIt is thought that several tribes of these hunters were trapped in pandaria when the continent was separated from the mainland during the Sundering.$b$bImprisoned in the dangerous Townlong Steppes, the hardy yaungol were forced to adapt, weaponizing local supplies of oil and developing their own aggressive culture.$b$bFew races can stand toe-to-toe against the mantid in open ground. For this reason alone, the yaungol survivors are to be feared and respected.', 0, 0, 0, 27377), -- 4535
|
||||
(4530, 'Only the strongest, most courageous, most resilient of yaungol may lead the tribes. These traits are of the highest qualities in yaungol society, and are expected of all yaungol leaders.$b$bHowever, with the constant threat from the mantid to their south, the yaungol cannot afford to lose a single warrior in an internal struggle for power.$b$bA surprisingly civilized solution to this problem has been put into place. When a dispute arises between two yaungol, a banner is placed between them. They then fight one another with blunted weapons until one yields or passes out.$b$bSimilarly, new leaders are chosen in ritual combat: a yaungol who aspires to take the place of chief must place his family banner and fight any who would challenge his authority.', 0, 0, 0, 27377); -- 4530
|
||||
|
||||
UPDATE `page_text` SET `Text`='Archmage Antonidas, Grand Magus of the Kirin Tor\n\nThe great city of Dalaran stands once again - a testament to the tenacity and will of its greatest son.\n\nYour sacrifices will not have been in vain, dearest friend.\n\n\nWith Love and Honor,\n\nJaina Proudmoore', `VerifiedBuild`=27843 WHERE `ID`=3542; -- 3542
|
||||
UPDATE `page_text` SET `VerifiedBuild`=27377 WHERE `ID`=4543; -- 4543
|
||||
UPDATE `page_text` SET `VerifiedBuild`=27377 WHERE `ID`=4615; -- 4615
|
||||
UPDATE `page_text` SET `VerifiedBuild`=27377 WHERE `ID`=4614; -- 4614
|
||||
UPDATE `page_text` SET `VerifiedBuild`=27377 WHERE `ID`=4613; -- 4613
|
||||
UPDATE `page_text` SET `VerifiedBuild`=27377 WHERE `ID`=4612; -- 4612
|
||||
UPDATE `page_text` SET `VerifiedBuild`=27377 WHERE `ID`=4611; -- 4611
|
||||
UPDATE `page_text` SET `VerifiedBuild`=27366 WHERE `ID`=4615; -- 4615
|
||||
UPDATE `page_text` SET `VerifiedBuild`=27366 WHERE `ID`=4614; -- 4614
|
||||
UPDATE `page_text` SET `VerifiedBuild`=27366 WHERE `ID`=4613; -- 4613
|
||||
UPDATE `page_text` SET `VerifiedBuild`=27366 WHERE `ID`=4612; -- 4612
|
||||
UPDATE `page_text` SET `VerifiedBuild`=27366 WHERE `ID`=4611; -- 4611
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1,4 @@
|
||||
--
|
||||
DELETE FROM `gossip_menu_option_action` WHERE (`MenuId`=11326 AND `OptionIndex`=0);
|
||||
INSERT INTO `gossip_menu_option_action` (`MenuId`, `OptionIndex`, `ActionMenuId`, `ActionPoiId`) VALUES
|
||||
(11326, 0, 11325, 0);
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1,2 @@
|
||||
--
|
||||
DELETE FROM `scene_template` WHERE `SceneId`=0;
|
||||
@@ -0,0 +1,76 @@
|
||||
DELETE FROM `scene_template` WHERE (`SceneId`=1773 AND `ScriptPackageID`=1880) OR (`SceneId`=1688 AND `ScriptPackageID`=1872) OR (`SceneId`=1673 AND `ScriptPackageID`=1855) OR (`SceneId`=1387 AND `ScriptPackageID`=1669) OR (`SceneId`=1481 AND `ScriptPackageID`=1757) OR (`SceneId`=1485 AND `ScriptPackageID`=1761) OR (`SceneId`=1483 AND `ScriptPackageID`=1760) OR (`SceneId`=1531 AND `ScriptPackageID`=1775) OR (`SceneId`=1497 AND `ScriptPackageID`=1766) OR (`SceneId`=1771 AND `ScriptPackageID`=1879) OR (`SceneId`=1806 AND `ScriptPackageID`=1887) OR (`SceneId`=1808 AND `ScriptPackageID`=1884) OR (`SceneId`=1805 AND `ScriptPackageID`=1883) OR (`SceneId`=1761 AND `ScriptPackageID`=1886) OR (`SceneId`=1751 AND `ScriptPackageID`=1878) OR (`SceneId`=1362 AND `ScriptPackageID`=1669) OR (`SceneId`=1448 AND `ScriptPackageID`=1727) OR (`SceneId`=1438 AND `ScriptPackageID`=1713) OR (`SceneId`=1435 AND `ScriptPackageID`=1709) OR (`SceneId`=1426 AND `ScriptPackageID`=1704) OR (`SceneId`=1461 AND `ScriptPackageID`=1726) OR (`SceneId`=1455 AND `ScriptPackageID`=1733) OR (`SceneId`=1452 AND `ScriptPackageID`=1731) OR (`SceneId`=1460 AND `ScriptPackageID`=1725) OR (`SceneId`=1459 AND `ScriptPackageID`=1714) OR (`SceneId`=1141 AND `ScriptPackageID`=1508) OR (`SceneId`=1092 AND `ScriptPackageID`=1477) OR (`SceneId`=1246 AND `ScriptPackageID`=1594) OR (`SceneId`=1350 AND `ScriptPackageID`=1676) OR (`SceneId`=1194 AND `ScriptPackageID`=1560) OR (`SceneId`=1368 AND `ScriptPackageID`=1687) OR (`SceneId`=1146 AND `ScriptPackageID`=1518) OR (`SceneId`=1339 AND `ScriptPackageID`=1665) OR (`SceneId`=937 AND `ScriptPackageID`=1380) OR (`SceneId`=936 AND `ScriptPackageID`=1379) OR (`SceneId`=935 AND `ScriptPackageID`=1378) OR (`SceneId`=1281 AND `ScriptPackageID`=1630) OR (`SceneId`=1280 AND `ScriptPackageID`=1629) OR (`SceneId`=1279 AND `ScriptPackageID`=1628) OR (`SceneId`=1326 AND `ScriptPackageID`=1655) OR (`SceneId`=1304 AND `ScriptPackageID`=1642) OR (`SceneId`=1305 AND `ScriptPackageID`=1645) OR (`SceneId`=1312 AND `ScriptPackageID`=1650) OR (`SceneId`=1311 AND `ScriptPackageID`=1649) OR (`SceneId`=1125 AND `ScriptPackageID`=1500) OR (`SceneId`=1269 AND `ScriptPackageID`=1717) OR (`SceneId`=1449 AND `ScriptPackageID`=1728) OR (`SceneId`=1467 AND `ScriptPackageID`=1747) OR (`SceneId`=1445 AND `ScriptPackageID`=1722) OR (`SceneId`=1474 AND `ScriptPackageID`=1750) OR (`SceneId`=1373 AND `ScriptPackageID`=1691) OR (`SceneId`=1356 AND `ScriptPackageID`=1678) OR (`SceneId`=1351 AND `ScriptPackageID`=1677) OR (`SceneId`=1335 AND `ScriptPackageID`=1661) OR (`SceneId`=1450 AND `ScriptPackageID`=1653) OR (`SceneId`=1341 AND `ScriptPackageID`=1667) OR (`SceneId`=1472 AND `ScriptPackageID`=1746) OR (`SceneId`=1327 AND `ScriptPackageID`=1657) OR (`SceneId`=1324 AND `ScriptPackageID`=1653) OR (`SceneId`=1328 AND `ScriptPackageID`=1658) OR (`SceneId`=1301 AND `ScriptPackageID`=1641) OR (`SceneId`=1458 AND `ScriptPackageID`=1737) OR (`SceneId`=1287 AND `ScriptPackageID`=1638) OR (`SceneId`=994 AND `ScriptPackageID`=1403) OR (`SceneId`=1223 AND `ScriptPackageID`=1588) OR (`SceneId`=1842 AND `ScriptPackageID`=1928) OR (`SceneId`=1801 AND `ScriptPackageID`=1905) OR (`SceneId`=1775 AND `ScriptPackageID`=1928) OR (`SceneId`=1818 AND `ScriptPackageID`=1959) OR (`SceneId`=1674 AND `ScriptPackageID`=1858) OR (`SceneId`=1499 AND `ScriptPackageID`=1768) OR (`SceneId`=1496 AND `ScriptPackageID`=1765) OR (`SceneId`=1495 AND `ScriptPackageID`=1764) OR (`SceneId`=1494 AND `ScriptPackageID`=1762);
|
||||
INSERT INTO `scene_template` (`SceneId`, `Flags`, `ScriptPackageID`) VALUES
|
||||
(1773, 27, 1880),
|
||||
(1688, 17, 1872),
|
||||
(1673, 16, 1855),
|
||||
(1387, 20, 1669),
|
||||
(1481, 25, 1757),
|
||||
(1485, 16, 1761),
|
||||
(1483, 16, 1760),
|
||||
(1531, 16, 1775),
|
||||
(1497, 16, 1766),
|
||||
(1771, 27, 1879),
|
||||
(1806, 27, 1887),
|
||||
(1808, 27, 1884),
|
||||
(1805, 27, 1883),
|
||||
(1761, 27, 1886),
|
||||
(1751, 27, 1878),
|
||||
(1362, 20, 1669),
|
||||
(1448, 31, 1727),
|
||||
(1438, 31, 1713),
|
||||
(1435, 23, 1709),
|
||||
(1426, 23, 1704),
|
||||
(1461, 11, 1726),
|
||||
(1455, 25, 1733),
|
||||
(1452, 16, 1731),
|
||||
(1460, 11, 1725),
|
||||
(1459, 11, 1714),
|
||||
(1141, 24, 1508),
|
||||
(1092, 16, 1477),
|
||||
(1246, 1, 1594),
|
||||
(1350, 17, 1676),
|
||||
(1194, 1, 1560),
|
||||
(1368, 17, 1687),
|
||||
(1146, 17, 1518),
|
||||
(1339, 16, 1665),
|
||||
(937, 16, 1380),
|
||||
(936, 16, 1379),
|
||||
(935, 16, 1378),
|
||||
(1281, 4, 1630),
|
||||
(1280, 4, 1629),
|
||||
(1279, 4, 1628),
|
||||
(1326, 20, 1655),
|
||||
(1304, 16, 1642),
|
||||
(1305, 16, 1645),
|
||||
(1312, 21, 1650),
|
||||
(1311, 25, 1649),
|
||||
(1125, 21, 1500),
|
||||
(1269, 21, 1717),
|
||||
(1449, 58, 1728),
|
||||
(1467, 16, 1747),
|
||||
(1445, 16, 1722),
|
||||
(1474, 16, 1750),
|
||||
(1373, 62, 1691),
|
||||
(1356, 62, 1678),
|
||||
(1351, 52, 1677),
|
||||
(1335, 26, 1661),
|
||||
(1450, 27, 1653),
|
||||
(1341, 16, 1667),
|
||||
(1472, 25, 1746),
|
||||
(1327, 25, 1657),
|
||||
(1324, 11, 1653),
|
||||
(1328, 17, 1658),
|
||||
(1301, 27, 1641),
|
||||
(1458, 16, 1737),
|
||||
(1287, 25, 1638),
|
||||
(994, 16, 1403),
|
||||
(1223, 20, 1588),
|
||||
(1842, 27, 1928),
|
||||
(1801, 17, 1905),
|
||||
(1775, 27, 1928),
|
||||
(1818, 20, 1959),
|
||||
(1674, 16, 1858),
|
||||
(1499, 21, 1768),
|
||||
(1496, 20, 1765),
|
||||
(1495, 17, 1764),
|
||||
(1494, 25, 1762);
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,109 @@
|
||||
DELETE FROM `spell_target_position` WHERE (`ID`=241998 AND `EffectIndex`=0) OR (`ID`=240122 AND `EffectIndex`=1) OR (`ID`=239341 AND `EffectIndex`=1) OR (`ID`=235116 AND `EffectIndex`=0) OR (`ID`=231762 AND `EffectIndex`=0) OR (`ID`=229575 AND `EffectIndex`=1) OR (`ID`=232201 AND `EffectIndex`=0) OR (`ID`=231698 AND `EffectIndex`=0) OR (`ID`=229931 AND `EffectIndex`=0) OR (`ID`=229942 AND `EffectIndex`=0) OR (`ID`=255442 AND `EffectIndex`=1) OR (`ID`=254664 AND `EffectIndex`=0) OR (`ID`=250365 AND `EffectIndex`=0) OR (`ID`=248543 AND `EffectIndex`=0) OR (`ID`=251677 AND `EffectIndex`=0) OR (`ID`=255218 AND `EffectIndex`=0) OR (`ID`=251210 AND `EffectIndex`=0) OR (`ID`=255215 AND `EffectIndex`=0) OR (`ID`=251594 AND `EffectIndex`=0) OR (`ID`=252494 AND `EffectIndex`=0) OR (`ID`=255216 AND `EffectIndex`=0) OR (`ID`=251222 AND `EffectIndex`=0) OR (`ID`=250367 AND `EffectIndex`=0) OR (`ID`=251041 AND `EffectIndex`=0) OR (`ID`=216920 AND `EffectIndex`=1) OR (`ID`=216163 AND `EffectIndex`=0) OR (`ID`=215653 AND `EffectIndex`=0) OR (`ID`=227216 AND `EffectIndex`=1) OR (`ID`=227216 AND `EffectIndex`=0) OR (`ID`=224616 AND `EffectIndex`=2) OR (`ID`=223442 AND `EffectIndex`=0) OR (`ID`=226968 AND `EffectIndex`=1) OR (`ID`=279114 AND `EffectIndex`=0) OR (`ID`=227172 AND `EffectIndex`=0) OR (`ID`=239973 AND `EffectIndex`=0) OR (`ID`=240603 AND `EffectIndex`=0) OR (`ID`=236671 AND `EffectIndex`=2) OR (`ID`=240161 AND `EffectIndex`=1) OR (`ID`=206277 AND `EffectIndex`=0) OR (`ID`=190067 AND `EffectIndex`=0) OR (`ID`=185613 AND `EffectIndex`=0) OR (`ID`=205571 AND `EffectIndex`=0) OR (`ID`=205570 AND `EffectIndex`=0) OR (`ID`=205569 AND `EffectIndex`=0) OR (`ID`=205568 AND `EffectIndex`=0) OR (`ID`=205565 AND `EffectIndex`=0) OR (`ID`=205566 AND `EffectIndex`=0) OR (`ID`=259106 AND `EffectIndex`=0) OR (`ID`=234521 AND `EffectIndex`=1) OR (`ID`=203822 AND `EffectIndex`=0) OR (`ID`=281403 AND `EffectIndex`=0) OR (`ID`=220892 AND `EffectIndex`=0) OR (`ID`=225293 AND `EffectIndex`=0) OR (`ID`=229361 AND `EffectIndex`=0) OR (`ID`=214400 AND `EffectIndex`=0) OR (`ID`=214442 AND `EffectIndex`=0) OR (`ID`=228640 AND `EffectIndex`=0) OR (`ID`=217015 AND `EffectIndex`=0) OR (`ID`=217014 AND `EffectIndex`=0) OR (`ID`=203986 AND `EffectIndex`=0) OR (`ID`=196971 AND `EffectIndex`=0) OR (`ID`=231401 AND `EffectIndex`=0) OR (`ID`=231402 AND `EffectIndex`=1) OR (`ID`=231400 AND `EffectIndex`=0) OR (`ID`=231399 AND `EffectIndex`=1) OR (`ID`=231740 AND `EffectIndex`=0) OR (`ID`=229500 AND `EffectIndex`=1) OR (`ID`=206185 AND `EffectIndex`=0) OR (`ID`=251472 AND `EffectIndex`=1) OR (`ID`=208649 AND `EffectIndex`=0) OR (`ID`=215277 AND `EffectIndex`=0) OR (`ID`=234742 AND `EffectIndex`=0) OR (`ID`=213076 AND `EffectIndex`=0) OR (`ID`=220464 AND `EffectIndex`=0) OR (`ID`=220465 AND `EffectIndex`=0) OR (`ID`=255214 AND `EffectIndex`=0) OR (`ID`=251213 AND `EffectIndex`=0) OR (`ID`=251162 AND `EffectIndex`=0) OR (`ID`=250362 AND `EffectIndex`=0) OR (`ID`=248045 AND `EffectIndex`=0) OR (`ID`=241647 AND `EffectIndex`=0) OR (`ID`=250546 AND `EffectIndex`=1) OR (`ID`=241454 AND `EffectIndex`=0) OR (`ID`=250455 AND `EffectIndex`=0) OR (`ID`=243270 AND `EffectIndex`=1) OR (`ID`=239337 AND `EffectIndex`=0) OR (`ID`=238571 AND `EffectIndex`=0) OR (`ID`=235132 AND `EffectIndex`=0) OR (`ID`=234679 AND `EffectIndex`=0) OR (`ID`=229754 AND `EffectIndex`=0) OR (`ID`=239219 AND `EffectIndex`=0) OR (`ID`=220463 AND `EffectIndex`=0) OR (`ID`=229432 AND `EffectIndex`=0) OR (`ID`=232241 AND `EffectIndex`=0) OR (`ID`=229548 AND `EffectIndex`=1) OR (`ID`=229061 AND `EffectIndex`=0) OR (`ID`=229157 AND `EffectIndex`=0) OR (`ID`=228951 AND `EffectIndex`=0) OR (`ID`=230903 AND `EffectIndex`=0) OR (`ID`=229237 AND `EffectIndex`=2) OR (`ID`=226060 AND `EffectIndex`=0) OR (`ID`=213233 AND `EffectIndex`=0) OR (`ID`=208702 AND `EffectIndex`=0) OR (`ID`=208631 AND `EffectIndex`=0) OR (`ID`=224873 AND `EffectIndex`=0);
|
||||
INSERT INTO `spell_target_position` (`ID`, `EffectIndex`, `MapID`, `PositionX`, `PositionY`, `PositionZ`, `VerifiedBuild`) VALUES
|
||||
(241998, 0, 1746, 75.78, -224.62, 938.13, 27980), -- Spell: Teleport Players to TK Arcatraz Efffect: 227 (SPELL_EFFECT_TELEPORT_TO_LFG_DUNGEON)
|
||||
(240122, 1, 1220, -1498.81, 3218.14, 103.32, 27980), -- Spell: Dismiss Champion Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(239341, 1, 1220, -949.07, 2066.05, 39.09, 27980), -- Spell: Summon Champion Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(235116, 0, 1220, -858.23, 4644.17, 1158.19, 27980), -- Spell: Portal: The Dalaran Spire (Teleport) Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(231762, 0, 1220, -493.42, 3017.62, 96.83, 27980), -- Spell: Portal: The Broken Shore (Teleport) Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(229575, 1, 1220, 2079.75, 3933.3, 113.25, 27980), -- Spell: Activate Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(232201, 0, 1220, 2060.89, 3354.49, 280.45, 27980), -- Spell: Teleport: Oculeth's Test Chamber Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(231698, 0, 1220, 1751.18, 4634, 126.62, 27980), -- Spell: Summon Hologram Efffect: 28 (SPELL_EFFECT_SUMMON)
|
||||
(229931, 0, 1220, 749.74, 3605.19, 98.12, 27980), -- Spell: Teleport: Back to Post Siege Khadgar Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(229942, 0, 1220, 1181.4, 5887.44, -12.73, 27980), -- Spell: The Oculeth Special Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(255442, 1, 1669, 5646.19, 10624, 5.7, 27980), -- Spell: Cross Over Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(254664, 0, 1669, 4838.36, 9741.27, -65.25, 27980), -- Spell: Teleport to Exodus Point Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(250365, 0, 1669, 4601.1, 9831.9, 68.1, 27980), -- Spell: Teleport to Vindicaar Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(248543, 0, 1669, 497.15, 1468.22, 765.93, 27980), -- Spell: Teleport to Vindicaar Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(251677, 0, 1779, 5701.32, -1432.57, 23.98, 27980), -- Spell: Rift Teleport Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(255218, 0, 1779, -1759.4, -1415.87, 29.31, 27980), -- Spell: Rift Teleport Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(251210, 0, 1779, -1759.4, -1415.87, 29.31, 27980), -- Spell: Rift Teleport Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(255215, 0, 1779, 748.89, 728.24, 41.32, 27980), -- Spell: Rift Teleport Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(251594, 0, 1779, 748.89, 728.24, 41.32, 27980), -- Spell: Rift Teleport Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(252494, 0, 1669, -2927.74, 8822.08, -232.15, 27980), -- Spell: Return to Hope's Landing Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(255216, 0, 1779, -4163.78, 651.57, 17.91, 27980), -- Spell: Rift Teleport Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(251222, 0, 1779, -4163.78, 651.57, 17.91, 27980), -- Spell: Rift Teleport Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(250367, 0, 1669, -2602.1, 8573.3, -67, 27980), -- Spell: Teleport to Vindicaar Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(251041, 0, 1669, 389.98, 1417.1, 769.6, 27980), -- Spell: Teleport: The Vindicaar Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(216920, 1, 1623, 1090.66, 1048.37, 210.59, 27980), -- Spell: Teleport: Hall of the Guardian Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(216163, 0, 1623, 1340.27, 1236.56, 172.96, 27980), -- Spell: Oculus Ground Teleport Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(215653, 0, 1623, 1072.79, 1049.12, 602.71, 27980), -- Spell: Start Scenario Efffect: 227 (SPELL_EFFECT_TELEPORT_TO_LFG_DUNGEON)
|
||||
(227216, 1, 530, -3563.9, 205.91, 44.46, 27980), -- Spell: Warden's Trap Efffect: 219 (SPELL_EFFECT_219)
|
||||
(227216, 0, 530, -3563.9, 205.91, 44.46, 27980), -- Spell: Warden's Trap Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(224616, 2, 1621, 651.16, 295.38, 396.36, 27980), -- Spell: Destiny Efffect: 28 (SPELL_EFFECT_SUMMON)
|
||||
(223442, 0, 1621, 674.69, 305.4, 353.19, 27980), -- Spell: Teleport Efffect: 227 (SPELL_EFFECT_TELEPORT_TO_LFG_DUNGEON)
|
||||
(226968, 1, 939, 3243.7, -5002.98, 194.09, 27980), -- Spell: Call to Xe'ra Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(279114, 0, 1, 7446.79, -49.47, 6.21, 27980), -- Spell: Evacuate Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(227172, 0, 1646, 3264.82, 7287.42, 90.77, 27980), -- Spell: Abscond Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(239973, 0, 1220, -1617.29, 3199.94, 129.02, 27980), -- Spell: Teleport To Deliverance Point Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(240603, 0, 1666, -1111.6, 2969.71, 186.02, 27980), -- Spell: Teleport to Mid Command Ship Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(236671, 2, 1666, -1188.32, 2953.37, 153.63, 27980), -- Spell: Demonic Gateway Efffect: 42 (SPELL_EFFECT_JUMP_DEST)
|
||||
(240161, 1, 1220, -833.82, 4279.78, 746.28, 27980), -- Spell: Seamless Transfer to Broken Shore Scenario Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(206277, 0, 1220, -756.83, 4601.69, 728.9, 27980), -- Spell: Teleport to Dalaran Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(190067, 0, 1220, 2825.3, 877.51, 78.18, 27980), -- Spell: Narrow Escape Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(185613, 0, 1220, 3209.48, 3072.73, 440.212, 27980), -- Spell: Teleport: Wreck of the Skyfire Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(205571, 0, 1475, 4588.2, 2669, 138.89, 27980), -- Spell: Lorna Talking Head 09 Efffect: 219 (SPELL_EFFECT_219)
|
||||
(205570, 0, 1475, 4588.2, 2669, 138.89, 27980), -- Spell: Lorna Talking Head 08 Efffect: 219 (SPELL_EFFECT_219)
|
||||
(205569, 0, 1475, 4588.2, 2669, 138.89, 27980), -- Spell: Rogers Talking Head 04 Efffect: 219 (SPELL_EFFECT_219)
|
||||
(205568, 0, 1475, 4950.38, 2877.51, 137.08, 27980), -- Spell: Rogers Talking Head 03 Efffect: 219 (SPELL_EFFECT_219)
|
||||
(205565, 0, 1475, 4950.38, 2877.51, 137.08, 27980), -- Spell: Rogers Talking Head 01 Efffect: 219 (SPELL_EFFECT_219)
|
||||
(205566, 0, 1475, 4950.38, 2877.51, 137.08, 27980), -- Spell: Rogers Talking Head 02 Efffect: 219 (SPELL_EFFECT_219)
|
||||
(259106, 0, 1, 1590.86, -4199.37, 53.6, 27980), -- Spell: Teleport: Orgrimmar Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(234521, 1, 530, -246.76, 928.58, 84.38, 27980), -- Spell: Teleport Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(203822, 0, 1220, 3689.28, 7095.63, 25.21, 27843), -- Spell: Grove Expulsion Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(281403, 0, 1643, 1137.36, -538.6, 17.53, 27843), -- Spell: Teleport: Boralus Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(220892, 0, 1220, 372.29, 3996.95, 3.16, 27980), -- Spell: Teleport to Tavern Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(225293, 0, 1220, 1143.82, 4255.53, 21.33, 27980), -- Spell: Voluntary Vehicle Exit Spell - Cancel Immunity Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(229361, 0, 1220, 526.07, 3768.77, 33.02, 27980), -- Spell: Teleport: Lighthouse Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(214400, 0, 1220, 204.29, 4732.39, -69.37, 27980), -- Spell: Vargoth Teleport Out Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(214442, 0, 1220, 184.3, 4711.71, -90.84, 27980), -- Spell: Demonic Portal Summon Efffect: 28 (SPELL_EFFECT_SUMMON)
|
||||
(228640, 0, 1220, 290.59, 4606.81, -90.71, 27980), -- Spell: Teleport Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(217015, 0, 1220, 819.09, 5191.23, 37.46, 27980), -- Spell: Teleport to Kyrtos's Lair Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(217014, 0, 1220, 663.41, 4820.57, -131.49, 27980), -- Spell: Teleport to Legion Ship Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(203986, 0, 1220, 664.96, 4822.75, -90.06, 27980), -- Spell: Teleport To Legion Ship Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(196971, 0, 1220, 312.84, 4928.55, -85.18, 27980), -- Spell: Summon Efffect: 28 (SPELL_EFFECT_SUMMON)
|
||||
(231401, 0, 1220, 523.26, 3799.67, 1.49, 27980), -- Spell: Teleport: Evermoon Terrace Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(231402, 1, 1220, 519.13, 3779.64, 33.37, 27980), -- Spell: Teleportation Aura Efffect: 3 (SPELL_EFFECT_DUMMY)
|
||||
(231400, 0, 1220, 518.32, 3774.72, 33.02, 27980), -- Spell: Teleport: Evermoon Terrace Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(231399, 1, 1220, 522.62, 3796.12, 1.55, 27980), -- Spell: Teleportation Aura Efffect: 3 (SPELL_EFFECT_DUMMY)
|
||||
(231740, 0, 1220, 2799.17, 4387.51, 418.85, 27980), -- Spell: Teleport to Lunar Crucible Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(229500, 1, 1220, -799.02, 4657.16, 933.84, 27980), -- Spell: Teleport: The Purple Parlor Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(206185, 0, 1220, -812.76, 4548.52, -156.88, 27980), -- Spell: Teleport to The Postmaster's Office Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(251472, 1, 1220, -1617.29, 3199.94, 129.02, 27980), -- Spell: Complete Scenario / Teleport To Deliverance Point Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(208649, 0, 1220, 4495.8, 4849.9, 662, 27980), -- Spell: Eagle Banishment Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(215277, 0, 1220, 4944.53, 4963.3, 781.74, 27980), -- Spell: Teleport Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(234742, 0, 1220, 1886.64, 3541.64, 265.97, 27980), -- Spell: Portal: Crimson Thicket (Teleport) Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(213076, 0, 1220, -892.49, 4667.5, 955.92, 27843), -- Spell: Portal: Archmage Vargoth's Retreat (Teleport) Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(220464, 0, 1220, 2836.21, 3215.08, 652.98, 27843), -- Spell: Mage-Ring Network Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(220465, 0, 1220, 2904.48, 6782.44, 271.9, 27843), -- Spell: Mage-Ring Network Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(255214, 0, 1779, -1399.98, 899.03, 90.31, 27980), -- Spell: Rift Teleport Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(251213, 0, 1779, -1399.98, 899.03, 90.31, 27980), -- Spell: Rift Teleport Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(251162, 0, 1220, -828.72, 4371.78, 738.64, 27980), -- Spell: Teleport: Dalaran Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(250362, 0, 1669, 380, 1412.5, 769.6, 27980), -- Spell: Teleport to Vindicaar Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(248045, 0, 1669, 388.85, 1416.41, 769.59, 27980), -- Spell: Teleport Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(241647, 0, 1669, 1351.49, 1862.95, 548.24, 27980), -- Spell: Summon Beacon Efffect: 171 (SPELL_EFFECT_171)
|
||||
(250546, 1, 1669, 628.28, 1448, 620.52, 27980), -- Spell: Darkfall Ridge Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(241454, 0, 1669, 459.02, 1450.02, 757.57, 27980), -- Spell: To Argus! Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(250455, 0, 1750, -3961.16, -11977.3, 158.64, 27980), -- Spell: Boarding Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(243270, 1, 1750, -4235.34, -11335.4, 8.85, 27980), -- Spell: Teleport: Azuremyst Isle Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(239337, 0, 1220, -860.92, 4544.25, 728.31, 27980), -- Spell: Teleporting Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(238571, 0, 1733, -9516.74, 1954.86, -55.72, 27980), -- Spell: Azeroth's Warning Scenario Launch Efffect: 227 (SPELL_EFFECT_TELEPORT_TO_LFG_DUNGEON)
|
||||
(235132, 0, 1220, -473.71, 7792.56, 115.6, 27980), -- Spell: Teleport: Faronaar Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(234679, 0, 1220, -851.9, 4622.84, 749.37, 27980), -- Spell: Acquire the Gift Efffect: 43 (SPELL_EFFECT_TELEPORT_UNITS_FACE_CASTER)
|
||||
(229754, 0, 1220, -854.45, 4596.88, 748.82, 27980), -- Spell: Teleport: Violet Citadel Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(239219, 0, 1220, -1734.96, 3073.44, 18.76, 27980), -- Spell: Teleport Out of Super Secret Cave Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(220463, 0, 1220, 3954.06, 5467.33, 629.92, 27980), -- Spell: Mage-Ring Network Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(229432, 0, 1220, 871.91, 3637.16, 98.1, 27980), -- Spell: Teleport: Astravar Harbor Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(232241, 0, 1220, 1776.73, 4637.35, 124, 27980), -- Spell: Teleport: Hub Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(229548, 1, 1220, 476.29, 3745.05, 1.23, 27980), -- Spell: Teleport to Lighthouse Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(229061, 0, 1220, 154.64, 5276.77, 1.2, 27980), -- Spell: Boat Ride Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(229157, 0, 1220, 686.79, 3735.8, 2.85, 27980), -- Spell: Shackled Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(228951, 0, 1220, 220.7, 3822.05, 0.36, 27980), -- Spell: Summon Nightborne Gondola Efffect: 28 (SPELL_EFFECT_SUMMON)
|
||||
(230903, 0, 1220, 400.64, 3955.46, 1.39, 27980), -- Spell: Summon Guard Efffect: 28 (SPELL_EFFECT_SUMMON)
|
||||
(229237, 2, 1662, 949.07, 4166.23, 1.42, 27980), -- Spell: Teleport: Sanctum of Order Efffect: 227 (SPELL_EFFECT_TELEPORT_TO_LFG_DUNGEON)
|
||||
(226060, 0, 1220, 1022.01, 3848.6, 7.83, 27980), -- Spell: Safety Exit Teleport Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(213233, 0, 1571, 1067.74, 3291.17, 23.59, 27980), -- Spell: Uninvited Guest Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(208702, 0, 1571, 961.92, 3464.99, 2.23, 27980), -- Spell: Exit Boat Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
(208631, 0, 1571, 940.44, 3841.49, 0, 27980), -- Spell: Summon Boat Efffect: 28 (SPELL_EFFECT_SUMMON)
|
||||
(224873, 0, 1220, -828.72, 4371.78, 738.64, 27980); -- Spell: Portal: Dalaran - Broken Isles Efffect: 252 (SPELL_EFFECT_TELEPORT_UNITS)
|
||||
|
||||
UPDATE `spell_target_position` SET `PositionX`=2933.14, `PositionY`=871.86, `PositionZ`=515.35, `VerifiedBuild`=27980 WHERE (`ID`=191558 AND `EffectIndex`=0);
|
||||
@@ -0,0 +1,70 @@
|
||||
DELETE FROM `page_text` WHERE `ID` IN (7303 /*7303*/, 5477 /*5477*/, 5471 /*5471*/, 5470 /*5470*/, 5469 /*5469*/, 5468 /*5468*/, 5467 /*5467*/, 5466 /*5466*/, 5465 /*5465*/, 5464 /*5464*/, 5463 /*5463*/, 5462 /*5462*/, 5461 /*5461*/, 5460 /*5460*/, 5459 /*5459*/, 5458 /*5458*/, 5457 /*5457*/, 5456 /*5456*/, 5455 /*5455*/, 5454 /*5454*/, 5453 /*5453*/, 5452 /*5452*/, 5451 /*5451*/, 5450 /*5450*/, 5449 /*5449*/, 5448 /*5448*/, 5447 /*5447*/, 5446 /*5446*/, 5445 /*5445*/, 5444 /*5444*/, 5443 /*5443*/, 5442 /*5442*/, 5441 /*5441*/, 5440 /*5440*/, 5439 /*5439*/, 5438 /*5438*/, 5437 /*5437*/, 5436 /*5436*/, 5435 /*5435*/, 5434 /*5434*/, 5352 /*5352*/, 5351 /*5351*/, 5350 /*5350*/, 5349 /*5349*/, 5348 /*5348*/, 5347 /*5347*/, 5346 /*5346*/, 5345 /*5345*/, 5344 /*5344*/, 5343 /*5343*/, 5342 /*5342*/, 5341 /*5341*/, 5334 /*5334*/, 5332 /*5332*/, 5333 /*5333*/, 5335 /*5335*/, 6896 /*6896*/, 6992 /*6992*/, 6988 /*6988*/, 6993 /*6993*/, 6989 /*6989*/, 6994 /*6994*/, 6990 /*6990*/, 6865 /*6865*/, 7068 /*7068*/, 6861 /*6861*/);
|
||||
INSERT INTO `page_text` (`ID`, `Text`, `NextPageID`, `PlayerConditionID`, `Flags`, `VerifiedBuild`) VALUES
|
||||
(7303, '\"The Triad\"\n\nAugari are we and this is our task.\n\nOur hands bear the answers if only you ask.\n\nTwo together can open the way.\n\nThree at one time will keep you at bay.', 0, 0, 0, 27980), -- 7303
|
||||
(5477, '<HTML><BODY>\n<H2 align=\"center\">Note from the Author</H2>\n<HR/>\n<P>\nResearch efforts press on! There\'s more information to be uncovered in these texts. The only thing that can hold me back is time!\n<BR/><BR/>\nCome back after further research has been completed and I will continue to expand this tome.\n</P>\n<BR/>\n<P align=\"right\">\n- Head Researcher Edirah\n</P>\n</BODY></HTML>', 0, 42730, 0, 27843), -- 5477
|
||||
(5471, 'When the magi began their casting, they inadvertently opened a path between Azeroth and the realm of demons, the Twisting Nether. Arrexis and all of his followers were ripped through the gateway and were never seen again. One account states that within the Twisting Nether, a handful of demons fell upon the shocked magi and slaughtered them to the last.\n<BR/><BR/>\nThe demons were led by an eredar known as Balaadur. He took Ebonchill as a trophy of his bloody victory, and the ancient tradition of passing the greatstaff from master to apprentice died alongside Arrexis and his doomed protege.\n</P>\n</BODY></HTML>', 5477, 42745, 0, 27843), -- 5471
|
||||
(5470, '<HTML><BODY>\n<H2 align=\"center\">Ebonchill, Part Eleven</H2>\n<HR/>\n<P>\nNo one knows for sure what Medivh did during his visit with Arrexis. The details are shrouded in mystery and hearsay. Some rumors claim that the Guardian altered Ebonchill so that it would disrupt Arrexis\'s warding spells and destroy the venerated mage. \n<BR/><BR/>\nWhatever the truth, it is known that Arrexis heeded Medivh\'s advice. The elderly mage and his followers conducted a great ritual to protect an area from demonic incursions. The spell was only meant to be a test, but it had disastrous consequences.\n<BR/><BR/>', 5471, 42745, 1, 27843), -- 5470
|
||||
(5469, '<HTML><BODY>\n<H2 align=\"center\">Ebonchill, Part Ten</H2>\n<HR/>\n<P>\nIn pursuit of his studies, Arrexis gathered his apprentice magi and established a research camp near Medivh\'s domain, the tower of Karazhan. The structure was built atop a nexus of potent ley lines. The energies that coursed through Karazhan sometimes warped reality in the region.\n<BR/><BR/>\nArrexis and his followers experimented with their warding magics outside Karazhan, attempting to neutralize the tower\'s strange powers. The records indicate that Guardian Medivh visited the magi at this time and offered his advice. He suggested that Arrexis could apply his warding spellwork in new ways, specifically to prevent demons from clawing into the world.\n<BR/><BR/>\nThough some members of the Council of Tirisfal distrusted him, Arrexis did not. He welcomed Medivh\'s support. \n<BR/><BR/>\nArrexis\'s trusting nature would be his downfall.\n</P>\n</BODY></HTML>', 5470, 42746, 0, 27843), -- 5469
|
||||
(5468, '<HTML><BODY>\n<H2 align=\"center\">Ebonchill, Part Nine</H2>\n<HR/>\n<P>\nArrexis lived in a time of upheaval and turmoil for the Council of Tirisfal. The current Guardian was named Medivh, and he was the son of Aegwynn. Like his rebellious mother, he shunned the council and largely kept to himself. \n<BR/><BR/>\nUnbeknownst to the council and the rest of the world, a great evil stirred in Medivh\'s soul. Sargeras, leader of the Burning Legion, had possessed the Guardian.\n<BR/><BR/>\nDue to Sargeras\'s manipulation, Medivh forged a pact with the orcish Horde and began paving the way for its invasion of Azeroth. To prevent the Council of Tirisfal from meddling in his affairs, the darkened Guardian secretly assassinated some of its members.\n<BR/><BR/>\nMedivh\'s gaze soon fell upon Arrexis and Ebonchill.\n</P>\n</BODY></HTML>', 5469, 42747, 0, 27843), -- 5468
|
||||
(5467, 'From his examinations, Arrexis believed that he could employ Ebonchill as a catalyst to power great spells--feats of magic that normally only a Guardian would be capable of. Over time, he harnessed the weapon\'s energies and used them to research new types of warding spells.\n</P>\n</BODY></HTML>', 5468, 42748, 0, 27843), -- 5467
|
||||
(5466, '<HTML><BODY>\n<H2 align=\"center\">Ebonchill, Part Eight</H2>\n<HR/>\n<P>\nThe Council of Tirisfal magi who recovered Ebonchill returned the greatstaff to its owner. Over the following years, the tradition of handing down the weapon from master to apprentice continued. Many of these magi used Ebonchill to protect Azeroth from demons, but not the human named Arrexis.\n<BR/><BR/>\nArrexis was a lover of knowledge. For days on end, he would lock himself in his personal archives, poring over ancient tomes and scrolls. When Ebonchill passed to him, he decided to study the greatstaff rather than wield it in battle. Arrexis knew well the weapon\'s history and deadly potential. \n<BR/><BR/>', 5467, 42748, 1, 27843), -- 5466
|
||||
(5465, '\"Tarthen bore Ebonchill in battle--the greatstaff reported stolen some months ago. When he unleashed the weapon\'s stored power on Aegwynn, she immediately turned the energies back on him with a counterspell. A storm of frost magic surged over Tarthen, encasing him in a layer of diamond-hard ice.\n<BR/><BR/>\n\"Despite the hot weather in the region, Tarthen was still frozen solid when we found him. It took considerable effort to thaw his corpse and free Ebonchill from his lifeless hand.\"\n</P>\n</BODY></HTML>', 5466, 42749, 0, 27843), -- 5465
|
||||
(5464, '<HTML><BODY>\n<H2 align=\"center\">Ebonchill, Part Seven</H2>\n<HR/>\n<P>\nAn excerpt from a missive sent to the Council of Tirisfal:\n<BR/><BR/>\n\"We have studied the residual magics at the battle site. Here is our assessment of what transpired.\n<BR/><BR/>\n\"Tarthen confronted Aegwynn in Stranglethorn Vale. In terms of the power used by the two magi, the duel that ensued was one of the greatest to have ever occurred between a Tirisgarde and the renegade Guardian. But it was also one of the shortest. \n<BR/><BR/>', 5465, 42749, 1, 27843), -- 5464
|
||||
(5463, '<HTML><BODY>\n<H2 align=\"center\">Ebonchill, Part Six</H2>\n<HR/>\n<P>\nAfter his master passed on Ebonchill to a different apprentice, Tarthen wallowed in anger and bitterness. He believed he had been wronged, and he was determined to prove himself.\n<BR/><BR/>\nTarthen stole Ebonchill from its new owner, taking great care to cover up evidence of his crime. In secret, he practiced with the greatstaff and learned to wield its extraordinary energies. \n<BR/><BR/>\nOnly a handful of Tarthen\'s most trusted Tirisgarde allies knew of his theft. They alone witnessed him bending Ebonchill\'s magics to his will, and they were in awe of the power at his fingertips. \n<BR/><BR/>\nOnce he was confident he had mastered Ebonchill, Tarthen set out to do what no other Tirisgarde had thus far managed--he would defeat Aegwynn and forever etch his name in the histories.\n</P>\n</BODY></HTML>', 5464, 42750, 0, 27843), -- 5463
|
||||
(5462, 'Tarthen fully expected to receive the greatstaff. He eclipsed his fellow apprentices in raw power and potential. But Tarthen\'s master put little weight in such things. \n<BR/><BR/>\nWhen the day of the ceremony came, the elderly mage gave Ebonchill to another apprentice--one who embodied the qualities of compassion, wisdom, and comradery.\n</P>\n</BODY></HTML>', 5463, 42751, 0, 27843), -- 5462
|
||||
(5461, '<HTML><BODY>\n<H2 align=\"center\">Ebonchill, Part Five</H2>\n<HR/>\n<P>\nAll was well with the Council of Tirisfal until the rise of Guardian Aegwynn. The gifted mage grew suspicious of the order. She believed that the council was abusing its power by manipulating the politics of human kingdoms. At the end of her one hundred years of service, she refused to step down as Guardian.\n<BR/><BR/>\nAegwynn\'s disobedience eventually forced the council\'s hand. It formed the Tirisgarde, a group of talented magi charged with hunting down and subduing the wayward Guardian. \n<BR/><BR/>\nAmong the Tirisgarde was a promising but arrogant young spellcaster named Tarthen. His aging master had long ago inherited Ebonchill, and he was in the process of choosing which apprentice would take it up next.\n<BR/><BR/>', 5462, 42751, 1, 27843), -- 5461
|
||||
(5460, 'Alodi decided to pass on Ebonchill to one of these learned apprentices. He did not choose the most powerful. More important to Alodi were compassion, wisdom, and comradery. After much consideration, he entrusted his greatstaff to the apprentice who most embodied these traits.\n<BR/><BR/>\nSo began a tradition of bequeathing Ebonchill that would endure for millennia.\n</P>\n</BODY></HTML>', 5461, 42752, 0, 27843), -- 5460
|
||||
(5459, '<HTML><BODY>\n<H2 align=\"center\">Ebonchill, Part Four</H2>\n<HR/>\n<P>\nDuring Alodi\'s tenure as Guardian, he used Ebonchill to hunt down every demon that stalked the lands of Azeroth. Many records tell of him calling down vicious ice storms to overwhelm his enemies, or encasing the Legion\'s agents in solid blocks of ice before exiling them from the world.\n<BR/><BR/>\nNear the end of Alodi\'s one hundred years of service as Guardian, he turned his attention to his apprentices. He had trained and tutored many young magi in the ways of the arcane. They had become the family that he had never had, and he treated them all as his own sons and daughters.\n<BR/><BR/>', 5460, 42752, 1, 27843), -- 5459
|
||||
(5458, '<HTML><BODY>\n<H2 align=\"center\">Ebonchill, Part Three</H2>\n<HR/>\n<P>\nFrom his early days in the Dalaran orphanage, Alodi had been fascinated with frost magic. This was due in part to the icy enchantments woven into Ebonchill. With the staff, Alodi learned how to freeze water and manipulate air temperature, often to the chagrin of the orphanage headmaster.\n<BR/><BR/>\nShortly after Alodi became Guardian, he honed his mastery of frost magic and imbued Ebonchill with his own powers. A wintry aura enveloped the staff. Much to the astonishment of Alodi\'s companions on the Council of Tirisfal, the weapon never felt cold to the touch. Ebonchill contained only a sliver of Alodi\'s might, but even that was more than most magi could ever hope of wielding.\n</P>\n</BODY></HTML>', 5459, 42753, 0, 27843), -- 5458
|
||||
(5457, '<HTML><BODY>\n<H2 align=\"center\">Ebonchill, Part Two</H2>\n<HR/>\n<P>\nAlodi became Guardian at a dire time for the Council of Tirisfal. This secret order of magi was created to protect Azeroth from demons. For many years, its members succeeded in their quest.\n<BR/><BR/>\nThen a dreadlord named Kathra\'natir changed everything. The demon infiltrated Dalaran and thwarted the council\'s attempts to stop him. Kathra\'natir sowed unrest in the streets, threatening to engulf the city in turmoil.\n<BR/><BR/>\nTo defeat Kathra\'natir, the Council of Tirisfal\'s magi took drastic measures. Through a complex ritual, they infused all of their power into Alodi. It was an act of great trust and faith.\n<BR/><BR/>\nKathra\'natir was no match for the newly empowered Alodi. The Guardian unleashed his astonishing power on the demon and banished him from the world in short order.\n</P>\n</BODY></HTML>', 5458, 42754, 0, 27843), -- 5457
|
||||
(5456, '<HTML><BODY>\n<H2 align=\"center\">Ebonchill, Part One</H2>\n<HR/>\n<P>\nThe tale of Ebonchill begins with a half-elf mage named Alodi. Though he did not create the staff, he made it into the legendary weapon it is today.\n<BR/><BR/>\nAlodi never knew his real parents. From infancy, he was raised in an orphanage for magically gifted children in Dalaran. His only connection to his parents was Ebonchill, which they had left with the boy when they abandoned him at the school.\n<BR/><BR/>\nHis dubious parentage and mixed ancestry made life difficult for Alodi. Most magi pitied him, but others treated him with scorn. No one believed he would rise to greatness. They were mistaken.\n<BR/><BR/>\nIn time, the orphan would become the first Guardian of Tirisfal, one of the most powerful magi to have ever lived.\n</P>\n</BODY></HTML>', 5457, 42733, 0, 27843), -- 5456
|
||||
(5455, '<HTML><BODY>\n<p></p>\n<IMG src=\"Interface\\Pictures\\artifactbook-mage-ebonchill\" align=\"center\"/>\n<IMG src=\"Interface\\Common\\spacer\" align=\"center\" width=\"1\" height=\"120\"/>\n<H3 align=\"center\">Ebonchill</H3>\n<BR/>\n<P>\nThe half-elf Alodi wielded Ebonchill during his long tenure as the first Guardian of Tirisfal. He infused the greatstaff with his extraordinary power, and he began a tradition of passing the weapon down from mage to mage. For thousands of years, this practice continued uninterrupted. Some of Azeroth\'s mightiest spellcasters used Ebonchill to hunt down and vanquish the Burning Legion\'s wicked agents. \n<BR/><BR/>\nWhen the Legion stole Ebonchill, the tradition put in place by Alodi was broken... but only for a time. Now, in your hands, the greatstaff can once again fulfill its purpose to safeguard Azeroth.\n</P>\n</BODY></HTML>', 5456, 42228, 0, 27843), -- 5455
|
||||
(5454, '\"She dwells there now as a reanimated shell of her former self, but I have learned that it is Lyandra who holds the infamous blade of kings, Felo\'melorn. Flamestrike. It has been trusted to remain in her keeping by the Lich King himself, to aid in battle against the Legion. Lyandra was obsessed with the blade while she was among the living, and when she ventured to Icecrown to claim it, that obsession proved to be her downfall. However, Lyandra\'s tragic misstep provides us with an opportunity...\n<BR/><BR/>\n\"An opportunity for the Sunreavers to retake our rightful place... among the Kirin Tor!\"\n</P>\n</BODY></HTML>', 5455, 42738, 0, 27843), -- 5454
|
||||
(5453, '<HTML><BODY>\n<H2 align=\"center\">Felo\'melorn, Part Eleven</H2>\n<HR/>\n<P>\nExcerpt from a speech given by Aethas Sunreaver:\n<BR/><BR/>\n\"My brothers, in the time since the Sunreavers\' expulsion from the Kirin Tor, we have endeavored to secure readmission. I tell you now that the key to our salvation exists... it exists within the frozen black halls of Icecrown Citadel, in the possession of a fallen elf--Lyandra Sunstrider.\n<BR/><BR/>', 5454, 42738, 1, 27843), -- 5453
|
||||
(5452, '<HTML><BODY>\n<H2 align=\"center\">Felo\'melorn, Part Ten</H2>\n<HR/>\n<P>\nLast journal entry of Lyandra Sunstrider, distant relative of King Anasterian:\n<BR/><BR/>\n\"Icecrown Citadel, I curse your name.\n<BR/><BR/>\n\"Along empty halls I made my way, through a twisting labyrinth of black saronite, until I beheld a warm, red glow pouring from a room at the end of a dismal passage. \n<BR/><BR/>\n\"I entered and saw... Felo\'melorn. Flamestrike, mounted upon a dais. At last, the sword that would solidify my claim to the Sunstrider throne! I approached, awestruck, reached out...\n<BR/><BR/>\n\"And the door slammed shut behind me. The prize I had so long sought was at last within my grasp...\n<BR/><BR/>\n\"But now... I am trapped. Surely death awaits me. Or perhaps... something worse.\"\n</P>\n</BODY></HTML>', 5453, 42739, 0, 27843), -- 5452
|
||||
(5451, '<HTML><BODY>\n<H2 align=\"center\">Felo\'melorn, Part Nine</H2>\n<HR/>\n<P>\nFrom the journal of Lyandra Sunstrider, distant relative of King Anasterian:\n<BR/><BR/>\n\"Today, at last, my efforts to uncover the location of my birthright have borne fruit.\n<BR/><BR/>\n\"It is now made known to me that the sword of my ancestors, Felo\'melorn, Flamestrike, resides within the Lich King\'s stronghold of Icecrown Citadel. \n<BR/><BR/>\n\"It was there that the blade was taken to after leaving the possession of the traitor Kael\'thas Sunstrider. \n<BR/><BR/>\n\"At last, I shall validate my claim to the Sunstrider throne. I shall seek out Flamestrike, and I shall realize my destiny.\"\n</P>\n</BODY></HTML>', 5452, 42740, 0, 27843), -- 5451
|
||||
(5450, '\"\'Broken swords are weak where they are mended, elf,\' the despicable former prince said.\n<BR/><BR/>\n\"\'Human swords, perhaps,\' I replied. And I knew... that day I knew this one thing at least: I might not win, but Felo\'melorn would not be broken again. \n<BR/><BR/>\n\"Filled with renewed purpose, I attacked.\" \n</P>\n</BODY></HTML>', 5451, 42741, 0, 27843), -- 5450
|
||||
(5449, '<HTML><BODY>\n<H2 align=\"center\">Felo\'melorn, Part Eight</H2>\n<HR/>\n<P>\nAn account of Kael\'thas Sunstrider\'s battle with the death knight Arthas, from the personal writings of Kael\'thas:\n<BR/><BR/>\n\"The death knight charged, his blade, Frostmourne, arcing down. I blocked with my staff, but it was no use; the stave shattered. It was then that I revealed my surprise...\n<BR/><BR/>\n\"Felo\'melorn. Flamestrike, mended, made whole once again. It burned with righteous fury as our two swords clashed. Each of us held steady, blades pressed tight. I smiled and asked Arthas if he remembered Felo\'melorn.\n<BR/><BR/>\n\"He snidely replied that he saw it snap beneath Frostmourne in the instant before he slew my father. When he shoved me back, I told him that I had found the blade, had it reforged...\n<BR/><BR/>', 5450, 42741, 1, 27843), -- 5449
|
||||
(5448, '<HTML><BODY>\n<H2 align=\"center\">Felo\'melorn, Part Seven</H2>\n<HR/>\n<P>\nIn time, Prince Kael\'thas Sunstrider realized his dream of rejoining the broken pieces of Felo\'melorn.\n<BR/><BR/>\nIt is said that the sword was reforged with \"magic, and hatred, and a burning need for revenge.\"\n<BR/><BR/>\nThere are some who speculate that the sword was taken to a descendant of Luminarian, the magesmith who originally created the weapon on his legendary arcane forge before the War of the Ancients. This assertion has never been independently verified.\n</P>\n</BODY></HTML>', 5449, 42735, 0, 27843), -- 5448
|
||||
(5447, '<HTML><BODY>\n<H2 align=\"center\">Felo\'melorn, Part Six</H2>\n<HR/>\n<P>\nIn the time following the devastating Scourge attack on Quel\'Thalas, Prince Kael\'thas renamed the high elf survivors the sin\'dorei, or blood elves. While the prince and a band of blood elves assisted the human troops of Grand Marshal Garithos against the remaining undead forces, it was rumored that Kael\'thas kept the pieces of his father\'s sword, Felo\'melorn, on a sideboard in his dilapidated quarters. \n<BR/><BR/>\nKael\'thas dreamed of making Flamestrike\'s blade whole again so that it might serve once more as a symbol of hope, to show his people that even in the face of overwhelming hardship, the blood elves would not be broken.\n</P>\n</BODY></HTML>', 5448, 42743, 0, 27843), -- 5447
|
||||
(5446, '<HTML><BODY>\n<H2 align=\"center\">Felo\'melorn, Part Five</H2>\n<HR/>\n<P>\nExcerpt from the journal of Lor\'themar Theron, concerning Prince Kael\'thas\'s return in the immediate wake of Quel\'Thalas\'s destruction:\n<BR/><BR/>\n\"Our fallen king, Anasterian, lay upon a table in the tavern hall; his broken blade, Felo\'melorn, rested upon his chest, the two pieces joined. I told our prince that the weapon had been shattered in the battle with the death knight Arthas.\n<BR/><BR/>\n\"Kael\'thas walked to his father\'s body and ran his finger over the fracture, remarking that he did not believe it possible for Flamestrike\'s blade to be sundered. \n<BR/><BR/>\n\"I was left wondering what legacy, if any, awaited our people and the legendary blade that now symbolized not strength or dominance, but fallibility.\"\n</P>\n</BODY></HTML>', 5447, 42737, 0, 27843), -- 5446
|
||||
(5445, '\"The force of their meeting cleaved Felo\'melorn, Flamestrike, in half. Arthas\'s swing continued, severing the right leg of our aged, beloved king. Even as Anasterian dropped to his remaining knee, he struck out, burying his broken blade in the death knight\'s thigh. Arthas whirled Frostmourne up, over, and down, thrusting it to the hilt behind Anasterian\'s collarbone and deep into his chest.\n<BR/><BR/>\n\"The death knight yanked his blade free; Anasterian pitched forward onto the ice. \n<BR/><BR/>\n\"The great king of the high elves was dead. And for many of us that day, our hopes and our hearts died with him.\"\n</P>\n</BODY></HTML>', 5446, 42736, 0, 27843), -- 5445
|
||||
(5444, '<HTML><BODY>\n<H2 align=\"center\">Felo\'melorn, Part Four</H2>\n<HR/>\n<P>\nAn account of the battle between the death knight Arthas and Anasterian Sunstrider during the attack on Quel\'Thalas, from the personal writings of the former priestess Liadrin:\n<BR/><BR/>\n\"All fighting came to a halt. Silence fell over the battlefield. I watched from a distance, helpless as the former prince Arthas cast a spell freezing Anasterian in a coat of ice. The king cast a counterspell, freeing himself as the death knight advanced. Felo\'melorn and Frostmourne met, the strident clash of their impact rolling out over the ice and across the blood-drenched tiles.\n<BR/><BR/>', 5445, 42736, 1, 27843), -- 5444
|
||||
(5443, '<HTML><BODY>\n<H2 align=\"center\">Felo\'melorn, Part Three</H2>\n<HR/>\n<P>\nIn the hands of Anasterian Sunstrider, great-grandson of the high elf king Dath\'Remar, Felo\'melorn became a legendary troll-killer. \n<BR/><BR/>\nAmong the trolls, whispers spread of a spellbound blade, empowered by arcane magic not only to slay the most formidable and cunning of its enemies, but also to cut through superior numbers and irrigate battlefields with their blood. \n<BR/><BR/>\nTroll witch doctors set about casting hexes and curses against the infamous weapon, but history bears out that even the darkest voodoo did little to negate the effectiveness of Felo\'melorn during the Troll Wars.\n</P>\n</BODY></HTML>', 5444, 42742, 0, 27843), -- 5443
|
||||
(5442, '<HTML><BODY>\n<H2 align=\"center\">Felo\'melorn, Part Two</H2>\n<HR/>\n<P>\nFrom the personal writings of Serena Everwind, night elf priestess during the War of the Ancients:\n<BR/><BR/>\n\"Dath\'Remar wielded Felo\'melorn, Flamestrike, like an elf possessed. He was an unstoppable force, at once majestic and graceful yet savage and deadly. The runes of the blade seemed to pulse in rhythm with the pounding of Dath\'Remar\'s fierce heart as he separated limb from body and head from shoulders. \n<BR/><BR/>\n\"When the fighting was done, Dath\'Remar stood painted in demon blood. As night fell, we knew that more battles remained, and yet, with this elf and this blade among us, we held out hope that victory did not lie beyond our grasp.\"\n</P>\n</BODY></HTML>', 5443, 42744, 0, 27843), -- 5442
|
||||
(5441, '<HTML><BODY>\n<H2 align=\"center\">Felo\'melorn, Part One</H2>\n<HR/>\n<P>\nThough it is not known for certain, rumors that have passed down through generations suggest that a young Dath\'Remar Sunstrider, who would one day become king of the high elves, dreamed of the weapon Felo\'melorn. In that dream, the arcane blade burned like the sun and dispatched so many enemies that it created a swift-flowing river of blood. \n<BR/><BR/>\nDath\'Remar would later recount the specifics of the blade\'s appearance to the renowned magesmith Luminarian as he crafted the weapon on his arcane forge.\n</P>\n</BODY></HTML>', 5442, 42732, 0, 27843), -- 5441
|
||||
(5440, '<HTML><BODY>\n<p></p>\n<IMG src=\"Interface\\Pictures\\artifactbook-mage-felomelorn\" align=\"center\"/>\n<IMG src=\"Interface\\Common\\spacer\" align=\"center\" width=\"1\" height=\"130\"/>\n<H3 align=\"center\">Felo\'melorn</H3>\n<BR/>\n<P>\nFelo\'melorn. Flamestrike. Sword of kings. Bane of trolls. Its legend stretches back through the millennia. It stands as a symbol of hope, loss, and power-of destruction and renewal.\n<BR/><BR/>\nThose who have wielded Felo\'melorn have forever etched their names into history. Will you do the same?\n</P>\n</BODY></HTML>', 5441, 42227, 0, 27843), -- 5440
|
||||
(5439, '\"Medivh was later vanquished, but that brought Aegwynn little solace. She was tormented by what had become of her son-by the darkness that she had unwittingly passed to him. For a time, Aegwynn retreated from society, and she entrusted Aluneth to the Kirin Tor of Dalaran.\n<BR/><BR/>\n\"To prevent anyone from abusing Aluneth\'s power, the Kirin Tor locked the greatstaff away. For years, it would remain in an enchanted vault, under the watchful eyes of blue dragons.\"\n</P>\n</BODY></HTML>', 5440, 42225, 0, 27843), -- 5439
|
||||
(5438, '<HTML><BODY>\n<H2 align=\"center\">Aluneth, Part Eleven</H2>\n<HR/>\n<P>\nAn excerpt from The Fate of Aegwynn, by the historian Llore:\n<BR/><BR/>\n\"When Aegwynn learned of Medivh\'s actions, she confronted him. Mother and child unleashed the full fury of their magics upon each other in a battle that would decide Azeroth\'s future. \n<BR/><BR/>\n\"Even with Aluneth at her command, Aegwynn could not best Medivh. She only narrowly survived her encounter with the corrupted Guardian.\n<BR/><BR/>', 5439, 42225, 1, 27843), -- 5438
|
||||
(5437, '<HTML><BODY>\n<H2 align=\"center\">Aluneth, Part Ten</H2>\n<HR/>\n<P>\nFor centuries, Aegwynn strengthened her control over Aluneth. She dispatched the Legion\'s demons with ease and secured Azeroth\'s safety for generations. \n<BR/><BR/>\nAegwynn eventually gave birth to a boy named Medivh, who would become the next Guardian. In time, Aegwynn planned to bequeath Aluneth to her son, but that day would never come.\n<BR/><BR/>\nThe spirit of Sargeras had passed from Aegwynn to Medivh. Over many long years, the demon lord twisted the new Guardian\'s thoughts. Sargeras used Medivh to help the mighty orcish Horde invade Azeroth and bring war to the world.\n</P>\n</BODY></HTML>', 5438, 42224, 0, 27843), -- 5437
|
||||
(5436, '<HTML><BODY>\n<H2 align=\"center\">Aluneth, Part Nine</H2>\n<HR/>\n<P>\nThough Aegwynn defeated Sargeras, the battle changed her forever. \n<BR/><BR/>\nUnbeknownst to the Guardian, the Legion\'s ruler had transferred a portion of his spirit into her soul. Aegwynn\'s demeanor darkened. As the years passed, she grew suspicious of the Council of Tirisfal, the order of magi that had imbued her with power and given her the mantle of Guardian. \n<BR/><BR/>\nTo distance herself from the council, Aegwynn used Aluneth to forge a secret refuge. \n<BR/><BR/>\nAtop a nexus of magical ley lines that coursed through Azeroth, the Guardian crafted her spell. She harnessed the full potential of Aluneth\'s energies, and reality warped and shifted around Aegwynn. \n<BR/><BR/>\nLegend has it that a great tower then rose from the earth. It would become known as Karazhan.\n</P>\n</BODY></HTML>', 5437, 42223, 0, 27843), -- 5436
|
||||
(5435, '\"Aegwynn raised Aluneth high and called down a storm of arcane magic to annihilate Sargeras. Nothing happened. The entity bound to Aegwynn\'s weapon resisted her command. As she struggled to assert her will over Aluneth, Sargeras launched a furious assault against the Guardian.\n<BR/><BR/>\n\"Ultimately, Aegwynn put Aluneth aside and opted for a more reliable weapon. She summoned Atiesh, a mighty staff passed from Guardian to Guardian, and renewed her attack against Sargeras.\"\n</P>\n</BODY></HTML>', 5436, 42222, 0, 27843), -- 5435
|
||||
(5434, '<HTML><BODY>\n<H2 align=\"center\">Aluneth, Part Eight</H2>\n<HR/>\n<P>\nAn excerpt from Fire in the North: The Battle between Aegwynn and Sargeras, by the historian Llore:\n<BR/><BR/>\n\"Of all the trials Aegwynn faced, of all the foes she fought, none rivaled Sargeras. In the frozen wastes of Northrend, the Guardian confronted the ruler of the Burning Legion. \n<BR/><BR/>\n\"This was not Sargeras in his true form, only an avatar containing a portion of his strength. Even so, Aegwynn\'s opponent was powerful beyond measure.\n<BR/><BR/>', 5435, 42222, 1, 27843), -- 5434
|
||||
(5352, '<HTML><BODY>\n<H2 align=\"center\">Aluneth, Part Seven</H2>\n<HR/>\n<P>\nGuardian Aegwynn believed she could use Aluneth as a formidable weapon against the Burning Legion. Yet unlike Meitre, she would not simply tap into the entity\'s energies; she would bring the being into Azeroth and bind it to her will.\n<BR/><BR/>\nAegwynn summoned Aluneth with ease, but it would not obey her commands. The fickle creature thrashed against the Guardian\'s containment magics and nullified her spellwork. Aegwynn reveled in the challenge of taming Aluneth. \n<BR/><BR/>\nAfter many setbacks, Aegwynn finally bound the entity to an enchanted greatstaff. The task of containing Aluneth was done, but it would take the Guardian years to truly harness its power.\n</P>\n</BODY></HTML>', 5434, 42221, 0, 27843), -- 5352
|
||||
(5351, '<HTML><BODY>\n<H2 align=\"center\">Aluneth, Part Six</H2>\n<HR/>\n<P>\nAegwynn was the Guardian of Tirisfal, a sorceress imbued with extraordinary power and charged with protecting Azeroth from the Burning Legion.\n<BR/><BR/>\nLike all magi of her era, Aegwynn was familiar with Meitre and his scrolls. During her apprenticeship, she had mastered the ancient elf\'s spells much earlier than the other students.\n<BR/><BR/>\nSomething had always perplexed Aegwynn about Meitre. While studying his writings, she realized that the elf had wielded immense power-more than any regular sorcerer should have been capable of. After Aegwynn inherited the mantle of Guardian, she became obsessed with finding out how.\n<BR/><BR/>\nAegwynn discovered a series of lost scrolls written by Meitre. They described Aluneth in detail, and even included spells the elf had used to tap into the being\'s power.\n</P>\n</BODY></HTML>', 5352, 42220, 0, 27843), -- 5351
|
||||
(5350, '<HTML><BODY>\n<H2 align=\"center\">Aluneth, Part Five</H2>\n<HR/>\n<P>\nNo one knows exactly what became of Meitre, but he left behind a wealth of scrolls that would form the basis of modern magic. His writings included a number of spells that the sorcerer had created himself.\n<BR/><BR/>\nEven thousands of years after the War of the Ancients, high elf and human magi continued learning from Meitre\'s knowledge. The ability to cast spells from his scrolls was seen as an important milestone in a young apprentice\'s education, and a measure of a pupil\'s aptitude.\n<BR/><BR/>\nThough many magi delved into Meitre\'s scrolls, no one knew of Aluneth. The entity that had played such a critical role in the sorcerer\'s life was forgotten... until the time of Guardian Aegwynn.\n</P>\n</BODY></HTML>', 5351, 42219, 0, 27843), -- 5350
|
||||
(5349, '<HTML><BODY>\n<H2 align=\"center\">Aluneth, Part Four</H2>\n<HR/>\n<P>\nFrom chapter sixty-one of Ancient Magic and How to Wield It Without Destroying the World, concerning the aftermath of the War of the Ancients:\n<BR/><BR/>\n\"Following their victory over the Legion, the night elves outlawed the use of arcane magic. They believed that the sorcerous arts were not safe and that wielding them would only lead to another disaster like the War of the Ancients.\n<BR/><BR/>\n\"Meitre could not give up magic. Doing so would mean breaking his connection with Aluneth. The sorcerer quailed at the thought of losing his ability to draw on the entity\'s power. Perhaps he lacked confidence in his own skills. Whatever the case, Meitre retreated from society and became a recluse.\"\n</P>\n</BODY></HTML>', 5350, 42218, 0, 27843), -- 5349
|
||||
(5348, '\"In one battle, he and a group of night elf defenders found themselves surrounded by an overwhelming force of demons. Death was imminent, but Meitre did not abandon hope. He called on Aluneth\'s energies and wove a mass teleportation spell that transported him and his comrades to safety.\n<BR/><BR/>\n\"Let this be a lesson that what makes magi great is not only their ability to destroy but their ability to save lives. True wisdom is knowing the right time to use one instead of the other.\"\n</P>\n</BODY></HTML>', 5349, 42217, 0, 27843), -- 5348
|
||||
(5347, '<HTML><BODY>\n<H2 align=\"center\">Aluneth, Part Three</H2>\n<HR/>\n<P>\nFrom chapter fifty of Ancient Magic and How to Wield It Without Destroying the World, concerning the Burning Legion\'s first invasion of Azeroth:\n<BR/><BR/>\n\"Most Highborne sorcerers sided with the Burning Legion and used their powers to help the demons invade the world. Meitre did not. He joined the night elf resistance and fought to defend the world. It was during these troubling years that Meitre mastered his connection with Aluneth.\n<BR/><BR/>', 5348, 42217, 1, 27843), -- 5347
|
||||
(5346, '\"Meitre lived during the height of the night elf empire, and he was one of his race\'s most gifted sorcerers. As the story goes, he spent years exploring the world in search of knowledge. His extensive travels brought him into contact with an unknown blue dragon, from whom Meitre discovered the existence of the arcane being named Aluneth and the otherworldly plane where it dwelled.\n<BR/><BR/>\n\"The sorcerer never enslaved Aluneth--the being was far too strong and unwieldy for that. Yet Meitre found a way to draw power from the entity, thereby using its energies to enhance his own spells.\"\n</P>\n</BODY></HTML>', 5347, 42216, 0, 27843), -- 5346
|
||||
(5345, '<HTML><BODY>\n<H2 align=\"center\">Aluneth, Part Two</H2>\n<HR/>\n<P>\nFrom chapter forty-three of Ancient Magic and How to Wield It Without Destroying the World:\n<BR/><BR/>\n\"And so we come to the story of the Highborne named Meitre and the source of his power, Aluneth. Few subjects are as hotly debated. Last year alone, five magi were treated for severe burns after their discussion of Meitre escalated into a fiery brawl. Let us put the rumors to rest and focus on the facts.\n<BR/><BR/>', 5346, 42216, 1, 27843), -- 5345
|
||||
(5344, 'Aluneth immediately went on a rampage through the blue dragons\' lair, the Nexus. The arcane presence destroyed countless rare artifacts and tomes of power before finally being contained. The dragons were not angry about what had happened--they were delighted by Aluneth\'s capricious nature.\n<BR/><BR/>\nAfter years of conducting harmless experiments on Aluneth, the blue dragons satisfied their curiosity and sent the entity back to its own realm.\n</P>\n</BODY></HTML>', 5345, 42215, 0, 27843), -- 5344
|
||||
(5343, '<HTML><BODY>\n<H2 align=\"center\">Aluneth, Part One</H2>\n<HR/>\n<P>\nThe wise and mirthful blue dragons were the first creatures on Azeroth to discover Aluneth. While manipulating the fabric of reality, they tapped into another realm of existence and made contact with the strange arcane entity. \n<BR/><BR/>\nThe blue dragons loved unraveling mysteries and delving into the secrets of the universe. They were so intrigued by Aluneth\'s existence that they summoned the entity into the world for further study. \n<BR/><BR/>', 5344, 42215, 1, 27843), -- 5343
|
||||
(5342, '<HTML><BODY>\n<p></p>\n<IMG src=\"Interface\\Pictures\\artifactbook-mage-aluneth\" align=\"center\"/>\n<IMG src=\"Interface\\Common\\spacer\" align=\"center\" width=\"1\" height=\"160\"/>\n<H3 align=\"center\">Aluneth</H3>\n<BR/>\n<P>\nAzeroth is filled with legendary relics and artifacts, but none compare to Aluneth. For hundreds of years, Guardian Aegwynn used this greatstaff to defend Azeroth from the Burning Legion.\n<BR/><BR/>\nYet that alone is not what makes this weapon unique. An entity of pure arcane energy known as Aluneth is bound to the greatstaff. Harnessing this unruly being and its power requires tremendous precision and focus. An ordinary mage could never hope to control Aluneth. \n<BR/><BR/>\nFortunately, you are no ordinary mage.\n</P>\n</BODY></HTML>', 5343, 42214, 0, 27843), -- 5342
|
||||
(5341, '<HTML><BODY>\n<H1 align=\"center\">Archive of the Tirisgarde</H1>\n<IMG src=\"Interface\\Common\\spacer\" align=\"center\" width=\"1\" height=\"27\"/>\n<IMG src=\"Interface\\Pictures\\artifactbook-mage-cover\" align=\"center\" width=\"230\" height=\"230\"/>\n<IMG src=\"Interface\\Common\\spacer\" align=\"center\" width=\"1\" height=\"27\"/>\n<p align=\"center\">Penned by Tirisgarde Researcher Edirah.</p>\n</BODY></HTML>', 5342, 0, 0, 27843), -- 5341
|
||||
(5334, 'Here lies Lilyiana Meadowblade.$b$bHer blade was second to none, and flowed through her foes like a blade of grass dances in the wind.$b$bAnu Dorah. We remember.', 0, 0, 0, 27980), -- 5334
|
||||
(5332, 'Here lie the Truecallers. $b$bBrave Aelynn and noble Banlorus ruled the battlefields and courts alike. They fell as they lived, protecting our people from threats on all sides.$b$bAnu Dorah. We remember.', 0, 0, 0, 27980), -- 5332
|
||||
(5333, 'Here lies Dorendil Wildcaller.$b$bNature and society called to him alike, and he was one of the first to speak with the hippogryphs. His legacy lives on in our eternal kinship with them.$b$bAnu Dorah. We remember.', 0, 0, 0, 27980), -- 5333
|
||||
(5335, 'Here lie the Windstrikers.$b$bMarksmen without peer, their skill with a bow was an inspiration to generations of archers.$b$bTheir family developed the gauntlets the Sentinels wear, carefully articulated mail links that empower our archers to this day.$b$bAnu Dorah. We remember.', 0, 0, 0, 27980), -- 5335
|
||||
(6896, '<A staff used in some kind of demonic ritual. It\'s cracked and charred. It seems the ritual did not go well.>', 0, 0, 0, 27980), -- 6896
|
||||
(6992, '<Among many large, colorful diagrams, you find an entry on one of the runes present in the ritual circle.>\n\nA very common rune used to empower arcane rituals is Talar. \n\nThis versatile rune can be used in most incantations; however it is rendered inert by void and corruption magics.', 0, 0, 0, 27980), -- 6992
|
||||
(6988, '<The book is opened to a page referencing one of the runes drawn on the ground.>\n\nThe Dregla rune is often used in rituals that draw upon large amounts of fel energy, and is required for some kinds of demonic portals. By itself, however, it is incredibly unstable for non-demons, and needs to be balanced by arcane and death magics.\n\nWhen handling a ritual involving Dregla, it is wise to ensure that runes of these two types are present, to prevent catastrophic feedback.', 0, 0, 0, 27980), -- 6988
|
||||
(6993, '<This heavy tome has several bookmarks, one of which describes one of the runes Levia has drawn in her ritual.>\n\nLittle is known about the rune called \"Cyiq,\" other than the vast potential for corruption it holds. \n\nThere is no known constructive use for this rune, and it should be avoided in all rituals.', 0, 0, 0, 27980), -- 6993
|
||||
(6989, '<Levia has marked a page in this book detailing powerful death runes. One of these runes is drawn in the ritual circle.>\n\nThere are various runes used by the scourge to empower their death magic rituals. Of these, one of the most powerful is Taam - the mark of the Lich. \n\nIt is often used in the creation of Aberrations and Bone Golems, but can be employed in many rituals requiring powerful death magics.', 0, 0, 0, 27980), -- 6989
|
||||
(6994, '<Levia marked a particular page in this book, detailing a rune of void magic.>\n\nIgannok is one of the many marks of the Void Gods, and using it is said to beckon their attention to you. While most practitioners would prefer to avoid the gaze of these beings, their attention can be beneficial when a great amount of void magic needs to be called upon. \n\nTherefore, it is wise to only use such marks when the benefits outweigh the potential pitfalls.', 0, 0, 0, 27980), -- 6994
|
||||
(6990, '<This book is opened to a page showing a diagram of one of the runes on the ground.>\n\nThe rune Xiur can be used to augment many shadow rituals. It is a very powerful rune, and when utilized properly can assist in summoning powerful shadow entities. \n\nFor reasons unknown, this rune has adverse reactions with arcane magic, and should not be used in rituals combining the two magic types.', 0, 0, 0, 27980), -- 6990
|
||||
(6865, 'My Lord,\n\nPreparations are nearly complete. As we speak, our bretheren scour the shadow markets of the Underbelly to acquire the final reagents for the ritual.\n\nEverything will be ready for the appointed day.\n\nShadows light the way,\n\nEriah', 0, 0, 0, 27980), -- 6865
|
||||
(7068, '<HTML><BODY>\n<p align=\"center\">\n<BR/><BR/><BR/>\nIn ages to come the Tideskorn break <BR/>\nBy burning foe, in hearts aflame <BR/>\nThe clans sundered, his spear struck deep <BR/>\nThe war within feeds the foe without <BR/>\n<BR/>\nBut from his ashes our hopes arise<BR/>\nOf king and maiden of spear and shield<BR/>\nShadowed from watchers, she seeks no throne<BR/>\nBut rule she must, lest the Tideskorn fall<BR/>\n<BR/>\nAmong the outcasts, she hides from fate<BR/>\nIn Skold-Ashil her destiny waits<BR/>\nBlessed by Eyir, her spear must seek<BR/>\nUnworthy rulers and would-be kings<BR/>\n<BR/>\nBut as she rises, so too she falls<BR/>\nWith heavy heart of God-King\'s blood<BR/>\nWhat once was friend will turn to foe<BR/>\nA final battle with twisted sides<BR/>\n<BR/>\nFrom her fall, a queen will rise<BR/>\nChosen by titans, vrykul and men<BR/>\nTo take the spear to burning foes<BR/>\nAnd retake to tides long scorned.<BR/>\n</p> </BODY></HTML>', 0, 0, 0, 27980), -- 7068
|
||||
(6861, 'The Telemancy Beacon lies in several pieces. A faint buzzing sound emanates from the cracked crystal core.\n\nOculeth\'s voice is audible through the noise, but the words are too indistinct to make out.\n\nWhoever destroyed this beacon intended to cut off all contact with the outside world.', 0, 0, 0, 27980); -- 6861
|
||||
|
||||
UPDATE `page_text` SET `Text`='<HTML>\n<BODY>\n<IMG src=\"Interface\\Pictures\\SteamyRomance12\" width=\"301\" height=\"354\" texCoordRight=\"0.58984375\" texCoordBottom=\"0.69140625\"/>\n</BODY>\n</HTML>', `Flags`=2, `VerifiedBuild`=27980 WHERE `ID`=5175; -- 5175
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,390 @@
|
||||
SET @CGUID:=259325;
|
||||
DELETE FROM `creature` WHERE guid BETWEEN @CGUID+0 AND @CGUID+175;
|
||||
INSERT INTO `creature` (`guid`,`id`,`map`,`zoneId`,`areaId`,`spawnDifficulties`,`PhaseId`,`PhaseGroup`,`modelid`,`equipment_id`,`position_x`,`position_y`,`position_z`,`orientation`,`spawntimesecs`,`spawndist`,`currentwaypoint`,`curhealth`,`curmana`,`MovementType`,`npcflag`,`unit_flags`,`dynamicflags`,`ScriptName`,`VerifiedBuild`) VALUES
|
||||
(@CGUID+0,6491,1,0,0,1,169,0,0,0,-1039.63,-5416.73,13.3721,3.14159,120,0,0,0,0,0,0,0,0,'',23222),
|
||||
(@CGUID+1,6491,1,0,0,1,169,0,0,0,-637.971,-4295.86,40.9093,1.16937,120,0,0,0,0,0,0,0,0,'',23222),
|
||||
(@CGUID+2,6491,1,0,0,1,169,0,0,0,10391.8,826.415,1317.6,4.11898,120,0,0,0,0,0,0,0,0,'',23222),
|
||||
(@CGUID+3,6491,0,0,0,1,169,0,0,0,-6169.81,346.844,400.152,5.27905,120,0,0,0,0,0,0,0,0,'',23222),
|
||||
(@CGUID+4,6491,0,0,0,1,169,0,0,0,-8946.23,-183.477,79.9953,5.88176,120,0,0,0,0,0,0,0,0,'',23222),
|
||||
(@CGUID+5,6491,0,51,1446,1,169,0,0,0,-6439,-1115,312.16,3.172,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+6,6491,0,11,11,1,169,0,0,0,-3299,-2430,18.597,5.693,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+7,6491,0,45,45,1,169,0,0,0,-1468,-2625,48.363,4.617,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+8,6491,0,267,271,1,169,0,0,0,-721,-592,25.011,3.121,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+9,6491,0,130,228,1,169,0,0,0,476.229,1595.9,126.662,5.942,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+10,6491,0,28,3197,1,169,0,0,0,902.236,-1517,55.037,4.744,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+11,6491,0,28,2298,1,169,0,0,0,1238.37,-2414,60.739,2.359,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+12,6491,0,139,2268,1,169,0,0,0,2115.64,-5299,82.163,1.075,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+13,6491,0,85,173,1,169,0,0,0,2603.09,-535,89,5.596,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+14,6491,0,130,130,1,169,0,0,0,-385.302,1110.64,85.3631,1.345,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+15,6491,0,267,281,1,169,0,0,0,797.762,-426.993,135.484,2.26174,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+16,6491,0,28,28,1,169,0,0,0,1849.51,-2142.72,68.1751,3.99197,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+17,6491,0,40,920,1,169,0,0,0,-11219.1,1703.79,39.0478,1.62455,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+18,6491,0,40,2,1,169,0,0,0,-9972.36,1757.37,37.495,3.3328,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+19,6491,0,8,1780,1,169,0,0,0,-10350.1,-2574.27,23.8792,5.14836,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+20,6491,0,46,5653,1,169,0,0,0,-7916.41,-1354.48,134.08,3.19768,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+21,6491,0,46,5677,1,169,0,0,0,-7986.89,-2355.5,124.949,4.57919,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+22,6491,0,44,70,1,169,0,0,0,-9475.93,-3009.16,134.516,0.205501,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+23,6491,0,11,1017,1,169,0,0,0,-3347.18,-3414.44,64.4871,5.0871,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+24,6491,0,3,1879,1,169,0,5233,0,-6980.48,-2328.89,241.928,4.72984,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+25,6491,0,4,1437,1,169,0,5233,0,-10836,-2952.57,13.9408,3.05433,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+26,6491,0,47,356,1,169,0,5233,0,575.198,-3826.77,120.303,0.0174533,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+27,6491,0,5146,5144,1,169,0,5233,0,-6801.01,4552,-604.799,1.55334,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+28,6491,0,4,5044,1,169,0,0,0,-12650.8,-2749.29,1.40498,4.75072,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+29,6491,0,6454,5692,1,169,0,0,0,1753.08,1585.8,112.278,1.52353,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+30,6491,0,40,20,1,169,0,0,0,-10985.9,1625.19,45.4717,5.1675,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+31,6491,0,40,6510,1,169,0,0,0,-11224.9,1615.64,32.6436,4.64323,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+32,6491,0,10,10,1,169,0,0,0,-10837.5,-486.576,42.8429,1.76123,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+33,6491,0,10,492,1,169,0,0,0,-10581.4,294.679,30.7886,3.11682,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+34,6491,0,10,42,1,169,0,0,0,-10780.8,-1195.55,35.7693,0.632591,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+35,6491,0,44,44,1,169,0,0,0,-9392.39,-2019.38,58.4465,4.27841,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+36,6491,0,5339,33,1,169,0,0,0,-11551.4,-227.303,28.2452,5.52171,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+37,6491,0,33,301,1,169,0,0,0,-11993.1,430.405,2.06373,3.50951,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+38,6491,0,5339,33,1,169,0,0,0,-12544.4,-585.417,39.9823,3.61003,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+39,6491,0,5287,1741,1,169,0,0,0,-13315.4,156.13,17.3477,3.42468,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+40,6491,0,4,5044,1,169,0,0,0,-12186.6,-2565.22,3.99378,5.56243,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+41,6491,0,4,72,1,169,0,0,0,-11812.2,-2954.8,7.53578,4.64272,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+42,6491,0,4,4,1,169,0,0,0,-12188.7,-3279.94,58.2791,3.38058,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+43,6491,0,41,2563,1,169,0,0,0,-11110.4,-1833.24,71.8642,3.04726,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+44,6491,0,3,3,1,169,0,0,0,-6288.81,-3495.4,251.759,1.85896,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+45,6491,0,8,8,1,169,0,0,0,-9955.71,-3917.06,23.3458,1.49706,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+46,6491,0,8,8,1,169,0,0,0,-10637.4,-4010.93,24.0957,4.64965,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+47,6491,0,8,75,1,169,0,0,0,-10567.8,-3377.2,22.2532,0.463718,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+48,6491,0,38,38,1,169,0,0,0,-5329.98,-3779.33,310.214,3.27938,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+49,6491,0,1,1,1,169,0,0,0,-5475.18,-1845.84,399.786,4.16374,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+50,6491,0,1,809,1,169,0,0,0,-5165.52,-874.664,507.177,0.888639,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+51,6491,0,1,5495,1,169,0,0,0,-5119.52,896.673,283.769,5.45257,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+52,6491,0,11,298,1,169,0,0,0,-3351.19,-845.896,1.05955,4.81562,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+53,6491,0,11,1024,1,169,0,0,0,-2953.31,-1753.63,9.57529,4.87664,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+54,6491,0,11,11,1,169,0,0,0,-3948.03,-2877.8,12.9097,2.55814,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+55,6491,0,4922,5470,1,169,0,0,0,-4147.41,-4774.48,119.263,5.68791,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+56,6491,0,4922,5425,1,169,0,0,0,-4669.46,-6367.3,12.4303,3.87527,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+57,6491,0,4922,5136,1,169,0,0,0,-3902.52,-6225.56,26.824,5.42094,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+58,6491,0,4922,5682,1,169,0,0,0,-2783.43,-5748.71,342.392,2.90136,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+59,6491,0,4922,5155,1,169,0,0,0,-3058.89,-4097.95,266.496,2.63275,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+60,6491,0,45,45,1,169,0,0,0,-1315.55,-3184.51,37.3032,5.66597,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+61,6491,0,45,1858,1,169,0,0,0,-1346.91,-2046.51,71.2412,5.96285,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+62,6491,0,267,272,1,169,0,0,0,-14.5479,-992.412,55.9217,1.41542,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+63,6491,0,267,286,1,169,0,0,0,-561.995,122.37,54.1326,2.72939,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+64,6491,0,85,152,1,169,0,0,0,1766.7,-671.916,43.7461,3.6852,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+65,6491,0,85,5511,1,169,0,0,0,2841.17,-688.047,139.329,5.17475,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+66,6491,0,47,348,1,169,0,0,0,333.738,-2228.58,137.088,3.17986,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+67,6491,0,47,307,1,169,0,0,0,-187.111,-4346.77,113.289,2.22323,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+68,6491,0,139,139,1,169,0,0,0,1986.98,-3651.75,120.201,3.85135,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+69,6491,0,139,2624,1,169,0,0,0,2646.16,-4012.36,106.589,5.68329,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+70,6491,0,4922,4922,1,169,0,5233,0,-2722.66,-5946.18,87.5041,2.42601,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+71,6491,0,4922,5471,1,169,0,5233,0,-4800.34,-4871.17,192.193,0.244346,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+72,6491,0,4922,5595,1,169,0,0,0,-5105.44,-5865.43,12.639,0.552859,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+73,6491,0,4815,5054,1,169,0,0,0,-4995.9,3439.52,-127.078,2.21484,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+74,6491,0,4815,5051,1,169,0,0,0,-4626.94,3801.86,-120.077,3.99377,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+75,6491,0,5144,4961,1,169,0,0,0,-6114.93,4125.81,-508.381,4.41785,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+76,6491,0,5144,4966,1,169,0,0,0,-7241.32,4253.21,-272.205,1.49303,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+77,6491,0,5145,5101,1,169,0,0,0,-5838.65,6804.5,-1015.34,3.80764,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+78,6491,0,5145,4977,1,169,0,0,0,-6812.62,6114.48,-616.066,2.37583,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+79,6491,1,405,2405,1,169,0,0,127,-448.251,2521.06,93.8688,4.49798,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+80,6491,1,400,5025,1,169,0,0,0,-5530,-3455,-44,4.603,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+81,6491,1,400,485,1,169,0,0,0,-4642,-1778,-41,2.489,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+82,6491,1,357,2577,1,169,0,0,0,-4593,1631.68,93.968,6.225,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+83,6491,1,357,357,1,169,0,0,0,-4429,370.415,51.727,3.401,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+84,6491,1,15,513,1,169,0,0,0,-3518,-4315,6.77,3.035,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+85,6491,1,4709,4850,1,169,0,0,0,-2506,-1968,91.784,2.796,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+86,6491,1,405,596,1,169,0,0,0,-1434,1967.04,86.041,1.71,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+87,6491,1,17,392,1,169,0,0,0,-1073,-3479,63.044,3.446,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+88,6491,1,14,362,1,169,0,0,0,240.765,-4791,10.256,3.43,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+89,6491,1,331,2457,1,169,0,0,0,2428.47,-2953,123.513,0.062,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+90,6491,1,361,2478,1,169,0,0,0,3796.96,-1622,219.894,1.45,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+91,6491,1,148,2077,1,169,0,0,0,4299.27,89.079,42.752,2.397,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+92,6491,1,1657,1657,1,169,0,0,0,10046.6,2121.75,1329.66,5.95255,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+93,6491,1,15,510,1,169,0,0,0,-4549.15,-3596,42.1531,3.71827,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+94,6491,1,440,440,1,169,0,0,0,-8590.87,-3624.07,13.4864,4.4428,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+95,6491,1,4709,4857,1,169,0,0,0,-3963.49,-2005.43,96.0853,3.87339,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+96,6491,1,490,541,1,169,0,0,0,-6152.27,-1142.74,-215.213,3.03224,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+97,6491,1,405,602,1,169,0,0,0,-1970.42,1729.73,63.3163,4.82568,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+98,6491,1,17,17,1,169,0,0,0,278.778,-3316.76,56.5699,3.31044,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+99,6491,1,357,1119,1,169,0,0,0,-3330.89,2281.76,28.6932,4.65183,60,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+100,6491,1,16,4745,1,169,0,5233,0,2593.7,-4772.5,152.317,2.75762,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+101,6491,1,16,4824,1,169,0,5233,0,3364.35,-4426.29,282.186,1.20428,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+102,6491,1,16,16,1,169,0,5233,0,4716.13,-5951.36,105.019,5.37561,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+103,6491,1,405,405,1,169,0,5233,0,-476.696,1225.33,96.1978,3.92699,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+104,6491,1,15,4049,1,169,0,5233,0,-4031.7,-3417.05,39.723,1.5708,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+105,6491,1,357,1113,1,169,0,5233,0,-3321.35,1845.88,60.2404,2.33874,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+106,6491,1,357,5072,1,169,0,5233,0,-4478.87,2141.42,7.63586,2.86234,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+107,6491,1,17,17,1,169,0,5233,0,802.553,-2540.7,91.75,3.21141,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+108,6491,1,4709,4709,1,169,0,5233,0,-1172.05,-1713.22,91.7477,5.68977,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+109,6491,1,4709,4709,1,169,0,5233,0,-3331.61,-2231.73,91.7834,2.60054,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+110,6491,1,406,1076,1,169,0,5233,0,778.646,384.097,71.6102,3.22886,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+111,6491,1,406,464,1,169,0,5233,0,1694.36,1051.07,149.814,5.044,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+112,6491,1,406,406,1,169,0,5233,0,1019.44,1620.33,25.9867,4.79965,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+113,6491,1,141,702,1,169,0,5233,0,8304.64,950.09,14.0221,2.07694,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+114,6491,1,141,141,1,169,0,5233,0,8691.74,949.535,2.23055,5.67232,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+115,6491,1,16,16,1,169,0,0,0,4023.6,-5443.89,115.798,0.348319,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+116,6491,1,440,978,1,169,0,0,0,-6831,-2885.87,8.89237,0.0926504,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+117,6491,1,440,976,1,169,0,0,0,-7142.07,-3876.89,10.4365,4.54505,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+118,6491,1,440,988,1,169,0,0,0,-7755.32,-4978.22,4.05656,1.36417,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+119,6491,1,440,440,1,169,0,0,0,-9605.43,-3639.58,13.3005,1.91866,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+120,6491,1,440,440,1,169,0,0,0,-9049.05,-2726.08,37.3299,0.556007,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+121,6491,1,440,1939,1,169,0,0,0,-7745.67,-3014.53,40.6366,2.36322,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+122,6491,1,490,1942,1,169,0,0,0,-7077.26,-2391.64,-165.643,4.28744,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+123,6491,1,5034,5715,1,169,0,0,0,-9372.39,-1066.86,120.092,3.02688,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+124,6491,1,5034,5717,1,169,0,0,0,-10846.2,-1591.67,9.78209,4.81675,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+125,6491,1,5034,5583,1,169,0,0,0,-11546.3,-2338.79,625.699,1.01699,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+126,6491,1,5034,5034,1,169,0,0,0,-10025.4,417.321,38.551,3.21767,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+127,6491,1,1377,2744,1,169,0,0,0,-7972.51,787.331,-0.783952,5.5354,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+128,6491,1,1377,3425,1,169,0,0,0,-6823.67,892.906,33.9618,3.05934,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+129,6491,1,1377,3077,1,169,0,0,0,-6440.7,-289.145,3.72787,0.886915,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+130,6491,1,357,2522,1,169,0,0,0,-5535.99,1459.13,24.8974,5.78369,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+131,6491,1,357,1116,1,169,0,0,0,-4588.21,3250.42,8.96212,4.01177,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+132,6491,1,405,598,1,169,0,0,0,-1776.54,2854.55,57.7043,2.9499,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+133,6491,1,405,604,1,169,0,0,0,-1559.75,982.519,90.4885,6.22973,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+134,6491,1,4709,4709,1,169,0,0,0,-1893.97,-3059.87,91.6652,0.513641,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+135,6491,1,4709,4845,1,169,0,0,0,-1484.51,-2138.24,89.066,4.937,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+136,6491,1,400,5048,1,169,0,0,0,-6180.54,-3992.85,1.72375,1.91488,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+137,6491,1,400,5028,1,169,0,0,0,-6212.39,-4581.53,93.6144,1.22372,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+138,6491,1,400,5027,1,169,0,0,0,-5347.12,-3941.22,85.8656,2.37274,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+139,6491,1,400,484,1,169,0,0,0,-5440.54,-2289.9,89.439,0.4226,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+140,6491,1,400,5092,1,169,0,0,0,-4874.51,-2162.13,0.870021,2.15594,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+141,6491,1,17,387,1,169,0,0,0,-839.54,-1982.03,91.8002,2.96045,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+142,6491,1,17,1699,1,169,0,0,0,-229.931,-3013.62,91.6679,0.434656,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+143,6491,1,406,636,1,169,0,0,0,1291.19,-298.418,6.67261,3.39404,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+144,6491,1,406,469,1,169,0,0,0,-104.744,-699.977,4.10007,1.94168,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+145,6491,1,406,406,1,169,0,0,0,465.11,1467.78,13.5006,0.344325,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+146,6491,1,406,467,1,169,0,0,0,2735.86,1279.28,296.35,2.43662,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+147,6491,1,331,416,1,169,0,0,0,2912.99,380.541,91.6667,6.19552,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+148,6491,1,331,331,1,169,0,0,0,3812.46,758.439,8.32688,0.870489,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+149,6491,1,331,415,1,169,0,0,0,2634.18,-632.742,107.959,4.91921,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+150,6491,1,331,4705,1,169,0,0,0,2301.68,-1730.46,120.162,3.15994,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+151,6491,1,16,1237,1,169,0,0,0,3050.27,-4122.38,103.599,2.98702,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+152,6491,1,16,16,1,169,0,0,0,2711.57,-6096.74,106.824,3.17317,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+153,6491,1,16,4814,1,169,0,0,0,4796.62,-6826.11,89.9901,4.75262,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+154,6491,1,16,4821,1,169,0,0,0,3529.05,-6574.06,52.0014,4.64895,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+155,6491,1,616,4991,1,169,0,0,0,4644.54,-4545.97,887.638,3.95622,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+156,6491,1,616,5022,1,169,0,0,0,4932.27,-2641.73,1427.55,0.0488653,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+157,6491,1,616,5622,1,169,0,0,0,5410.16,-3196.55,1579.72,0.63474,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+158,6491,1,361,361,1,169,0,0,0,5404.59,-579.932,355.886,5.14215,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+159,6491,1,148,2077,1,169,0,0,0,5251.71,188.508,16.9118,3.8232,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+160,6491,1,618,618,1,169,0,0,0,6618.83,-3546.25,682.422,0.999294,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+161,6491,1,618,2250,1,169,0,0,0,5633.3,-4767.9,778.051,1.47212,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+162,6491,1,5034,5717,1,169,0,0,0,-10744.2,-1550.55,11.5516,3.11551,600,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+163,6491,1,5034,5034,1,169,0,0,0,-8826.61,-1616.51,113.559,3.16558,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+164,6491,648,4720,4781,1,169,0,5233,0,867.524,2780.05,114.394,0.174533,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+165,6491,646,5042,5042,1,169,0,5233,0,1978.73,531.137,36.5403,4.66003,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+166,6491,646,5042,5354,1,169,0,0,0,10.2483,-178.951,204.158,1.67739,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+167,6491,646,5042,5302,1,169,0,0,0,990.33,-844.992,281.8,5.52192,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+168,6491,646,5042,5350,1,169,0,0,0,1257.38,1646.33,175.056,2.70626,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+169,6491,646,5042,5331,1,169,0,0,0,653.766,1828.59,337.032,3.21441,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+170,6491,646,5042,5330,1,169,0,0,0,446.306,1633.44,350.035,3.77597,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+171,6491,646,5042,5357,1,169,0,0,0,129.512,1504.87,221.367,3.83487,300,0,0,4120,0,0,0,0,0,'',0),
|
||||
(@CGUID+172,6491,648,0,0,1,169,0,0,0,635.182,3114.05,3.31831,2.11185,120,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+173,6491,648,0,0,1,169,0,0,0,521.91,2707.84,105.979,3.28122,120,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+174,6491,648,0,0,1,169,0,0,0,1000.78,3310.56,3.48974,0.10472,120,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+175,6491,0,46,251,1,169,0,0,0,-7501,-2145,146.088,0.955,600,0,0,4120,0,0,0,0,0,'',0);
|
||||
|
||||
|
||||
SET @CGUID:=456302;
|
||||
DELETE FROM `creature` WHERE guid BETWEEN @CGUID+0 AND @CGUID+202;
|
||||
INSERT INTO `creature` (`guid`,`id`,`map`,`zoneId`,`areaId`,`spawnDifficulties`,`PhaseId`,`PhaseGroup`,`modelid`,`equipment_id`,`position_x`,`position_y`,`position_z`,`orientation`,`spawntimesecs`,`spawndist`,`currentwaypoint`,`curhealth`,`curmana`,`MovementType`,`npcflag`,`unit_flags`,`dynamicflags`,`ScriptName`,`VerifiedBuild`) VALUES
|
||||
(@CGUID+0,6491,860,0,0,1,169,0,0,0,1236.27,3560.11,102.301,4.74729,120,0,0,0,0,0,0,0,0,'',21463),
|
||||
(@CGUID+1,6491,860,0,0,1,169,0,0,0,1067.63,3268.89,129.295,2.63545,120,0,0,0,0,0,0,0,0,'',21463),
|
||||
(@CGUID+2,6491,860,0,0,1,169,0,0,0,649.08,3041.21,76.9783,2.94961,120,0,0,0,0,0,0,0,0,'',21463),
|
||||
(@CGUID+3,6491,860,0,0,1,169,0,0,0,407.504,3565.25,78.1601,4.46804,120,0,0,0,0,0,0,0,0,'',21463),
|
||||
(@CGUID+4,6491,860,0,0,1,169,0,0,0,761.896,3555.34,141.602,3.10669,120,0,0,0,0,0,0,0,0,'',21463),
|
||||
(@CGUID+5,6491,860,0,0,1,169,0,0,0,903.941,4335.09,243.735,2.1293,120,0,0,0,0,0,0,0,0,'',21742),
|
||||
(@CGUID+6,6491,860,0,0,1,169,0,0,0,945.076,4067.9,199.724,2.25148,120,0,0,0,0,0,0,0,0,'',20886),
|
||||
(@CGUID+7,6491,870,5840,6504,1,169,0,0,0,1420.19,1488.34,412.066,2.3688,120,0,0,1,0,0,16385,0,0,'',0),
|
||||
(@CGUID+8,6491,870,6757,6833,1,169,0,0,0,-920.974,-4684.39,1.88438,4.51892,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+9,6491,870,6757,6840,1,169,0,0,0,-547.976,-5652.43,17.7426,2.87611,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+10,6491,870,5785,5964,1,169,0,0,0,-291.98,-2882.14,13.8689,2.8816,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+11,6491,870,5785,5785,1,169,0,0,0,-80.7674,-3212.75,170.306,3.83818,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+12,6491,870,6134,6147,1,169,0,0,0,-2339.49,845.705,3.95406,3.59197,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+13,6491,870,6134,6010,1,169,0,0,0,-1201.21,90.4583,12.4214,2.22739,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+14,6491,870,6134,6004,1,169,0,0,0,-1256.59,795.716,14.8366,4.68805,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+15,6491,870,6134,6014,1,169,0,0,0,-1523.64,1145.9,15.2433,0.442175,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+16,6491,870,6134,6378,1,169,0,0,0,-1344.49,1976.5,17.1671,4.13431,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+17,6491,870,5840,6145,1,169,0,0,0,928.29,714.881,401.77,5.22105,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+18,6491,870,5840,6145,1,169,0,0,0,1162.24,690.096,349.159,5.67719,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+19,6491,870,5840,6034,1,169,0,0,0,1128.94,1556.7,352.015,1.08182,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+20,6491,870,5842,6171,1,169,0,0,0,1655.94,2499.82,302.905,1.65124,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+21,6491,870,5785,5851,1,169,0,0,0,-430.958,-1715.23,12.6147,4.0188,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+22,6491,870,5785,6110,1,169,0,0,0,559.502,-1363.85,70.6365,2.80216,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+23,6491,870,5841,6415,1,169,0,0,0,2907.8,594.24,527.214,5.18097,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+24,6491,870,5842,6213,1,169,0,0,0,2431.9,4821.43,189.372,0.495097,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+25,6491,870,5805,5980,1,169,0,0,0,-88.022,580.709,164.19,0.801629,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+26,6491,870,5785,6080,1,169,0,0,0,448.548,-1576.39,162.616,0.00251433,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+27,6491,870,6661,6661,1,169,0,0,0,5950.23,1154.8,60.6139,4.23179,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+28,6491,870,5785,6077,1,169,0,0,0,2750.5,-2344.79,53.0329,2.71928,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+29,6491,870,5841,6128,1,169,0,0,0,1884.29,2014.09,454.127,4.73886,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+30,6491,870,5841,6415,1,169,0,0,0,2649.7,2180.23,581.459,5.27135,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+31,6491,870,5841,6173,1,169,0,0,0,3527,2704.35,756.238,5.23522,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+32,6491,870,5841,6383,1,169,0,0,0,3249.57,2824.15,565.846,3.73511,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+33,6491,870,5841,5841,1,169,0,0,0,3543.76,1639,838.985,0.818385,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+34,6491,870,5841,6198,1,169,0,0,0,3568.48,1349.32,799.244,0.768074,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+35,6491,870,5841,6174,1,169,0,0,0,3137.29,550.025,504.836,3.17967,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+36,6491,870,5841,6059,1,169,0,0,0,1848.08,366.385,482.366,2.34872,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+37,6491,870,5785,5866,1,169,0,0,0,2643.25,-509.545,322.564,5.46402,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+38,6491,870,5842,5842,1,169,0,0,0,1630.73,3024.75,319.97,3.88795,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+39,6491,870,5842,5842,1,169,0,0,0,1708.69,3578.26,224.35,1.65797,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+40,6491,870,5785,5879,1,169,0,0,0,2785.17,-1795.1,240.498,5.69806,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+41,6491,870,5842,6392,1,169,0,0,0,2386.08,4097.18,214.777,2.23598,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+42,6491,870,5842,6408,1,169,0,0,0,1662.9,5317.25,142.269,5.84847,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+43,6491,870,6138,6138,1,169,0,0,0,481.462,2921.12,252.66,5.65095,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+44,6491,870,5785,6022,1,169,0,0,0,1738.46,-2777.89,130.562,5.31793,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+45,6491,870,6138,6138,1,169,0,0,0,625.004,3666.41,226.181,4.23487,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+46,6491,870,5785,5974,1,169,0,0,0,1022.74,-2358.15,156.214,2.0224,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+47,6491,870,6138,6435,1,169,0,0,0,105.627,4023.29,251.428,5.50643,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+48,6491,870,6138,6447,1,169,0,0,0,-473.53,3886.64,77.8906,5.57555,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+49,6491,870,5785,5890,1,169,0,0,0,74.7533,-2089.65,46.1361,1.68468,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+50,6491,870,6138,6444,1,169,0,0,0,-1293.6,4514.08,128.628,5.74103,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+51,6491,870,6138,6300,1,169,0,0,0,-546.209,2931.56,166.287,0.0659828,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+52,6491,870,5805,5805,1,169,0,0,0,-188.775,1918,153.173,2.38763,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+53,6491,870,5805,6002,1,169,0,0,0,-578.825,1320.78,148.743,3.9445,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+54,6491,870,5785,5785,1,169,0,0,0,1772.96,-1867.81,193.604,0.676235,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+55,6491,870,5785,5874,1,169,0,0,0,2524.01,-1162.74,387.677,3.82176,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+56,6491,870,5805,5936,1,169,0,0,0,527.818,-621.373,258.803,0.601034,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+57,6491,870,5785,5942,1,169,0,0,0,1726.7,-486.267,362.406,5.40453,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+58,6491,870,6134,6005,1,169,0,0,0,-396.485,-761.843,121.458,0.826152,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+59,6491,870,5785,5975,1,169,0,0,0,927.33,-2505.1,180.503,1.25271,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+60,6491,870,5805,5949,1,169,0,0,0,203.283,-329.123,253.877,3.3148,120,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+61,6491,870,5842,6307,1,169,0,0,0,3955.18,5530.35,157.152,3.32856,120,0,0,1,0,0,16385,0,0,'',0),
|
||||
(@CGUID+62,6491,870,5842,6314,1,169,0,0,0,2637.59,5927.43,81.1576,3.53737,120,0,0,1,0,0,16385,0,0,'',0),
|
||||
(@CGUID+63,6491,870,5841,6415,1,169,0,0,0,2105.58,1079.45,486.153,2.11091,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+64,6491,870,5841,5841,1,169,0,0,0,3028.29,1303.6,648.112,3.20442,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+65,6491,870,5841,6081,1,169,0,0,0,4014.43,1776.02,885.254,3.07561,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+66,6491,870,5841,6528,1,169,0,0,0,3027.03,3015.4,534.218,4.00823,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+67,6491,870,5841,6395,1,169,0,0,0,2096.95,2484.34,539.655,5.94761,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+68,6491,870,5841,6405,1,169,0,0,0,4612.77,145.566,15.1875,3.14753,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+69,6491,870,5841,6405,1,169,0,0,0,4217.32,638.63,113.696,0.88894,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+70,6491,870,5841,6467,1,169,0,0,0,4027.75,1122.47,498.769,3.75982,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+71,6491,870,5841,6184,1,169,0,0,0,3488.44,2098.91,1084.04,2.42935,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+72,6491,870,5840,6036,1,169,0,0,0,1366.58,989.855,438.988,4.72098,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+73,6491,870,5840,6032,1,169,0,0,0,1189.41,1600.18,353.06,4.66038,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+74,6491,870,5840,6031,1,169,0,0,0,697.167,1707.01,370.54,4.76841,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+75,6491,870,5840,6396,1,169,0,0,0,1045.66,2150.99,309.645,4.71915,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+76,6491,870,5842,5842,1,169,0,0,0,2417.09,3351.37,293.43,2.25946,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+77,6491,870,5842,5842,1,169,0,0,0,1281.01,4248.38,187.054,1.57948,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+78,6491,870,5805,6097,1,169,0,0,0,570.751,1320.26,440.108,6.21123,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+79,6491,870,5805,5992,1,169,0,0,0,177.772,1169.09,218.482,0.621024,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+80,6491,870,6006,6381,1,169,0,0,0,1050.19,-158.244,484.245,6.11365,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+81,6491,870,5805,6064,1,169,0,0,0,106.564,1469.63,390.139,2.25114,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+82,6491,870,5805,6064,1,169,0,0,0,345.955,1543.86,459.786,2.48581,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+83,6491,870,6006,6373,1,169,0,0,0,1619.23,-212.208,469.581,3.97092,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+84,6491,870,5785,6522,1,169,0,0,0,2961.09,-661.979,232.449,6.20797,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+85,6491,870,6134,6134,1,169,0,0,0,-1642.78,-8.96374,1.96662,1.04546,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+86,6491,870,6138,6339,1,169,0,0,0,592.125,4288.16,219.36,4.02823,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+87,6491,870,6138,6445,1,169,0,0,0,-1569.1,4798.66,84.6382,5.63862,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+88,6491,870,6138,6444,1,169,0,0,0,-1254.36,4140.09,59.2003,6.17921,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+89,6491,870,6138,6435,1,169,0,0,0,316.933,4568.62,186.921,4.15476,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+90,6491,870,6757,6834,1,169,0,0,0,-378.507,-4624.91,2.88352,0.310905,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+91,6491,870,6757,6823,1,169,0,0,0,-269.115,-5517.9,126.75,1.14582,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+92,6491,870,6757,6773,1,169,0,0,0,-920.395,-5038.42,2.08829,4.40178,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+93,6491,870,6757,6757,1,169,0,0,0,-663.682,-4864.98,2.05254,0.00171159,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+94,6491,870,6757,6830,1,169,0,0,0,-649.94,-5113.66,2.05599,4.75056,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+95,6491,870,6757,6825,1,169,0,0,0,-1101.61,-5225.94,27.024,5.78297,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+96,6491,870,6757,6844,1,169,0,0,0,-744.817,-5722.61,53.9618,4.81135,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+97,6491,870,6757,6844,1,169,0,0,0,-450.658,-5543.83,92.7286,4.99685,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+98,6491,1220,0,0,1,169,0,0,0,-392.727,7116.11,3.42678,2.41829,300,0,0,0,0,0,0,0,0,'',22810),
|
||||
(@CGUID+99,6491,1220,0,0,1,169,0,0,0,945.104,5792.67,88.8498,5.24254,300,0,0,0,0,0,0,0,0,'',22810),
|
||||
(@CGUID+100,6491,1220,0,0,1,169,0,0,0,1087.57,6379.25,134.579,1.75752,300,0,0,0,0,0,0,0,0,'',22810),
|
||||
(@CGUID+101,6491,1220,0,0,1,169,0,0,0,-793.038,6356.63,4.52501,3.79199,300,0,0,0,0,0,0,0,0,'',22810),
|
||||
(@CGUID+102,6491,1220,0,0,1,169,0,0,0,-1831.05,6894.17,79.4489,0.676784,300,0,0,0,0,0,0,0,0,'',22810),
|
||||
(@CGUID+103,6491,1220,0,0,1,169,0,0,0,3770.71,5011.52,672.213,5.38848,300,0,0,0,0,0,0,0,0,'',22810),
|
||||
(@CGUID+104,6491,1220,0,0,1,169,0,0,0,4079.46,4190.52,742.792,1.0018,300,0,0,0,0,0,0,0,0,'',22810),
|
||||
(@CGUID+105,6491,1220,0,0,1,169,0,0,0,5309.94,4570.58,717.193,5.19776,300,0,0,0,0,0,0,0,0,'',22810),
|
||||
(@CGUID+106,6491,1220,0,0,1,169,0,0,0,4514.26,4834.5,664.209,3.16288,300,0,0,0,0,0,0,0,0,'',22810),
|
||||
(@CGUID+107,6491,1220,0,0,1,169,0,0,0,3970.11,4021.01,883.545,2.8723,300,0,0,0,0,0,0,0,0,'',22810),
|
||||
(@CGUID+108,6491,1220,0,0,1,169,0,0,0,1583.9,3069.35,111.134,1.52784,300,0,0,0,0,0,0,0,0,'',22810),
|
||||
(@CGUID+109,6491,1220,0,0,1,169,0,0,0,1948.23,3070.07,244.07,5.52502,300,0,0,0,0,0,0,0,0,'',22810),
|
||||
(@CGUID+110,6491,1220,0,0,1,169,0,0,0,1187.61,2882.46,88.456,5.42159,300,0,0,0,0,0,0,0,0,'',22810),
|
||||
(@CGUID+111,6491,1220,0,0,1,169,0,0,0,1992.98,3795.36,271.255,1.89809,300,0,0,0,0,0,0,0,0,'',22810),
|
||||
(@CGUID+112,6491,1220,0,0,1,169,0,0,0,1637.66,3672.64,146.876,5.10586,300,0,0,0,0,0,0,0,0,'',22810),
|
||||
(@CGUID+113,6491,1220,0,0,1,169,0,0,0,2395.75,4054.95,290.174,3.53763,300,0,0,0,0,0,0,0,0,'',22810),
|
||||
(@CGUID+114,6491,1220,0,0,1,169,0,0,0,1128.7,3825.87,1.79323,0.41529,300,0,0,0,0,0,0,0,0,'',22810),
|
||||
(@CGUID+115,6491,1220,0,0,1,169,0,0,0,3333.16,2866.89,495.437,5.48587,300,0,0,0,0,0,0,0,0,'',22810),
|
||||
(@CGUID+116,6491,1220,0,0,1,169,0,0,0,3631.61,2556.16,314.589,1.93758,300,0,0,0,0,0,0,0,0,'',22810),
|
||||
(@CGUID+117,6491,1220,0,0,1,169,0,0,0,3052.38,2527.34,278.142,2.02643,300,0,0,0,0,0,0,0,0,'',22810),
|
||||
(@CGUID+118,6491,1220,0,0,1,169,0,0,0,2859.49,815.974,78.7434,0.744309,300,0,0,0,0,0,0,0,0,'',22810),
|
||||
(@CGUID+119,6491,1220,0,0,1,169,0,0,0,2775.88,555.014,124.4,2.45878,300,0,0,0,0,0,0,0,0,'',22810),
|
||||
(@CGUID+120,6491,1220,0,0,1,169,0,0,0,2620.66,1387.04,42.5185,6.08886,300,0,0,0,0,0,0,0,0,'',22810),
|
||||
(@CGUID+121,6491,1220,0,0,1,169,0,0,0,1980.85,1389.02,1.33514,5.63499,300,0,0,0,0,0,0,0,0,'',22810),
|
||||
(@CGUID+122,6491,1220,0,0,1,169,0,0,0,1755.62,6477.52,76.2501,4.48615,300,0,0,0,0,0,0,0,0,'',22810),
|
||||
(@CGUID+123,6491,1220,0,0,1,169,0,0,0,3063.45,7422.55,53.8211,2.2316,300,0,0,0,0,0,0,0,0,'',22810),
|
||||
(@CGUID+124,6491,1220,0,0,1,169,0,0,0,2079.51,6127.11,154.428,3.79657,300,0,0,0,0,0,0,0,0,'',22810),
|
||||
(@CGUID+125,6491,1220,0,0,1,169,0,0,0,2087.69,6924.19,85.2674,5.1582,300,0,0,0,0,0,0,0,0,'',22810),
|
||||
(@CGUID+126,6491,1220,0,0,1,169,0,0,0,405.876,6393.89,38.3144,0.680615,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+127,6491,1220,0,0,1,169,0,0,0,4102.87,2811.3,65.7971,2.34035,300,0,0,0,0,0,0,0,0,'',22996),
|
||||
(@CGUID+128,6491,1220,0,0,1,169,0,0,0,5256.03,5544.14,63.7666,5.59803,300,0,0,0,0,0,0,0,0,'',23222),
|
||||
(@CGUID+129,6491,1116,6662,6662,1,169,0,0,0,3755.91,1855.19,213.663,2.26759,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+130,6491,1116,6662,7420,1,169,0,0,0,3222.74,2839.29,7.1432,5.73819,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+131,6491,1116,6662,7422,1,169,0,0,0,2595.66,3132.65,77.0742,6.21119,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+132,6491,1116,6662,6662,1,169,0,0,0,2326.37,3234.75,98.7177,2.36668,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+133,6491,1116,6662,7455,1,169,0,0,0,3031.94,3857.64,73.1436,2.59248,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+134,6491,1116,6662,6662,1,169,0,0,0,1672.16,2339.89,122.706,3.95771,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+135,6491,1116,6662,6662,1,169,0,0,0,1400.54,1495.74,321.064,1.7424,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+136,6491,1116,6720,6929,1,169,0,0,0,6338.53,6571.95,157.486,0.791513,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+137,6491,1116,6720,6779,1,169,0,0,0,5864.25,3356.5,132.001,2.49154,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+138,6491,1116,6720,6994,1,169,0,0,0,5736.75,2338.2,186.729,2.72853,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+139,6491,1116,6755,7069,1,169,0,0,0,2305.19,5146.62,208.824,5.83615,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+140,6491,1116,6755,7375,1,169,0,0,0,4146.54,6043.44,65.7796,2.01884,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+141,6491,1116,6721,6892,1,169,0,0,0,7879.92,863.526,31.5512,2.38734,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+142,6491,1116,6721,7320,1,169,0,0,0,7563.03,394.023,119.05,1.0421,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+143,6491,1116,6721,7320,1,169,0,0,0,7712.13,-538.674,155.545,3.81803,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+144,6491,1116,6721,7320,1,169,0,0,0,7288.26,-678.561,101.127,3.91251,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+145,6491,1116,6722,6722,1,169,0,0,0,783.207,747.613,134.865,2.53345,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+146,6491,1116,6755,6755,1,169,0,0,0,3769.84,4547.45,74.1015,5.38453,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+147,6491,1116,6755,6755,1,169,0,0,0,3712.15,5204.85,60.4357,3.18378,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+148,6491,1116,6755,6755,1,169,0,0,0,2766.16,5808.13,108.286,5.22655,300,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+149,6491,1116,6720,7006,1,169,0,0,0,7417.88,4147.13,117.295,0.693453,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+150,6491,1116,6721,6914,1,169,0,0,0,4891.38,1490.77,131.552,5.89834,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+151,6491,1116,6721,6914,1,169,0,0,0,5462.02,997.65,87.2511,1.7543,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+152,6491,1116,6721,6721,1,169,0,0,0,6218.94,830.926,112.335,0.305206,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+153,6491,1116,6721,7153,1,169,0,0,0,6744.48,216.332,60.4696,3.99465,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+154,6491,1116,6721,6892,1,169,0,0,0,7639.44,1538.88,81.3283,2.95278,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+155,6491,1116,6721,6889,1,169,0,0,0,6958.41,1698.81,57.0695,4.29738,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+156,6491,1116,6721,6887,1,169,0,0,0,6106.21,1659.5,107.668,1.34516,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+157,6491,1116,6721,6879,1,169,0,0,0,5703.44,1488.45,112.402,2.81025,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+158,6491,1116,6719,6922,1,169,0,0,0,1171.97,411.56,65.9145,0.0178642,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+159,6491,1116,6719,6855,1,169,0,0,0,1571.1,-188.615,33.2537,3.26775,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+160,6491,1116,6719,6923,1,169,0,0,0,1053.38,-724.608,-36.9832,3.12185,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+161,6491,1116,6719,6793,1,169,0,0,0,528.552,-1221.62,-15.9186,0.0490196,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+162,6491,1116,6719,7051,1,169,0,0,0,-111.958,-1104.01,-10.9863,4.22931,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+163,6491,1116,6719,6791,1,169,0,0,0,-290.587,-755.938,17.4742,0.553489,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+164,6491,1116,6719,6910,1,169,0,0,0,-1381.61,-2024.74,2.73447,5.54849,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+165,6491,1116,6719,6719,1,169,0,0,0,96.6342,-1415.83,34.9152,4.16,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+166,6491,1116,6719,6931,1,169,0,0,0,664.571,-2496.51,100.689,1.59298,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+167,6491,1116,6719,7473,1,169,0,0,0,1218.95,-1873.83,24.6353,5.86399,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+168,6491,1116,6719,6957,1,169,0,0,0,1473.08,-885.921,-4.79783,3.70022,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+169,6491,1116,6719,6772,1,169,0,0,0,1746.9,651.999,67.3446,4.63456,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+170,6491,1116,6722,7316,1,169,0,0,0,795.223,1493.55,330.9,5.52736,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+171,6491,1116,6722,7031,1,169,0,0,0,859.951,2063.97,175.829,3.22796,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+172,6491,1116,6722,7125,1,169,0,0,0,58.2907,2049.89,21.7737,5.3564,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+173,6491,1116,6722,7111,1,169,0,0,0,141.903,1613.81,1.30202,4.70999,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+174,6491,1116,6722,7145,1,169,0,0,0,-487.641,849.596,76.6726,6.19679,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+175,6491,1116,6722,6998,1,169,0,0,0,-1359.95,981.925,13.3232,3.19579,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+176,6491,1116,6722,7163,1,169,0,0,0,-2335.91,1023.22,5.56854,5.75568,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+177,6491,1116,6722,7198,1,169,0,0,0,-1065.14,2142.45,11.0163,5.95724,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+178,6491,1116,6722,6722,1,169,0,0,0,-10.928,2675.62,29.0352,5.24566,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+179,6491,1116,6720,6784,1,169,0,0,0,7014.82,3171.67,164.77,1.46878,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+180,6491,1116,6720,6968,1,169,0,0,0,7348.46,4830.95,181.09,1.11146,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+181,6491,1116,6720,7033,1,169,0,0,0,6549.79,4392.93,92.94,4.66599,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+182,6491,1116,6720,6966,1,169,0,0,0,5719.79,4223.41,66.1032,3.3877,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+183,6491,1116,6720,6964,1,169,0,0,0,6010.33,5199.01,133.07,3.11332,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+184,6491,1116,6720,6850,1,169,0,0,0,6488.09,5820.4,137.891,2.36179,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+185,6491,1116,6720,6869,1,169,0,0,0,5854.98,6091.53,110.462,3.80852,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+186,6491,1116,6720,6744,1,169,0,0,0,7273.35,5208.38,129.634,2.36226,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+187,6491,1116,6720,6742,1,169,0,0,0,7923.99,5665.61,114.306,3.30125,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+188,6491,1116,6941,7332,1,169,0,0,0,3772.28,-3886.47,31.7678,6.23336,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+189,6491,1464,6723,7538,1,169,0,0,0,4889.02,-1129.51,258.329,4.61941,300,0,0,0,0,0,0,0,0,'',20886),
|
||||
(@CGUID+190,6491,1464,6723,6723,1,169,0,0,0,3329.9,-1157.34,61.7751,4.50976,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+191,6491,1464,6723,7723,1,169,0,0,0,4506.78,-529.02,22.8157,2.94342,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+192,6491,1464,6723,7537,1,169,0,0,0,3582.73,-824.151,23.1392,0.0649389,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+193,6491,1464,6723,7522,1,169,0,0,0,3964.91,-1347.95,84.657,1.83366,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+194,6491,1464,6723,7523,1,169,0,0,0,4211.75,-1489.21,78.3476,1.22812,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+195,6491,1464,6723,7526,1,169,0,0,0,3661.9,71.5425,72.9005,0.255791,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+196,6491,1464,6723,7719,1,169,0,0,0,4553.16,-1344.23,41.662,4.18828,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+197,6491,1464,6723,7717,1,169,0,0,0,3863.41,521.505,110.089,3.43116,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+198,6491,1464,6723,7536,1,169,0,0,0,4545,323.617,219.795,0.205525,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+199,6491,1464,6723,7718,1,169,0,0,0,2863.43,-1030.26,17.8279,3.14213,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+200,6491,1464,6723,7514,1,169,0,0,0,3550.66,-2138.79,17.7433,2.69844,300,0,0,3965,0,0,0,0,0,'',0),
|
||||
(@CGUID+201,6491,1064,6507,6583,1,169,0,0,0,6187.46,5033.37,38.7041,3.15358,120,0,0,1,0,0,0,0,0,'',0),
|
||||
(@CGUID+202,6491,1064,6507,6727,1,169,0,0,0,6514.65,5247.78,19.2295,2.3656,120,0,0,1,0,0,0,0,0,'',0);
|
||||
|
||||
DELETE FROM `creature` WHERE `guid` IN (1022897, 1022886, 1022720, 1022724, 1022898, 1022895, 1022723, 1022894, 1022983, 1022889, 1022699, 1022901, 1022712, 1022982, 1022714, 1022707, 1022716, 1022844, 1022904, 1022715, 1022729, 1022701, 1022984, 1022876, 1022903, 1022977, 1022880, 1022893, 1022981, 1022802, 1022862, 1023021, 1022952, 1022879, 1022985, 1022878, 1022976, 1022979, 1023033, 1022934, 1022975, 1022980, 1022882, 1022974, 1022986, 1022936, 1022885, 1022987, 1022863, 1022902, 1022995, 1022994, 1022861, 1022954, 1022933, 1022935, 1022988, 1022938, 1022907, 1022997, 1022996, 1022906, 1022908, 1022909, 1022930, 1022931, 1022998, 1022753, 1022914, 1022939, 1022932, 1022940, 1022989, 1022951, 1022964, 1022941, 1022913, 1022962, 1022953, 1022912, 1022915, 1022942, 1022910, 1022881, 1022967, 1022957, 1022963, 1022864, 1022917, 1022911, 1022916, 1022928, 1022943, 1022955, 1022992, 1022990, 1022991, 1022993, 1022865, 1022919, 1022918, 1022966, 1022945, 1022858, 1022999, 1022866, 1022859, 1022921, 1022961, 1022937, 1022872, 1023000, 1022925, 1023002, 1022920, 1022946, 1022956, 1022924, 1023003, 1022867, 1022884, 1022968, 1022697, 1022965, 1022868, 1022794, 1022693, 1023001, 1022793, 1022711, 1022922, 1022874, 1022926, 1022870, 1023008, 1022947, 1022958, 1022871, 1023007, 1022927, 1023010, 1022828, 1022923, 1023005, 1022833, 1022959, 1022836, 1022948, 1022830, 1022797, 1022949, 1023013, 1022784, 1023011, 1022838, 1023017, 1023016, 1022839, 1022843, 1022842, 1022795, 1022972, 1022774, 1022684) AND `id`=6491;
|
||||
DELETE FROM `creature_addon` WHERE `guid` IN (1022897, 1022886, 1022720, 1022724, 1022898, 1022895, 1022723, 1022894, 1022983, 1022889, 1022699, 1022901, 1022712, 1022982, 1022714, 1022707, 1022716, 1022844, 1022904, 1022715, 1022729, 1022701, 1022984, 1022876, 1022903, 1022977, 1022880, 1022893, 1022981, 1022802, 1022862, 1023021, 1022952, 1022879, 1022985, 1022878, 1022976, 1022979, 1023033, 1022934, 1022975, 1022980, 1022882, 1022974, 1022986, 1022936, 1022885, 1022987, 1022863, 1022902, 1022995, 1022994, 1022861, 1022954, 1022933, 1022935, 1022988, 1022938, 1022907, 1022997, 1022996, 1022906, 1022908, 1022909, 1022930, 1022931, 1022998, 1022753, 1022914, 1022939, 1022932, 1022940, 1022989, 1022951, 1022964, 1022941, 1022913, 1022962, 1022953, 1022912, 1022915, 1022942, 1022910, 1022881, 1022967, 1022957, 1022963, 1022864, 1022917, 1022911, 1022916, 1022928, 1022943, 1022955, 1022992, 1022990, 1022991, 1022993, 1022865, 1022919, 1022918, 1022966, 1022945, 1022858, 1022999, 1022866, 1022859, 1022921, 1022961, 1022937, 1022872, 1023000, 1022925, 1023002, 1022920, 1022946, 1022956, 1022924, 1023003, 1022867, 1022884, 1022968, 1022697, 1022965, 1022868, 1022794, 1022693, 1023001, 1022793, 1022711, 1022922, 1022874, 1022926, 1022870, 1023008, 1022947, 1022958, 1022871, 1023007, 1022927, 1023010, 1022828, 1022923, 1023005, 1022833, 1022959, 1022836, 1022948, 1022830, 1022797, 1022949, 1023013, 1022784, 1023011, 1022838, 1023017, 1023016, 1022839, 1022843, 1022842, 1022795, 1022972, 1022774, 1022684);
|
||||
@@ -0,0 +1,9 @@
|
||||
--
|
||||
DELETE FROM `creature` WHERE `guid` IN (252337,252342,252345,252346,252347,252352);
|
||||
INSERT INTO `creature` (`guid`,`id`,`map`,`zoneId`,`areaId`,`spawnDifficulties`,`PhaseId`,`PhaseGroup`,`modelid`,`equipment_id`,`position_x`,`position_y`,`position_z`,`orientation`,`spawntimesecs`,`spawndist`,`currentwaypoint`,`curhealth`,`curmana`,`MovementType`,`npcflag`,`unit_flags`,`dynamicflags`,`ScriptName`,`VerifiedBuild`) VALUES
|
||||
(252337,6491,1,0,0,1,169,0,0,0,161.04580, -1700.3441, 93.747, 1.440328,120,0,0,0,0,0,0,0,0,'',0),
|
||||
(252342,6491,1,0,0,1,169,0,0,0,1457.0593, 1278.31543, 170.95, 6.161450,120,0,0,0,0,0,0,0,0,'',0),
|
||||
(252345,6491,1,0,0,1,169,0,0,0,-5538.097, -1548.5739, 89.196, 0.608690,120,0,0,0,0,0,0,0,0,'',0),
|
||||
(252346,6491,1,0,0,1,169,0,0,0,-4985.759, -1012.1699, 1.3009, 0.872665,120,0,0,0,0,0,0,0,0,'',0),
|
||||
(252347,6491,1,0,0,1,169,0,0,0,-4338.628, -384.58416, 37.382, 0.617579,120,0,0,0,0,0,0,0,0,'',0),
|
||||
(252352,6491,1,0,0,1,169,0,0,0,-3132.315, 2537.77368, 54.513, 3.212281,120,0,0,0,0,0,0,0,0,'',0);
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,53 @@
|
||||
-- achievement_reward
|
||||
ALTER TABLE `achievement_reward` CHANGE `entry` `ID` int(10) unsigned NOT NULL DEFAULT '0';
|
||||
ALTER TABLE `achievement_reward` CHANGE `title_A` `TitleA` int(10) unsigned NOT NULL DEFAULT '0';
|
||||
ALTER TABLE `achievement_reward` CHANGE `title_H` `TitleH` int(10) unsigned NOT NULL DEFAULT '0';
|
||||
ALTER TABLE `achievement_reward` CHANGE `item` `ItemID` int(10) unsigned NOT NULL DEFAULT '0';
|
||||
ALTER TABLE `achievement_reward` CHANGE `sender` `Sender` int(10) unsigned NOT NULL DEFAULT '0';
|
||||
ALTER TABLE `achievement_reward` CHANGE `subject` `Subject` varchar(255) DEFAULT NULL;
|
||||
ALTER TABLE `achievement_reward` CHANGE `text` `Body` text;
|
||||
ALTER TABLE `achievement_reward` CHANGE `mailTemplate` `MailTemplateID` int(10) unsigned DEFAULT '0';
|
||||
|
||||
-- achievement_reward_locale
|
||||
DROP TABLE IF EXISTS `achievement_reward_locale`;
|
||||
CREATE TABLE IF NOT EXISTS `achievement_reward_locale` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Locale` varchar(4) NOT NULL,
|
||||
`Subject` text,
|
||||
`Body` text,
|
||||
PRIMARY KEY (`ID`, `Locale`)
|
||||
) ENGINE=MYISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
-- koKR
|
||||
INSERT INTO `achievement_reward_locale` (`ID`, `Locale`, `Subject`, `Body`)
|
||||
(SELECT `entry`, "koKR", `subject_loc1`, `text_loc1` FROM `locales_achievement_reward` WHERE LENGTH(subject_loc1) > 0 OR LENGTH(text_loc1) > 0);
|
||||
|
||||
-- frFR
|
||||
INSERT INTO `achievement_reward_locale` (`ID`, `locale`, `Subject`, `Body`)
|
||||
(SELECT `entry`, "frFR", `subject_loc2`, `text_loc2` FROM `locales_achievement_reward` WHERE LENGTH(subject_loc2) > 0 OR LENGTH(text_loc2) > 0);
|
||||
|
||||
-- deDE
|
||||
INSERT INTO `achievement_reward_locale` (`ID`, `locale`, `Subject`, `Body`)
|
||||
(SELECT `entry`, "deDE", `subject_loc3`, `text_loc3` FROM `locales_achievement_reward` WHERE LENGTH(subject_loc3) > 0 OR LENGTH(text_loc3) > 0);
|
||||
|
||||
-- zhCN
|
||||
INSERT INTO `achievement_reward_locale` (`ID`, `locale`, `Subject`, `Body`)
|
||||
(SELECT `entry`, "zhCN", `subject_loc4`, `text_loc4` FROM `locales_achievement_reward` WHERE LENGTH(subject_loc4) > 0 OR LENGTH(text_loc4) > 0);
|
||||
|
||||
-- zhTW
|
||||
INSERT INTO `achievement_reward_locale` (`ID`, `locale`, `Subject`, `Body`)
|
||||
(SELECT `entry`, "zhTW", `subject_loc5`, `text_loc5` FROM `locales_achievement_reward` WHERE LENGTH(subject_loc5) > 0 OR LENGTH(text_loc5) > 0);
|
||||
|
||||
-- esES
|
||||
INSERT INTO `achievement_reward_locale` (`ID`, `locale`, `Subject`, `Body`)
|
||||
(SELECT `entry`, "esES", `subject_loc6`, `text_loc6` FROM `locales_achievement_reward` WHERE LENGTH(subject_loc6) > 0 OR LENGTH(text_loc6) > 0);
|
||||
|
||||
-- esMX
|
||||
INSERT INTO `achievement_reward_locale` (`ID`, `locale`, `Subject`, `Body`)
|
||||
(SELECT `entry`, "esMX", `subject_loc7`, `text_loc7` FROM `locales_achievement_reward` WHERE LENGTH(subject_loc7) > 0 OR LENGTH(text_loc7) > 0);
|
||||
|
||||
-- ruRU
|
||||
INSERT INTO `achievement_reward_locale` (`ID`, `locale`, `Subject`, `Body`)
|
||||
(SELECT `entry`, "ruRU", `subject_loc8`, `text_loc8` FROM `locales_achievement_reward` WHERE LENGTH(subject_loc8) > 0 OR LENGTH(text_loc8) > 0);
|
||||
|
||||
DROP TABLE IF EXISTS `locales_achievement_reward`;
|
||||
@@ -0,0 +1,7 @@
|
||||
DELETE FROM `command` WHERE `permission`=698;
|
||||
INSERT INTO `command` (`name`, `permission`, `help`) VALUES
|
||||
('character changeaccount', 698, 'Syntax: .character changeaccount [$player] $account\n\nTransfers ownership of named (or selected) character to another account');
|
||||
|
||||
DELETE FROM `trinity_string` WHERE `entry`=1192;
|
||||
INSERT INTO `trinity_string` (`entry`, `content_default`) VALUES
|
||||
(1192, 'Successfully transferred ownership of character %s to account %s');
|
||||
@@ -0,0 +1,13 @@
|
||||
ALTER TABLE `terrain_worldmap`
|
||||
DROP PRIMARY KEY,
|
||||
ADD `UiMapPhaseId` int(10) unsigned NOT NULL AFTER `TerrainSwapMap`;
|
||||
|
||||
DELETE FROM `terrain_worldmap` WHERE `TerrainSwapMap`=638;
|
||||
UPDATE `terrain_worldmap` SET `UiMapPhaseId`=52 WHERE `TerrainSwapMap`=655;
|
||||
UPDATE `terrain_worldmap` SET `UiMapPhaseId`=54 WHERE `TerrainSwapMap`=656;
|
||||
UPDATE `terrain_worldmap` SET `UiMapPhaseId`=165 WHERE `TerrainSwapMap`=719;
|
||||
UPDATE `terrain_worldmap` SET `UiMapPhaseId`=2801 WHERE `TerrainSwapMap`=545;
|
||||
|
||||
ALTER TABLE `terrain_worldmap`
|
||||
ADD PRIMARY KEY(`TerrainSwapMap`,`UiMapPhaseId`),
|
||||
DROP `WorldMapArea`;
|
||||
@@ -0,0 +1,4 @@
|
||||
ALTER TABLE `mail_level_reward` CHANGE `raceMask` `raceMask` bigint(20) unsigned NOT NULL;
|
||||
ALTER TABLE `playercreateinfo_spell_custom` CHANGE `racemask` `racemask` bigint(20) unsigned NOT NULL;
|
||||
ALTER TABLE `playercreateinfo_cast_spell` CHANGE `raceMask` `raceMask` bigint(20) unsigned NOT NULL;
|
||||
ALTER TABLE `spell_area` CHANGE `racemask` `racemask` bigint(20) unsigned NOT NULL;
|
||||
@@ -0,0 +1,104 @@
|
||||
ALTER TABLE `conversation_template` ADD `TextureKitId` int(10) unsigned NOT NULL DEFAULT '0' AFTER `LastLineEndTime`;
|
||||
ALTER TABLE `gameobject_template` ADD `Data33` int(11) NOT NULL DEFAULT '0' AFTER `Data32`;
|
||||
ALTER TABLE `playerchoice` ADD `KeepOpenAfterChoice` tinyint(3) unsigned NOT NULL DEFAULT '0' AFTER `HideWarboardHeader`;
|
||||
ALTER TABLE `playerchoice_response`
|
||||
ADD `Flags` int(11) NOT NULL DEFAULT '0' AFTER `ChoiceArtFileId`,
|
||||
ADD `WidgetSetID` int(10) unsigned NOT NULL DEFAULT '0' AFTER `Flags`,
|
||||
ADD `GroupID` tinyint(3) unsigned NOT NULL DEFAULT '0' AFTER `WidgetSetID`;
|
||||
|
||||
ALTER TABLE `quest_poi`
|
||||
ADD `UiMapID` int(11) DEFAULT NULL AFTER `MapID`,
|
||||
CHANGE `WoDUnk1` `SpawnTrackingID` int(11) NOT NULL DEFAULT '0' AFTER `PlayerConditionID`;
|
||||
|
||||
ALTER TABLE `quest_template`
|
||||
ADD `ScalingFactionGroup` int(11) NOT NULL DEFAULT '0' AFTER `QuestLevel`,
|
||||
ADD `FlagsEx2` int(10) unsigned NOT NULL DEFAULT '0' AFTER `FlagsEx`,
|
||||
ADD `PortraitGiverMount` int(11) NOT NULL DEFAULT '0' AFTER `PortraitGiver`,
|
||||
CHANGE `QuestRewardID` `TreasurePickerID` int(11) NOT NULL DEFAULT '0' AFTER `AllowableRaces`;
|
||||
|
||||
ALTER TABLE `scenario_poi` ADD `UiMapID` int(11) DEFAULT NULL AFTER `MapID`;
|
||||
|
||||
DROP TABLE IF EXISTS `world_map_area_to_ui_map`;
|
||||
CREATE TABLE `world_map_area_to_ui_map` (
|
||||
`WorldMapAreaID` int(11) NOT NULL,
|
||||
`Floor` int(11) NOT NULL,
|
||||
`UiMapID` int(11) DEFAULT NULL,
|
||||
PRIMARY KEY (`WorldMapAreaID`,`Floor`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;
|
||||
|
||||
INSERT INTO `world_map_area_to_ui_map` VALUES
|
||||
(4,0,1),(4,8,2),(4,10,3),(4,11,4),(4,12,5),(4,19,6),(9,0,7),(9,6,8),(9,7,9),(11,0,10),(11,20,11),(13,0,12),(14,0,13),(16,0,14),(17,0,15),(17,18,16),(19,0,17),(20,0,18),(20,13,19),(20,25,20),
|
||||
(21,0,21),(22,0,22),(23,0,23),(23,20,24),(24,0,25),(26,0,26),(27,0,27),(27,6,28),(27,7,29),(27,10,30),(27,11,31),(28,0,32),(28,14,33),(28,15,34),(28,16,35),(29,0,36),(30,0,37),(30,1,38),(30,2,39),(30,19,40),
|
||||
(30,21,41),(32,0,42),(32,22,43),(32,23,44),(32,24,45),(32,27,46),(34,0,47),(35,0,48),(36,0,49),(37,0,50),(38,0,51),(39,0,52),(39,4,53),(39,5,54),(39,17,55),(40,0,56),(41,0,57),(41,2,58),(41,3,59),(41,4,60),
|
||||
(41,5,61),(42,0,62),(43,0,63),(61,0,64),(81,0,65),(101,0,66),(101,21,67),(101,22,68),(121,0,69),(141,0,70),(161,0,71),(161,15,72),(161,16,73),(161,17,74),(161,18,75),(181,0,76),(182,0,77),(201,0,78),(201,14,79),(241,0,80),
|
||||
(261,0,81),(261,13,82),(281,0,83),(301,0,84),(321,0,85),(321,1,86),(341,0,87),(362,0,88),(381,0,89),(382,0,90),(401,0,91),(443,0,92),(461,0,93),(462,0,94),(463,0,95),(463,1,96),(464,0,97),(464,2,98),(464,3,99),(465,0,100),
|
||||
(466,0,101),(467,0,102),(471,0,103),(473,0,104),(475,0,105),(476,0,106),(477,0,107),(478,0,108),(479,0,109),(480,0,110),(481,0,111),(482,0,112),(485,0,113),(486,0,114),(488,0,115),(490,0,116),(491,0,117),(492,0,118),(493,0,119),(495,0,120),
|
||||
(496,0,121),(499,0,122),(501,0,123),(502,0,124),(504,1,125),(504,2,126),(510,0,127),(512,0,128),(520,1,129),(521,0,130),(521,1,131),(522,1,132),(523,1,133),(523,2,134),(523,3,135),(524,1,136),(524,2,137),(525,1,138),(525,2,139),(526,1,140),
|
||||
(527,1,141),(528,0,142),(528,1,143),(528,2,144),(528,3,145),(528,4,146),(529,0,147),(529,1,148),(529,2,149),(529,3,150),(529,4,151),(529,5,152),(530,0,153),(530,1,154),(531,0,155),(532,1,156),(533,1,157),(533,2,158),(533,3,159),(534,1,160),
|
||||
(534,2,161),(535,1,162),(535,2,163),(535,3,164),(535,4,165),(535,5,166),(535,6,167),(536,1,168),(540,0,169),(541,0,170),(542,1,171),(543,1,172),(543,2,173),(544,0,174),(544,1,175),(544,2,176),(544,3,177),(544,4,178),(545,0,179),(545,1,180),
|
||||
(545,2,181),(545,3,182),(601,1,183),(602,0,184),(603,1,185),(604,1,186),(604,2,187),(604,3,188),(604,4,189),(604,5,190),(604,6,191),(604,7,192),(604,8,193),(605,0,194),(605,5,195),(605,6,196),(605,7,197),(606,0,198),(607,0,199),(609,0,200),
|
||||
(610,0,201),(611,0,202),(613,0,203),(614,0,204),(615,0,205),(626,0,206),(640,0,207),(640,1,208),(640,2,209),(673,0,210),(680,1,213),(684,0,217),(685,0,218),(686,0,219),(687,1,220),(688,1,221),(688,2,222),(688,3,223),(689,0,224),(690,1,225),
|
||||
(691,1,226),(691,2,227),(691,3,228),(691,4,229),(692,1,230),(692,2,231),(696,1,232),(697,0,233),(699,0,234),(699,1,235),(699,2,236),(699,3,237),(699,4,238),(699,5,239),(699,6,240),(700,0,241),(704,1,242),(704,2,243),(708,0,244),(709,0,245),
|
||||
(710,1,246),(717,0,247),(718,1,248),(720,0,249),(721,1,250),(721,2,251),(721,3,252),(721,4,253),(721,5,254),(721,6,255),(722,1,256),(722,2,257),(723,1,258),(723,2,259),(724,1,260),(725,1,261),(726,1,262),(727,1,263),(727,2,264),(728,1,265),
|
||||
(729,1,266),(730,1,267),(730,2,268),(731,1,269),(731,2,270),(731,3,271),(732,1,272),(733,0,273),(734,0,274),(736,0,275),(737,0,276),(747,0,277),(749,1,279),(750,1,280),(750,2,281),(752,1,282),(753,1,283),(753,2,284),(754,1,285),(754,2,286),
|
||||
(755,1,287),(755,2,288),(755,3,289),(755,4,290),(756,1,291),(756,2,292),(757,1,293),(758,1,294),(758,2,295),(758,3,296),(759,1,297),(759,2,298),(759,3,299),(760,1,300),(761,1,301),(762,1,302),(762,2,303),(762,3,304),(762,4,305),(763,1,306),
|
||||
(763,2,307),(763,3,308),(763,4,309),(764,1,310),(764,2,311),(764,3,312),(764,4,313),(764,5,314),(764,6,315),(764,7,316),(765,1,317),(765,2,318),(766,1,319),(766,2,320),(766,3,321),(767,1,322),(767,2,323),(768,1,324),(769,1,325),(772,0,327),
|
||||
(773,1,328),(775,0,329),(776,1,330),(779,1,331),(780,1,332),(781,0,333),(782,1,334),(789,0,335),(789,1,336),(793,0,337),(795,0,338),(796,0,339),(796,1,340),(796,2,341),(796,3,342),(796,4,343),(796,5,344),(796,6,345),(796,7,346),(797,1,347),
|
||||
(798,1,348),(798,2,349),(799,1,350),(799,2,351),(799,3,352),(799,4,353),(799,5,354),(799,6,355),(799,7,356),(799,8,357),(799,9,358),(799,10,359),(799,11,360),(799,12,361),(799,13,362),(799,14,363),(799,15,364),(799,16,365),(799,17,366),(800,0,367),
|
||||
(800,1,368),(800,2,369),(803,1,370),(806,0,371),(806,6,372),(806,7,373),(806,15,374),(806,16,375),(807,0,376),(807,14,377),(808,0,378),(809,0,379),(809,8,380),(809,9,381),(809,10,382),(809,11,383),(809,12,384),(809,17,385),(809,20,386),(809,21,387),
|
||||
(810,0,388),(810,13,389),(811,0,390),(811,1,391),(811,2,392),(811,3,393),(811,4,394),(811,18,395),(811,19,396),(813,0,397),(816,0,398),(819,0,399),(819,1,400),(820,0,401),(820,1,402),(820,2,403),(820,3,404),(820,4,405),(820,5,406),(823,0,407),
|
||||
(823,1,408),(824,0,409),(824,1,410),(824,2,411),(824,3,412),(824,4,413),(824,5,414),(824,6,415),(851,0,416),(856,0,417),(857,0,418),(857,1,419),(857,2,420),(857,3,421),(858,0,422),(860,1,423),(862,0,424),(864,0,425),(864,3,426),(866,0,427),
|
||||
(866,9,428),(867,1,429),(867,2,430),(871,1,431),(871,2,432),(873,0,433),(873,5,434),(874,1,435),(874,2,436),(875,1,437),(875,2,438),(876,1,439),(876,2,440),(876,3,441),(876,4,442),(877,0,443),(877,1,444),(877,2,445),(877,3,446),(878,0,447),
|
||||
(880,0,448),(881,0,449),(882,0,450),(883,0,451),(884,0,452),(885,1,453),(885,2,454),(885,3,455),(886,0,456),(887,0,457),(887,1,458),(887,2,459),(888,0,460),(889,0,461),(890,0,462),(891,0,463),(891,9,464),(892,0,465),(892,12,466),(893,0,467),
|
||||
(894,0,468),(895,0,469),(895,8,470),(896,1,471),(896,2,472),(896,3,473),(897,1,474),(897,2,475),(898,1,476),(898,2,477),(898,3,478),(898,4,479),(899,1,480),(900,1,481),(900,2,482),(906,0,483),(911,0,486),(912,0,487),(914,0,488),(914,1,489),
|
||||
(919,0,490),(919,1,491),(919,2,492),(919,3,493),(919,4,494),(919,5,495),(919,6,496),(919,7,497),(920,0,498),(922,1,499),(922,2,500),(924,1,501),(924,2,502),(925,1,503),(928,0,504),(928,1,505),(928,2,506),(929,0,507),(930,1,508),(930,2,509),
|
||||
(930,3,510),(930,4,511),(930,5,512),(930,6,513),(930,7,514),(930,8,515),(933,0,516),(933,1,517),(934,1,518),(935,0,519),(937,0,520),(937,1,521),(938,1,522),(939,0,523),(940,0,524),(941,0,525),(941,1,526),(941,2,527),(941,3,528),(941,4,529),
|
||||
(941,6,530),(941,7,531),(941,8,532),(941,9,533),(945,0,534),(946,0,535),(946,13,536),(946,14,537),(946,30,538),(947,0,539),(947,15,540),(947,22,541),(948,0,542),(949,0,543),(949,16,544),(949,17,545),(949,18,546),(949,19,547),(949,20,548),(949,21,549),
|
||||
(950,0,550),(950,10,551),(950,11,552),(950,12,553),(951,0,554),(951,22,555),(953,0,556),(953,1,557),(953,2,558),(953,3,559),(953,4,560),(953,5,561),(953,6,562),(953,7,563),(953,8,564),(953,9,565),(953,10,566),(953,11,567),(953,12,568),(953,13,569),
|
||||
(953,14,570),(955,0,571),(962,0,572),(964,1,573),(969,1,574),(969,2,575),(969,3,576),(970,0,577),(970,1,578),(971,23,579),(971,24,580),(971,25,581),(973,0,582),(976,26,585),(976,27,586),(976,28,587),(978,0,588),(978,29,589),(980,0,590),(983,0,592),
|
||||
(984,1,593),(986,0,594),(987,1,595),(988,1,596),(988,2,597),(988,3,598),(988,4,599),(988,5,600),(989,1,601),(989,2,602),(993,1,606),(993,2,607),(993,3,608),(993,4,609),(994,0,610),(994,1,611),(994,2,612),(994,3,613),(994,4,614),(994,5,615),
|
||||
(995,1,616),(995,2,617),(995,3,618),(1007,0,619),(1008,0,620),(1008,1,621),(1009,0,622),(1010,0,623),(1011,0,624),(1014,0,625),(1014,4,626),(1014,10,627),(1014,11,628),(1014,12,629),(1015,0,630),(1015,17,631),(1015,18,632),(1015,19,633),(1017,0,634),(1017,1,635),
|
||||
(1017,9,636),(1017,25,637),(1017,26,638),(1017,27,639),(1017,28,640),(1018,0,641),(1018,13,642),(1018,14,643),(1018,15,644),(1020,0,645),(1021,0,646),(1021,1,647),(1021,2,648),(1022,0,649),(1024,0,650),
|
||||
(1024,5,651),(1024,6,652),(1024,8,653),(1024,16,654),(1024,20,655),(1024,21,656),(1024,29,657),(1024,30,658),(1024,31,659),(1024,40,660),(1026,0,661),(1026,1,662),(1026,2,663),(1026,3,664),(1026,4,665),
|
||||
(1026,5,666),(1026,6,667),(1026,7,668),(1026,8,669),(1026,9,670),(1027,0,671),(1028,0,672),(1028,1,673),(1028,2,674),(1028,3,675),(1031,0,676),(1032,1,677),(1032,2,678),(1032,3,679),(1033,0,680),
|
||||
(1033,22,681),(1033,23,682),(1033,24,683),(1033,32,684),(1033,33,685),(1033,34,686),(1033,35,687),(1033,36,688),(1033,37,689),(1033,38,690),(1033,39,691),(1033,41,692),(1033,42,693),(1034,0,694),
|
||||
(1035,1,695),(1037,0,696),(1038,0,697),(1039,1,698),(1039,2,699),(1039,3,700),(1039,4,701),(1040,1,702),(1041,0,703),(1041,1,704),(1041,2,705),(1042,0,706),(1042,1,707),(1042,2,708),(1044,0,709),
|
||||
(1045,1,710),(1045,2,711),(1045,3,712),(1046,0,713),(1047,0,714),(1048,0,715),(1049,1,716),(1050,0,717),(1051,0,718),(1052,0,719),(1052,1,720),(1052,2,721),(1054,1,723),(1056,0,725),(1057,0,726),
|
||||
(1059,0,728),(1060,1,729),(1065,0,731),(1066,1,732),(1067,0,733),(1068,1,734),(1068,2,735),(1069,1,736),(1070,1,737),(1071,0,738),(1072,0,739),(1073,1,740),(1073,2,741),(1075,1,742),(1075,2,743),
|
||||
(1076,1,744),(1076,2,745),(1076,3,746),(1077,0,747),(1078,0,748),(1079,1,749),(1080,0,750),(1081,1,751),(1081,2,752),(1081,3,753),(1081,4,754),(1081,5,755),(1081,6,756),(1082,0,757),(1084,0,758),
|
||||
(1085,1,759),(1086,0,760),(1087,0,761),(1087,1,762),(1087,2,763),(1088,1,764),(1088,2,765),(1088,3,766),(1088,4,767),(1088,5,768),(1088,6,769),(1088,7,770),(1088,8,771),(1088,9,772),(1090,0,773),
|
||||
(1090,1,774),(1091,0,775),(1092,0,776),(1094,1,777),(1094,2,778),(1094,3,779),(1094,4,780),(1094,5,781),(1094,6,782),(1094,7,783),(1094,8,784),(1094,9,785),(1094,10,786),(1094,11,787),(1094,12,788),
|
||||
(1094,13,789),(1096,0,790),(1097,1,791),(1097,2,792),(1099,0,793),(1100,1,794),(1100,2,795),(1100,3,796),(1100,4,797),(1102,1,798),(1104,0,799),(1104,1,800),(1104,2,801),(1104,3,802),(1104,4,803),
|
||||
(1105,1,804),(1105,2,805),(1114,0,806),(1114,1,807),(1114,2,808),(1115,1,809),(1115,2,810),(1115,3,811),(1115,4,812),(1115,5,813),(1115,6,814),(1115,7,815),(1115,8,816),(1115,9,817),(1115,10,818),
|
||||
(1115,11,819),(1115,12,820),(1115,13,821),(1115,14,822),(1116,0,823),(1126,0,824),(1127,1,825),(1129,1,826),(1130,1,827),(1131,1,828),(1132,1,829),(1135,0,830),(1135,1,831),(1135,2,832),(1135,7,833),
|
||||
(1136,0,834),(1137,1,835),(1137,2,836),(1139,0,837),(1140,0,838),(1142,1,839),(1143,1,840),(1143,2,841),(1143,3,842),(1144,0,843),(1145,0,844),(1146,1,845),(1146,2,846),(1146,3,847),(1146,4,848),
|
||||
(1146,5,849),(1147,1,850),(1147,2,851),(1147,3,852),(1147,4,853),(1147,5,854),(1147,6,855),(1147,7,856),(1148,1,857),(1149,0,858),(1150,0,859),(1151,0,860),(1152,0,861),(1153,0,862),(1154,0,863),
|
||||
(1155,0,864),(1156,1,865),(1156,2,866),(1157,1,867),(1158,1,868),(1159,1,869),(1159,2,870),(1160,0,871),(1161,0,872),(1161,1,873),(1161,2,874),(1162,0,875),(1163,0,876),(1164,0,877),(1165,0,878),
|
||||
(1165,1,879),(1165,2,880),(1166,1,881),(1170,0,882),(1170,3,883),(1170,4,884),(1171,0,885),(1171,5,886),(1171,6,887),(1172,1,888),(1173,1,889),(1173,2,890),(1174,0,891),(1174,1,892),(1174,2,893),
|
||||
(1174,3,894),(1175,0,895),(1176,0,896),(1177,0,897),(1177,1,898),(1177,2,899),(1177,3,900),(1177,4,901),(1177,5,902),(1178,0,903),(1183,0,904),(1184,0,905),(1185,0,906),(1186,0,907),(1187,0,908),
|
||||
(1188,0,909),(1188,1,910),(1188,2,911),(1188,3,912),(1188,4,913),(1188,5,914),(1188,6,915),(1188,7,916),(1188,8,917),(1188,9,918),(1188,10,919),(1188,11,920),(1190,0,921),(1191,0,922),(1192,0,923),
|
||||
(1193,0,924),(1194,0,925),(1195,0,926),(1196,0,927),(1197,0,928),(1198,0,929),(1199,0,930),(1200,0,931),(1201,0,932),(1202,0,933),(1204,1,934),(1204,2,935),(1205,0,936),(1210,0,938),(1211,0,939),
|
||||
(1212,1,940),(1212,2,941),(1213,0,942),(1214,0,943),(1215,0,971),(1216,0,972),(1217,1,973),(1219,0,974),(1219,1,975),(1219,2,976),(1219,3,977),(1219,4,978),(1219,5,979),(1219,6,980),(1220,0,981),
|
||||
(32,21,42),(974,0,582),(1121,0,646),(992,0,17),(981,0,590),(991,0,582),(990,0,590),(975,0,582),(910,0,418),(910,1,419),(910,2,420),(910,3,421),(907,0,70),(905,4,394),(321,2,85),(510,1,127),(522,0,132);
|
||||
|
||||
UPDATE `quest_poi` SET `UiMapID`=(SELECT wma.`UiMapID` FROM `world_map_area_to_ui_map` wma WHERE wma.`WorldMapAreaID`=`quest_poi`.`WorldMapAreaID` AND wma.`Floor`=`quest_poi`.`Floor`);
|
||||
UPDATE `scenario_poi` SET `UiMapID`=(SELECT wma.`UiMapID` FROM `world_map_area_to_ui_map` wma WHERE wma.`WorldMapAreaID`=`scenario_poi`.`WorldMapAreaID` AND wma.`Floor`=`scenario_poi`.`Floor`);
|
||||
|
||||
DROP TABLE IF EXISTS `world_map_area_to_ui_map`;
|
||||
|
||||
DELETE FROM `quest_poi` WHERE `UiMapID` IS NULL;
|
||||
DELETE FROM `scenario_poi` WHERE `UiMapID` IS NULL;
|
||||
|
||||
ALTER TABLE `quest_poi`
|
||||
CHANGE `UiMapID` `UiMapID` int(11) NOT NULL DEFAULT '0' AFTER `MapID`,
|
||||
DROP `WorldMapAreaID`,
|
||||
DROP `Floor`;
|
||||
|
||||
ALTER TABLE `scenario_poi`
|
||||
CHANGE `UiMapID` `UiMapID` int(11) NOT NULL DEFAULT '0' AFTER `MapID`,
|
||||
DROP `WorldMapAreaID`,
|
||||
DROP `Floor`;
|
||||
|
||||
ALTER TABLE `spell_areatrigger`
|
||||
ADD `AnimId` int(11) NOT NULL DEFAULT '0' AFTER `FacingCurveId`,
|
||||
ADD `AnimKitId` int(11) NOT NULL DEFAULT '0' AFTER `AnimId`;
|
||||
@@ -0,0 +1,23 @@
|
||||
DROP TABLE IF EXISTS `creature_template_model`;
|
||||
CREATE TABLE `creature_template_model`(
|
||||
`CreatureID` int(10) unsigned NOT NULL,
|
||||
`Idx` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`CreatureDisplayID` int(10) unsigned NOT NULL,
|
||||
`DisplayScale` float NOT NULL DEFAULT '1',
|
||||
`Probability` float NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` smallint(5) unsigned NOT NULL,
|
||||
PRIMARY KEY (`CreatureID`,`CreatureDisplayID`)
|
||||
) ENGINE=MYISAM CHARSET=utf8mb4;
|
||||
|
||||
INSERT IGNORE INTO `creature_template_model` (`CreatureID`,`Idx`,`CreatureDisplayID`,`DisplayScale`,`Probability`,`VerifiedBuild`) SELECT `entry`,0,`modelid1`,`scale`,1,`VerifiedBuild` FROM `creature_template` WHERE `modelid1`!=0;
|
||||
INSERT IGNORE INTO `creature_template_model` (`CreatureID`,`Idx`,`CreatureDisplayID`,`DisplayScale`,`Probability`,`VerifiedBuild`) SELECT `entry`,1,`modelid2`,`scale`,1,`VerifiedBuild` FROM `creature_template` WHERE `modelid2`!=0;
|
||||
INSERT IGNORE INTO `creature_template_model` (`CreatureID`,`Idx`,`CreatureDisplayID`,`DisplayScale`,`Probability`,`VerifiedBuild`) SELECT `entry`,2,`modelid3`,`scale`,1,`VerifiedBuild` FROM `creature_template` WHERE `modelid3`!=0;
|
||||
INSERT IGNORE INTO `creature_template_model` (`CreatureID`,`Idx`,`CreatureDisplayID`,`DisplayScale`,`Probability`,`VerifiedBuild`) SELECT `entry`,3,`modelid4`,`scale`,1,`VerifiedBuild` FROM `creature_template` WHERE `modelid4`!=0;
|
||||
|
||||
UPDATE `creature_template` SET `scale`=1;
|
||||
|
||||
ALTER TABLE `creature_template`
|
||||
DROP `modelid1`,
|
||||
DROP `modelid2`,
|
||||
DROP `modelid3`,
|
||||
DROP `modelid4`;
|
||||
@@ -0,0 +1,7 @@
|
||||
ALTER TABLE `creature_classlevelstats`
|
||||
DROP `damage_base`,
|
||||
DROP `damage_exp1`,
|
||||
DROP `damage_exp2`,
|
||||
DROP `damage_exp3`,
|
||||
DROP `damage_exp4`,
|
||||
DROP `damage_exp5`;
|
||||
@@ -0,0 +1 @@
|
||||
UPDATE `trinity_string` SET `content_default`='%u - |cffffffff|Hquest:%u:%d:%d:%d:%d|h[%s]|h|r %s' WHERE `entry`=513;
|
||||
@@ -0,0 +1,8 @@
|
||||
DELETE FROM `skill_tiers` WHERE `ID` IN (333,335,336,338);
|
||||
INSERT INTO `skill_tiers` (`ID`,`Value1`,`Value2`,`Value3`,`Value4`,`Value5`,`Value6`,`Value7`,`Value8`,`Value9`,`Value10`,`Value11`,`Value12`,`Value13`,`Value14`,`Value15`,`Value16`) VALUES
|
||||
(333,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
|
||||
(335,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
|
||||
(336,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
|
||||
(338,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0);
|
||||
|
||||
UPDATE `skill_tiers` SET `Value10`=800,`Value11`=950 WHERE `ID`=224;
|
||||
@@ -0,0 +1,31 @@
|
||||
-- Kayneth Stillwind -- http://wotlk.openwow.com/npc=3848
|
||||
DELETE FROM `waypoints` WHERE `entry`=3848;
|
||||
INSERT INTO `waypoints` (`entry`, `pointid`, `position_x`, `position_y`, `position_z`, `point_comment`) VALUES
|
||||
(3848, 1, 2954.25,-3215.41,169.205, 'Kayneth Stillwind '),
|
||||
(3848, 2, 2966.65,-3213.95,168.914, 'Kayneth Stillwind '),
|
||||
(3848, 3, 2954.23,-3215.45,169.206, 'Kayneth Stillwind ');
|
||||
|
||||
-- Kayneth Stillwind SAI
|
||||
SET @ENTRY := 3848;
|
||||
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,2,0,100,1,0,15,0,0,25,1,0,0,0,0,0,7,0,0,0,0,0,0,0,"Kayneth Stillwind - Between 0-15% Health - Flee For Assist (No Repeat)"),
|
||||
(@ENTRY,0,1,0,25,0,100,0,0,0,0,0,53,0,3848,1,0,0,0,1,0,0,0,0,0,0,0,"Kayneth Stillwind - On Reset - Start Waypoint"),
|
||||
(@ENTRY,0,2,0,40,0,100,0,1,3848,0,0,54,5000,0,0,0,0,0,1,0,0,0,0,0,0,0,"Kayneth Stillwind - On Waypoint 1 Reached - Pause Waypoint"),
|
||||
(@ENTRY,0,3,4,40,0,100,0,2,3848,0,0,54,20000,0,0,0,0,0,1,0,0,0,0,0,0,0,"Kayneth Stillwind - On Waypoint 2 Reached - Pause Waypoint"),
|
||||
(@ENTRY,0,4,0,61,0,100,0,2,3848,0,0,80,@ENTRY*100+00,0,0,0,0,0,1,0,0,0,0,0,0,0,"Kayneth Stillwind - On Waypoint 2 Reached - Run Script"),
|
||||
(@ENTRY,0,5,0,40,0,100,0,3,3848,0,0,54,5000,0,0,0,0,0,1,0,0,0,0,0,0,0,"Kayneth Stillwind - On Waypoint 3 Reached - Pause Waypoint");
|
||||
|
||||
-- Actionlist SAI
|
||||
SET @ENTRY := 384800;
|
||||
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,3000,3000,0,0,66,0,0,0,0,0,0,8,0,0,0,0,0,0,0.965562,"Kayneth Stillwind - On Script - Set Orientation 0.965562"),
|
||||
(@ENTRY,9,1,0,0,0,100,0,3000,3000,0,0,17,69,0,0,0,0,0,1,0,0,0,0,0,0,0,"Kayneth Stillwind - On Script - Set Emote State 69"),
|
||||
(@ENTRY,9,2,0,0,0,100,0,3000,3000,0,0,17,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Kayneth Stillwind - On Script - Set Emote State 0"),
|
||||
(@ENTRY,9,3,0,0,0,100,0,3000,3000,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Kayneth Stillwind - On Script - Say Line 0");
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`=3848;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `Comment`, `BroadcastTextId`) VALUES
|
||||
(3848, 0, 0, 'Putting the bottles away, %s sighs.', 16, 0, 100, 0, 0, 0, 'Kayneth Stillwind', 14108);
|
||||
@@ -0,0 +1,70 @@
|
||||
--
|
||||
-- Fineous Darkvire SAI -- http://www.wowhead.com/npc=9056/fineous-darkvire
|
||||
SET @ENTRY := 9056;
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY 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
|
||||
(@ENTRY,0,6,0,25,0,100,0,0,0,0,0,53,0,9056,1,0,0,2,0,0,0,0,0,0,0,0,"Fineous Darkvire - On Reset - Start Waypoint"),
|
||||
(@ENTRY,0,7,0,40,0,100,0,12,9056,0,0,80,@ENTRY*100+00,2,0,0,0,0,1,0,0,0,0,0,0,0,"Fineous Darkvire - On Waypoint 12 Reached - Run Script"),
|
||||
(@ENTRY,0,8,0,40,0,100,0,19,9056,0,0,80,@ENTRY*100+01,2,0,0,0,0,1,0,0,0,0,0,0,0,"Fineous Darkvire - On Waypoint 19 Reached - Run Script"),
|
||||
(@ENTRY,0,9,0,40,0,100,0,24,9056,0,0,80,@ENTRY*100+02,2,0,0,0,0,1,0,0,0,0,0,0,0,"Fineous Darkvire - On Waypoint 24 Reached - Run Script");
|
||||
|
||||
-- Actionlist SAI
|
||||
SET @ENTRY := 905600;
|
||||
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,54,15000,0,0,0,0,0,1,0,0,0,0,0,0,0,"Fineous Darkvire - On Script - Pause Waypoint"),
|
||||
(@ENTRY,9,1,0,0,0,100,0,3000,3000,0,0,17,133,0,0,0,0,0,1,0,0,0,0,0,0,0,"Fineous Darkvire - On Script - Set Emote State 133"),
|
||||
(@ENTRY,9,2,0,0,0,100,0,10000,10000,0,0,17,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Fineous Darkvire - On Script - Set Emote State 0");
|
||||
|
||||
-- Actionlist SAI
|
||||
SET @ENTRY := 905601;
|
||||
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,54,15000,0,0,0,0,0,1,0,0,0,0,0,0,0,"Fineous Darkvire - On Script - Pause Waypoint"),
|
||||
(@ENTRY,9,1,0,0,0,100,0,3000,3000,0,0,17,173,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fineous Darkvire - On Script - Set Emote State 173"),
|
||||
(@ENTRY,9,2,0,0,0,100,0,10000,10000,0,0,17,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Fineous Darkvire - On Script - Set Emote State 0");
|
||||
|
||||
-- Actionlist SAI
|
||||
SET @ENTRY := 905602;
|
||||
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,54,3000,0,0,0,0,0,1,0,0,0,0,0,0,0,"Fineous Darkvire - On Script - Pause Waypoint"),
|
||||
(@ENTRY,9,1,0,0,0,100,0,1000,1000,0,0,5,16,0,0,0,0,0,1,0,0,0,0,0,0,0,"Fineous Darkvire - On Script - Play Emote 16");
|
||||
|
||||
DELETE FROM `waypoints` WHERE `entry`=9056;
|
||||
INSERT INTO `waypoints` (`entry`, `pointid`, `position_x`, `position_y`, `position_z`) VALUES
|
||||
(9056, 1, 975.107, -354.152, -69.1219),
|
||||
(9056, 2, 984.444, -363.944, -65.9066),
|
||||
(9056, 3, 984.38, -372.827, -66.4086),
|
||||
(9056, 4, 976.479, -381.185, -63.9267),
|
||||
(9056, 5, 962.877, -395.447, -60.8377),
|
||||
(9056, 6, 950.417, -408.589, -57.1351),
|
||||
(9056, 7, 941.736, -417.331, -55.0396),
|
||||
(9056, 8, 931.446, -413.318, -55.3833),
|
||||
(9056, 9, 923.409, -403.986, -51.104),
|
||||
(9056, 10, 914.499, -394.179, -49.4412),
|
||||
(9056, 11, 905.604, -403.547, -48.7295),
|
||||
(9056, 12, 905.604, -403.547, -48.7295),
|
||||
(9056, 13, 912.664, -392.947, -49.2744),
|
||||
(9056, 14, 918.441, -398, -49.6367),
|
||||
(9056, 15, 926.414, -407.296, -52.6216),
|
||||
(9056, 16, 930.038, -418.35, -55.3877),
|
||||
(9056, 17, 930.151, -424.848, -55.8645),
|
||||
(9056, 18, 927.594, -433.715, -56.5236),
|
||||
(9056, 19, 927.594, -433.715, -56.5236),
|
||||
(9056, 20, 936.123, -427.94, -56.1072),
|
||||
(9056, 21, 939.641, -426.605, -55.7614),
|
||||
(9056, 22, 944.406, -426.659, -54.9984),
|
||||
(9056, 23, 946.326, -428.053, -54.6023),
|
||||
(9056, 24, 946.326, -428.053, -54.6023),
|
||||
(9056, 25, 943.776, -418.105, -54.9468),
|
||||
(9056, 26, 947.044, -410.439, -55.9664),
|
||||
(9056, 27, 955.107, -403.439, -59.5107),
|
||||
(9056, 28, 961.657, -396.63, -60.8377),
|
||||
(9056, 29, 968.284, -389.058, -60.8377),
|
||||
(9056, 30, 978.015, -379.612, -64.6384),
|
||||
(9056, 31, 986.547, -370.816, -66.5624),
|
||||
(9056, 32, 974.031, -355.625, -69.1521),
|
||||
(9056, 33, 967.597, -349.477, -71.3905),
|
||||
(9056, 34, 963.267, -343.735, -71.7394);
|
||||
@@ -0,0 +1,7 @@
|
||||
--
|
||||
DELETE FROM `creature` WHERE `guid` IN (56954,56955,62014,77758);
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `spawnDifficulties`, `PhaseID`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `MovementType`) VALUES
|
||||
(56954, 3681, 582, '0', 0, 29.50126, 0.000602, 24.44553, 0.03490658, 120, 0, 0), -- 3681 (Area: 452)
|
||||
(56955, 24998, 582, '0', 0, 4.989703, -1.72901, 5.419243, 3.261605, 120, 0, 0), -- 24998 (Area: 452)
|
||||
(62014, 3681, 586, '0', 0, -48.46594, 0.112139, 8.758898, 3.455752, 120, 0, 0), -- 3681 (Area: 452)
|
||||
(77758, 25053, 586, '0', 0, -36.79112, -0.04812, 5.976357, 2.775074, 120, 0, 0); -- 25053 (Area: 452)
|
||||
Reference in New Issue
Block a user