DB Update for 8.2.0.31429
Thanks TrinityCore https://github.com/TrinityCore/TrinityCore
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
-- TDB 735.00 auth
|
||||
UPDATE `updates` SET `state`='ARCHIVED';
|
||||
@@ -0,0 +1,3 @@
|
||||
UPDATE `realmlist` SET `gamebuild`=26124 WHERE `gamebuild`=25996;
|
||||
|
||||
ALTER TABLE `realmlist` CHANGE `gamebuild` `gamebuild` int(10) unsigned NOT NULL DEFAULT '26124';
|
||||
@@ -0,0 +1,5 @@
|
||||
DELETE FROM `rbac_permissions` WHERE `id`=872;
|
||||
INSERT INTO `rbac_permissions` (`id`, `name`) VALUES
|
||||
(872, 'Command: server debug');
|
||||
INSERT INTO `rbac_linked_permissions` (`id`, `linkedId`) VALUES
|
||||
(196, 872);
|
||||
@@ -0,0 +1,3 @@
|
||||
UPDATE `realmlist` SET `gamebuild`=26365 WHERE `gamebuild`=26124;
|
||||
|
||||
ALTER TABLE `realmlist` CHANGE `gamebuild` `gamebuild` int(10) unsigned NOT NULL DEFAULT '26365';
|
||||
@@ -0,0 +1 @@
|
||||
ALTER TABLE `realmlist` MODIFY `Region` tinyint(3) unsigned NOT NULL DEFAULT '1' AFTER `gamebuild`;
|
||||
@@ -0,0 +1,3 @@
|
||||
UPDATE `realmlist` SET `gamebuild`=26654 WHERE `gamebuild`=26365;
|
||||
|
||||
ALTER TABLE `realmlist` CHANGE `gamebuild` `gamebuild` int(10) unsigned NOT NULL DEFAULT '26654';
|
||||
@@ -0,0 +1,3 @@
|
||||
UPDATE `realmlist` SET `gamebuild`=26822 WHERE `gamebuild`=26654;
|
||||
|
||||
ALTER TABLE `realmlist` CHANGE `gamebuild` `gamebuild` int(10) unsigned NOT NULL DEFAULT '26822';
|
||||
@@ -0,0 +1,3 @@
|
||||
UPDATE `realmlist` SET `gamebuild`=26899 WHERE `gamebuild`=26822;
|
||||
|
||||
ALTER TABLE `realmlist` CHANGE `gamebuild` `gamebuild` int(10) unsigned NOT NULL DEFAULT '26899';
|
||||
@@ -0,0 +1,3 @@
|
||||
--
|
||||
DROP TABLE IF EXISTS `ip2nation`;
|
||||
DROP TABLE IF EXISTS `ip2nationCountries`;
|
||||
@@ -0,0 +1,3 @@
|
||||
UPDATE `realmlist` SET `gamebuild`=26972 WHERE `gamebuild`=26899;
|
||||
|
||||
ALTER TABLE `realmlist` CHANGE `gamebuild` `gamebuild` int(10) unsigned NOT NULL DEFAULT '26972';
|
||||
@@ -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 @@
|
||||
ALTER TABLE `battlenet_account_toys` ADD `hasFanfare` tinyint(1) DEFAULT '0' AFTER `isFavourite`;
|
||||
@@ -0,0 +1,2 @@
|
||||
DELETE FROM `rbac_linked_permissions` WHERE `linkedId` IN (307,308,313,332,333,334,338,546);
|
||||
DELETE FROM `rbac_permissions` WHERE `id` IN (307,308,313,332,333,334,338,546);
|
||||
@@ -0,0 +1 @@
|
||||
UPDATE `rbac_permissions` SET `name`='Command: reload item_random_bonus_list_template' WHERE `id`=653;
|
||||
@@ -0,0 +1,3 @@
|
||||
UPDATE `realmlist` SET `gamebuild`=30706 WHERE `gamebuild`=28153;
|
||||
|
||||
ALTER TABLE `realmlist` CHANGE `gamebuild` `gamebuild` int(10) unsigned NOT NULL DEFAULT '30706';
|
||||
@@ -0,0 +1,3 @@
|
||||
UPDATE `realmlist` SET `gamebuild`=30993 WHERE `gamebuild`=30706;
|
||||
|
||||
ALTER TABLE `realmlist` CHANGE `gamebuild` `gamebuild` int(10) unsigned NOT NULL DEFAULT '30993';
|
||||
@@ -0,0 +1,2 @@
|
||||
-- TDB 735.00 characters
|
||||
UPDATE `updates` SET `state`='ARCHIVED';
|
||||
@@ -0,0 +1,10 @@
|
||||
--
|
||||
-- Table structure for table `character_pvp_talent`
|
||||
--
|
||||
DROP TABLE IF EXISTS `character_pvp_talent`;
|
||||
CREATE TABLE `character_pvp_talent` (
|
||||
`guid` bigint(20) unsigned NOT NULL,
|
||||
`talentId` mediumint(8) unsigned NOT NULL,
|
||||
`talentGroup` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`guid`,`talentId`,`talentGroup`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
@@ -0,0 +1,803 @@
|
||||
-- Setup temporary table with list of fixed-scaling item bonuses, and their scaling limits
|
||||
DROP TABLE IF EXISTS `tmp_scale_data`;
|
||||
CREATE TEMPORARY TABLE `tmp_scale_data` (
|
||||
`BonusListID` int(10) unsigned NOT NULL,
|
||||
`MinLevel` int(10) unsigned NOT NULL,
|
||||
`MaxLevel` int(10) unsigned NOT NULL,
|
||||
PRIMARY KEY (`BonusListID`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
INSERT INTO `tmp_scale_data` (`BonusListID`, `MinLevel`, `MaxLevel`) VALUES
|
||||
(615,1,110),
|
||||
(645,1,110),
|
||||
(656,1,110),
|
||||
(664,98,110),
|
||||
(692,1,110),
|
||||
(767,98,110),
|
||||
(768,98,110),
|
||||
(1723,0,110),
|
||||
(1724,0,110),
|
||||
(1725,0,110),
|
||||
(1729,0,110),
|
||||
(1730,0,110),
|
||||
(1731,0,110),
|
||||
(1732,98,110),
|
||||
(1733,98,110),
|
||||
(1734,0,110),
|
||||
(1735,0,110),
|
||||
(1736,0,110),
|
||||
(1737,0,110),
|
||||
(1738,0,110),
|
||||
(1739,0,110),
|
||||
(1740,0,110),
|
||||
(1741,0,110),
|
||||
(1788,0,110),
|
||||
(1789,0,110),
|
||||
(1790,0,110),
|
||||
(1791,0,110),
|
||||
(1792,0,110),
|
||||
(1793,0,110),
|
||||
(1794,98,110),
|
||||
(1795,0,110),
|
||||
(1796,0,110),
|
||||
(1812,98,110),
|
||||
(3342,98,110),
|
||||
(3380,0,110),
|
||||
(3387,1,100),
|
||||
(3388,1,100),
|
||||
(3389,1,100),
|
||||
(3398,0,110),
|
||||
(3448,0,110),
|
||||
(3502,1,110),
|
||||
(3578,1,110),
|
||||
(3585,1,110),
|
||||
(3589,1,110),
|
||||
(3590,1,110),
|
||||
(3596,1,110),
|
||||
(3621,1,110),
|
||||
(3622,1,110),
|
||||
(3623,1,110),
|
||||
(3624,1,110),
|
||||
(3625,1,110),
|
||||
(3626,1,110),
|
||||
(3627,1,110),
|
||||
(3628,1,110),
|
||||
(3631,0,120),
|
||||
(3633,10,60),
|
||||
(3634,10,60),
|
||||
(3635,10,60),
|
||||
(3636,10,60),
|
||||
(3637,10,60),
|
||||
(3638,10,60),
|
||||
(3639,10,60),
|
||||
(3640,10,60),
|
||||
(3641,15,60),
|
||||
(3642,15,60),
|
||||
(3643,15,60),
|
||||
(3644,20,60),
|
||||
(3645,20,60),
|
||||
(3646,20,60),
|
||||
(3647,25,60),
|
||||
(3648,25,60),
|
||||
(3649,25,60),
|
||||
(3650,30,60),
|
||||
(3651,30,60),
|
||||
(3652,40,60),
|
||||
(3653,35,60),
|
||||
(3654,35,60),
|
||||
(3655,30,60),
|
||||
(3656,35,60),
|
||||
(3657,40,60),
|
||||
(3658,40,60),
|
||||
(3659,40,60),
|
||||
(3660,40,60),
|
||||
(3661,40,60),
|
||||
(3662,40,60),
|
||||
(3663,40,60),
|
||||
(3664,40,60),
|
||||
(3665,40,60),
|
||||
(3666,40,60),
|
||||
(3667,40,60),
|
||||
(3668,5,20),
|
||||
(3669,4,20),
|
||||
(3670,5,20),
|
||||
(3671,4,20),
|
||||
(3672,5,20),
|
||||
(3673,4,20),
|
||||
(3674,5,20),
|
||||
(3675,5,20),
|
||||
(3676,5,20),
|
||||
(3677,5,20),
|
||||
(3678,5,20),
|
||||
(3679,58,80),
|
||||
(3680,60,80),
|
||||
(3681,62,80),
|
||||
(3682,65,80),
|
||||
(3683,67,80),
|
||||
(3684,67,80),
|
||||
(3685,58,80),
|
||||
(3686,58,80),
|
||||
(3687,61,80),
|
||||
(3688,63,80),
|
||||
(3689,64,80),
|
||||
(3690,66,80),
|
||||
(3691,67,80),
|
||||
(3692,67,80),
|
||||
(3693,80,90),
|
||||
(3694,80,90),
|
||||
(3695,82,90),
|
||||
(3696,83,90),
|
||||
(3697,84,90),
|
||||
(3698,80,90),
|
||||
(3699,81,90),
|
||||
(3700,81,90),
|
||||
(3701,82,90),
|
||||
(3702,83,90),
|
||||
(3703,84,90),
|
||||
(3704,85,90),
|
||||
(3705,90,100),
|
||||
(3706,90,100),
|
||||
(3707,94,100),
|
||||
(3708,92,100),
|
||||
(3709,96,100),
|
||||
(3710,98,100),
|
||||
(3711,90,100),
|
||||
(3712,10,60),
|
||||
(3713,10,60),
|
||||
(3714,10,60),
|
||||
(3715,10,60),
|
||||
(3716,10,60),
|
||||
(3717,10,60),
|
||||
(3718,10,60),
|
||||
(3719,10,60),
|
||||
(3720,15,60),
|
||||
(3721,15,60),
|
||||
(3722,15,60),
|
||||
(3723,20,60),
|
||||
(3724,20,60),
|
||||
(3725,20,60),
|
||||
(3726,25,60),
|
||||
(3727,25,60),
|
||||
(3728,25,60),
|
||||
(3729,30,60),
|
||||
(3730,30,60),
|
||||
(3731,40,60),
|
||||
(3732,35,60),
|
||||
(3733,35,60),
|
||||
(3734,30,60),
|
||||
(3735,35,60),
|
||||
(3736,40,60),
|
||||
(3737,40,60),
|
||||
(3738,40,60),
|
||||
(3739,40,60),
|
||||
(3740,40,60),
|
||||
(3741,40,60),
|
||||
(3742,40,60),
|
||||
(3743,40,60),
|
||||
(3744,40,60),
|
||||
(3745,40,60),
|
||||
(3746,40,60),
|
||||
(3747,5,20),
|
||||
(3748,4,20),
|
||||
(3749,5,20),
|
||||
(3750,4,20),
|
||||
(3751,5,20),
|
||||
(3752,4,20),
|
||||
(3753,5,20),
|
||||
(3754,5,20),
|
||||
(3755,5,20),
|
||||
(3756,5,20),
|
||||
(3757,5,20),
|
||||
(3758,58,80),
|
||||
(3759,60,80),
|
||||
(3760,62,80),
|
||||
(3761,65,80),
|
||||
(3762,67,80),
|
||||
(3763,67,80),
|
||||
(3764,58,80),
|
||||
(3765,58,80),
|
||||
(3766,61,80),
|
||||
(3767,63,80),
|
||||
(3768,64,80),
|
||||
(3769,66,80),
|
||||
(3770,67,80),
|
||||
(3771,67,80),
|
||||
(3772,80,90),
|
||||
(3773,80,90),
|
||||
(3774,82,90),
|
||||
(3775,83,90),
|
||||
(3776,84,90),
|
||||
(3777,85,90),
|
||||
(3778,81,90),
|
||||
(3779,81,90),
|
||||
(3780,82,90),
|
||||
(3781,83,90),
|
||||
(3782,84,90),
|
||||
(3783,85,90),
|
||||
(3784,90,100),
|
||||
(3785,90,100),
|
||||
(3786,94,100),
|
||||
(3787,92,100),
|
||||
(3788,96,100),
|
||||
(3789,98,100),
|
||||
(3790,90,100),
|
||||
(3791,64,80),
|
||||
(3792,64,80),
|
||||
(3793,5,20),
|
||||
(3794,4,20),
|
||||
(3795,5,20),
|
||||
(3796,4,20),
|
||||
(3797,5,20),
|
||||
(3798,4,20),
|
||||
(3799,0,120),
|
||||
(3800,5,20),
|
||||
(3801,5,20),
|
||||
(3802,5,20),
|
||||
(3803,5,20),
|
||||
(3804,67,80),
|
||||
(3805,84,90),
|
||||
(3806,83,90),
|
||||
(3807,0,120),
|
||||
(3808,0,120),
|
||||
(3809,0,120),
|
||||
(3810,0,120),
|
||||
(3811,0,120),
|
||||
(3812,0,120),
|
||||
(3813,0,120),
|
||||
(3814,0,120),
|
||||
(3815,0,120),
|
||||
(3816,0,120),
|
||||
(3817,0,120),
|
||||
(3818,0,120),
|
||||
(3819,0,120),
|
||||
(3820,85,90),
|
||||
(3821,85,90),
|
||||
(3823,40,60),
|
||||
(3828,0,120),
|
||||
(3829,0,120),
|
||||
(3830,0,120),
|
||||
(3831,0,120),
|
||||
(3832,0,120),
|
||||
(3833,0,120),
|
||||
(3834,0,120),
|
||||
(3835,0,120),
|
||||
(3836,0,120),
|
||||
(3837,0,120),
|
||||
(3838,0,120),
|
||||
(3839,0,120),
|
||||
(3840,0,120),
|
||||
(3841,0,120),
|
||||
(3842,0,120),
|
||||
(3843,0,120),
|
||||
(3844,0,120),
|
||||
(3845,0,120),
|
||||
(3846,0,120),
|
||||
(3847,0,120),
|
||||
(3848,0,120),
|
||||
(3849,0,120),
|
||||
(3850,0,120),
|
||||
(3851,0,120),
|
||||
(3852,0,120),
|
||||
(3853,0,120),
|
||||
(3854,0,120),
|
||||
(3855,0,120),
|
||||
(3856,0,120),
|
||||
(3857,0,120),
|
||||
(3858,0,120),
|
||||
(3859,0,120),
|
||||
(3860,0,120),
|
||||
(3861,0,120),
|
||||
(3862,0,120),
|
||||
(3863,0,120),
|
||||
(3864,0,120),
|
||||
(3865,0,120),
|
||||
(3866,0,120),
|
||||
(3867,0,120),
|
||||
(3868,0,120),
|
||||
(3869,0,120),
|
||||
(3870,0,120),
|
||||
(3871,0,120),
|
||||
(3872,0,120),
|
||||
(3873,0,120),
|
||||
(3874,0,120),
|
||||
(3875,0,120),
|
||||
(3876,0,120),
|
||||
(3877,0,120),
|
||||
(3878,0,120),
|
||||
(3879,0,120),
|
||||
(3880,0,120),
|
||||
(3881,0,120),
|
||||
(3882,0,120),
|
||||
(3883,0,120),
|
||||
(3884,0,120),
|
||||
(3885,0,120),
|
||||
(3886,0,120),
|
||||
(3887,0,120),
|
||||
(3888,0,120),
|
||||
(3889,0,120),
|
||||
(3890,0,120),
|
||||
(3891,0,120),
|
||||
(3892,0,120),
|
||||
(3893,0,120),
|
||||
(3894,0,120),
|
||||
(3895,0,120),
|
||||
(3896,0,120),
|
||||
(3897,0,120),
|
||||
(3898,0,120),
|
||||
(3899,0,120),
|
||||
(3900,0,120),
|
||||
(3901,0,120),
|
||||
(3902,0,120),
|
||||
(3903,0,120),
|
||||
(3904,0,120),
|
||||
(3905,0,120),
|
||||
(3906,0,120),
|
||||
(3907,0,120),
|
||||
(3908,0,120),
|
||||
(3909,0,120),
|
||||
(3910,0,120),
|
||||
(3911,0,120),
|
||||
(3912,0,120),
|
||||
(3913,0,120),
|
||||
(3914,0,120),
|
||||
(3915,0,120),
|
||||
(3916,0,120),
|
||||
(3917,0,120),
|
||||
(3918,0,120),
|
||||
(3919,0,120),
|
||||
(3920,0,120),
|
||||
(3921,0,120),
|
||||
(3922,0,120),
|
||||
(3923,0,120),
|
||||
(3924,0,120),
|
||||
(3925,0,120),
|
||||
(3926,0,120),
|
||||
(3927,0,120),
|
||||
(3928,0,120),
|
||||
(3929,0,120),
|
||||
(3930,0,120),
|
||||
(3931,0,120),
|
||||
(3932,0,120),
|
||||
(3933,0,120),
|
||||
(3934,0,120),
|
||||
(3935,0,120),
|
||||
(3936,0,120),
|
||||
(3937,0,120),
|
||||
(3938,0,120),
|
||||
(3939,0,120),
|
||||
(3940,0,120),
|
||||
(3941,0,120),
|
||||
(3942,0,120),
|
||||
(3943,0,120),
|
||||
(3944,0,120),
|
||||
(3945,0,120),
|
||||
(3946,0,120),
|
||||
(3947,0,120),
|
||||
(3948,0,120),
|
||||
(3949,0,120),
|
||||
(3950,0,120),
|
||||
(3951,0,120),
|
||||
(3952,0,120),
|
||||
(3953,0,120),
|
||||
(3954,0,120),
|
||||
(3955,0,120),
|
||||
(3956,0,120),
|
||||
(3957,0,120),
|
||||
(3958,0,120),
|
||||
(3959,0,120),
|
||||
(3960,0,120),
|
||||
(3961,0,120),
|
||||
(3962,0,120),
|
||||
(3963,0,120),
|
||||
(3964,0,120),
|
||||
(3965,0,120),
|
||||
(3966,0,120),
|
||||
(3967,0,120),
|
||||
(3968,0,120),
|
||||
(3969,0,120),
|
||||
(3970,0,120),
|
||||
(3971,0,120),
|
||||
(3972,0,120),
|
||||
(3973,0,120),
|
||||
(3974,0,120),
|
||||
(3975,0,120),
|
||||
(3976,0,120),
|
||||
(3977,0,120),
|
||||
(3978,0,120),
|
||||
(3979,0,120),
|
||||
(3980,0,120),
|
||||
(3981,0,120),
|
||||
(3982,0,120),
|
||||
(3998,20,60),
|
||||
(3999,47,60),
|
||||
(4000,47,60),
|
||||
(4001,47,60),
|
||||
(4002,20,60),
|
||||
(4003,20,60),
|
||||
(4004,15,60),
|
||||
(4005,15,60),
|
||||
(4006,15,60),
|
||||
(4007,36,60),
|
||||
(4008,36,60),
|
||||
(4009,36,60),
|
||||
(4010,42,60),
|
||||
(4011,42,60),
|
||||
(4012,42,60),
|
||||
(4013,39,60),
|
||||
(4014,39,60),
|
||||
(4015,39,60),
|
||||
(4016,24,60),
|
||||
(4017,24,60),
|
||||
(4018,24,60),
|
||||
(4019,55,60),
|
||||
(4020,55,60),
|
||||
(4021,55,60),
|
||||
(4022,34,60),
|
||||
(4023,34,60),
|
||||
(4024,34,60),
|
||||
(4025,30,60),
|
||||
(4026,30,60),
|
||||
(4027,30,60),
|
||||
(4028,32,60),
|
||||
(4029,32,60),
|
||||
(4030,32,60),
|
||||
(4031,15,60),
|
||||
(4032,15,60),
|
||||
(4033,15,60),
|
||||
(4034,35,60),
|
||||
(4035,35,60),
|
||||
(4036,35,60),
|
||||
(4037,30,60),
|
||||
(4038,30,60),
|
||||
(4039,30,60),
|
||||
(4040,26,60),
|
||||
(4041,26,60),
|
||||
(4042,28,60),
|
||||
(4043,28,60),
|
||||
(4044,28,60),
|
||||
(4045,38,60),
|
||||
(4046,38,60),
|
||||
(4047,38,60),
|
||||
(4048,17,60),
|
||||
(4049,17,60),
|
||||
(4050,17,60),
|
||||
(4051,46,60),
|
||||
(4052,46,60),
|
||||
(4053,46,60),
|
||||
(4054,26,60),
|
||||
(4055,42,60),
|
||||
(4056,42,60),
|
||||
(4057,42,60),
|
||||
(4058,20,60),
|
||||
(4059,20,60),
|
||||
(4060,20,60),
|
||||
(4061,50,60),
|
||||
(4062,50,60),
|
||||
(4063,50,60),
|
||||
(4064,40,60),
|
||||
(4065,40,60),
|
||||
(4066,40,60),
|
||||
(4067,17,60),
|
||||
(4068,17,60),
|
||||
(4069,17,60),
|
||||
(4070,44,60),
|
||||
(4071,44,60),
|
||||
(4072,44,60),
|
||||
(4074,63,80),
|
||||
(4075,63,80),
|
||||
(4076,58,80),
|
||||
(4077,58,80),
|
||||
(4079,68,80),
|
||||
(4080,68,80),
|
||||
(4082,62,80),
|
||||
(4083,62,80),
|
||||
(4085,64,80),
|
||||
(4086,64,80),
|
||||
(4088,65,80),
|
||||
(4089,65,80),
|
||||
(4090,67,80),
|
||||
(4091,67,80),
|
||||
(4092,68,80),
|
||||
(4093,68,80),
|
||||
(4094,68,80),
|
||||
(4095,68,80),
|
||||
(4096,59,80),
|
||||
(4097,59,80),
|
||||
(4098,67,80),
|
||||
(4099,67,80),
|
||||
(4100,67,80),
|
||||
(4101,67,80),
|
||||
(4102,67,80),
|
||||
(4103,67,80),
|
||||
(4104,60,80),
|
||||
(4105,60,80),
|
||||
(4106,67,80),
|
||||
(4107,67,80),
|
||||
(4108,61,80),
|
||||
(4109,61,80),
|
||||
(4110,61,80),
|
||||
(4111,61,80),
|
||||
(4112,60,80),
|
||||
(4113,60,80),
|
||||
(4114,62,80),
|
||||
(4115,62,80),
|
||||
(4116,64,80),
|
||||
(4117,64,80),
|
||||
(4118,67,80),
|
||||
(4119,67,80),
|
||||
(4120,70,80),
|
||||
(4121,70,80),
|
||||
(4122,65,80),
|
||||
(4123,65,80),
|
||||
(4124,70,80),
|
||||
(4125,70,80),
|
||||
(4126,68,80),
|
||||
(4127,68,80),
|
||||
(4128,70,80),
|
||||
(4129,70,80),
|
||||
(4130,59,80),
|
||||
(4131,59,80),
|
||||
(4132,67,80),
|
||||
(4133,67,80),
|
||||
(4134,63,80),
|
||||
(4135,63,80),
|
||||
(4136,68,80),
|
||||
(4137,68,80),
|
||||
(4138,58,80),
|
||||
(4139,58,80),
|
||||
(4140,67,80),
|
||||
(4141,67,80),
|
||||
(4142,80,90),
|
||||
(4143,80,90),
|
||||
(4144,0,120),
|
||||
(4145,0,120),
|
||||
(4146,84,90),
|
||||
(4147,84,90),
|
||||
(4148,84,90),
|
||||
(4149,84,90),
|
||||
(4150,0,120),
|
||||
(4151,0,120),
|
||||
(4152,84,90),
|
||||
(4153,84,90),
|
||||
(4154,81,90),
|
||||
(4155,81,90),
|
||||
(4156,81,90),
|
||||
(4157,81,90),
|
||||
(4158,80,90),
|
||||
(4159,80,90),
|
||||
(4160,0,120),
|
||||
(4161,0,120),
|
||||
(4162,80,90),
|
||||
(4163,80,90),
|
||||
(4164,80,90),
|
||||
(4165,80,90),
|
||||
(4166,83,90),
|
||||
(4167,83,90),
|
||||
(4168,82,90),
|
||||
(4169,82,90),
|
||||
(4170,82,90),
|
||||
(4171,82,90),
|
||||
(4172,83,90),
|
||||
(4173,83,90),
|
||||
(4174,80,90),
|
||||
(4175,80,90),
|
||||
(4176,80,90),
|
||||
(4177,80,90),
|
||||
(4178,94,100),
|
||||
(4179,94,100),
|
||||
(4180,90,100),
|
||||
(4181,90,100),
|
||||
(4182,100,100),
|
||||
(4183,100,100),
|
||||
(4184,92,100),
|
||||
(4185,92,100),
|
||||
(4186,100,100),
|
||||
(4187,100,100),
|
||||
(4188,97,100),
|
||||
(4189,97,100),
|
||||
(4190,100,100),
|
||||
(4191,100,100),
|
||||
(4192,100,100),
|
||||
(4193,100,100),
|
||||
(4194,0,120),
|
||||
(4195,0,120),
|
||||
(4196,0,120),
|
||||
(4197,0,120),
|
||||
(4198,0,120),
|
||||
(4199,0,120),
|
||||
(4200,0,120),
|
||||
(4201,0,120),
|
||||
(4202,0,120),
|
||||
(4204,0,120),
|
||||
(4205,82,90),
|
||||
(4206,84,90),
|
||||
(4207,83,90),
|
||||
(4208,67,80),
|
||||
(4209,81,90),
|
||||
(4210,80,90),
|
||||
(4211,85,90),
|
||||
(4212,85,90),
|
||||
(4214,0,120),
|
||||
(4215,0,120),
|
||||
(4216,0,120),
|
||||
(4217,0,120),
|
||||
(4218,0,120),
|
||||
(4219,0,120),
|
||||
(4220,0,120),
|
||||
(4221,0,120),
|
||||
(4222,0,120),
|
||||
(4223,0,120),
|
||||
(4224,0,120),
|
||||
(4225,0,120),
|
||||
(4226,0,120),
|
||||
(4227,0,120),
|
||||
(4228,0,120),
|
||||
(4229,0,120),
|
||||
(4233,80,90),
|
||||
(4234,80,90),
|
||||
(4235,80,90),
|
||||
(4236,0,120),
|
||||
(4237,0,120),
|
||||
(4238,90,100),
|
||||
(4239,80,90),
|
||||
(4240,0,120),
|
||||
(4241,80,90),
|
||||
(4242,58,80),
|
||||
(4243,58,80),
|
||||
(4244,1,60),
|
||||
(4246,0,120),
|
||||
(4247,0,120),
|
||||
(4248,0,120),
|
||||
(4249,0,120),
|
||||
(4250,0,120),
|
||||
(4251,0,120),
|
||||
(4252,0,120),
|
||||
(4253,0,120),
|
||||
(4254,0,120),
|
||||
(4255,0,120),
|
||||
(4256,0,120),
|
||||
(4257,0,120),
|
||||
(4258,0,120),
|
||||
(4259,0,120),
|
||||
(4260,0,120),
|
||||
(4261,0,120),
|
||||
(4262,0,120),
|
||||
(4263,0,120),
|
||||
(4264,0,120),
|
||||
(4265,0,120),
|
||||
(4266,0,120),
|
||||
(4267,0,120),
|
||||
(4268,0,120),
|
||||
(4269,0,120),
|
||||
(4270,0,120),
|
||||
(4271,0,120),
|
||||
(4272,0,120),
|
||||
(4273,0,120),
|
||||
(4274,0,120),
|
||||
(4275,0,120),
|
||||
(4276,0,120),
|
||||
(4277,0,120),
|
||||
(4278,0,120),
|
||||
(4279,0,120),
|
||||
(4280,0,120),
|
||||
(4281,0,120),
|
||||
(4282,0,120),
|
||||
(4283,0,120),
|
||||
(4284,0,120),
|
||||
(4285,0,120),
|
||||
(4286,0,120),
|
||||
(4287,0,120),
|
||||
(4288,0,120),
|
||||
(4289,0,120),
|
||||
(4290,0,120),
|
||||
(4291,0,120),
|
||||
(4292,0,120),
|
||||
(4293,0,120),
|
||||
(4294,0,120),
|
||||
(4295,0,120),
|
||||
(4296,0,120),
|
||||
(4297,0,120),
|
||||
(4298,0,120),
|
||||
(4299,0,120),
|
||||
(4300,0,120),
|
||||
(4301,0,120),
|
||||
(4302,0,120),
|
||||
(4303,0,120),
|
||||
(4304,0,120),
|
||||
(4305,0,120),
|
||||
(4306,0,120),
|
||||
(4307,0,120),
|
||||
(4308,0,120),
|
||||
(4309,0,120),
|
||||
(4310,0,120),
|
||||
(4311,0,120),
|
||||
(4312,0,120),
|
||||
(4313,0,120),
|
||||
(4314,0,120),
|
||||
(4315,0,120),
|
||||
(4316,0,120),
|
||||
(4317,0,120),
|
||||
(4318,90,100),
|
||||
(4319,90,100),
|
||||
(4320,90,100),
|
||||
(4321,92,100),
|
||||
(4322,92,100),
|
||||
(4323,92,100),
|
||||
(4324,98,100),
|
||||
(4325,98,100),
|
||||
(4326,98,100),
|
||||
(4327,90,100),
|
||||
(4328,90,100),
|
||||
(4329,90,100),
|
||||
(4330,96,100),
|
||||
(4331,96,100),
|
||||
(4332,96,100),
|
||||
(4333,94,100),
|
||||
(4334,94,100),
|
||||
(4335,94,100),
|
||||
(4336,90,100),
|
||||
(4337,90,100),
|
||||
(4338,90,100),
|
||||
(4493,0,120),
|
||||
(4503,0,120),
|
||||
(4738,0,120),
|
||||
(4739,0,120),
|
||||
(4740,0,120),
|
||||
(4741,94,100),
|
||||
(4742,90,100),
|
||||
(4743,100,100),
|
||||
(4744,92,100),
|
||||
(4745,100,100),
|
||||
(4746,90,100),
|
||||
(4747,97,100),
|
||||
(4748,100,100),
|
||||
(4749,100,100),
|
||||
(4750,0,120),
|
||||
(4751,0,120),
|
||||
(4752,0,120),
|
||||
(4753,0,120),
|
||||
(4754,0,120),
|
||||
(4755,0,120),
|
||||
(4756,0,120),
|
||||
(4757,0,120),
|
||||
(4758,0,120),
|
||||
(4759,0,120),
|
||||
(4760,0,120),
|
||||
(4761,0,120),
|
||||
(4762,0,120),
|
||||
(4763,0,120),
|
||||
(4764,0,120),
|
||||
(4765,0,120),
|
||||
(4766,0,120),
|
||||
(4767,0,120),
|
||||
(4768,0,120),
|
||||
(4769,0,120),
|
||||
(4770,0,120),
|
||||
(4771,0,120),
|
||||
(4772,0,120),
|
||||
(4773,0,120),
|
||||
(4774,0,120);
|
||||
|
||||
-- Set fixedScalingLevel to current character level, constrained by DB2 limits in tmp_scale_data
|
||||
-- If item has no owner, it defaults character level to 1
|
||||
-- Items that already have scale data are not modified
|
||||
|
||||
UPDATE character_void_storage vs
|
||||
INNER JOIN tmp_scale_data s ON FIND_IN_SET(s.BonusListID, REPLACE(vs.bonusListIDs, ' ', ','))
|
||||
LEFT JOIN characters c ON c.guid = vs.playerGuid
|
||||
SET fixedScalingLevel = LEAST(GREATEST(IFNULL(c.level, 1), s.MinLevel), s.MaxLevel)
|
||||
WHERE fixedScalingLevel = 0;
|
||||
|
||||
UPDATE item_instance_modifiers SET fixedScalingLevel = (SELECT LEAST(GREATEST(IFNULL(c.level, 1), s.MinLevel), s.MaxLevel)
|
||||
FROM tmp_scale_data s
|
||||
INNER JOIN item_instance i ON FIND_IN_SET(s.BonusListID, REPLACE(i.bonusListIDs, ' ', ','))
|
||||
LEFT JOIN characters c ON c.guid = i.owner_guid
|
||||
WHERE i.guid = itemGuid) WHERE fixedScalingLevel = 0;
|
||||
|
||||
INSERT IGNORE INTO item_instance_modifiers (itemGuid, fixedScalingLevel)
|
||||
SELECT i.guid, LEAST(GREATEST(IFNULL(c.level, 1), s.MinLevel), s.MaxLevel)
|
||||
FROM tmp_scale_data s
|
||||
INNER JOIN item_instance i ON FIND_IN_SET(s.BonusListID, REPLACE(i.bonusListIDs, ' ', ','))
|
||||
LEFT JOIN characters c ON c.guid = i.owner_guid;
|
||||
|
||||
DROP TABLE `tmp_scale_data`;
|
||||
@@ -0,0 +1,12 @@
|
||||
ALTER TABLE `pvpstats_players`
|
||||
CHANGE `score_killing_blows` `score_killing_blows` int(10) unsigned NOT NULL,
|
||||
CHANGE `score_deaths` `score_deaths` int(10) unsigned NOT NULL,
|
||||
CHANGE `score_honorable_kills` `score_honorable_kills` int(10) unsigned NOT NULL,
|
||||
CHANGE `score_bonus_honor` `score_bonus_honor` int(10) unsigned NOT NULL,
|
||||
CHANGE `score_damage_done` `score_damage_done` int(10) unsigned NOT NULL,
|
||||
CHANGE `score_healing_done` `score_healing_done` int(10) unsigned NOT NULL,
|
||||
CHANGE `attr_1` `attr_1` int(10) unsigned NOT NULL,
|
||||
CHANGE `attr_2` `attr_2` int(10) unsigned NOT NULL,
|
||||
CHANGE `attr_3` `attr_3` int(10) unsigned NOT NULL,
|
||||
CHANGE `attr_4` `attr_4` int(10) unsigned NOT NULL,
|
||||
CHANGE `attr_5` `attr_5` int(10) unsigned NOT NULL;
|
||||
@@ -0,0 +1 @@
|
||||
ALTER TABLE `item_instance_artifact` ADD `artifactTierId` int(10) unsigned NOT NULL DEFAULT '0' AFTER `artifactAppearanceId`;
|
||||
@@ -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`;
|
||||
@@ -0,0 +1,2 @@
|
||||
ALTER TABLE `character_void_storage` DROP `suffixFactor`;
|
||||
ALTER TABLE `item_loot_items` DROP `rnd_suffix`;
|
||||
@@ -0,0 +1,13 @@
|
||||
UPDATE `character_void_storage` SET `randomProperty`=0 WHERE `randomPropertyType`!=2;
|
||||
UPDATE `item_instance` SET `randomPropertyId`=0 WHERE `randomPropertyType`!=2;
|
||||
UPDATE `item_loot_items` SET `rnd_prop`=0 WHERE `rnd_type`!=2;
|
||||
|
||||
ALTER TABLE `character_void_storage`
|
||||
DROP `randomPropertyType`,
|
||||
CHANGE `randomProperty` `randomBonusListId` int(10) unsigned NOT NULL DEFAULT '0';
|
||||
ALTER TABLE `item_instance`
|
||||
DROP `randomPropertyType`,
|
||||
CHANGE `randomPropertyId` `randomBonusListId` int(10) unsigned NOT NULL DEFAULT '0';
|
||||
ALTER TABLE `item_loot_items`
|
||||
DROP `rnd_type`,
|
||||
CHANGE `rnd_prop` `rnd_bonus` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'random bonus list added when originally rolled';
|
||||
@@ -0,0 +1 @@
|
||||
ALTER TABLE `guild` MODIFY COLUMN `motd` varchar(256) NOT NULL DEFAULT '' AFTER `info`;
|
||||
@@ -0,0 +1,2 @@
|
||||
-- TDB 735.00 hotfixes
|
||||
UPDATE `updates` SET `state`='ARCHIVED';
|
||||
@@ -0,0 +1,44 @@
|
||||
--
|
||||
-- Table structure for table `pvp_talent`
|
||||
--
|
||||
DROP TABLE IF EXISTS `pvp_talent`;
|
||||
CREATE TABLE `pvp_talent` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Description` text,
|
||||
`SpellID` int(10) NOT NULL DEFAULT '0',
|
||||
`OverridesSpellID` int(10) NOT NULL DEFAULT '0',
|
||||
`ExtraSpellID` int(10) NOT NULL DEFAULT '0',
|
||||
`TierID` int(10) NOT NULL DEFAULT '0',
|
||||
`ColumnIndex` int(10) NOT NULL DEFAULT '0',
|
||||
`Flags` int(10) NOT NULL DEFAULT '0',
|
||||
`ClassID` int(10) NOT NULL DEFAULT '0',
|
||||
`SpecID` int(10) NOT NULL DEFAULT '0',
|
||||
`Role` int(10) NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
--
|
||||
-- Table structure for table `pvp_talent_locale`
|
||||
--
|
||||
DROP TABLE IF EXISTS `pvp_talent_locale`;
|
||||
CREATE TABLE `pvp_talent_locale` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`locale` varchar(4) NOT NULL,
|
||||
`Description_lang` text,
|
||||
`VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`,`locale`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
--
|
||||
-- Table structure for table `pvp_talent_unlock`
|
||||
--
|
||||
DROP TABLE IF EXISTS `pvp_talent_unlock`;
|
||||
CREATE TABLE `pvp_talent_unlock` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`TierID` int(10) NOT NULL DEFAULT '0',
|
||||
`ColumnIndex` int(10) NOT NULL DEFAULT '0',
|
||||
`HonorLevel` int(10) NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
@@ -0,0 +1,11 @@
|
||||
--
|
||||
-- Table structure for table `pvp_item`
|
||||
--
|
||||
DROP TABLE IF EXISTS `pvp_item`;
|
||||
CREATE TABLE `pvp_item` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`ItemID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`ItemLevelBonus` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,29 @@
|
||||
--
|
||||
-- Table structure for table `artifact_tier`
|
||||
--
|
||||
DROP TABLE IF EXISTS `artifact_tier`;
|
||||
CREATE TABLE `artifact_tier` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`ArtifactTier` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`MaxNumTraits` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`MaxArtifactKnowledge` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`KnowledgePlayerCondition` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`MinimumEmpowerKnowledge` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
--
|
||||
-- Table structure for table `artifact_unlock`
|
||||
--
|
||||
DROP TABLE IF EXISTS `artifact_unlock`;
|
||||
CREATE TABLE `artifact_unlock` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`ItemBonusListID` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`PowerRank` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`PowerID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`PlayerConditionID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`ArtifactID` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
@@ -0,0 +1,12 @@
|
||||
--
|
||||
-- Table structure for table `reward_pack_x_currency_type`
|
||||
--
|
||||
DROP TABLE IF EXISTS `reward_pack_x_currency_type`;
|
||||
CREATE TABLE `reward_pack_x_currency_type` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`CurrencyTypeID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Quantity` int(11) NOT NULL DEFAULT '0',
|
||||
`RewardPackID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
@@ -0,0 +1,12 @@
|
||||
--
|
||||
-- Table structure for table `item_limit_category_condition`
|
||||
--
|
||||
DROP TABLE IF EXISTS `item_limit_category_condition`;
|
||||
CREATE TABLE `item_limit_category_condition` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`AddQuantity` tinyint(3) NOT NULL DEFAULT '0',
|
||||
`PlayerConditionID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`ParentItemLimitCategoryID` int(10) NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1,14 @@
|
||||
--
|
||||
-- Table structure for table `cfg_regions`
|
||||
--
|
||||
DROP TABLE IF EXISTS `cfg_regions`;
|
||||
CREATE TABLE `cfg_regions` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Tag` text,
|
||||
`Raidorigin` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`ChallengeOrigin` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`RegionID` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`RegionGroupMask` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
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;
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,6 @@
|
||||
DELETE FROM `tact_key` WHERE `ID` IN (229, 230, 231, 232);
|
||||
INSERT INTO `tact_key` (`ID`, `Key1`, `Key2`, `Key3`, `Key4`, `Key5`, `Key6`, `Key7`, `Key8`, `Key9`, `Key10`, `Key11`, `Key12`, `Key13`, `Key14`, `Key15`, `Key16`, `VerifiedBuild`) VALUES
|
||||
(229, 184, 115, 25, 38, 56, 148, 153, 203, 212, 173, 191, 80, 6, 202, 3, 145, 28153),
|
||||
(230, 37, 167, 124, 216, 0, 25, 126, 230, 163, 45, 214, 63, 4, 225, 21, 250, 28153),
|
||||
(231, 88, 174, 62, 6, 66, 16, 227, 237, 249, 193, 37, 156, 222, 145, 76, 93, 28153),
|
||||
(232, 52, 164, 50, 4, 32, 115, 205, 11, 81, 98, 112, 104, 210, 224, 189, 62, 28153);
|
||||
@@ -0,0 +1,120 @@
|
||||
ALTER TABLE `achievement` ADD COLUMN `RewardItemID` int(11) NOT NULL DEFAULT 0 AFTER `IconFileID`;
|
||||
|
||||
ALTER TABLE `artifact_appearance` ADD COLUMN `UsablePlayerConditionID` int(10) UNSIGNED NOT NULL DEFAULT 0 AFTER `UiCameraID`;
|
||||
|
||||
ALTER TABLE `battle_pet_species_state` MODIFY COLUMN `BattlePetStateID` smallint(5) UNSIGNED NOT NULL DEFAULT 0 AFTER `ID`;
|
||||
|
||||
ALTER TABLE `broadcast_text` MODIFY COLUMN `ChatBubbleDurationMs` int(10) UNSIGNED NOT NULL DEFAULT 0 AFTER `Flags`;
|
||||
ALTER TABLE `broadcast_text` MODIFY COLUMN `SoundEntriesID1` int(10) UNSIGNED NOT NULL DEFAULT 0 AFTER `ChatBubbleDurationMs`;
|
||||
ALTER TABLE `broadcast_text` MODIFY COLUMN `SoundEntriesID2` int(10) UNSIGNED NOT NULL DEFAULT 0 AFTER `SoundEntriesID1`;
|
||||
ALTER TABLE `broadcast_text` MODIFY COLUMN `EmoteID1` smallint(5) UNSIGNED NOT NULL DEFAULT 0 AFTER `SoundEntriesID2`;
|
||||
|
||||
ALTER TABLE `cfg_regions` ADD COLUMN `ChallengeTimeOffset1` int(11) NOT NULL DEFAULT 0 AFTER `ChallengeOrigin`;
|
||||
ALTER TABLE `cfg_regions` ADD COLUMN `ChallengeTimeOffset2` int(11) NOT NULL DEFAULT 0 AFTER `ChallengeTimeOffset1`;
|
||||
|
||||
ALTER TABLE `chr_classes` ADD COLUMN `SpellTextureBlobFileDataID` int(10) UNSIGNED NOT NULL DEFAULT 0 AFTER `StartingLevel`;
|
||||
|
||||
ALTER TABLE `chr_races` MODIFY COLUMN `HelmVisFallbackRaceID` int(11) NOT NULL DEFAULT 0 AFTER `MaleSkeletonFileDataID`;
|
||||
ALTER TABLE `chr_races` MODIFY COLUMN `FactionID` smallint(6) NOT NULL DEFAULT 0 AFTER `HelmVisFallbackRaceID`;
|
||||
ALTER TABLE `chr_races` MODIFY COLUMN `CinematicSequenceID` smallint(6) NOT NULL DEFAULT 0 AFTER `FactionID`;
|
||||
|
||||
ALTER TABLE `creature_display_info` MODIFY COLUMN `DissolveOutEffectID` int(11) NOT NULL DEFAULT 0 AFTER `Gender`;
|
||||
ALTER TABLE `creature_display_info` MODIFY COLUMN `CreatureModelMinLod` tinyint(4) NOT NULL DEFAULT 0 AFTER `DissolveOutEffectID`;
|
||||
|
||||
ALTER TABLE `currency_types` ADD COLUMN `ItemGroupSoundsID` int(11) NOT NULL DEFAULT 0 AFTER `FactionID`;
|
||||
|
||||
ALTER TABLE `difficulty` MODIFY COLUMN `Flags` smallint(5) UNSIGNED NOT NULL DEFAULT 0 AFTER `MaxPlayers`;
|
||||
|
||||
ALTER TABLE `dungeon_encounter` ADD COLUMN `CompleteWorldStateID` int(11) NOT NULL DEFAULT 0 AFTER `OrderIndex`;
|
||||
ALTER TABLE `dungeon_encounter` ADD COLUMN `Faction` int(11) NOT NULL DEFAULT 0 AFTER `SpellIconFileID`;
|
||||
|
||||
ALTER TABLE `faction` MODIFY COLUMN `FriendshipRepID` int(10) UNSIGNED NOT NULL DEFAULT 0 AFTER `Expansion`;
|
||||
|
||||
ALTER TABLE `heirloom` ADD COLUMN `UpgradeItemID4` int(11) NOT NULL DEFAULT 0 AFTER `UpgradeItemID3`;
|
||||
ALTER TABLE `heirloom` ADD COLUMN `UpgradeItemBonusListID4` smallint(5) UNSIGNED NOT NULL DEFAULT 0 AFTER `UpgradeItemBonusListID3`;
|
||||
|
||||
ALTER TABLE `holidays` ADD COLUMN `Date17` int(10) UNSIGNED NOT NULL DEFAULT 0 AFTER `Date16`;
|
||||
ALTER TABLE `holidays` ADD COLUMN `Date18` int(10) UNSIGNED NOT NULL DEFAULT 0 AFTER `Date17`;
|
||||
ALTER TABLE `holidays` ADD COLUMN `Date19` int(10) UNSIGNED NOT NULL DEFAULT 0 AFTER `Date18`;
|
||||
ALTER TABLE `holidays` ADD COLUMN `Date20` int(10) UNSIGNED NOT NULL DEFAULT 0 AFTER `Date19`;
|
||||
ALTER TABLE `holidays` ADD COLUMN `Date21` int(10) UNSIGNED NOT NULL DEFAULT 0 AFTER `Date20`;
|
||||
ALTER TABLE `holidays` ADD COLUMN `Date22` int(10) UNSIGNED NOT NULL DEFAULT 0 AFTER `Date21`;
|
||||
ALTER TABLE `holidays` ADD COLUMN `Date23` int(10) UNSIGNED NOT NULL DEFAULT 0 AFTER `Date22`;
|
||||
ALTER TABLE `holidays` ADD COLUMN `Date24` int(10) UNSIGNED NOT NULL DEFAULT 0 AFTER `Date23`;
|
||||
ALTER TABLE `holidays` ADD COLUMN `Date25` int(10) UNSIGNED NOT NULL DEFAULT 0 AFTER `Date24`;
|
||||
ALTER TABLE `holidays` ADD COLUMN `Date26` int(10) UNSIGNED NOT NULL DEFAULT 0 AFTER `Date25`;
|
||||
|
||||
ALTER TABLE `item_child_equipment` MODIFY COLUMN `ParentItemID` int(11) NOT NULL DEFAULT 0 AFTER `ID`;
|
||||
|
||||
ALTER TABLE `item_level_selector` ADD COLUMN `AzeriteUnlockMappingSet` smallint(5) UNSIGNED NOT NULL DEFAULT 0 AFTER `ItemLevelSelectorQualitySetID`;
|
||||
|
||||
DROP TABLE `item_random_properties`;
|
||||
|
||||
DROP TABLE `item_random_properties_locale`;
|
||||
|
||||
DROP TABLE `item_random_suffix`;
|
||||
|
||||
DROP TABLE `item_random_suffix_locale`;
|
||||
|
||||
ALTER TABLE `item_search_name` MODIFY COLUMN `Flags4` int(11) NOT NULL DEFAULT 0 AFTER `Flags3`;
|
||||
|
||||
ALTER TABLE `item_sparse` MODIFY COLUMN `Flags2` int(11) NOT NULL DEFAULT 0 AFTER `Flags1`;
|
||||
ALTER TABLE `item_sparse` MODIFY COLUMN `Flags3` int(11) NOT NULL DEFAULT 0 AFTER `Flags2`;
|
||||
ALTER TABLE `item_sparse` MODIFY COLUMN `Flags4` int(11) NOT NULL DEFAULT 0 AFTER `Flags3`;
|
||||
ALTER TABLE `item_sparse` MODIFY COLUMN `FactionRelated` int(11) NOT NULL DEFAULT 0 AFTER `Flags4`;
|
||||
ALTER TABLE `item_sparse` MODIFY COLUMN `ItemNameDescriptionID` smallint(5) UNSIGNED NOT NULL DEFAULT 0 AFTER `FactionRelated`;
|
||||
ALTER TABLE `item_sparse` MODIFY COLUMN `RequiredTransmogHoliday` smallint(5) UNSIGNED NOT NULL DEFAULT 0 AFTER `ItemNameDescriptionID`;
|
||||
ALTER TABLE `item_sparse` MODIFY COLUMN `RequiredHoliday` smallint(5) UNSIGNED NOT NULL DEFAULT 0 AFTER `RequiredTransmogHoliday`;
|
||||
ALTER TABLE `item_sparse` MODIFY COLUMN `LimitCategory` smallint(5) UNSIGNED NOT NULL DEFAULT 0 AFTER `RequiredHoliday`;
|
||||
ALTER TABLE `item_sparse` MODIFY COLUMN `GemProperties` smallint(5) UNSIGNED NOT NULL DEFAULT 0 AFTER `LimitCategory`;
|
||||
ALTER TABLE `item_sparse` MODIFY COLUMN `SocketMatchEnchantmentId` smallint(5) UNSIGNED NOT NULL DEFAULT 0 AFTER `GemProperties`;
|
||||
ALTER TABLE `item_sparse` MODIFY COLUMN `TotemCategoryID` smallint(5) UNSIGNED NOT NULL DEFAULT 0 AFTER `SocketMatchEnchantmentId`;
|
||||
ALTER TABLE `item_sparse` MODIFY COLUMN `InstanceBound` smallint(5) UNSIGNED NOT NULL DEFAULT 0 AFTER `TotemCategoryID`;
|
||||
ALTER TABLE `item_sparse` DROP COLUMN `ItemRandomSuffixGroupID`;
|
||||
ALTER TABLE `item_sparse` DROP COLUMN `RandomSelect`;
|
||||
|
||||
ALTER TABLE `liquid_type` MODIFY COLUMN `MinimapStaticCol` int(11) NOT NULL DEFAULT 0 AFTER `MaterialID`;
|
||||
ALTER TABLE `liquid_type` MODIFY COLUMN `FrameCountTexture1` tinyint(3) UNSIGNED NOT NULL DEFAULT 0 AFTER `MinimapStaticCol`;
|
||||
ALTER TABLE `liquid_type` MODIFY COLUMN `FrameCountTexture2` tinyint(3) UNSIGNED NOT NULL DEFAULT 0 AFTER `FrameCountTexture1`;
|
||||
ALTER TABLE `liquid_type` MODIFY COLUMN `FrameCountTexture3` tinyint(3) UNSIGNED NOT NULL DEFAULT 0 AFTER `FrameCountTexture2`;
|
||||
ALTER TABLE `liquid_type` MODIFY COLUMN `FrameCountTexture4` tinyint(3) UNSIGNED NOT NULL DEFAULT 0 AFTER `FrameCountTexture3`;
|
||||
ALTER TABLE `liquid_type` MODIFY COLUMN `FrameCountTexture5` tinyint(3) UNSIGNED NOT NULL DEFAULT 0 AFTER `FrameCountTexture4`;
|
||||
ALTER TABLE `liquid_type` MODIFY COLUMN `FrameCountTexture6` tinyint(3) UNSIGNED NOT NULL DEFAULT 0 AFTER `FrameCountTexture5`;
|
||||
ALTER TABLE `liquid_type` MODIFY COLUMN `Color1` int(11) NOT NULL DEFAULT 0 AFTER `FrameCountTexture6`;
|
||||
ALTER TABLE `liquid_type` MODIFY COLUMN `Color2` int(11) NOT NULL DEFAULT 0 AFTER `Color1`;
|
||||
ALTER TABLE `liquid_type` MODIFY COLUMN `Float1` float NOT NULL DEFAULT 0 AFTER `Color2`;
|
||||
|
||||
ALTER TABLE `map` ADD COLUMN `WdtFileDataID` int(11) NOT NULL DEFAULT 0 AFTER `ZmpFileDataID`;
|
||||
ALTER TABLE `map` MODIFY COLUMN `MaxPlayers` tinyint(3) UNSIGNED NOT NULL DEFAULT 0 AFTER `CorpseMapID`;
|
||||
ALTER TABLE `map` MODIFY COLUMN `WindSettingsID` smallint(6) NOT NULL DEFAULT 0 AFTER `MaxPlayers`;
|
||||
|
||||
ALTER TABLE `map_difficulty` MODIFY COLUMN `DifficultyID` int(11) NOT NULL DEFAULT 0 AFTER `Message`;
|
||||
ALTER TABLE `map_difficulty` MODIFY COLUMN `LockID` int(11) NOT NULL DEFAULT 0 AFTER `DifficultyID`;
|
||||
ALTER TABLE `map_difficulty` MODIFY COLUMN `ResetInterval` tinyint(4) NOT NULL DEFAULT 0 AFTER `LockID`;
|
||||
ALTER TABLE `map_difficulty` MODIFY COLUMN `MaxPlayers` int(11) NOT NULL DEFAULT 0 AFTER `ResetInterval`;
|
||||
ALTER TABLE `map_difficulty` MODIFY COLUMN `ItemContext` int(11) NOT NULL DEFAULT 0 AFTER `MaxPlayers`;
|
||||
ALTER TABLE `map_difficulty` MODIFY COLUMN `ItemContextPickerID` int(11) NOT NULL DEFAULT 0 AFTER `ItemContext`;
|
||||
ALTER TABLE `map_difficulty` MODIFY COLUMN `Flags` int(11) NOT NULL DEFAULT 0 AFTER `ItemContextPickerID`;
|
||||
ALTER TABLE `map_difficulty` MODIFY COLUMN `MapID` int(11) NOT NULL DEFAULT 0 AFTER `ContentTuningID`;
|
||||
|
||||
ALTER TABLE `pvp_talent` MODIFY COLUMN `Flags` int(11) NOT NULL DEFAULT 0 AFTER `OverridesSpellID`;
|
||||
ALTER TABLE `pvp_talent` MODIFY COLUMN `ActionBarSpellID` int(11) NOT NULL DEFAULT 0 AFTER `Flags`;
|
||||
|
||||
ALTER TABLE `scenario` MODIFY COLUMN `UiTextureKitID` int(10) UNSIGNED NOT NULL DEFAULT 0 AFTER `Flags`;
|
||||
|
||||
ALTER TABLE `skill_line` MODIFY COLUMN `SpellBookSpellID` int(11) NOT NULL DEFAULT 0 AFTER `Flags`;
|
||||
|
||||
ALTER TABLE `sound_kit` MODIFY COLUMN `SoundType` int(11) NOT NULL DEFAULT 0 AFTER `ID`;
|
||||
|
||||
ALTER TABLE `spell_misc` MODIFY COLUMN `MinDuration` float NOT NULL DEFAULT 0 AFTER `LaunchDelay`;
|
||||
|
||||
ALTER TABLE `taxi_nodes` ADD COLUMN `MinimapAtlasMemberID` int(11) NOT NULL DEFAULT 0 AFTER `UiTextureKitID`;
|
||||
ALTER TABLE `taxi_nodes` MODIFY COLUMN `ConditionID` int(11) NOT NULL DEFAULT 0 AFTER `ContinentID`;
|
||||
|
||||
ALTER TABLE `taxi_path_node` MODIFY COLUMN `ArrivalEventID` int(11) NOT NULL DEFAULT 0 AFTER `Delay`;
|
||||
ALTER TABLE `taxi_path_node` MODIFY COLUMN `DepartureEventID` int(11) NOT NULL DEFAULT 0 AFTER `ArrivalEventID`;
|
||||
|
||||
ALTER TABLE `transmog_set` ADD COLUMN `Unknown810` tinyint(3) UNSIGNED NOT NULL DEFAULT 0 AFTER `ParentTransmogSetID`;
|
||||
ALTER TABLE `transmog_set` ADD COLUMN `PatchID` int(11) NOT NULL DEFAULT 0 AFTER `ExpansionID`;
|
||||
|
||||
ALTER TABLE `world_effect` MODIFY COLUMN `TargetType` tinyint(4) NOT NULL DEFAULT 0 AFTER `WhenToDisplay`;
|
||||
@@ -0,0 +1,5 @@
|
||||
ALTER TABLE `animation_data` MODIFY COLUMN `BehaviorID` smallint(5) unsigned NOT NULL DEFAULT 0 AFTER `ID`;
|
||||
ALTER TABLE `animation_data` MODIFY COLUMN `BehaviorTier` tinyint(3) unsigned NOT NULL DEFAULT 0 AFTER `BehaviorID`;
|
||||
ALTER TABLE `animation_data` MODIFY COLUMN `Fallback` int(11) NOT NULL DEFAULT 0 AFTER `BehaviorTier`;
|
||||
|
||||
ALTER TABLE `spell_item_enchantment` MODIFY COLUMN `TransmogPlayerConditionID` int(10) unsigned NOT NULL DEFAULT 0 AFTER `EffectScalingPoints3`;
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1,74 @@
|
||||
--
|
||||
-- Table structure for table `cfg_regions`
|
||||
--
|
||||
ALTER TABLE `cfg_regions`
|
||||
DROP `ChallengeTimeOffset1`,
|
||||
DROP `ChallengeTimeOffset2`;
|
||||
|
||||
--
|
||||
-- Table structure for table `content_tuning`
|
||||
--
|
||||
ALTER TABLE `content_tuning`
|
||||
ADD `ExpansionID` int(11) NOT NULL DEFAULT '0' AFTER `Flags`,
|
||||
DROP `ExpectedStatModID`,
|
||||
DROP `DifficultyESMID`;
|
||||
|
||||
--
|
||||
-- Table structure for table `content_tuning_x_expected`
|
||||
--
|
||||
DROP TABLE IF EXISTS `content_tuning_x_expected`;
|
||||
CREATE TABLE `content_tuning_x_expected` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`ExpectedStatModID` int(11) NOT NULL DEFAULT '0',
|
||||
`ContentTuningID` 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 `creature_model_data`
|
||||
--
|
||||
ALTER TABLE `creature_model_data`
|
||||
ADD `Unknown820_1` tinyint(4) NOT NULL DEFAULT '0' AFTER `TamedPetBaseScale`,
|
||||
ADD `Unknown820_2` float NOT NULL DEFAULT '0' AFTER `Unknown820_1`,
|
||||
ADD `Unknown820_31` float NOT NULL DEFAULT '0' AFTER `Unknown820_2`,
|
||||
ADD `Unknown820_32` float NOT NULL DEFAULT '0' AFTER `Unknown820_31`;
|
||||
|
||||
--
|
||||
-- Table structure for table `garr_follower`
|
||||
--
|
||||
ALTER TABLE `garr_follower` MODIFY `HordeGarrClassSpecID` int(11) NOT NULL DEFAULT '0' AFTER `AllianceGarrFollRaceID`;
|
||||
ALTER TABLE `garr_follower` MODIFY `AllianceGarrClassSpecID` int(11) NOT NULL DEFAULT '0' AFTER `HordeGarrClassSpecID`;
|
||||
|
||||
--
|
||||
-- Table structure for table `glyph_properties`
|
||||
--
|
||||
ALTER TABLE `glyph_properties` ADD `SpellIconFileDataID` int(11) NOT NULL DEFAULT '0' AFTER `GlyphExclusiveCategoryID`;
|
||||
ALTER TABLE `glyph_properties` DROP `SpellIconID`;
|
||||
|
||||
--
|
||||
-- Table structure for table `modifier_tree`
|
||||
--
|
||||
ALTER TABLE `modifier_tree` MODIFY `Type` int(11) NOT NULL DEFAULT '0' AFTER `Amount`;
|
||||
|
||||
--
|
||||
-- Table structure for table `mount_capability`
|
||||
--
|
||||
ALTER TABLE `mount_capability` ADD `PlayerConditionID` int(11) NOT NULL DEFAULT '0' AFTER `ReqMapID`;
|
||||
|
||||
--
|
||||
-- Table structure for table `rand_prop_points`
|
||||
--
|
||||
ALTER TABLE `rand_prop_points` ADD `DamageSecondary` int(11) NOT NULL DEFAULT '0' AFTER `DamageReplaceStat`;
|
||||
|
||||
--
|
||||
-- Table structure for table `spell_misc`
|
||||
--
|
||||
ALTER TABLE `spell_misc` ADD `ContentTuningID` int(11) NOT NULL DEFAULT '0' AFTER `ActiveIconFileDataID`;
|
||||
|
||||
--
|
||||
-- Table structure for table `ui_map_link`
|
||||
--
|
||||
ALTER TABLE `ui_map_link`
|
||||
ADD `OverrideHighlightFileDataID` int(11) NOT NULL DEFAULT '0' AFTER `ChildUiMapID`,
|
||||
ADD `OverrideHighlightAtlasID` int(11) NOT NULL DEFAULT '0' AFTER `OverrideHighlightFileDataID`;
|
||||
@@ -0,0 +1,3 @@
|
||||
-- TDB 735.00 world
|
||||
UPDATE `updates` SET `state`='ARCHIVED';
|
||||
UPDATE `version` SET `db_version`='TDB 735.00', `cache_id`=7 LIMIT 1;
|
||||
@@ -0,0 +1,16 @@
|
||||
SET @guid:=9696;
|
||||
DELETE FROM `gameobject` WHERE `id` IN (179502, 142144, 142145) AND `map`=429;
|
||||
INSERT INTO `gameobject` (`guid`,`id`,`map`,`spawnMask`,`position_x`,`position_y`,`position_z`,`orientation`,`rotation0`,`rotation1`,`rotation2`,`rotation3`,`spawntimesecs`,`animprogress`,`state`, `VerifiedBuild`) VALUES
|
||||
(@guid+0, 142144, 429, 2, 67.4486, -467.225, -58.6226, -1.95477, 0, 0, -0.829037, 0.559194, 86400, 255, 1, 0),
|
||||
(@guid+1, 142144, 429, 2, 24.717, -468.53, -4.25922, -2.02458, 0, 0, -0.848048, 0.52992, 86400, 255, 1, 0),
|
||||
(@guid+2, 142144, 429, 2, 68.1034, -669.629, -25.1653, -2.19912, 0, 0, -0.891006, 0.453991, 86400, 255, 1, 0),
|
||||
(@guid+3, 142144, 429, 2, -46.1853, -432.413, 16.4136, 0.174532, 0, 0, 0.0871553, 0.996195, 86400, 255, 1, 0),
|
||||
(@guid+4, 142144, 429, 2, -110.419, -419.615, -58.6047, -2.47837, 0, 0, -0.945519, 0.325567, 86400, 255, 1, 0),
|
||||
(@guid+5, 142145, 429, 2, 73.1442, -234.595, -56.461, -0.506145, 0, 0, -0.25038, 0.968148, 86400, 255, 1, 0),
|
||||
(@guid+6, 142145, 429, 2, -29.2692, -335.209, -51.8413, 0.767944, 0, 0, 0.374606, 0.927184, 86400, 255, 1, 0),
|
||||
(@guid+7, 142145, 429, 2, -27.8809, -392.48, -58.6137, 1.39626, 0, 0, 0.642787, 0.766045, 86400, 255, 1, 0),
|
||||
(@guid+8, 142145, 429, 2, 107.133, -465.386, -3.27357, 1.95477, 0, 0, 0.829038, 0.559192, 86400, 255, 1, 0),
|
||||
(@guid+9, 142145, 429, 2, -77.444, -438.764, -58.612, 2.79252, 0, 0, 0.984807, 0.173652, 86400, 255, 1, 0),
|
||||
(@guid+10, 142145, 429, 2, 39.6528, -322.045, -52.2932, 1.25664, 0, 0, 0.587786, 0.809016, 86400, 255, 1, 0),
|
||||
(@guid+11, 142145, 429, 2, 38.4777, -391.213, -58.6108, 1.32645, 0, 0, 0.615661, 0.788011, 86400, 255, 1, 0),
|
||||
(@guid+12, 179502, 429, 2, 277.695, -423.25, -120.04, -2.92342, 0, 0, -0.994056, 0.108872, 86400, 255, 1, 0);
|
||||
@@ -0,0 +1,21 @@
|
||||
--
|
||||
SET @guid:=67973;
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @guid+0 AND @guid+16;
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `spawnMask`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES
|
||||
(@guid+0, 13196, 429, 2, 0, 0, 51.1273, -748.835, -25.1003, 4.72, 86400, 0, 0, 15198, 0, 0, 0, 0, 0),
|
||||
(@guid+1, 13196, 429, 2, 0, 0, 61.9258, -648.15, -25.1335, 4.72, 86400, 0, 0, 15198, 0, 0, 0, 0, 0),
|
||||
(@guid+2, 13285, 429, 2, 0, 0, 293.8714, -479.7898, -119.1195, 3.162191, 86400, 0, 0, 16704, 0, 0, 0, 0, 0),
|
||||
(@guid+3, 13022, 429, 2, 0, 0, 292.697, -476.578, -119.036, 5.58505, 86400, 2, 0, 1900, 0, 1, 0, 0, 0),
|
||||
(@guid+4, 13022, 429, 2, 0, 0, 287.544, -479.895, -119.036, 5.74213, 86400, 2, 0, 1900, 0, 1, 0, 0, 0),
|
||||
(@guid+5, 13022, 429, 2, 0, 0, 299.18, -474.913, -119.036, 2.80998, 86400, 2, 0, 1900, 0, 1, 0, 0, 0),
|
||||
(@guid+6, 13022, 429, 2, 0, 0, 292.824, -482.119, -119.036, 3.89208, 86400, 2, 0, 1900, 0, 1, 0, 0, 0),
|
||||
(@guid+7, 13197, 429, 2, 0, 0, 285.642, -501.949, -119.036, 2.14675, 86400, 0, 0, 12954, 4326, 0, 0, 0, 0),
|
||||
(@guid+8, 13022, 429, 2, 0, 0, 281.187, -499.258, -119.036, 0, 86400, 2, 0, 1900, 0, 1, 0, 0, 0),
|
||||
(@guid+9, 13022, 429, 2, 0, 0, 289.159, -504.723, -119.036, 0, 86400, 2, 0, 1900, 0, 1, 0, 0, 0),
|
||||
(@guid+10, 13022, 429, 2, 0, 0, 282.743, -504.313, -119.036, 0, 86400, 2, 0, 1900, 0, 1, 0, 0, 0),
|
||||
(@guid+11, 13022, 429, 2, 0, 0, 288.645, -499.382, -119.036, 0, 86400, 2, 0, 1900, 0, 1, 0, 0, 0),
|
||||
(@guid+12, 13197, 429, 2, 0, 0, 240.481, -489.337, -119.119, 0.093636, 86400, 0, 0, 12954, 4326, 0, 0, 0, 0),
|
||||
(@guid+13, 13022, 429, 2, 0, 0, 245.336, -492.562, -119.036, 0, 86400, 2, 0, 1900, 0, 1, 0, 0, 0),
|
||||
(@guid+14, 13022, 429, 2, 0, 0, 243.656, -487.932, -119.036, 5.20108, 86400, 2, 0, 1900, 0, 1, 0, 0, 0),
|
||||
(@guid+15, 13022, 429, 2, 0, 0, 239.995, -491.467, -119.036, 0, 86400, 2, 0, 1900, 0, 1, 0, 0, 0),
|
||||
(@guid+16, 13022, 429, 2, 0, 0, 241.339, -484.667, -119.036, 0, 86400, 2, 0, 1900, 0, 1, 0, 0, 0);
|
||||
@@ -0,0 +1,5 @@
|
||||
--
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=27959 AND `id`=10;
|
||||
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
|
||||
(27959,0,10,0,61,0,100,0,0,0,0,0,75,50237,0,0,0,0,0,7,0,0,0,0,0,0,0,"Your Inner Turmoil - On Just Died - Add Aura 'Slow Fall' (No Repeat)");
|
||||
--
|
||||
@@ -0,0 +1,5 @@
|
||||
--
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=18 AND `SourceGroup`=29857 AND `SourceEntry`=55460;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition`,`ErrorType`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES
|
||||
(18, 29857, 55460, 0, 0, 9, 0, 12910, 0, 0, 0, 0, 0, '', "Ride Frostbite (Khaliisi's Pet) Spellclick requires Active (taken) quest 'Sniffing Out the Perpetrator'.");
|
||||
--
|
||||
@@ -0,0 +1,6 @@
|
||||
--
|
||||
DELETE FROM `creature_addon` WHERE `guid` IN (SELECT `guid` FROM `creature` WHERE `id` IN (34812, 34823,34819,34822, 34824, 32830, 32840, 32824, 32827, 32831, 32825, 32829, 32839));
|
||||
DELETE FROM `game_event_creature` WHERE `guid` IN (SELECT `guid` FROM `creature` WHERE `id` IN (34812, 34823,34819,34822, 34824, 32830, 32840, 32824, 32827, 32831, 32825, 32829, 32839));
|
||||
DELETE FROM `creature` WHERE `id` IN (34812, 34823,34819,34822, 34824, 32830, 32840, 32824, 32827, 32831, 32825, 32829, 32839);
|
||||
-- Fix DB error
|
||||
UPDATE `smart_scripts` SET `link`=10 WHERE `entryorguid`=27959 AND `source_type`=0 AND `id`=9;
|
||||
@@ -0,0 +1,14 @@
|
||||
--
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry`=56578 AND `ElseGroup`=1;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(13, 3, 56578, 0, 1, 31, 0, 3, 30330, 0, 0, 0, 0, '', 'Spell Rapid-Fire Harpoon targets only Jotunheim Proto-Drake');
|
||||
|
||||
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI', `flags_extra`=`flags_extra`|64 WHERE `entry`=30330;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` = 30330 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
|
||||
(30330, 0, 0, 0, 25, 0, 100, 0, 0, 0, 0, 0, 48, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Jotunheim Proto-Drake - On Reset - Set Active');
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=18 AND `SourceGroup`=30337 AND `SourceEntry`=43671;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition`,`ErrorType`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES
|
||||
(18, 30337, 43671, 0, 0, 9, 0, 13069, 0, 0, 0, 0, 0, '', "Spellclick requires Active (taken) quest Shoot 'Em Up.");
|
||||
@@ -0,0 +1,70 @@
|
||||
--
|
||||
SET @guid:=1215;
|
||||
SET @guid1:=1237;
|
||||
DELETE FROM `creature` WHERE `guid` IN (@guid, @guid1);
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `spawnMask`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES
|
||||
(@guid, 14386, 429, 2, 0, 0, 560.917, 545.409, -25.3172, 1.00548, 86400, 0, 0, 305, 0, 2, 0, 0, 0),
|
||||
(@guid1, 14386, 429, 2, 0, 0, 446.833, 542.643, -21.8128, 3.26136, 86400, 0, 0, 305, 0, 2, 0, 0, 0);
|
||||
|
||||
DELETE FROM `creature_addon` WHERE `guid` IN (@guid, @guid1);
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `auras`) VALUES
|
||||
(@guid, @guid*10, 0, 0, 0, 0, ''),
|
||||
(@guid1, @guid1*10, 0, 0, 0, 0, '');
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id` IN (@guid*10, @guid1*10);
|
||||
INSERT INTO `waypoint_data`(`id`,`point`,`position_x`,`position_y`,`position_z`) VALUES
|
||||
(@guid1*10, 1, 428.587, 550.354, -18.3306),
|
||||
(@guid1*10, 2, 413.248, 549.204, -18.3306),
|
||||
(@guid1*10, 3, 410.805, 537.981, -18.0049),
|
||||
(@guid1*10, 4, 399.84, 525.571, -12.77510),
|
||||
(@guid1*10, 5, 389.687, 500.698, -12.0153),
|
||||
(@guid1*10, 6, 385.387, 475.186, -7.21953),
|
||||
(@guid1*10, 7, 395.807, 468.872, -7.21953),
|
||||
(@guid1*10, 8, 396.182, 455.417, -7.21953),
|
||||
(@guid1*10, 9, 388.528, 448.807, -7.21954),
|
||||
(@guid1*10, 10, 384.207, 434.841, -5.5531),
|
||||
(@guid1*10, 11, 384.522, 423.362, -3.1280),
|
||||
(@guid1*10, 12, 385.296, 413.909, -1.6721),
|
||||
(@guid1*10, 13, 384.207, 434.841, -5.5531),
|
||||
(@guid1*10, 14, 388.528, 448.807, -7.2195),
|
||||
(@guid1*10, 15, 396.182, 455.417, -7.2195),
|
||||
(@guid1*10, 16, 395.807, 468.872, -7.2195),
|
||||
(@guid1*10, 17, 385.387, 475.186, -7.2195),
|
||||
(@guid1*10, 18, 389.687, 500.698, -12.015),
|
||||
(@guid1*10, 19, 399.657, 525.364, -12.775),
|
||||
(@guid1*10, 20, 410.805, 537.981, -18.004),
|
||||
(@guid1*10, 21, 413.248, 549.204, -18.330),
|
||||
(@guid1*10, 22, 428.587, 550.354, -18.330),
|
||||
(@guid1*10, 23, 445.971, 542.539, -21.565),
|
||||
(@guid1*10, 24, 494.681, 542.877, -25.387),
|
||||
(@guid1*10, 25, 445.971, 542.539, -21.565),
|
||||
(@guid*10, 1, 577.104, 570.924, -25.40200),
|
||||
(@guid*10, 2, 572.076, 582.988, -25.40200),
|
||||
(@guid*10, 3, 544.652, 593.181, -25.40200),
|
||||
(@guid*10, 4, 500.831, 579.024, -25.40100),
|
||||
(@guid*10, 5, 484.037, 575.841, -25.4018),
|
||||
(@guid*10, 6, 476.537, 584.739, -25.4036),
|
||||
(@guid*10, 7, 494.385, 591.692, -20.3989),
|
||||
(@guid*10, 8, 534.313, 590.416, -4.75477),
|
||||
(@guid*10, 9, 550.691, 591.401, -4.75477),
|
||||
(@guid*10, 10, 568.851, 584.212, -4.7547),
|
||||
(@guid*10, 11, 581.867, 574.685, -4.7557),
|
||||
(@guid*10, 12, 587.157, 556.043, -1.7186),
|
||||
(@guid*10, 13, 587.022, 535.885, 6.77017),
|
||||
(@guid*10, 14, 568.928, 535.351, 13.0908),
|
||||
(@guid*10, 15, 545.493, 534.378, 25.6657),
|
||||
(@guid*10, 16, 568.928, 535.351, 13.0908),
|
||||
(@guid*10, 17, 587.022, 535.885, 6.77017),
|
||||
(@guid*10, 18, 587.157, 556.043, -1.7186),
|
||||
(@guid*10, 19, 581.867, 574.685, -4.7557),
|
||||
(@guid*10, 20, 568.851, 584.212, -4.7547),
|
||||
(@guid*10, 21, 550.691, 591.401, -4.7547),
|
||||
(@guid*10, 22, 534.313, 590.416, -4.7547),
|
||||
(@guid*10, 23, 494.385, 591.692, -20.398),
|
||||
(@guid*10, 24, 481.761, 590.614, -25.407),
|
||||
(@guid*10, 25, 484.037, 575.841, -25.401),
|
||||
(@guid*10, 26, 500.831, 579.024, -25.401),
|
||||
(@guid*10, 27, 544.652, 593.181, -25.402),
|
||||
(@guid*10, 28, 572.076, 582.988, -25.402),
|
||||
(@guid*10, 29, 577.104, 570.924, -25.402),
|
||||
(@guid*10, 30, 563.542, 547.683, -25.399);
|
||||
@@ -0,0 +1,48 @@
|
||||
DELETE FROM `spell_script_names` WHERE `spell_id`=46620 AND `ScriptName`='spell_red_dragonblood';
|
||||
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
|
||||
(46620, 'spell_red_dragonblood');
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`=26117;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(26117, 0, 0, 'Easy now, drakeling.', 12, 0, 100, 0, 0, 0, 25325, 0, 'Raelorasz - say_drake_0'),
|
||||
(26117, 1, 0, 'A wonderful specimen.', 12, 0, 100, 0, 0, 0, 25324, 0, 'Raelorasz - say_drake_1'),
|
||||
(26117, 1, 1, 'Sleep now, young one....', 12, 0, 100, 0, 0, 0, 25323, 0, 'Raelorasz - say_drake_2'),
|
||||
(26117, 1, 2, 'Yes, this one should advance my studies nicely....', 12, 0, 100, 0, 0, 0, 25326, 0, 'say_drake_3');
|
||||
|
||||
DELETE FROM conditions WHERE SourceTypeOrReferenceId=13 AND SourceEntry=46704;
|
||||
INSERT INTO conditions VALUES (13, 1, 46704, 0, 0, 31, 0, 3, 26127, 0, 0, 0, 0, '', 'Target Nexus Drake Hatchling');
|
||||
|
||||
-- Raelorasz SAI
|
||||
SET @ENTRY := 26117;
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI", `ScriptName`='' 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,1,62,0,100,0,9253,1,0,0,85,46764,1,0,0,0,0,7,0,0,0,0,0,0,0,"Raelorasz - On Gossip Option 1 Selected - Invoker Cast 'Push Arcane Prison'"),
|
||||
(@ENTRY,0,1,0,61,0,100,0,9253,1,0,0,72,0,0,0,0,0,0,7,0,0,0,0,0,0,0,"Raelorasz - On Gossip Option 1 Selected - Close Gossip"),
|
||||
(@ENTRY,0,2,0,60,0,100,0,5000,5000,5000,5000,45,1,26127,0,0,0,0,11,26127,30,0,0,0,0,0,"Raelorasz - On Update - Set Data 1 26127");
|
||||
|
||||
-- Nexus Drake Hatchling SAI
|
||||
SET @ENTRY := 26127;
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI", `ScriptName`='' WHERE `entry`=@ENTRY;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY*100+00 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,0,0,0,0,0,100,0,12000,15000,25000,35000,11,36631,0,0,0,0,0,1,0,0,0,0,0,0,0,"Nexus Drake Hatchling - In Combat - Cast 'Netherbreath'"),
|
||||
(@ENTRY,0,1,0,0,0,100,0,5000,10000,20000,35000,11,36513,0,0,0,0,0,1,0,0,0,0,0,0,0,"Nexus Drake Hatchling - In Combat - Cast 'Intangible Presence'"),
|
||||
(@ENTRY,0,2,3,8,0,100,0,46607,0,0,0,64,1,0,0,0,0,0,7,0,0,0,0,0,0,0,"Nexus Drake Hatchling - On Spellhit 'Drake Harpoon' - Store Targetlist"),
|
||||
(@ENTRY,0,3,4,61,0,100,0,0,0,0,0,117,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Nexus Drake Hatchling - On Spellhit 'Drake Harpoon' - evade off"),
|
||||
(@ENTRY,0,4,5,61,0,100,0,0,0,0,0,86,46620,2,12,1,0,0,1,0,0,0,0,0,0,0,"Nexus Drake Hatchling - On Spellhit 'Drake Harpoon' - Cross Cast 'Red Dragonblood'"),
|
||||
(@ENTRY,0,5,0,61,0,100,0,0,0,0,0,49,0,0,0,0,0,0,7,0,0,0,0,0,0,0,"Nexus Drake Hatchling - On Spellhit 'Drake Harpoon' - Start Attacking"),
|
||||
(@ENTRY,0,6,0,25,0,100,0,0,0,0,0,19,768,0,0,0,0,0,1,0,0,0,0,0,0,0,"Nexus Drake Hatchling - On Reset - Remove Flags Immune To Players & Immune To NPC's"),
|
||||
(@ENTRY,0,7,0,25,0,100,0,0,0,0,0,91,7,0,0,0,0,0,1,0,0,0,0,0,0,0,"Nexus Drake Hatchling - On Reset - Remove Flag"),
|
||||
(@ENTRY,0,8,0,38,0,100,1,1,26127,0,0,80,@ENTRY*100+00,2,0,0,0,0,1,0,0,0,0,0,0,0,"Nexus Drake Hatchling - On Data Set 1 26127 - Run Script (No Repeat)"),
|
||||
(@ENTRY,0,9,10,8,0,100,1,46704,0,0,0,11,46703,0,0,0,0,0,1,0,0,0,0,0,0,0,"Nexus Drake Hatchling - On Spellhit 'Raelorasz Fireball' - Cast 'Complete Immolation' (No Repeat)"),
|
||||
(@ENTRY,0,10,11,61,0,100,0,0,0,0,0,90,7,0,0,0,0,0,1,0,0,0,0,0,0,0,"Nexus Drake Hatchling - On Spellhit 'Raelorasz Fireball' - Set Flag Standstate Dead (No Repeat)"),
|
||||
(@ENTRY,0,11,0,61,0,100,0,0,0,0,0,41,4000,0,0,0,0,0,1,0,0,0,0,0,0,0,"Nexus Drake Hatchling - On Spellhit 'Raelorasz Fireball' - Despawn In 4000 ms (No Repeat)"),
|
||||
(@ENTRY,0,12,0,1,0,100,1,0,0,0,0,117,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Nexus Drake Hatchling - Ooc - evade on"),
|
||||
(@ENTRY*100+00,9,0,0,0,0,100,0,0,0,0,0,33,26175,0,0,0,0,0,12,1,0,0,0,0,0,0,"Nexus Drake Hatchling - On Script - Quest Credit ''"),
|
||||
(@ENTRY*100+00,9,1,0,0,0,100,0,0,0,0,0,28,46607,0,0,0,0,0,1,0,0,0,0,0,0,0,"Nexus Drake Hatchling - On Script - Remove Aura 'Drake Harpoon'"),
|
||||
(@ENTRY*100+00,9,2,0,0,0,100,0,0,0,0,0,29,0,0,0,0,0,0,19,26175,40,0,0,0,0,0,"Nexus Drake Hatchling - On Script - follow"),
|
||||
(@ENTRY*100+00,9,3,0,0,0,100,0,3000,3000,0,0,1,0,0,0,0,0,0,19,26117,30,0,0,0,0,0,"Nexus Drake Hatchling - On Script - Say Line 0"),
|
||||
(@ENTRY*100+00,9,4,0,0,0,100,0,0,0,0,0,86,46704,0,19,26117,30,0,1,0,0,0,0,0,0,0,"Nexus Drake Hatchling - On Script - Cross Cast 'Raelorasz Fireball'"),
|
||||
(@ENTRY*100+00,9,5,0,0,0,100,0,4000,4000,0,0,1,1,0,0,0,0,0,19,26117,30,0,0,0,0,0,"Nexus Drake Hatchling - On Script - Say Line 1");
|
||||
@@ -0,0 +1 @@
|
||||
UPDATE `creature_template` SET `InhabitType`=4 WHERE `entry`=23123;
|
||||
@@ -0,0 +1,8 @@
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` IN (13, 17) AND `SourceEntry` IN (15366,22817,22818,22888,22820,24425);
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(17, 0, 15366, 0, 0, 27, 1, 63, 4, 0, 0, 0, 0, '', 'Spell Songflower Serenade will hit the explicit target of the spell if player level must be equal or lower than 63.'),
|
||||
(17, 0, 22817, 0, 0, 27, 1, 63, 4, 0, 0, 0, 0, '', 'Spell Fengus'' Ferocity will hit the explicit target of the spell if player level must be equal or lower than 63.'),
|
||||
(17, 0, 22818, 0, 0, 27, 1, 63, 4, 0, 0, 0, 0, '', 'Spell Mol''dar''s Moxie will hit the explicit target of the spell if player level must be equal or lower than 63.'),
|
||||
(13, 3, 22888, 0, 0, 27, 0, 63, 4, 0, 0, 0, 0, '', 'Spell Rallying Cry of the Dragonslayer (effects 1 & 2) will hit the potential target of the spell if player level must be equal or lower than 63.'),
|
||||
(17, 0, 22820, 0, 0, 27, 1, 63, 4, 0, 0, 0, 0, '', 'Spell Slip''kik''s Savvy will hit the explicit target of the spell if player level must be equal or lower than 63.'),
|
||||
(13, 4, 24425, 0, 0, 27, 0, 63, 4, 0, 0, 0, 0, '', 'Spell Spirit of Zandalar (effect 2) will hit the potential target of the spell if player level must be equal or lower than 63.');
|
||||
@@ -0,0 +1,3 @@
|
||||
--
|
||||
UPDATE `creature_template` SET `flags_extra`=`flags_extra`&~536870912 WHERE `entry`=22887;
|
||||
--
|
||||
@@ -0,0 +1,138 @@
|
||||
--
|
||||
SET @GUID:=87977;
|
||||
DELETE FROM `creature` WHERE `id` IN(17256,17474) AND `map`=544;
|
||||
DELETE FROM `linked_respawn` WHERE `guid` IN(90982,90981,90980,90979,90978); -- Delete Linked respawn from channelers
|
||||
INSERT INTO `creature` (`guid`,`id`,`map`,`zoneId`,`areaId`,`spawnMask`,`modelid`,`equipment_id`,`position_x`,`position_y`,`position_z`,`orientation`,`spawntimesecs`,`spawndist`,`currentwaypoint`,`curhealth`,`curmana`,`MovementType`,`npcflag`,`unit_flags`,`dynamicflags`,`VerifiedBuild`) VALUES
|
||||
(@GUID,17474,544,0,0,16,15435,0,11.2283,2.97198,-0.320875,1.14748,7200,15,0,3965,0,1,0,0,0,0),
|
||||
(@GUID+1,17474,544,0,0,16,15435,0,10.2283,1.97198,-0.320875,1.41097,7200,15,0,3965,0,1,0,0,0,0),
|
||||
(@GUID+2,17474,544,0,0,16,15435,0,-44.0663,21.973,-0.329128,5.15817,7200,15,0,3965,0,1,0,0,0,0),
|
||||
(@GUID+3,17474,544,0,0,16,15435,0,-44.3225,22.0454,-0.329129,5.87281,7200,15,0,3965,0,1,0,0,0,0),
|
||||
(@GUID+4,17474,544,0,0,16,15435,0,-13.1443,-26.8186,-0.412466,3.70357,7200,15,0,3965,0,1,0,0,0,0),
|
||||
(@GUID+5,17474,544,0,0,16,15435,0,-14.3701,-24.6551,-0.412466,1.99314,7200,15,0,3965,0,1,0,0,0,0),
|
||||
(@GUID+6,17474,544,0,0,16,15435,0,-45.6199,-16.1769,-0.329109,5.65524,7200,15,0,3965,0,1,0,0,0,0),
|
||||
(@GUID+7,17474,544,0,0,16,15435,0,-44.6199,-15.1769,-0.329109,1.5311,7200,15,0,3965,0,1,0,0,0,0),
|
||||
(@GUID+8,17474,544,0,0,16,15435,0,-17.5166,2.10518,-0.320812,5.98416,7200,15,0,3965,0,1,0,0,0,0),
|
||||
(@GUID+9,17474,544,0,0,16,15435,0,-16.5166,3.10518,-0.320812,0.0813029,7200,15,0,3965,0,1,0,0,0,0),
|
||||
(@GUID+10,17474,544,0,0,16,15435,0,-12.4546,35.4987,-0.319343,2.09894,7200,5,0,3965,0,1,0,0,0,0),
|
||||
(@GUID+11,17474,544,0,0,16,15435,0,-11.6249,31.6464,-0.412482,4.08569,7200,15,0,3965,0,1,0,0,0,0);
|
||||
|
||||
-- Target Trigger should walk in ground, not fly
|
||||
UPDATE `creature_template` SET `InhabitType`=1 WHERE `entry`=17474;
|
||||
-- Added Taunt Immunity in Magtheridon.
|
||||
UPDATE `creature_template` SET `spell2`=0, `spell3`=0, `spell4`=0, `flags_extra` = `flags_extra` |256 WHERE `entry`=17257;
|
||||
|
||||
-- Delete addon aura from Magtheridon
|
||||
DELETE FROM `creature_addon` WHERE `guid`=91254;
|
||||
|
||||
-- Added missing Fire Blast aura in Burning Abyssal creature
|
||||
DELETE FROM `creature_template_addon` WHERE `entry`=17454;
|
||||
INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `auras`) VALUES
|
||||
(17454, 0, 0, 0, 1, 0, 30516);
|
||||
-- Removed script from Burning Abyssal creature
|
||||
UPDATE `creature_template` SET `ScriptName`='' WHERE `entry`=17454;
|
||||
|
||||
-- Updated condition for Shadow Grasp hits Hellfire Raid Trigger
|
||||
UPDATE `conditions` SET `ConditionValue2`=17376, `Comment`='Effect_0 hits Hellfire Raid Trigger' WHERE `SourceEntry`=30410 AND `SourceTypeOrReferenceId`=13 AND `SourceGroup`=1;
|
||||
-- Added condition for Blaze hit Target Trigger
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry`=30541;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(13,1,30541,0,0,31,0,3,17474,0,0,0,0,'','Effect_0 hits Target Trigger');
|
||||
-- Added condition for Quake hits Target Trigger
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry`=30657;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(13,7,30657,0,0,31,0,3,17474,0,0,0,0,'','Effect_0, Effect_1, Effect_2 hits Target Trigger');
|
||||
|
||||
DELETE FROM `spell_linked_spell` WHERE `spell_trigger`=30658;
|
||||
INSERT INTO `spell_linked_spell` (`spell_trigger`, `spell_effect`, `type`, `comment`) VALUES
|
||||
(30658, 30571, 0, 'Quake Trigger Quake Knockback');
|
||||
|
||||
-- Making a summon group for Magtheridon.
|
||||
DELETE FROM `creature_summon_groups` WHERE `summonerId`=17257; -- Magtheridon
|
||||
INSERT INTO `creature_summon_groups` (`summonerId`,`summonerType`,`groupId`,`entry`,`position_x`,`position_y`,`position_z`,`orientation`,`summonType`,`summonTime`) VALUES
|
||||
(17257,0,1,17256,-31.7645,-35.8374,0.714268,1.37881,6,6000), -- Hellfire Channelers
|
||||
(17257,0,1,17256,10.3369,-19.7942,0.714241,2.53073,6,6000),
|
||||
(17257,0,1,17256,10.4777,23.9914,0.714224,3.66519,6,6000),
|
||||
(17257,0,1,17256,-31.9479,40.2201,0.714251,4.93928,6,6000),
|
||||
(17257,0,1,17256,-55.6891,2.17024,0.71428,0.05236,6,6000);
|
||||
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName` IN('spell_magtheridon_blaze_target','spell_magtheridon_shadow_grasp','spell_magtheridon_shadow_grasp_visual');
|
||||
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
|
||||
(30541,'spell_magtheridon_blaze_target'),
|
||||
(30410,'spell_magtheridon_shadow_grasp'),
|
||||
(30166,'spell_magtheridon_shadow_grasp_visual');
|
||||
|
||||
DELETE FROM `spell_linked_spell` WHERE `spell_trigger`=-30410 AND `spell_effect`=44032 AND `type`=0;
|
||||
|
||||
UPDATE `creature_template` SET `flags_extra`=128, `ScriptName`='npc_magtheridon_room' WHERE `entry`=17516;
|
||||
|
||||
-- UPDATE `spell_dbc` SET `AttributesEx3`=262400, `EffectImplicitTargetA1`=53, `EffectImplicitTargetB1`=0, `EffectRadiusIndex1`=16, `MaxAffectedTargets`=1, `RangeIndex`=13 WHERE `Id`=30630;
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`=17257;
|
||||
INSERT INTO `creature_text` (`CreatureID`,`GroupID`,`ID`,`Text`,`Type`,`Language`,`Probability`,`Emote`,`Duration`,`Sound`,`BroadcastTextId`,`TextRange`,`Comment`) VALUES
|
||||
(17257,0,0,'Wretched, meddling insects! Release me, and perhaps I will grant you a merciful death!',14,0,100,0,0,10247,17339,0,'Magtheridon - Taunt01'),
|
||||
(17257,0,1,'Vermin! Leeches! Take my blood and choke on it!',14,0,100,0,0,10248,17340,0,'Magtheridon - Taunt02'),
|
||||
(17257,0,2,'Illidan is an arrogant fool! I will crush him and reclaim Outland as my own!',14,0,100,0,0,10249,17341,0,'Magtheridon - Taunt03'),
|
||||
(17257,0,3,'Away, you mindless parasites! My blood is my own!',14,0,100,0,0,10250,17342,0,'Magtheridon - Taunt04'),
|
||||
(17257,0,4,'How long do you believe your pathetic sorcery can hold me?',14,0,100,0,0,10251,17343,0,'Magtheridon - Taunt05'),
|
||||
(17257,0,5,'My blood will be the end of you!',14,0,100,0,0,10252,17344,0,'Magtheridon - Taunt06'),
|
||||
(17257,1,0,'I... am... unleashed!',14,0,100,15,0,10253,17346,0,'Magtheridon - Free'),
|
||||
(17257,2,0,'Did you think me weak? Soft? Who is the weak one now?',14,0,100,0,0,10255,17349,0,'Magtheridon - Slay'),
|
||||
(17257,3,0,'Not again! Not again...',14,0,100,0,0,10256,17348,0,'Magtheridon - Banished'),
|
||||
(17257,4,0,'I will not be taken so easily! Let the walls of this prison tremble... and fall!',14,0,100,0,0,10257,17336,0,'Magtheridon - Collapse'),
|
||||
(17257,5,0,'The Legion will consume you all!',14,0,100,0,0,10258,17347,0,'Magtheridon - Death'),
|
||||
(17257,6,0,'%s\'s bonds begin to weaken!',16,0,100,0,0,0,13689,0,'Magtheridon - Weaken'),
|
||||
(17257,7,0,'%s is nearly free of his bonds!',16,0,100,0,0,0,13690,0,'Magtheridon - Nearly free'),
|
||||
(17257,8,0,'%s breaks free!',16,0,100,0,0,0,13691,0,'Magtheridon - Breaks free'),
|
||||
(17257,9,0,'%s begins to cast Blast Nova!',41,0,100,0,0,0,18739,0,'Magtheridon - Blast Nova');
|
||||
|
||||
UPDATE `smart_scripts` SET `event_chance`=100 WHERE `entryorguid`=18829 AND `source_type`=0;
|
||||
|
||||
-- Channel Visual Group
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN(-90985,-90986,-90987) 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
|
||||
(-90986,0,0,0,0,0,100,2,4800,4800,18400,27400,11,39175,0,0,0,0,0,2,0,0,0,0,0,0,0,'Hellfire Warder - In Combat - Cast \'Shadow Bolt Volley\''),
|
||||
(-90986,0,1,0,0,0,100,2,9000,9000,14500,21500,11,34437,0,0,0,0,0,2,0,0,0,0,0,0,0,'Hellfire Warder - In Combat - Cast \'Death Coil\''),
|
||||
(-90986,0,2,0,0,0,100,2,3000,3000,17000,18000,11,34435,0,0,0,0,0,5,0,0,0,0,0,0,0,'Hellfire Warder - In Combat - Cast \'Rain of Fire\''),
|
||||
(-90986,0,3,0,0,0,100,2,4100,4100,20000,23500,11,34436,0,0,0,0,0,5,0,0,0,0,0,0,0,'Hellfire Warder - In Combat - Cast \'Shadow Burst\''),
|
||||
(-90986,0,4,0,0,0,100,2,1400,1400,7000,9000,11,34439,0,0,0,0,0,5,0,0,0,0,0,0,0,'Hellfire Warder - In Combat - Cast \'Unstable Affliction\''),
|
||||
(-90986,0,5,0,0,0,100,2,57700,57700,50000,50000,11,34441,0,0,0,0,0,2,0,0,0,0,0,0,0,'Hellfire Warder - In Combat - Cast \'Shadow Word: Pain\''),
|
||||
(-90986,0,6,0,1,0,100,1,1000,1000,0,0,11,33827,0,0,0,0,0,19,15384,20,0,0,0,0,0,'Hellfire Warder - Ooc no repeat - Cast Hellfire Warder Channel Visual'),
|
||||
(-90987,0,0,0,0,0,100,2,4800,4800,18400,27400,11,39175,0,0,0,0,0,2,0,0,0,0,0,0,0,'Hellfire Warder - In Combat - Cast \'Shadow Bolt Volley\''),
|
||||
(-90987,0,1,0,0,0,100,2,9000,9000,14500,21500,11,34437,0,0,0,0,0,2,0,0,0,0,0,0,0,'Hellfire Warder - In Combat - Cast \'Death Coil\''),
|
||||
(-90987,0,2,0,0,0,100,2,3000,3000,17000,18000,11,34435,0,0,0,0,0,5,0,0,0,0,0,0,0,'Hellfire Warder - In Combat - Cast \'Rain of Fire\''),
|
||||
(-90987,0,3,0,0,0,100,2,4100,4100,20000,23500,11,34436,0,0,0,0,0,5,0,0,0,0,0,0,0,'Hellfire Warder - In Combat - Cast \'Shadow Burst\''),
|
||||
(-90987,0,4,0,0,0,100,2,1400,1400,7000,9000,11,34439,0,0,0,0,0,5,0,0,0,0,0,0,0,'Hellfire Warder - In Combat - Cast \'Unstable Affliction\''),
|
||||
(-90987,0,5,0,0,0,100,2,57700,57700,50000,50000,11,34441,0,0,0,0,0,2,0,0,0,0,0,0,0,'Hellfire Warder - In Combat - Cast \'Shadow Word: Pain\''),
|
||||
(-90987,0,6,0,1,0,100,1,1000,1000,0,0,11,33827,0,0,0,0,0,19,15384,20,0,0,0,0,0,'Hellfire Warder - Ooc no repeat - Cast Hellfire Warder Channel Visual'),
|
||||
(-90985,0,0,0,0,0,100,2,4800,4800,18400,27400,11,39175,0,0,0,0,0,2,0,0,0,0,0,0,0,'Hellfire Warder - In Combat - Cast \'Shadow Bolt Volley\''),
|
||||
(-90985,0,1,0,0,0,100,2,9000,9000,14500,21500,11,34437,0,0,0,0,0,2,0,0,0,0,0,0,0,'Hellfire Warder - In Combat - Cast \'Death Coil\''),
|
||||
(-90985,0,2,0,0,0,100,2,3000,3000,17000,18000,11,34435,0,0,0,0,0,5,0,0,0,0,0,0,0,'Hellfire Warder - In Combat - Cast \'Rain of Fire\''),
|
||||
(-90985,0,3,0,0,0,100,2,4100,4100,20000,23500,11,34436,0,0,0,0,0,5,0,0,0,0,0,0,0,'Hellfire Warder - In Combat - Cast \'Shadow Burst\''),
|
||||
(-90985,0,4,0,0,0,100,2,1400,1400,7000,9000,11,34439,0,0,0,0,0,5,0,0,0,0,0,0,0,'Hellfire Warder - In Combat - Cast \'Unstable Affliction\''),
|
||||
(-90985,0,5,0,0,0,100,2,57700,57700,50000,50000,11,34441,0,0,0,0,0,2,0,0,0,0,0,0,0,'Hellfire Warder - In Combat - Cast \'Shadow Word: Pain\''),
|
||||
(-90985,0,6,0,1,0,100,1,1000,1000,0,0,11,33827,0,0,0,0,0,19,15384,20,0,0,0,0,0,'Hellfire Warder - Ooc no repeat - Cast Hellfire Warder Channel Visual');
|
||||
|
||||
-- Green Beam group
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN(-91247,-91248,-91249) 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
|
||||
(-91248,0,0,0,0,0,100,2,4800,4800,18400,27400,11,39175,0,0,0,0,0,2,0,0,0,0,0,0,0,'Hellfire Warder - In Combat - Cast \'Shadow Bolt Volley\''),
|
||||
(-91248,0,1,0,0,0,100,2,9000,9000,14500,21500,11,34437,0,0,0,0,0,2,0,0,0,0,0,0,0,'Hellfire Warder - In Combat - Cast \'Death Coil\''),
|
||||
(-91248,0,2,0,0,0,100,2,3000,3000,17000,18000,11,34435,0,0,0,0,0,5,0,0,0,0,0,0,0,'Hellfire Warder - In Combat - Cast \'Rain of Fire\''),
|
||||
(-91248,0,3,0,0,0,100,2,4100,4100,20000,23500,11,34436,0,0,0,0,0,5,0,0,0,0,0,0,0,'Hellfire Warder - In Combat - Cast \'Shadow Burst\''),
|
||||
(-91248,0,4,0,0,0,100,2,1400,1400,7000,9000,11,34439,0,0,0,0,0,5,0,0,0,0,0,0,0,'Hellfire Warder - In Combat - Cast \'Unstable Affliction\''),
|
||||
(-91248,0,5,0,0,0,100,2,57700,57700,50000,50000,11,34441,0,0,0,0,0,2,0,0,0,0,0,0,0,'Hellfire Warder - In Combat - Cast \'Shadow Word: Pain\''),
|
||||
(-91248,0,6,0,1,0,100,1,1000,1000,0,0,11,33346,0,0,0,0,0,19,15384,20,0,0,0,0,0,'Hellfire Warder - Ooc no repeat - Cast Green Beam'),
|
||||
(-91247,0,0,0,0,0,100,2,4800,4800,18400,27400,11,39175,0,0,0,0,0,2,0,0,0,0,0,0,0,'Hellfire Warder - In Combat - Cast \'Shadow Bolt Volley\''),
|
||||
(-91247,0,1,0,0,0,100,2,9000,9000,14500,21500,11,34437,0,0,0,0,0,2,0,0,0,0,0,0,0,'Hellfire Warder - In Combat - Cast \'Death Coil\''),
|
||||
(-91247,0,2,0,0,0,100,2,3000,3000,17000,18000,11,34435,0,0,0,0,0,5,0,0,0,0,0,0,0,'Hellfire Warder - In Combat - Cast \'Rain of Fire\''),
|
||||
(-91247,0,3,0,0,0,100,2,4100,4100,20000,23500,11,34436,0,0,0,0,0,5,0,0,0,0,0,0,0,'Hellfire Warder - In Combat - Cast \'Shadow Burst\''),
|
||||
(-91247,0,4,0,0,0,100,2,1400,1400,7000,9000,11,34439,0,0,0,0,0,5,0,0,0,0,0,0,0,'Hellfire Warder - In Combat - Cast \'Unstable Affliction\''),
|
||||
(-91247,0,5,0,0,0,100,2,57700,57700,50000,50000,11,34441,0,0,0,0,0,2,0,0,0,0,0,0,0,'Hellfire Warder - In Combat - Cast \'Shadow Word: Pain\''),
|
||||
(-91247,0,6,0,1,0,100,1,1000,1000,0,0,11,33346,0,0,0,0,0,19,15384,20,0,0,0,0,0,'Hellfire Warder - Ooc no repeat - Cast Green Beam'),
|
||||
(-91249,0,0,0,0,0,100,2,4800,4800,18400,27400,11,39175,0,0,0,0,0,2,0,0,0,0,0,0,0,'Hellfire Warder - In Combat - Cast \'Shadow Bolt Volley\''),
|
||||
(-91249,0,1,0,0,0,100,2,9000,9000,14500,21500,11,34437,0,0,0,0,0,2,0,0,0,0,0,0,0,'Hellfire Warder - In Combat - Cast \'Death Coil\''),
|
||||
(-91249,0,2,0,0,0,100,2,3000,3000,17000,18000,11,34435,0,0,0,0,0,5,0,0,0,0,0,0,0,'Hellfire Warder - In Combat - Cast \'Rain of Fire\''),
|
||||
(-91249,0,3,0,0,0,100,2,4100,4100,20000,23500,11,34436,0,0,0,0,0,5,0,0,0,0,0,0,0,'Hellfire Warder - In Combat - Cast \'Shadow Burst\''),
|
||||
(-91249,0,4,0,0,0,100,2,1400,1400,7000,9000,11,34439,0,0,0,0,0,5,0,0,0,0,0,0,0,'Hellfire Warder - In Combat - Cast \'Unstable Affliction\''),
|
||||
(-91249,0,5,0,0,0,100,2,57700,57700,50000,50000,11,34441,0,0,0,0,0,2,0,0,0,0,0,0,0,'Hellfire Warder - In Combat - Cast \'Shadow Word: Pain\''),
|
||||
(-91249,0,6,0,1,0,100,1,1000,1000,0,0,11,33346,0,0,0,0,0,19,15384,20,0,0,0,0,0,'Hellfire Warder - Ooc no repeat - Cast Green Beam');
|
||||
@@ -0,0 +1,51 @@
|
||||
SET @OGUID:=9709;
|
||||
SET @FourthOfJulyEvent:=72;
|
||||
SET @NewYearEvent:=6;
|
||||
|
||||
DELETE FROM `game_event` WHERE `eventEntry`=@FourthOfJulyEvent;
|
||||
INSERT INTO `game_event` (`eventEntry`, `start_time`, `end_time`, `occurence`, `length`, `holiday`, `description`) VALUES
|
||||
(@FourthOfJulyEvent, '2010-07-04 10:00:00', '2020-07-04 10:00:00', 525600, 1440, 62, 'Fireworks Spectacular');
|
||||
|
||||
UPDATE `gameobject_template` SET `ScriptName`='go_cheer_speaker' WHERE `entry`=180749;
|
||||
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+33;
|
||||
INSERT INTO `gameobject` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnMask`, `position_x`, `position_y`, `position_z`, `orientation`, `rotation0`, `rotation1`, `rotation2`, `rotation3`, `spawntimesecs`, `animprogress`, `state`, `VerifiedBuild`) VALUES
|
||||
(@OGUID+0 , 180749, 0, 0, 0, 1, -14370.99, 420.3124, 16.51293, 4.398232, 0, 0, 0, 1, 120, 255, 1, 21742), -- 180749 (Area: 1759) -- Cheer Speaker
|
||||
(@OGUID+1 , 180749, 0, 0, 0, 1, -14306.81, 508.3444, 8.637923, 2.530723, 0, 0, 0, 1, 120, 255, 1, 21742), -- 180749 (Area: 1759)
|
||||
(@OGUID+2 , 180749, 0, 0, 0, 1, -14420.4, 519.201, 5.00313, 6.265733, 0, 0, 0, 1, 120, 255, 1, 21742), -- 180749 (Area: 1759)
|
||||
(@OGUID+3 , 180749, 0, 0, 0, 1, -14465.18, 457.3802, 15.16439, 4.71239, 0, 0, 0, 1, 120, 255, 1, 21742), -- 180749 (Area: 1759)
|
||||
(@OGUID+4 , 180749, 530, 0, 0, 1, 9344.27, -7232.614, 12.6885, 5.445428, 0, 0, 0, 1, 120, 255, 1, 21742), -- 180749 (Area: 3487)
|
||||
(@OGUID+5 , 180749, 530, 0, 0, 1, 9389.193, -7278.438, 14.24046, 5.846854, 0, 0, 0, 1, 120, 255, 1, 21742), -- 180749 (Area: 3487)
|
||||
(@OGUID+6 , 180749, 530, 0, 0, 1, 9347.431, -7311.366, 14.84726, 3.892087, 0, 0, 0, 1, 120, 255, 1, 21742), -- 180749 (Area: 3487)
|
||||
(@OGUID+7 , 180749, 530, 0, 0, 1, 9303.132, -7282.21, 14.98293, 5.340709, 0, 0, 0, 1, 120, 255, 1, 21742), -- 180749 (Area: 3487)
|
||||
(@OGUID+8 , 180749, 1, 0, 0, 1, 1503.283, -4409.271, 22.16975, 3.892087, 0, 0, 0, 1, 120, 255, 1, 21742), -- 180749 (Area: 5170)
|
||||
(@OGUID+9 , 180749, 1, 0, 0, 1, 1436.682, -4422.708, 25.45605, 5.340709, 0, 0, 0, 1, 120, 255, 1, 21742), -- 180749 (Area: 5170)
|
||||
(@OGUID+10, 180749, 1, 0, 0, 1, 1327.655, -4380.633, 26.21982, 5.846854, 0, 0, 0, 1, 120, 255, 1, 21742), -- 180749 (Area: 4982)
|
||||
(@OGUID+11, 180749, 1, 0, 0, 1, 1266.912, -4402.42, 26.21174, 5.445428, 0, 0, 0, 1, 120, 255, 1, 21742), -- 180749 (Area: 4982)
|
||||
(@OGUID+12, 180749, 0, 0, 0, 1, 1831.196, 270.56, 59.91178, 5.183629, 0, 0, 0, 1, 120, 255, 1, 21742), -- 180749 (Area: 85)
|
||||
(@OGUID+13, 180749, 0, 0, 0, 1, 1897.282, 225.292, 55.46832, 2.91469, 0, 0, 0, 1, 120, 255, 1, 21742), -- 180749 (Area: 85)
|
||||
(@OGUID+14, 180749, 0, 0, 0, 1, 1786.145, 208.0461, 59.81123, 5.218536, 0, 0, 0, 1, 120, 255, 1, 21742), -- 180749 (Area: 85)
|
||||
(@OGUID+15, 180749, 0, 0, 0, 1, 1932.849, 256.6353, 46.37667, 2.408554, 0, 0, 0, 1, 120, 255, 1, 21742), -- 180749 (Area: 85)
|
||||
(@OGUID+16, 180749, 1, 0, 0, 1, 8590.172, 1013.607, 5.256284, 5.445428, 0, 0, 0, 1, 120, 255, 1, 21742), -- 180749 (Area: 702)
|
||||
(@OGUID+17, 180749, 1, 0, 0, 1, 8648.091, 860.5833, -137.8639, 5.846854, 0, 0, 0, 1, 120, 255, 1, 21742), -- 180749 (Area: 702)
|
||||
(@OGUID+18, 180749, 1, 0, 0, 1, 8698.927, 1020.247, -1.065949, 5.340709, 0, 0, 0, 1, 120, 255, 1, 21742), -- 180749 (Area: 702)
|
||||
(@OGUID+19, 180749, 1, 0, 0, 1, 8734.993, 942.0018, -1.033469, 3.892087, 0, 0, 0, 1, 120, 255, 1, 21742), -- 180749 (Area: 702)
|
||||
(@OGUID+20, 180749, 530, 0, 0, 1, -4002.936, -11879.86, -0.793618, 3.892087, 0, 0, 0, 1, 120, 255, 1, 21742), -- 180749 (Area: 3557)
|
||||
(@OGUID+21, 180749, 530, 0, 0, 1, -4064.482, -11883.77, -1.251729, 5.846854, 0, 0, 0, 1, 120, 255, 1, 21742), -- 180749 (Area: 3557)
|
||||
(@OGUID+22, 180749, 530, 0, 0, 1, -4054.23, -11952.88, 0.597575, 5.445428, 0, 0, 0, 1, 120, 255, 1, 21742), -- 180749 (Area: 3557)
|
||||
(@OGUID+23, 180749, 530, 0, 0, 1, -3966.142, -11945.27, -1.621891, 5.340709, 0, 0, 0, 1, 120, 255, 1, 21742), -- 180749 (Area: 3557)
|
||||
(@OGUID+24, 180749, 1, 0, 0, 1, -1096.49, 104.1394, 141.7214, 2.91469, 0, 0, 0, 1, 120, 255, 1, 21742), -- 180749 (Area: 2197)
|
||||
(@OGUID+25, 180749, 1, 0, 0, 1, -1085.63, -43.56782, 141.4417, 2.408554, 0, 0, 0, 1, 120, 255, 1, 21742), -- 180749 (Area: 2197)
|
||||
(@OGUID+26, 180749, 0, 0, 0, 1, -5079.372, -735.1215, 473.224, 3.892087, 0, 0, 0, 1, 120, 255, 1, 21742), -- 180749 (Area: 131)
|
||||
(@OGUID+27, 180749, 0, 0, 0, 1, -5169.606, -870.4445, 506.4104, 5.445428, 0, 0, 0, 1, 120, 255, 1, 21742), -- 180749 (Area: 131)
|
||||
(@OGUID+28, 180749, 0, 0, 0, 1, -5133.856, -836.9531, 507.1588, 5.340709, 0, 0, 0, 1, 120, 255, 1, 21742), -- 180749 (Area: 131)
|
||||
(@OGUID+29, 180749, 0, 0, 0, 1, -5061.806, -816.5382, 495.3532, 5.846854, 0, 0, 0, 1, 120, 255, 1, 21742), -- 180749 (Area: 0)
|
||||
(@OGUID+30, 180749, 0, 0, 0, 1, -8862.081, 653.8984, 96.19956, 5.340709, 0, 0, 0, 1, 120, 255, 1, 21742), -- 180749 (Area: 5148)
|
||||
(@OGUID+31, 180749, 0, 0, 0, 1, -8862.221, 583.0981, 93.54657, 5.445428, 0, 0, 0, 1, 120, 255, 1, 21742), -- 180749 (Area: 5148)
|
||||
(@OGUID+32, 180749, 0, 0, 0, 1, -8983.388, 552.9216, 93.85145, 5.846854, 0, 0, 0, 1, 120, 255, 1, 21742), -- 180749 (Area: 5148)
|
||||
(@OGUID+33, 180749, 0, 0, 0, 1, -9044.079, 412.5068, 120.3821, 3.892087, 0, 0, 0, 1, 120, 255, 1, 21742); -- 180749 (Area: 5148)
|
||||
|
||||
DELETE FROM `game_event_gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+33 AND `eventEntry`=@FourthOfJulyEvent;
|
||||
INSERT INTO `game_event_gameobject` SELECT @FourthOfJulyEvent, gameobject.guid FROM `gameobject` WHERE gameobject.guid BETWEEN @OGUID+0 AND @OGUID+33;
|
||||
DELETE FROM `game_event_gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+33 AND `eventEntry`=@NewYearEvent;
|
||||
INSERT INTO `game_event_gameobject` SELECT @NewYearEvent, gameobject.guid FROM `gameobject` WHERE gameobject.guid BETWEEN @OGUID+0 AND @OGUID+33;
|
||||
@@ -0,0 +1,2 @@
|
||||
UPDATE `waypoint_data` SET `move_type`='1' WHERE `id` IN
|
||||
(53827*10, 53828*10, 53829*10,53830*10, 53831*10,53841*10,53842*10,53843*10,53907*10,53908*10, 53909*10, 53912*10, 53913*10, 53914*10, 53915*10, 53916*10, 12740*10, 12739*10, 12738*10, 12737*10, 54254*10, 54262*10);
|
||||
@@ -0,0 +1 @@
|
||||
DELETE FROM `creature` WHERE `guid` IN(54260, 54258, 54261, 54255, 54257);
|
||||
@@ -0,0 +1,57 @@
|
||||
UPDATE `creature_template` SET `AIName`='' WHERE `entry`=23472;
|
||||
|
||||
-- Condition for spell Fixate
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry`=41295;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(13,1,41295,0,0,31,0,3,23418,0,0,0,0,'','Effect_0 hits Essence of Suffering');
|
||||
|
||||
DELETE FROM `creature_template_addon` WHERE `entry`=23418;
|
||||
INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `auras`) VALUES
|
||||
(23418, 0, 0, 0, 1, 0,'41296 41623');
|
||||
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName` IN('spell_reliquary_of_souls_aura_of_desire','spell_reliquary_of_souls_submerge','spell_reliquary_of_souls_spite','spell_soul_fragment_anger','spell_reliquary_of_souls_frenzy');
|
||||
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
|
||||
(41350,'spell_reliquary_of_souls_aura_of_desire'),
|
||||
(28819,'spell_reliquary_of_souls_submerge'),
|
||||
(41376,'spell_reliquary_of_souls_spite'),
|
||||
(41986,'spell_soul_fragment_anger'),
|
||||
(41305,'spell_reliquary_of_souls_frenzy');
|
||||
|
||||
DELETE FROM `spell_linked_spell` WHERE `spell_trigger`=-41376 AND`spell_effect`=41377 AND`type`=0;
|
||||
|
||||
UPDATE `creature_template` SET `modelid1`=11686, `modelid2`=1126, `flags_extra`=0, `ScriptName`='npc_angered_soul_fragment' WHERE `entry`=23398;
|
||||
|
||||
DELETE FROM `spell_proc` WHERE `SpellId`=41350;
|
||||
INSERT INTO `spell_proc` (`SpellId`, `SchoolMask`, `SpellFamilyName`, `SpellFamilyMask0`, `SpellFamilyMask1`, `SpellFamilyMask2`, `ProcFlags`, `SpellTypeMask`, `SpellPhaseMask`, `HitMask`, `AttributesMask`, `ProcsPerMinute`, `Chance`, `Cooldown`, `Charges`) VALUES
|
||||
(41350, 0, 0, 0x00000000, 0x00000000, 0x00000000, 0, 0x1, 0x2, 0x0, 0x2, 0, 0, 0, 0);
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`=23418;
|
||||
INSERT INTO `creature_text` (`CreatureID`,`GroupID`,`ID`,`Text`,`Type`,`Language`,`Probability`,`Emote`,`Duration`,`Sound`,`BroadcastTextId`,`TextRange`,`Comment`) VALUES
|
||||
(23418,0,0,'Pain and suffering are all that await you!',14,0,100,0,0,11415,21759,0,'SUFF_SAY_AGRO'),
|
||||
(23418,1,0,'Don\'t leave me alone!',14,0,100,0,0,11416,21760,0,'SUFF_SAY_SLAY'),
|
||||
(23418,1,1,'Look at what you made me do!',14,0,100,0,0,11417,21761,0,'SUFF_SAY_SLAY2'),
|
||||
(23418,1,2,'I didn\'t ask for this!',14,0,100,0,0,11418,21762,0,'SUFF_SAY_SLAY3'),
|
||||
(23418,2,0,'The pain is only beginning...',14,0,100,0,0,11419,21763,0,'SUFF_SAY_ENRAGE'),
|
||||
(23418,3,0,'I don\'t want to go back!',14,0,100,0,0,11420,21764,0,'SUFF_SAY_RECAP'),
|
||||
(23418,4,0,'Now what do I do?',14,0,100,0,0,11421,21765,0,'SUFF_SAY_AFTER'),
|
||||
(23418,5,0,'%s becomes enraged!',41,0,100,0,0,0,24144,0,'SUFF_EMOTE_ENRAGE');
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`=23419;
|
||||
INSERT INTO `creature_text` (`CreatureID`,`GroupID`,`ID`,`Text`,`Type`,`Language`,`Probability`,`Emote`,`Duration`,`Sound`,`BroadcastTextId`,`TextRange`,`Comment`) VALUES
|
||||
(23419,0,0,'You can have anything you desire... for a price.',14,0,100,0,0,11408,21752,0,'DESI_SAY_FREED'),
|
||||
(23419,1,0,'Fulfillment is at hand.',14,0,100,0,0,11409,21753,0,'DESI_SAY_SLAY1'),
|
||||
(23419,1,1,'Yes, you\'ll stay with us now...',14,0,100,0,0,11410,21754,0,'DESI_SAY_SLAY2'),
|
||||
(23419,1,2,'Your reach exceeds your grasp.',14,0,100,0,0,11412,21756,0,'DESI_SAY_SLAY3'),
|
||||
(23419,2,0,'Be careful what you wish for.',14,0,100,0,0,11411,21755,0,'DESI_SAY_SPEC'),
|
||||
(23419,3,0,'I won\'t be far!',14,0,100,0,0,11414,21758,0,'DESI_SAY_RECAP'),
|
||||
(23419,4,0,'I\'ll be waiting.',14,0,100,0,0,11413,21757,0,'DESI_SAY_AFTER');
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`=23420;
|
||||
INSERT INTO `creature_text` (`CreatureID`,`GroupID`,`ID`,`Text`,`Type`,`Language`,`Probability`,`Emote`,`Duration`,`Sound`,`BroadcastTextId`,`TextRange`,`Comment`) VALUES
|
||||
(23420,0,0,'Beware: I live!',14,0,100,0,0,11399,21746,0,'ANGER_SAY_FREED'),
|
||||
(23420,1,0,'So... foolish.',14,0,100,0,0,11400,21747,0,'ANGER_SAY_FREED2'),
|
||||
(23420,2,0,'Enough! No more!',14,0,100,0,0,11402,21748,0,'ANGER_SAY_SEETHE'),
|
||||
(23420,3,0,'%s seethes in anger!',14,0,100,0,0,0,21878,0,'ANGER_EMOTE_SEETHE'),
|
||||
(23420,4,0,'On your knees!',14,0,100,0,0,11403,21749,0,'ANGER_SAY_SPEC'),
|
||||
(23420,5,0,'Beware, coward!',14,0,100,0,0,11405,21751,0,'ANGER_SAY_SPITE'),
|
||||
(23420,6,0,'I won\'t... be... ignored!',14,0,100,0,0,11404,21750,0,'ANGER_SAY_DEATH');
|
||||
@@ -0,0 +1,301 @@
|
||||
--
|
||||
SET @Cguid:=145826;
|
||||
DELETE FROM `creature` WHERE `id` IN (14351,11444,11446,11448,11442,11441,11445,11450,14385,13036) AND `map`=429;
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `spawnMask`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `MovementType`) VALUES
|
||||
(@Cguid+0, 11444, 429, 2, 0, 0, 278.29, 32.931, -2.46346, 0.05236, 86400, 0, 0),
|
||||
(@Cguid+1, 11444, 429, 2, 0, 0, 356.308, 27.8438, -24.9039, 6.23082, 86400, 0, 0),
|
||||
(@Cguid+2, 11444, 429, 2, 0, 0, 364.345, 17.3626, -25.5038, 1.36136, 86400, 0, 0),
|
||||
(@Cguid+3, 11444, 429, 2, 0, 0, 413.308, 200.467, 11.2983, 0.261799, 86400, 0, 0),
|
||||
(@Cguid+4, 11444, 429, 2, 0, 0, 425.703, 203.455, 11.2904, 3.35103, 86400, 0, 0),
|
||||
(@Cguid+5, 11444, 429, 2, 0, 0, 324.012, 296.401, 11.2898, 1.36136, 86400, 0, 0),
|
||||
(@Cguid+6, 11444, 429, 2, 0, 0, 325.699, 305.354, 11.2862, 4.53786, 86400, 0, 0),
|
||||
(@Cguid+7, 11444, 429, 2, 0, 0, 288.657, 317.849, 2.93636, 2.42601, 86400, 0, 0),
|
||||
(@Cguid+8, 11444, 429, 2, 0, 0, 279.307, 325.271, 2.93639, 5.65487, 86400, 0, 0),
|
||||
(@Cguid+9, 11444, 429, 2, 0, 0, 431.546, 171.163, 2.85225, 3.26898, 86400, 0, 2),
|
||||
(@Cguid+10, 11444, 429, 2, 0, 0, 253.062, 92.799, -2.47625, 0.802851, 86400, 0, 0),
|
||||
(@Cguid+11, 11444, 429, 2, 0, 0, 273.006, 195.121, 2.93627, 0.855211, 86400, 0, 0),
|
||||
(@Cguid+12, 11444, 429, 2, 0, 0, 280.528, 204.355, 2.93633, 4.06662, 86400, 0, 0),
|
||||
(@Cguid+13, 11444, 429, 2, 0, 0, 333.932, 132.645, -2.49961, 3.40339, 86400, 0, 0),
|
||||
(@Cguid+14, 11444, 429, 2, 0, 0, 462.979, 55.9376, -3.80328, 0.541052, 86400, 0, 0),
|
||||
(@Cguid+15, 11444, 429, 2, 0, 0, 349.212, -110.3, -3.80274, 0.733038, 86400, 0, 0),
|
||||
(@Cguid+16, 11444, 429, 2, 0, 0, 341.384, 219.696, 11.287, 4.27606, 86400, 0, 0),
|
||||
(@Cguid+17, 11444, 429, 2, 0, 0, 487.189, 179.82, 2.93627, 4.06662, 86400, 0, 0),
|
||||
(@Cguid+18, 11444, 429, 2, 0, 0, 735.327, 423.83, 28.2633, 0.750492, 86400, 0, 0),
|
||||
(@Cguid+19, 11444, 429, 2, 0, 0, 299.916, 40.0648, -3.8728, 3.80482, 86400, 0, 0),
|
||||
(@Cguid+20, 11444, 429, 2, 0, 0, 384.076, 144.653, 0.654953, 4.57276, 86400, 0, 0),
|
||||
(@Cguid+21, 11444, 429, 2, 0, 0, 314.267, 125.077, -3.80362, 0.453786, 86400, 0, 0),
|
||||
(@Cguid+22, 11444, 429, 2, 0, 0, 471.769, 192.862, 2.93626, 6.12611, 86400, 0, 0),
|
||||
(@Cguid+23, 11444, 429, 2, 0, 0, 479.482, 59.1785, -3.80289, 3.24631, 86400, 0, 0),
|
||||
(@Cguid+24, 11444, 429, 2, 0, 0, 350.451, 203.075, 11.2928, 1.44862, 86400, 0, 0),
|
||||
(@Cguid+25, 11446, 429, 2, 0, 0, 910.469, 460.242, 40.4794, 2.93215, 86400, 0, 0),
|
||||
(@Cguid+26, 11446, 429, 2, 0, 0, 794.791, 565.687, 40.4798, 5.07891, 86400, 0, 0),
|
||||
(@Cguid+27, 11446, 429, 2, 0, 0, 879.269, 413.435, 40.48, 2.23402, 86400, 0, 0),
|
||||
(@Cguid+28, 11446, 429, 2, 0, 0, 759.706, 415.478, 40.4794, 0.750492, 86400, 0, 0),
|
||||
(@Cguid+29, 11446, 429, 2, 0, 0, 819.916, 391.366, 40.4797, 1.48353, 86400, 0, 0),
|
||||
(@Cguid+30, 11446, 429, 2, 0, 0, 764.541, 548.918, 40.4821, 5.44543, 86400, 0, 0),
|
||||
(@Cguid+31, 11446, 429, 2, 0, 0, 814.476, 570.523, 40.479, 4.86947, 86400, 0, 0),
|
||||
(@Cguid+32, 11446, 429, 2, 0, 0, 879.467, 549.782, 40.48, 4.08407, 86400, 0, 0),
|
||||
(@Cguid+33, 11446, 429, 2, 0, 0, 909.916, 505.704, 40.479, 3.47321, 86400, 0, 0),
|
||||
(@Cguid+34, 11446, 429, 2, 0, 0, 852.577, 564.638, 40.4802, 4.43314, 86400, 0, 0),
|
||||
(@Cguid+35, 11446, 429, 2, 0, 0, 851.739, 398.095, 40.4801, 1.85005, 86400, 0, 0),
|
||||
(@Cguid+36, 11446, 429, 2, 0, 0, 902.99, 442.14, 40.4793, 2.68781, 86400, 0, 0),
|
||||
(@Cguid+37, 11446, 429, 2, 0, 0, 794.689, 394.92, 40.4798, 1.20428, 86400, 0, 0),
|
||||
(@Cguid+38, 11448, 429, 2, 0, 0, 379.625, 466.833, -7.14894, 5.77704, 86400, 0, 0),
|
||||
(@Cguid+39, 11448, 429, 2, 0, 0, 581.503, 596.278, -4.67144, 0.05236, 86400, 0, 0),
|
||||
(@Cguid+40, 11448, 429, 2, 0, 0, 593.01, 596.731, -4.67143, 3.15905, 86400, 0, 0),
|
||||
(@Cguid+41, 11448, 429, 2, 0, 0, 568.204, 479.525, 29.5475, 3.22886, 86400, 0, 0),
|
||||
(@Cguid+42, 11448, 429, 2, 0, 0, 518.04, 562.212, 27.9994, 5.21853, 86400, 0, 0),
|
||||
(@Cguid+43, 11448, 429, 2, 0, 0, 476.998, 565.548, 27.9979, 5.44543, 86400, 0, 0),
|
||||
(@Cguid+44, 11448, 429, 2, 0, 0, 580.365, 565.465, -4.67144, 0.034907, 86400, 0, 0),
|
||||
(@Cguid+45, 11448, 429, 2, 0, 0, 480.812, 600.12, -25.3203, 1.13446, 86400, 0, 0),
|
||||
(@Cguid+46, 11448, 429, 2, 0, 0, 483.991, 607.756, -25.3214, 4.38078, 86400, 0, 0),
|
||||
(@Cguid+47, 11448, 429, 2, 0, 0, 579.373, 590.731, -25.3194, 1.88496, 86400, 0, 0),
|
||||
(@Cguid+48, 11448, 429, 2, 0, 0, 572.401, 599.51, -25.3194, 5.49779, 86400, 0, 0),
|
||||
(@Cguid+49, 11448, 429, 2, 0, 0, 548.933, 575.927, -4.67144, 2.28638, 86400, 0, 0),
|
||||
(@Cguid+50, 11448, 429, 2, 0, 0, 425.414, 543.026, -18.26, 3.61283, 86400, 0, 0),
|
||||
(@Cguid+51, 11448, 429, 2, 0, 0, 584.833, 544.572, -25.3159, 2.28638, 86400, 0, 0),
|
||||
(@Cguid+52, 11448, 429, 2, 0, 0, 577.443, 549.148, -25.3152, 5.37561, 86400, 0, 0),
|
||||
(@Cguid+53, 11441, 429, 2, 0, 1, 402.45, 333.237, 2.9312, 0.191986, 86400, 0, 0),
|
||||
(@Cguid+54, 11441, 429, 2, 0, 1, 439.642, 134.562, -2.4987, 6.19592, 86400, 0, 0),
|
||||
(@Cguid+55, 11441, 429, 2, 0, 1, 450.071, 134.044, -2.49898, 3.14159, 86400, 0, 0),
|
||||
(@Cguid+56, 11441, 429, 2, 0, 1, 445.038, 350.688, 2.93627, 1.62316, 86400, 0, 0),
|
||||
(@Cguid+57, 11441, 429, 2, 0, 1, 289.288, -75.3393, -3.80366, 0.855211, 86400, 0, 0),
|
||||
(@Cguid+58, 11441, 429, 2, 0, 1, 297.368, -66.7381, -3.80376, 3.92699, 86400, 0, 0),
|
||||
(@Cguid+59, 11441, 429, 2, 0, 1, 404.442, 180.283, 2.93519, 5.39307, 86400, 0, 0),
|
||||
(@Cguid+60, 11441, 429, 2, 0, 1, 367.083, 36.711, -24.7118, 4.64258, 86400, 0, 0),
|
||||
(@Cguid+61, 11441, 429, 2, 0, 1, 375.465, 26.511, -25.888, 3.05433, 86400, 0, 0),
|
||||
(@Cguid+62, 11441, 429, 2, 0, 1, 417.915, 292.252, 11.1982, 3.60941, 86400, 0, 0),
|
||||
(@Cguid+63, 11441, 429, 2, 0, 1, 312.086, 182.917, 2.93627, 4.36332, 86400, 0, 0),
|
||||
(@Cguid+64, 11441, 429, 2, 0, 1, 326.912, 360.968, 2.93626, 4.74729, 86400, 0, 0),
|
||||
(@Cguid+65, 11441, 429, 2, 0, 1, 469.788, 46.4686, -3.91727, 1.44576, 86400, 0, 2),
|
||||
(@Cguid+66, 11441, 429, 2, 0, 1, 310.688, -12.7194, -3.80129, 6.19592, 86400, 0, 0),
|
||||
(@Cguid+67, 11441, 429, 2, 0, 1, 387.546, 135.562, -2.50008, 2.00713, 86400, 0, 0),
|
||||
(@Cguid+68, 11441, 429, 2, 0, 1, 301.618, 48.9438, -3.88544, 0.541052, 86400, 0, 0),
|
||||
(@Cguid+69, 11441, 429, 2, 0, 1, 391.712, 102.586, -3.80363, 0.541052, 86400, 0, 0),
|
||||
(@Cguid+70, 11441, 429, 2, 0, 1, 262.402, 94.8272, -2.47626, 3.21141, 86400, 0, 0),
|
||||
(@Cguid+71, 11441, 429, 2, 0, 1, 431.271, 75.9517, -23.5555, 3.76991, 86400, 0, 0),
|
||||
(@Cguid+72, 11441, 429, 2, 0, 1, 321.913, 132.877, -2.49938, 5.37561, 86400, 0, 0),
|
||||
(@Cguid+73, 11441, 429, 2, 0, 1, 316.945, 239.888, 11.2093, 3.14159, 86400, 0, 0),
|
||||
(@Cguid+74, 11441, 429, 2, 0, 1, 292.932, 264.732, 2.94989, 3.7001, 86400, 0, 0),
|
||||
(@Cguid+75, 11441, 429, 2, 0, 1, 281.884, 257.988, 2.9364, 0.541052, 86400, 0, 0),
|
||||
(@Cguid+76, 11441, 429, 2, 0, 1, 469.761, 66.3496, -3.80288, 4.27606, 86400, 0, 0),
|
||||
(@Cguid+77, 11441, 429, 2, 0, 1, 352.292, 219.206, 11.2871, 4.60767, 86400, 0, 0),
|
||||
(@Cguid+78, 11441, 429, 2, 0, 1, 484.79, 192.536, 2.93627, 3.22886, 86400, 0, 0),
|
||||
(@Cguid+79, 11441, 429, 2, 0, 1, 480.492, 171.572, 2.93626, 0.855211, 86400, 0, 0),
|
||||
(@Cguid+80, 11441, 429, 2, 0, 1, 357.101, -105.233, -3.8031, 3.735, 86400, 0, 0),
|
||||
(@Cguid+81, 11441, 429, 2, 0, 1, 420.708, 212.934, 11.2148, 4.02882, 86400, 0, 0),
|
||||
(@Cguid+82, 11441, 429, 2, 0, 1, 253.919, 101.484, -2.47626, 4.79965, 86400, 0, 0),
|
||||
(@Cguid+83, 11441, 429, 2, 0, 1, 293.43, 22.6771, -3.83323, 1.71042, 86400, 0, 0),
|
||||
(@Cguid+84, 11441, 429, 2, 0, 1, 290, 43.9366, -3.84639, 4.88692, 86400, 0, 0),
|
||||
(@Cguid+85, 11441, 429, 2, 0, 1, 387.18, 212.206, 11.2158, 3.16332, 86400, 0, 2),
|
||||
(@Cguid+86, 11441, 429, 2, 0, 1, 414.897, 260.269, 11.2061, 4.6183, 86400, 5, 1),
|
||||
(@Cguid+87, 11441, 429, 2, 0, 1, 378.439, 136.133, -2.50067, 0.925025, 86400, 0, 0),
|
||||
(@Cguid+88, 11441, 429, 2, 0, 1, 325.94, 124.511, -3.80362, 1.88496, 86400, 0, 0),
|
||||
(@Cguid+89, 11441, 429, 2, 0, 1, 350.716, 306.468, 11.2068, 1.12018, 86400, 0, 0),
|
||||
(@Cguid+90, 11441, 429, 2, 0, 1, 338.808, 208.337, 11.2875, 1.37881, 86400, 0, 0),
|
||||
(@Cguid+91, 11445, 429, 2, 0, 1, 692.195, 511.417, 28.2594, 2.87979, 86400, 0, 0),
|
||||
(@Cguid+92, 11445, 429, 2, 0, 1, 743.179, 436.379, 28.2657, 4.17134, 86400, 0, 0),
|
||||
(@Cguid+93, 11445, 429, 2, 0, 1, 667.484, 467.305, 29.5391, 4.20624, 86400, 0, 0),
|
||||
(@Cguid+94, 11445, 429, 2, 0, 1, 676.629, 460.347, 29.5408, 3.19395, 86400, 0, 0),
|
||||
(@Cguid+95, 11445, 429, 2, 0, 1, 681.03, 504.275, 29.5437, 1.48353, 86400, 0, 0),
|
||||
(@Cguid+96, 11450, 429, 2, 0, 1, 387.409, 462.772, -7.14894, 2.68781, 86400, 0, 0),
|
||||
(@Cguid+97, 11450, 429, 2, 0, 1, 419.015, 538.269, -18.26, 0.488692, 86400, 0, 0),
|
||||
(@Cguid+98, 11450, 429, 2, 0, 1, 530.169, 580.439, -25.3194, 1.41372, 86400, 0, 0),
|
||||
(@Cguid+99, 11450, 429, 2, 0, 1, 530.206, 600.875, -25.3194, 4.86947, 86400, 0, 0),
|
||||
(@Cguid+100, 11450, 429, 2, 0, 1, 593.228, 565.12, -4.67144, 3.10669, 86400, 0, 0),
|
||||
(@Cguid+101, 11450, 429, 2, 0, 1, 484.101, 523.808, 27.9977, 1.44862, 86400, 0, 0),
|
||||
(@Cguid+102, 11450, 429, 2, 0, 1, 497.733, 523.807, 27.9982, 1.64061, 86400, 0, 0),
|
||||
(@Cguid+103, 11450, 429, 2, 0, 1, 480.264, 558.168, 27.9953, 1.85005, 86400, 0, 0),
|
||||
(@Cguid+104, 11450, 429, 2, 0, 1, 485.141, 564.946, 27.9951, 3.21141, 86400, 0, 0),
|
||||
(@Cguid+105, 11450, 429, 2, 0, 1, 565.936, 486.725, 29.5474, 4.2586, 86400, 0, 0),
|
||||
(@Cguid+106, 11450, 429, 2, 0, 1, 559.22, 477.314, 29.5474, 0.855211, 86400, 0, 0),
|
||||
(@Cguid+107, 11450, 429, 2, 0, 1, 688.459, 505.916, 29.5529, 2.30383, 86400, 0, 0),
|
||||
(@Cguid+108, 11450, 429, 2, 0, 1, 541.695, 582.741, -4.67144, 5.67232, 86400, 0, 0),
|
||||
(@Cguid+109, 11450, 429, 2, 0, 1, 522.958, 554.504, 28.0006, 2.19911, 86400, 0, 0),
|
||||
(@Cguid+110, 11450, 429, 2, 0, 1, 748.483, 433.161, 28.2665, 3.56047, 86400, 0, 0),
|
||||
(@Cguid+111, 13036, 429, 2, 0, 0, 725.086, 486.37, 28.2642, 4.36332, 86400, 0, 0),
|
||||
(@Cguid+112, 13036, 429, 2, 0, 0, 719.403, 477.228, 28.263, 5.86431, 86400, 0, 0),
|
||||
(@Cguid+113, 13036, 429, 2, 0, 0, 712.803, 468.677, 28.2616, 5.06145, 86400, 0, 0),
|
||||
(@Cguid+114, 13036, 429, 2, 0, 0, 724.21, 464.514, 28.2634, 0.925025, 86400, 0, 0),
|
||||
(@Cguid+115, 13036, 429, 2, 0, 0, 715.356, 492.574, 28.2628, 4.74729, 86400, 0, 0),
|
||||
(@Cguid+116, 13036, 429, 2, 0, 0, 729.782, 497.977, 28.1809, 1.0012, 86400, 0, 0),
|
||||
(@Cguid+117, 13036, 429, 2, 0, 0, 731.356, 440.905, 28.1809, 3.69297, 86400, 0, 0),
|
||||
(@Cguid+118, 13036, 429, 2, 0, 0, 730.857, 454.202, 28.1818, 4.64055, 86400, 0, 0),
|
||||
(@Cguid+119, 13036, 429, 2, 0, 0, 735.317, 444.417, 28.1823, 0.813315, 86400, 0, 0),
|
||||
(@Cguid+120, 13036, 429, 2, 0, 0, 340.884, -22.1709, -25.0456, 5.84685, 86400, 0, 0),
|
||||
(@Cguid+121, 13036, 429, 2, 0, 0, 357.606, -31.0619, -25.3087, 1.57987, 86400, 0, 0),
|
||||
(@Cguid+122, 13036, 429, 2, 0, 0, 349.138, -36.2457, -25.3775, 0.750492, 86400, 0, 0),
|
||||
(@Cguid+123, 13036, 429, 2, 0, 0, 341.746, -30.117, -25.1938, 3.12414, 86400, 0, 0),
|
||||
(@Cguid+124, 13036, 429, 2, 0, 0, 382.306, -69.0369, -23.5575, 1.91986, 86400, 0, 0),
|
||||
(@Cguid+125, 13036, 429, 2, 0, 0, 377.483, -51.7621, -24.1065, 2.63545, 86400, 0, 0),
|
||||
(@Cguid+126, 13036, 429, 2, 0, 0, 382.778, -47.0005, -23.906, 4.95674, 86400, 0, 0),
|
||||
(@Cguid+127, 13036, 429, 2, 0, 0, 374.831, -59.13, -24.1519, 0.418879, 86400, 0, 0),
|
||||
(@Cguid+128, 13036, 429, 2, 0, 0, 399.18, 16.25, -25.5551, 4.4731, 86400, 0, 0),
|
||||
(@Cguid+129, 13036, 429, 2, 0, 0, 407.789, -50.7201, -23.0973, 1.5708, 86400, 0, 0),
|
||||
(@Cguid+130, 13036, 429, 2, 0, 0, 428.65, -35.0334, -24.7101, 0.884373, 86400, 0, 0),
|
||||
(@Cguid+131, 13036, 429, 2, 0, 0, 415.32, -37.0531, -23.9358, 4.29386, 86400, 0, 0),
|
||||
(@Cguid+132, 13036, 429, 2, 0, 0, 428.125, 79.5227, -23.7273, 3.03687, 86400, 0, 0),
|
||||
(@Cguid+133, 13036, 429, 2, 0, 0, 426.051, 73.2831, -23.4526, 0.296706, 86400, 0, 0),
|
||||
(@Cguid+134, 13036, 429, 2, 0, 0, 434.372, 68.875, -23.2256, 5.39307, 86400, 0, 0),
|
||||
(@Cguid+135, 13036, 429, 2, 0, 0, 448.359, 304.18, 11.2033, 3.98352, 86400, 0, 0),
|
||||
(@Cguid+136, 13036, 429, 2, 0, 0, 441.873, 292.296, 11.2877, 1.20428, 86400, 0, 0),
|
||||
(@Cguid+137, 13036, 429, 2, 0, 0, 399.746, 102.826, -3.80367, 1.8326, 86400, 0, 0),
|
||||
(@Cguid+138, 13036, 429, 2, 0, 0, 402.409, 171.529, 2.93519, 3.28122, 86400, 0, 0),
|
||||
(@Cguid+139, 13036, 429, 2, 0, 0, 410.881, 174.518, 2.93516, 1.67552, 86400, 0, 0),
|
||||
(@Cguid+140, 13036, 429, 2, 0, 0, 412.8, 183.446, 2.93557, 0.645772, 86400, 0, 0),
|
||||
(@Cguid+141, 13036, 429, 2, 0, 0, 433.926, 168.443, 2.85223, 3.27681, 86400, 0, 0),
|
||||
(@Cguid+142, 13036, 429, 2, 0, 0, 436.521, 171.8, 2.85232, 3.38357, 86400, 0, 0),
|
||||
(@Cguid+143, 13036, 429, 2, 0, 0, 409.139, 327.11, 2.93415, 6.0912, 86400, 0, 0),
|
||||
(@Cguid+144, 13036, 429, 2, 0, 0, 408.077, 23.4038, -25.356, 5.84685, 86400, 0, 0),
|
||||
(@Cguid+145, 13036, 429, 2, 0, 0, 413.974, 15.749, -25.0879, 2.54818, 86400, 0, 0),
|
||||
(@Cguid+146, 13036, 429, 2, 0, 0, 341.223, -61.7868, -25.4697, 2.46091, 86400, 0, 0),
|
||||
(@Cguid+147, 13036, 429, 2, 0, 0, 352.286, -57.7756, -25.8241, 0.804581, 86400, 0, 0),
|
||||
(@Cguid+148, 13036, 429, 2, 0, 0, 335.31, -54.8641, -25.8178, 1.0472, 86400, 0, 0),
|
||||
(@Cguid+149, 13036, 429, 2, 0, 0, 356.844, -67.5697, -26.1843, 4.65561, 86400, 0, 0),
|
||||
(@Cguid+150, 13036, 429, 2, 0, 0, 439.126, 359.171, 3.86281, 0.384838, 86400, 0, 0),
|
||||
(@Cguid+151, 13036, 429, 2, 0, 0, 444.332, 342.271, 2.93627, 1.16937, 86400, 0, 0),
|
||||
(@Cguid+152, 13036, 429, 2, 0, 0, 451.231, 358.101, 3.8628, 3.69278, 86400, 0, 0),
|
||||
(@Cguid+153, 13036, 429, 2, 0, 0, 311.978, 173.334, 2.93627, 2.00713, 86400, 0, 0),
|
||||
(@Cguid+154, 13036, 429, 2, 0, 0, 318.378, 360.432, 2.85293, 5.02763, 86400, 0, 0),
|
||||
(@Cguid+155, 13036, 429, 2, 0, 0, 325.075, 351.874, 2.93626, 1.3439, 86400, 0, 0),
|
||||
(@Cguid+156, 13036, 429, 2, 0, 0, 780.872, 483.796, 36.0493, 4.05614, 86400, 0, 0),
|
||||
(@Cguid+157, 13036, 429, 2, 0, 0, 792.718, 495.528, 37.3182, 3.61377, 86400, 5, 1),
|
||||
(@Cguid+158, 13036, 429, 2, 0, 0, 778.848, 490.062, 35.1498, 3.45469, 86400, 5, 1),
|
||||
(@Cguid+159, 13036, 429, 2, 0, 0, 399.836, 220.873, 11.2113, 4.08073, 86400, 0, 0),
|
||||
(@Cguid+160, 13036, 429, 2, 0, 0, 387.138, 203.458, 11.2161, 4.61475, 86400, 5, 1),
|
||||
(@Cguid+161, 13036, 429, 2, 0, 0, 355.238, -18.4445, -25.1449, 2.0674, 86400, 0, 0),
|
||||
(@Cguid+162, 13036, 429, 2, 0, 0, 409.935, 335.965, 2.84705, 3.19855, 86400, 0, 0),
|
||||
(@Cguid+163, 13036, 429, 2, 0, 0, 404.258, 342.263, 2.84682, 0.80796, 86400, 0, 0),
|
||||
(@Cguid+164, 13036, 429, 2, 0, 0, 412.695, -61.5281, -25.3884, 6.03884, 86400, 0, 0),
|
||||
(@Cguid+165, 13036, 429, 2, 0, 0, 420.648, -49.2333, -23.81, 0.958851, 86400, 0, 0),
|
||||
(@Cguid+166, 13036, 429, 2, 0, 0, 334.235, 357.029, 2.93627, 3.4383, 86400, 0, 0),
|
||||
(@Cguid+167, 13036, 429, 2, 0, 0, 464.224, 26.2598, -3.9254, 1.44948, 86400, 0, 0),
|
||||
(@Cguid+168, 13036, 429, 2, 0, 0, 466.826, 22.9091, -3.9267, 1.52329, 86400, 0, 0),
|
||||
(@Cguid+169, 13036, 429, 2, 0, 0, 434.5, 304.634, 11.2862, 1.8326, 86400, 0, 0),
|
||||
(@Cguid+170, 13036, 429, 2, 0, 0, 386.18, -59.6284, -23.0857, 3.68265, 86400, 0, 0),
|
||||
(@Cguid+171, 13036, 429, 2, 0, 0, 404.756, 9.16734, -24.9806, 5.37936, 86400, 5, 1),
|
||||
(@Cguid+172, 13036, 429, 2, 0, 0, 304.092, 183.315, 2.93627, 0.314159, 86400, 0, 0),
|
||||
(@Cguid+173, 13036, 429, 2, 0, 0, 319.061, 181.406, 2.93627, 3.36848, 86400, 0, 0),
|
||||
(@Cguid+174, 13036, 429, 2, 0, 0, 415.292, 32.0243, -25.0731, 2.00533, 86400, 0, 0),
|
||||
(@Cguid+175, 13036, 429, 2, 0, 0, 404.637, 33.3228, -25.3474, 1.09309, 86400, 0, 0),
|
||||
(@Cguid+176, 13036, 429, 2, 0, 0, 397.051, 108.892, -3.80362, 3.85718, 86400, 0, 0),
|
||||
(@Cguid+177, 13036, 429, 2, 0, 0, 391.716, 110.485, -3.80361, 5.81195, 86400, 0, 0),
|
||||
(@Cguid+178, 13036, 429, 2, 0, 0, 347.183, -67.9546, -25.8799, 0.77538, 86400, 0, 0);
|
||||
|
||||
DELETE FROM `creature_addon` WHERE `guid` IN (@Cguid+9, @Cguid+65, @Cguid+85);
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES
|
||||
(@Cguid+9,@Cguid+9*10,0,0,0,0, ''),
|
||||
(@Cguid+65,@Cguid+65*10,0,0,0,0, ''),
|
||||
(@Cguid+85,@Cguid+85*10,0,0,0,0, '');
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id` IN (@Cguid+9*10, @Cguid+65*10, @Cguid+85*10);
|
||||
INSERT INTO `waypoint_data`(`id`,`point`,`position_x`,`position_y`,`position_z`) VALUES
|
||||
(@Cguid+9*10, 1, 442.135, 168.735, 2.85342),
|
||||
(@Cguid+9*10, 2, 450.931, 164.414, 2.85342),
|
||||
(@Cguid+9*10, 3, 460.57, 162.294, 2.85342),
|
||||
(@Cguid+9*10, 4, 468.127, 163.767, 2.85342),
|
||||
(@Cguid+9*10, 5, 472.599, 168.592, 2.85342),
|
||||
(@Cguid+9*10, 6, 475.572, 176.822, 2.85342),
|
||||
(@Cguid+9*10, 7, 472.075, 182.395, 2.85342),
|
||||
(@Cguid+9*10, 8, 463.501, 184.145, 2.85296),
|
||||
(@Cguid+9*10, 9, 452.911, 181.483, 2.85296),
|
||||
(@Cguid+9*10, 10, 437.194, 176.868, 2.85296),
|
||||
(@Cguid+9*10, 11, 421.478, 172.254, 2.85296),
|
||||
(@Cguid+9*10, 12, 409.993, 168.882, 2.85296),
|
||||
(@Cguid+9*10, 13, 392.501, 168.334, 2.85296),
|
||||
(@Cguid+9*10, 14, 376.129, 167.837, 2.85024),
|
||||
(@Cguid+9*10, 15, 358.637, 167.307, 2.85024),
|
||||
(@Cguid+9*10, 16, 343.384, 166.844, 2.85024),
|
||||
(@Cguid+9*10, 17, 329.18, 166.413, 2.85152),
|
||||
(@Cguid+9*10, 18, 313.857, 165.948, 2.85152),
|
||||
(@Cguid+9*10, 19, 309.247, 174.596, 2.85152),
|
||||
(@Cguid+9*10, 20, 306.336, 185.121, 2.85152),
|
||||
(@Cguid+9*10, 21, 303.704, 194.634, 2.85152),
|
||||
(@Cguid+9*10, 22, 297.923, 199.612, 2.85152),
|
||||
(@Cguid+9*10, 23, 292.069, 202.459, 2.85152),
|
||||
(@Cguid+9*10, 24, 283.32, 202.297, 2.85152),
|
||||
(@Cguid+9*10, 25, 276.718, 198.472, 2.85152),
|
||||
(@Cguid+9*10, 26, 273.014, 193.034, 2.85152),
|
||||
(@Cguid+9*10, 27, 275.28, 184.582, 2.85152),
|
||||
(@Cguid+9*10, 28, 280.487, 179.006, 2.85152),
|
||||
(@Cguid+9*10, 29, 291.396, 173.91, 2.85152),
|
||||
(@Cguid+9*10, 30, 305.235, 170.686, 2.85152),
|
||||
(@Cguid+9*10, 31, 320.203, 167.747, 2.85152),
|
||||
(@Cguid+9*10, 32, 336.49, 169.461, 2.85152),
|
||||
(@Cguid+9*10, 33, 356.008, 167.671, 2.84997),
|
||||
(@Cguid+9*10, 34, 374.529, 166.631, 2.84997),
|
||||
(@Cguid+9*10, 35, 392.021, 167.162, 2.85354),
|
||||
(@Cguid+9*10, 36, 407.344, 167.626, 2.85354),
|
||||
(@Cguid+9*10, 37, 417.679, 171.152, 2.8521),
|
||||
(@Cguid+65*10, 1, 472.197, 53.2145, -3.88626),
|
||||
(@Cguid+65*10, 2, 473.194, 64.0889, -3.88626),
|
||||
(@Cguid+65*10, 3, 472.972, 76.0569, -3.88626),
|
||||
(@Cguid+65*10, 4, 472.027, 91.2871, -3.88626),
|
||||
(@Cguid+65*10, 5, 467.937, 103.717, -3.88626),
|
||||
(@Cguid+65*10, 6, 460.131, 112.792, -3.88626),
|
||||
(@Cguid+65*10, 7, 446.05, 114.699, -3.88626),
|
||||
(@Cguid+65*10, 8, 434.096, 115.322, -3.88626),
|
||||
(@Cguid+65*10, 9, 419.905, 116.063, -3.88626),
|
||||
(@Cguid+65*10, 10, 405.74, 117.193, -3.88626),
|
||||
(@Cguid+65*10, 11, 390.459, 118.413, -3.88626),
|
||||
(@Cguid+65*10, 12, 377.411, 119.454, -3.88626),
|
||||
(@Cguid+65*10, 13, 358.919, 120.929, -3.88626),
|
||||
(@Cguid+65*10, 14, 346.022, 118.693, -3.88688),
|
||||
(@Cguid+65*10, 15, 330.928, 116.014, -3.88688),
|
||||
(@Cguid+65*10, 16, 313.697, 112.956, -3.88688),
|
||||
(@Cguid+65*10, 17, 298.672, 110.29, -3.88688),
|
||||
(@Cguid+65*10, 18, 291.316, 105.551, -3.88688),
|
||||
(@Cguid+65*10, 19, 290.928, 96.81, -3.89224),
|
||||
(@Cguid+65*10, 20, 296.896, 88.9496, -3.94951),
|
||||
(@Cguid+65*10, 21, 304.51, 87.7965, -3.95713),
|
||||
(@Cguid+65*10, 22, 306.56, 95.1458, -3.91082),
|
||||
(@Cguid+65*10, 23, 309.453, 105.676, -3.88691),
|
||||
(@Cguid+65*10, 24, 319.53, 109.883, -3.88691),
|
||||
(@Cguid+65*10, 25, 331.609, 114.927, -3.88691),
|
||||
(@Cguid+65*10, 26, 346.437, 118.531, -3.88691),
|
||||
(@Cguid+65*10, 27, 366.053, 119.989, -3.88688),
|
||||
(@Cguid+65*10, 28, 382.427, 120.417, -3.88688),
|
||||
(@Cguid+65*10, 29, 403.157, 118.844, -3.88688),
|
||||
(@Cguid+65*10, 30, 421.654, 117.441, -3.88688),
|
||||
(@Cguid+65*10, 31, 436.94, 116.282, -3.88688),
|
||||
(@Cguid+65*10, 32, 453.399, 110.336, -3.88688),
|
||||
(@Cguid+65*10, 33, 462.091, 100.455, -3.88688),
|
||||
(@Cguid+65*10, 34, 470.142, 84.9167, -3.8865),
|
||||
(@Cguid+65*10, 35, 475.162, 73.9736, -3.8865),
|
||||
(@Cguid+65*10, 36, 473.823, 58.7022, -3.8865),
|
||||
(@Cguid+65*10, 37, 472.636, 45.6663, -3.8865),
|
||||
(@Cguid+65*10, 38, 469.196, 31.8792, -3.89542),
|
||||
(@Cguid+65*10, 39, 468.308, 18.8193, -3.90732),
|
||||
(@Cguid+65*10, 40, 464.428, 14.9778, -3.90474),
|
||||
(@Cguid+65*10, 41, 460.413, 9.85398, -3.89766),
|
||||
(@Cguid+65*10, 42, 459.58, 1.14371, -3.8957),
|
||||
(@Cguid+65*10, 43, 464.664, -4.54537, -3.90719),
|
||||
(@Cguid+65*10, 44, 470.113, -4.89415, -3.89107),
|
||||
(@Cguid+65*10, 45, 474.069, 0.363454, -3.9255),
|
||||
(@Cguid+65*10, 46, 474.077, 6.94345, -3.92959),
|
||||
(@Cguid+65*10, 47, 472.317, 14.4396, -3.92072),
|
||||
(@Cguid+65*10, 48, 470.901, 23.0034, -3.90916),
|
||||
(@Cguid+65*10, 49, 469.542, 31.6471, -3.89763),
|
||||
(@Cguid+85*10, 1, 376.477, 216.907, 11.2042),
|
||||
(@Cguid+85*10, 2, 363.732, 222.789, 11.2044),
|
||||
(@Cguid+85*10, 3, 355.696, 228.519, 11.2044),
|
||||
(@Cguid+85*10, 4, 345.245, 242.469, 11.2044),
|
||||
(@Cguid+85*10, 5, 339.532, 257.82, 11.2044),
|
||||
(@Cguid+85*10, 6, 337.245, 270.709, 11.2044),
|
||||
(@Cguid+85*10, 7, 337.428, 284.918, 11.2044),
|
||||
(@Cguid+85*10, 8, 338.399, 298.04, 11.2044),
|
||||
(@Cguid+85*10, 9, 352.562, 299.195, 11.2055),
|
||||
(@Cguid+85*10, 10, 366.725, 300.35, 11.2067),
|
||||
(@Cguid+85*10, 11, 387.5, 300.998, 11.2071),
|
||||
(@Cguid+85*10, 12, 401.707, 301.261, 11.2071),
|
||||
(@Cguid+85*10, 13, 415.845, 301.523, 11.2071),
|
||||
(@Cguid+85*10, 14, 429.857, 299.626, 11.2054),
|
||||
(@Cguid+85*10, 15, 437.782, 293.861, 11.204),
|
||||
(@Cguid+85*10, 16, 438.926, 283.001, 11.2053),
|
||||
(@Cguid+85*10, 17, 439.421, 268.8, 11.2058),
|
||||
(@Cguid+85*10, 18, 439.908, 254.598, 11.2061),
|
||||
(@Cguid+85*10, 19, 439.119, 241.462, 11.2061),
|
||||
(@Cguid+85*10, 20, 437.965, 226.245, 11.2061),
|
||||
(@Cguid+85*10, 21, 428.057, 219.528, 11.2041),
|
||||
(@Cguid+85*10, 22, 416.777, 215.32, 11.2041),
|
||||
(@Cguid+85*10, 23, 404.033, 212.328, 11.2061);
|
||||
@@ -0,0 +1,904 @@
|
||||
--
|
||||
DELETE FROM `creature` WHERE `id` IN (14398, 11469, 11470, 11471, 11472, 11473, 11475, 11476, 11477) AND `map`=429;
|
||||
DELETE FROM `creature` WHERE `guid` IN (84187, 84188,1312,1317,1345,1361,1369,1374,1377,1382,1383,1392,1395,1665,1947,10299,12572,16400,16402,23431,23434,23441,28649,28786,28800,33512,33523,34521,42797,45831,45838,45842,45844,46339,48258,48315,48574,49138,49149,49221,49672,49674,49806,49936,49937,51393,51627,51782,51863,51887,52024,52274,52318,52327,52328,52329,52332,52333,52334,52335,52357,52360,52369,52383,52386,52388,52392,52466,52467,52468,52469,52470,52478,52633,52634,52635,52637,52641,52662,53882,53929,53930,53931,54255,54257,54258,54260,54261,54338,54340,54382,54384,54386,54388,54390,54393,54398,54400,54402,54404,54417,54422,54423,54425,54426,54431,54432,54614,54619,54621,54625,54704,54839,54844,54845,54922,55059,55466,55472,55573,55574,55946,56341,56343,56486,56487,56488,56505,56516,56517,56518,56995,57016,57323,57365,57367,57392,57401,57532,57589,57683,57684,57685,62000,62012,62013,62023,62083,62084,62087,62088,62089,62742,62848,62849,62855,62856,62857,62990,62991,62992,63011,63012,63376,63377,63454,63576,63578,63770,63775,64229,64230,64240,64242,64259,66177,66270,66951,67464,67990,67991,67992,67993,67994,67995,67996,67997,67998,67999,68000,68002,68003,68004,68006,68007,68008,68014,68019,68026,68105,68117,68267,68285,68722,68723,68724,68937,68988,69721,69722,69723,69724,69971,69972,69974,69975,69979,69983,69984,69985,70004,70663,70664,70665,70684,71621,71622,71981,71982,72001,72257,72258,72340,72505,72707,72779,74136,74167,74178,74208,74209,74210,74211,74220,74221,74240,74330,74331,74475,74516,74517,74525,74526,74527,74542,74637,74714,74959,74973,74974,75099,75100,75101,75102,75103,75110,75111,75909,75968,75969,75970,75971,76050,76062,76311,76312,76313,76314,76416,77759,77831,77843,77845,78185,78188,78215,78312,78490,78552,78553,78653,78681,78739,78740,78741,78924,78925,78926,78927,78929,78930,78931,78932,78965,78995,78997,79001,79002,79003,79268,79269,79270,79272,79278,79279,79282,79401,79402,79403,79404,79410,79413,79415,79417,79422,79430,79436,79437,79439,79442,79443,79446,79447,79448,79506,79533,79535,79536,79559,79560,79561,79570,79581,79590,79594,79633,79695,80148,80150,80244,80245,80252,80258,83181,83184,84086,84087,84088,84089,84091,84092,84093,84141,84142,84143,84144,84145,84146,84147,84157,84158,84159,84160,84161,84162,84163,84164,84165,84166,84167,84168,84169,84171,84172,84173,84174,84175,84176,84177,84178,84179,84180,84181,84182,84183,84184,84185,84186);
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `spawnMask`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `MovementType`) VALUES
|
||||
(1312, 14361, 429, 2, 0, 0, -86.2, 228.478, -4.98579, 1.84191, 86400, 8, 1),
|
||||
(1317, 14361, 429, 2, 0, 0, 15.368, 351.889, -4.9858, 0.092126, 86400, 8, 1),
|
||||
(1345, 14361, 429, 2, 0, 0, -73.3529, 541.221, -4.39554, 3.51201, 86400, 8, 1),
|
||||
(1361, 14361, 429, 2, 0, 0, 47.0136, 686.309, -24.5798, 0.960597, 86400, 8, 1),
|
||||
(1369, 14361, 429, 2, 0, 0, -28.6871, 659.391, -24.562, 5.18363, 86400, 8, 1),
|
||||
(1374, 14361, 429, 2, 0, 0, -73.5557, 542.146, -4.39554, 3.19564, 86400, 8, 1),
|
||||
(1377, 14361, 429, 2, 0, 0, -78.3936, 337.625, -4.99283, 5.66256, 86400, 8, 1),
|
||||
(1382, 14361, 429, 2, 0, 0, 74.8674, 215.59, -4.98581, 2.30134, 86400, 8, 1),
|
||||
(1383, 14361, 429, 2, 0, 0, 121.332, 297.677, -4.98566, 5.03001, 86400, 8, 1),
|
||||
(1392, 14361, 429, 2, 0, 0, 98.3529, 531.617, 28.6033, 0.983634, 86400, 8, 1),
|
||||
(1395, 14361, 429, 2, 0, 0, -83.2487, 494.565, 28.6075, 4.28512, 86400, 8, 1),
|
||||
(1665, 14361, 429, 2, 0, 0, 15.2541, 395.687, 25.0565, 0.046596, 86400, 8, 1),
|
||||
(1947, 14361, 429, 2, 0, 0, 104.389, 539.327, -4.40493, 4.75068, 86400, 8, 1),
|
||||
(10299, 14399, 429, 2, 0, 0, -160.717, 778.77, -24.5799, 0.699583, 86400, 0, 2),
|
||||
(12572, 14399, 429, 2, 0, 0, -1.45406, 678.052, -24.5983, 0.367712, 86400, 0, 2),
|
||||
(16400, 14399, 429, 2, 0, 0, 80.4472, 837.845, -24.5804, 4.63658, 86400, 0, 2),
|
||||
(16402, 14399, 429, 2, 0, 0, -8.04339, 952.605, -24.5761, 0.350919, 86400, 0, 2),
|
||||
(23431, 14400, 429, 2, 0, 0, -157.657, 781.345, -24.5781, 0.699599, 86400, 0, 0),
|
||||
(23434, 14400, 429, 2, 0, 0, -163.293, 781.83, -24.5775, 0.699554, 86400, 0, 0),
|
||||
(23441, 14400, 429, 2, 0, 0, -163.778, 776.194, -24.5799, 0.699584, 86400, 0, 0),
|
||||
(28649, 14400, 429, 2, 0, 0, -158.142, 775.709, -24.5798, 0.699584, 86400, 0, 0),
|
||||
(28786, 14400, 429, 2, 0, 0, 2.27855, 679.49, -24.5945, 0.367713, 86400, 0, 0),
|
||||
(28800, 14400, 429, 2, 0, 0, -2.89199, 681.784, -24.5994, 0.367712, 86400, 0, 0),
|
||||
(33512, 14400, 429, 2, 0, 0, -5.18667, 676.614, -24.6021, 0.367712, 86400, 0, 0),
|
||||
(33523, 14400, 429, 2, 0, 0, -0.016136, 674.319, -24.5973, 0.367701, 86400, 0, 0),
|
||||
(34521, 14400, 429, 2, 0, 0, 80.1443, 833.856, -24.5804, 4.63658, 86400, 0, 0),
|
||||
(42797, 14400, 429, 2, 0, 0, 84.4357, 837.542, -24.581, 4.63659, 86400, 0, 0),
|
||||
(45831, 14400, 429, 2, 0, 0, 80.7502, 841.833, -24.5804, 4.63658, 86400, 0, 0),
|
||||
(45838, 14400, 429, 2, 0, 0, 76.4587, 838.148, -24.5804, 4.63658, 86400, 0, 0),
|
||||
(45842, 14400, 429, 2, 0, 0, -4.28716, 953.98, -24.5759, 0.35092, 86400, 0, 0),
|
||||
(45844, 14400, 429, 2, 0, 0, -9.41844, 956.362, -24.5762, 0.35092, 86400, 0, 0),
|
||||
(46339, 14400, 429, 2, 0, 0, -11.7996, 951.23, -24.5762, 0.35092, 86400, 0, 0),
|
||||
(48258, 14400, 429, 2, 0, 0, -6.66835, 948.849, -24.5759, 0.35092, 86400, 0, 0),
|
||||
(48315, 2914, 429, 2, 0, 0, 818.277, 389.744, 40.398, 3.27638, 86400, 0, 0),
|
||||
(48574, 2914, 429, 2, 0, 0, 285.544, 326.648, 2.85303, 2.63937, 86400, 0, 0),
|
||||
(49138, 2914, 429, 2, 0, 0, 294.365, 178.076, 2.85547, 4.62485, 86400, 0, 0),
|
||||
(49149, 2914, 429, 2, 0, 0, 765.637, 548.012, 40.3993, 0.695806, 86400, 0, 0),
|
||||
(49221, 2914, 429, 2, 0, 0, 751.989, 530.682, 28.1855, 2.28772, 86400, 0, 0),
|
||||
(49672, 2914, 429, 2, 0, 0, 436.336, 298.367, 11.1968, 3.41407, 86400, 0, 0),
|
||||
(49674, 2914, 429, 2, 0, 0, 306.238, -96.5866, -3.80362, 5.97513, 86400, 5, 1),
|
||||
(49806, 2914, 429, 2, 0, 0, 364.819, -33.1121, -25.0512, 4.04851, 86400, 0, 0),
|
||||
(49936, 2914, 429, 2, 0, 0, 349.443, 109.402, -3.88708, 6.19019, 86400, 0, 0),
|
||||
(49937, 2914, 429, 2, 0, 0, 851.886, 489.507, 37.3182, 3.0058, 86400, 0, 0),
|
||||
(51393, 2914, 429, 2, 0, 0, 873.275, 552.922, 40.3964, 5.58507, 86400, 0, 0),
|
||||
(51627, 2914, 429, 2, 0, 0, 417.561, -53.5276, -24.2973, 5.72767, 86400, 0, 0),
|
||||
(51782, 2914, 429, 2, 0, 0, 303.618, -8.67847, -3.8018, 1.65407, 86400, 5, 1),
|
||||
(51863, 2914, 429, 2, 0, 0, 690.642, 534.201, 28.6269, 4.69463, 86400, 0, 0),
|
||||
(51887, 2914, 429, 2, 0, 0, 330.351, 297.343, 11.2041, 3.42468, 86400, 0, 0),
|
||||
(52024, 2914, 429, 2, 0, 0, 349.448, 109.693, -3.88708, 0.003725, 86400, 0, 0),
|
||||
(52274, 2914, 429, 2, 0, 0, 754.666, 525.492, 28.1841, 4.94689, 86400, 0, 0),
|
||||
(52318, 2914, 429, 2, 0, 0, 732.469, 528.935, 28.1791, 2.18955, 86400, 0, 0),
|
||||
(52327, 2914, 429, 2, 0, 0, 804.635, 570.584, 40.3982, 4.0327, 86400, 0, 0),
|
||||
(52328, 2914, 429, 2, 0, 0, 414.828, -48.5053, -23.3364, 1.31677, 86400, 0, 0),
|
||||
(52329, 2914, 429, 2, 0, 0, 690.461, 534.045, 28.713, 4.52669, 86400, 0, 0),
|
||||
(52332, 2914, 429, 2, 0, 0, 399.033, 34.1434, -25.3031, 3.32377, 86400, 0, 0),
|
||||
(52333, 2914, 429, 2, 0, 0, 767.709, 549.494, 40.399, 0.632182, 86400, 0, 0),
|
||||
(52334, 883, 429, 2, 0, 0, 78.3947, -289.857, -55.4764, 4.98539, 86400, 0, 0),
|
||||
(52335, 883, 429, 2, 0, 0, 79.8869, -287.854, -55.5947, 0.109973, 86400, 0, 0),
|
||||
(52357, 1412, 429, 2, 0, 0, -145.678, -188.004, -4.06495, 5.41052, 86400, 0, 0),
|
||||
(52360, 1412, 429, 2, 0, 0, -89.9229, -327.969, -56.6587, 1.09956, 86400, 0, 0),
|
||||
(52369, 1412, 429, 2, 0, 0, 98.2445, -271.798, -2.7377, 1.68363, 86400, 0, 0),
|
||||
(52383, 1412, 429, 2, 0, 0, -18.9724, -338.297, -2.73597, 0.008798, 86400, 0, 0),
|
||||
(52386, 1412, 429, 2, 0, 0, 43.4498, -249.524, -52.8565, 5.25344, 86400, 0, 0),
|
||||
(52388, 1412, 429, 2, 0, 0, 136.458, -320.317, 7.60497, 0.162894, 86400, 0, 0),
|
||||
(52392, 1412, 429, 2, 0, 0, -52.7927, -318.739, -53.0088, 5.95829, 86400, 0, 0),
|
||||
(52466, 1412, 429, 2, 0, 0, -166.892, -237.24, 7.60565, 4.45071, 86400, 0, 0),
|
||||
(52467, 1412, 429, 2, 0, 0, -1.47589, -247.514, -53.6291, 2.16226, 86400, 0, 0),
|
||||
(52468, 1412, 429, 2, 0, 0, -45.4898, -275.688, -57.3578, 3.96245, 86400, 0, 0),
|
||||
(52469, 1412, 429, 2, 0, 0, -166.15, -319.039, 7.6047, 1.77892, 86400, 0, 0),
|
||||
(52470, 1412, 429, 2, 0, 0, -151.769, -358.922, -4.23659, 5.48243, 86400, 0, 0),
|
||||
(52478, 1412, 429, 2, 0, 0, -158.804, -339.269, -4.19303, 4.28925, 86400, 0, 0),
|
||||
(52633, 1412, 429, 2, 0, 0, -72.0005, -345.3, -4.03359, 2.98672, 86400, 0, 0),
|
||||
(52634, 1412, 429, 2, 0, 0, -166.79, -236.859, 7.68885, 5.86431, 86400, 0, 0),
|
||||
(52635, 1412, 429, 2, 0, 0, 43.8834, -249.347, -52.9414, 0.38733, 86400, 0, 0),
|
||||
(52637, 1412, 429, 2, 0, 0, -45.176, -275.351, -57.2373, 3.89208, 86400, 0, 0),
|
||||
(52641, 1412, 429, 2, 0, 0, -104.761, -356.167, -4.0997, 2.69766, 86400, 0, 0),
|
||||
(52662, 1412, 429, 2, 0, 0, -166.038, -319.342, 7.60455, 1.67389, 86400, 0, 0),
|
||||
(53882, 1412, 429, 2, 0, 0, 13.8706, -270.362, -52.6382, 3.53614, 86400, 0, 0),
|
||||
(53929, 1412, 429, 2, 0, 0, -97.5659, -330.237, -57.1258, 1.28208, 86400, 0, 0),
|
||||
(53930, 1412, 429, 2, 0, 0, -19.6245, -338.303, -2.65313, 3.61283, 86400, 0, 0),
|
||||
(53931, 1412, 429, 2, 0, 0, -158.406, -338.387, -4.06629, 2.74017, 86400, 0, 0),
|
||||
(54255, 1412, 429, 2, 0, 0, -89.9518, -327.218, -56.7094, 1.60916, 86400, 0, 0),
|
||||
(54257, 1412, 429, 2, 0, 0, 47.3439, -345.485, -4.03754, 2.97946, 86400, 0, 0),
|
||||
(54258, 1412, 429, 2, 0, 0, 136.124, -320.346, 7.60491, 0.223598, 86400, 0, 0),
|
||||
(54260, 1412, 429, 2, 0, 0, 98.3382, -271.294, -2.73781, 1.53207, 86400, 0, 0),
|
||||
(54261, 1412, 429, 2, 0, 0, -146.211, -187.845, -4.12055, 2.85043, 86400, 0, 0),
|
||||
(54338, 11459, 429, 2, 0, 0, -63.5588, 208.12, -4.9858, 5.79684, 86400, 0, 2),
|
||||
(54340, 11459, 429, 2, 0, 0, 12.172, 332.792, -4.9858, 0.001971, 86400, 0, 2),
|
||||
(54382, 11459, 429, 2, 0, 0, 117.241, 238.304, -4.98568, 4.68351, 86400, 0, 2),
|
||||
(54384, 11459, 429, 2, 0, 0, -92.6434, 286.583, -4.98605, 4.69207, 86400, 0, 2),
|
||||
(54386, 11459, 429, 2, 0, 0, -35.5453, 349.841, -4.98923, 3.13877, 86400, 0, 2),
|
||||
(54388, 11459, 429, 2, 0, 0, 101.21, 330.55, -4.98576, 5.40841, 86400, 0, 2),
|
||||
(54390, 11459, 429, 2, 0, 0, 43.1073, 219.233, -4.9858, 3.11267, 86400, 0, 2),
|
||||
(54393, 721, 429, 2, 0, 0, -5.03282, -241.909, -54.2811, 1.48937, 86400, 0, 0),
|
||||
(54398, 721, 429, 2, 0, 0, -114.278, -264.464, -56.1262, 0.913239, 86400, 0, 0),
|
||||
(54400, 721, 429, 2, 0, 0, 64.0855, -316.149, -54.0207, 2.40855, 86400, 0, 0),
|
||||
(54402, 721, 429, 2, 0, 0, -22.6146, -318.401, -51.3798, 2.76825, 86400, 0, 0),
|
||||
(54404, 721, 429, 2, 0, 0, -4.8488, -242.598, -54.2285, 1.31191, 86400, 0, 0),
|
||||
(54417, 721, 429, 2, 0, 0, -22.4144, -318.368, -51.3755, 2.73144, 86400, 0, 0),
|
||||
(54422, 721, 429, 2, 0, 0, 64.9345, -316.45, -54.1711, 5.94235, 86400, 0, 0),
|
||||
(54423, 721, 429, 2, 0, 0, -113.891, -264.249, -56.1787, 0.809323, 86400, 0, 0),
|
||||
(54425, 11484, 429, 2, 0, 0, 49.3567, 883.821, -24.5769, 5.56065, 86400, 0, 2),
|
||||
(54426, 11484, 429, 2, 0, 0, -60.802, 924.346, -24.583, 0.318711, 86400, 0, 2),
|
||||
(54431, 11484, 429, 2, 0, 0, 30.9659, 721.215, -24.5793, 4.00711, 86400, 0, 2),
|
||||
(54432, 4075, 429, 2, 0, 0, -75.5426, -430.138, -4.22523, 3.68583, 86400, 0, 0),
|
||||
(54614, 4075, 429, 2, 0, 0, -94.5627, -419.621, -4.2202, 6.09133, 86400, 0, 0),
|
||||
(54619, 4075, 429, 2, 0, 0, 45.7819, -655.018, -25.1443, 5.91424, 86400, 0, 0),
|
||||
(54621, 4075, 429, 2, 0, 0, -21.0212, -451.857, -37.9616, 1.77153, 86400, 0, 0),
|
||||
(54625, 4075, 429, 2, 0, 0, 51.7986, -389.468, -58.608, 0.093473, 86400, 0, 0),
|
||||
(54704, 4075, 429, 2, 0, 0, 71.6593, -411.741, -4.21146, 4.78411, 86400, 0, 0),
|
||||
(54839, 4075, 429, 2, 0, 0, -20.0563, -441.62, -37.9618, 1.46711, 86400, 0, 0),
|
||||
(54844, 4075, 429, 2, 0, 0, -83.7068, -435.811, -58.6096, 5.01112, 86400, 0, 0),
|
||||
(54845, 4075, 429, 2, 0, 0, -60.6631, -414.719, -4.22567, 4.77264, 86400, 0, 0),
|
||||
(54922, 4075, 429, 2, 0, 0, 451.992, 543.104, -23.4666, 4.17874, 86400, 0, 0),
|
||||
(55059, 4075, 429, 2, 0, 0, 689.378, 426.816, 29.4313, 0.261799, 86400, 0, 0),
|
||||
(55466, 4075, 429, 2, 0, 0, 538.151, 599.863, -25.4027, 3.69893, 86400, 0, 0),
|
||||
(55472, 4075, 429, 2, 0, 0, 736.416, 425.202, 28.1801, 0.227269, 86400, 0, 0),
|
||||
(55573, 4075, 429, 2, 0, 0, 586.556, 552.399, -25.401, 3.75992, 86400, 0, 0),
|
||||
(55574, 4075, 429, 2, 0, 0, 376.942, 163.219, 2.85314, 2.60157, 86400, 0, 0),
|
||||
(55946, 4075, 429, 2, 0, 0, 399.052, 34.0016, -25.3173, 3.37129, 86400, 0, 0),
|
||||
(56341, 4075, 429, 2, 0, 0, 548.95, 599.798, -25.4028, 3.64157, 86400, 0, 0),
|
||||
(56343, 4075, 429, 2, 0, 0, 607.849, 491.072, 29.4641, 3.69673, 86400, 0, 0),
|
||||
(56486, 4075, 429, 2, 0, 0, 387.191, 499.438, -11.5235, 6.00336, 86400, 0, 0),
|
||||
(56487, 4075, 429, 2, 0, 0, 554.726, 469.866, 29.5492, 4.5204, 86400, 0, 0),
|
||||
(56488, 4075, 429, 2, 0, 0, 380.517, 410.533, -1.66398, 4.71692, 86400, 0, 0),
|
||||
(56505, 4075, 429, 2, 0, 0, 805.121, 567.978, 40.398, 4.76622, 86400, 0, 0),
|
||||
(56516, 4075, 429, 2, 0, 0, 506.164, 589.405, -25.4021, 0.279148, 86400, 0, 0),
|
||||
(56517, 4075, 429, 2, 0, 0, 907.432, 453.279, 40.4784, 0.785398, 86400, 0, 0),
|
||||
(56518, 4075, 429, 2, 0, 0, 72.1275, -410.029, -4.21253, 5.3202, 86400, 0, 0),
|
||||
(56995, 4075, 429, 2, 0, 0, -20.3056, -444.016, -37.8782, 2.77507, 86400, 0, 0),
|
||||
(57016, 4075, 429, 2, 0, 0, -96.6492, -420.567, -4.21996, 5.06875, 86400, 0, 0),
|
||||
(57323, 4075, 429, 2, 0, 0, -85.7692, -434.861, -58.6089, 3.76603, 86400, 0, 0),
|
||||
(57365, 4075, 429, 2, 0, 0, 101.82, -545.165, -11.081, 0.482936, 86400, 0, 0),
|
||||
(57367, 4075, 429, 2, 0, 0, 535.985, 599.371, -25.4026, 3.4546, 86400, 0, 0),
|
||||
(57392, 4075, 429, 2, 0, 0, 513.854, 592.391, -25.4022, 3.12883, 86400, 0, 0),
|
||||
(57401, 4075, 429, 2, 0, 0, 589.137, 560.861, -25.4004, 3.31179, 86400, 0, 0),
|
||||
(57532, 4075, 429, 2, 0, 0, 45.9556, -656.77, -25.1469, 5.14989, 86400, 0, 0),
|
||||
(57589, 4075, 429, 2, 0, 0, 108.89, -459.697, -3.27357, 1.73809, 86400, 0, 0),
|
||||
(57683, 4075, 429, 2, 0, 0, 49.8575, -389.458, -58.6082, 0.357159, 86400, 0, 0),
|
||||
(57684, 4075, 429, 2, 0, 0, -21.5497, -455.841, -37.9615, 4.00629, 86400, 0, 0),
|
||||
(57685, 4075, 429, 2, 0, 0, -75.5033, -430.175, -4.22524, 3.71638, 86400, 0, 0),
|
||||
(62000, 4075, 429, 2, 0, 0, 906.881, 450.326, 40.398, 4.52786, 86400, 0, 0),
|
||||
(62012, 4076, 429, 2, 0, 0, 910.052, 510.987, 40.398, 1.64991, 86400, 0, 0),
|
||||
(62013, 4076, 429, 2, 0, 0, 731.987, 529.097, 28.1789, 2.44048, 86400, 0, 0),
|
||||
(62023, 4076, 429, 2, 0, 0, 351.118, 51.9392, -23.8786, 0.266854, 86400, 0, 0),
|
||||
(62083, 4076, 429, 2, 0, 0, 337.744, 241.784, 11.2018, 1.52277, 86400, 0, 0),
|
||||
(62084, 4076, 429, 2, 0, 0, 410.405, 112.234, -3.88713, 3.61973, 86400, 0, 0),
|
||||
(62087, 4076, 429, 2, 0, 0, 553.861, 565.871, -4.75477, 5.37734, 86400, 0, 0),
|
||||
(62088, 4076, 429, 2, 0, 0, 760.553, 414.626, 40.3968, 3.03623, 86400, 0, 0),
|
||||
(62089, 4076, 429, 2, 0, 0, 590.287, 561.059, -25.314, 2.77507, 86400, 0, 0),
|
||||
(62742, 4076, 429, 2, 0, 0, 385.337, 489.142, -8.76283, 3.47874, 86400, 0, 0),
|
||||
(62848, 4076, 429, 2, 0, 0, 326.671, 295.167, 11.203, 3.57201, 86400, 0, 0),
|
||||
(62849, 4076, 429, 2, 0, 0, 550.753, 563.712, -25.4033, 3.80613, 86400, 0, 0),
|
||||
(62855, 4076, 429, 2, 0, 0, 389.649, 501.404, -12.2177, 2.77494, 86400, 0, 0),
|
||||
(62856, 4076, 429, 2, 0, 0, 514.771, 592.729, -25.4022, 2.83512, 86400, 0, 0),
|
||||
(62857, 4076, 429, 2, 0, 0, 428.132, 226.906, 11.2114, 0.619757, 86400, 0, 0),
|
||||
(62990, 4076, 429, 2, 0, 0, 494.868, 483.145, 29.4626, 0.287253, 86400, 0, 0),
|
||||
(62991, 4076, 429, 2, 0, 0, 505.905, 589.207, -25.4021, 0.076012, 86400, 0, 0),
|
||||
(62992, 4076, 429, 2, 0, 0, 608.724, 491.327, 29.4641, 3.90074, 86400, 0, 0),
|
||||
(63011, 4076, 429, 2, 0, 0, 391.665, 500.186, -11.9681, 5.56081, 86400, 0, 0),
|
||||
(63012, 4076, 429, 2, 0, 0, 554.182, 566.257, -4.75477, 5.79771, 86400, 0, 0),
|
||||
(63376, 4076, 429, 2, 0, 0, 588.644, 553.845, -25.4007, 3.78609, 86400, 0, 0),
|
||||
(63377, 4076, 429, 2, 0, 0, 551.372, 564.265, -25.4033, 3.66371, 86400, 0, 0),
|
||||
(63454, 4076, 429, 2, 0, 0, 367.872, -30.821, -24.9467, 6.21707, 86400, 0, 0),
|
||||
(63576, 4076, 429, 2, 0, 0, 287.125, 324.632, 2.85303, 3.63081, 86400, 0, 0),
|
||||
(63578, 4076, 429, 2, 0, 0, 873.081, 553.125, 40.3964, 5.61242, 86400, 0, 0),
|
||||
(63770, 4076, 429, 2, 0, 0, 336.385, 235.212, 11.2022, 2.57234, 86400, 0, 0),
|
||||
(63775, 4076, 429, 2, 0, 0, 820.461, 389.177, 40.398, 5.62519, 86400, 0, 0),
|
||||
(64229, 4076, 429, 2, 0, 0, 909.859, 511.353, 40.398, 1.78684, 86400, 0, 0),
|
||||
(64230, 4076, 429, 2, 0, 0, 294.881, 179.89, 2.85534, 4.92168, 86400, 0, 0),
|
||||
(64240, 4076, 429, 2, 0, 0, 383.908, 500.697, -11.7202, 2.30837, 86400, 0, 0),
|
||||
(64242, 4076, 429, 2, 0, 0, 412.672, 112.84, -3.88714, 0.044031, 86400, 0, 0),
|
||||
(64259, 4076, 429, 2, 0, 0, 494.773, 483.368, 29.4626, 0.489612, 86400, 0, 0),
|
||||
(66177, 4076, 429, 2, 0, 0, 689.398, 428.018, 29.3285, 1.55449, 86400, 0, 0),
|
||||
(66270, 13022, 429, 2, 0, 0, 111.065, -324.665, -4.01276, 2.42601, 86400, 2, 1),
|
||||
(66951, 13022, 429, 2, 0, 0, 116.839, -329.884, -4.14893, 2.53066, 86400, 2, 1),
|
||||
(67464, 13022, 429, 2, 0, 0, 121.124, -325.982, -4.16182, 5.76204, 86400, 2, 1),
|
||||
(67990, 13022, 429, 2, 0, 0, 115.748, -327.539, -4.14523, 0.318494, 86400, 2, 1),
|
||||
(67991, 13022, 429, 2, 0, 0, 109.902, -329.777, -4.0035, 2.84489, 86400, 2, 1),
|
||||
(67992, 13022, 429, 2, 0, 0, 112.82, -334.044, -4.13689, 1.36265, 86400, 2, 1),
|
||||
(67993, 13022, 429, 2, 0, 0, 114.94, -320.727, -4.04562, 1.32645, 86400, 2, 1),
|
||||
(67994, 13022, 429, 2, 0, 0, 110.844, -255.06, -4.09403, 3.22507, 86400, 2, 1),
|
||||
(67995, 13022, 429, 2, 0, 0, 115.729, -259.257, -4.1305, 1.7137, 86400, 2, 1),
|
||||
(67996, 13022, 429, 2, 0, 0, 111.401, -260.037, -4.09867, 4.40331, 86400, 2, 1),
|
||||
(67997, 13022, 429, 2, 0, 0, 115.432, -263.394, -4.13027, 1.33576, 86400, 2, 1),
|
||||
(67998, 13022, 429, 2, 0, 0, 110.253, -269.029, -4.08908, 4.45622, 86400, 2, 1),
|
||||
(67999, 13022, 429, 2, 0, 0, 106.298, -266.643, -3.97269, 0.314159, 86400, 2, 1),
|
||||
(68000, 13022, 429, 2, 0, 0, 111.893, -272.557, -4.10279, 1.21066, 86400, 2, 1),
|
||||
(68002, 11457, 429, 2, 0, 0, -69.0547, -442.536, -58.6142, 1.13804, 86400, 2, 1),
|
||||
(68003, 13276, 429, 2, 0, 0, -70.9053, -439.957, -58.6127, 0.913746, 86400, 2, 1),
|
||||
(68004, 13276, 429, 2, 0, 0, -64.4045, -442.443, -58.6145, 1.04908, 86400, 2, 1),
|
||||
(68006, 13276, 429, 2, 0, 0, -72.5177, -436.876, -58.611, 4.10582, 86400, 2, 1),
|
||||
(68007, 13276, 429, 2, 0, 0, -61.434, -444.802, -58.5307, 6.16101, 86400, 2, 1),
|
||||
(68008, 13276, 429, 2, 0, 0, -71.6369, -440.319, -58.6128, 0.256474, 86400, 2, 1),
|
||||
(68014, 11457, 429, 2, 0, 0, -6.88377, -459.375, -58.5461, 0.872665, 86400, 2, 1),
|
||||
(68019, 13276, 429, 2, 0, 0, -3.22096, -460.538, -58.549, 1.3439, 86400, 2, 1),
|
||||
(68026, 13276, 429, 2, 0, 0, -14.1565, -460.888, -58.6237, 4.10695, 86400, 2, 1),
|
||||
(68105, 13276, 429, 2, 0, 0, -6.83229, -455.483, -58.5433, 0.366519, 86400, 2, 1),
|
||||
(68117, 13276, 429, 2, 0, 0, -3.05802, -456.817, -58.5464, 0.366519, 86400, 2, 1),
|
||||
(68267, 13276, 429, 2, 0, 0, -10.9179, -456.242, -58.6249, 0.31074, 86400, 2, 1),
|
||||
(68285, 11457, 429, 2, 0, 0, 37.3552, -392.268, -58.5272, 2.37365, 86400, 2, 1),
|
||||
(68722, 13276, 429, 2, 0, 0, 32.1917, -393.651, -58.6118, 0.535442, 86400, 2, 1),
|
||||
(68723, 13276, 429, 2, 0, 0, 42.2916, -388.172, -58.5281, 5.48033, 86400, 2, 1),
|
||||
(68724, 13276, 429, 2, 0, 0, 40.4389, -397.353, -58.5258, 1.71042, 86400, 2, 1),
|
||||
(68937, 13276, 429, 2, 0, 0, 34.4894, -396.159, -58.5277, 1.20428, 86400, 2, 1),
|
||||
(68988, 13276, 429, 2, 0, 0, 43.4029, -392.169, -58.5266, 4.11898, 86400, 2, 1),
|
||||
(69721, 13321, 429, 2, 0, 0, 1.08285, -427.635, -58.2154, 0.942478, 86400, 0, 0),
|
||||
(69722, 13321, 429, 2, 0, 0, -21.3831, -431.467, -58.527, 3.7001, 86400, 0, 0),
|
||||
(69723, 13321, 429, 2, 0, 0, -21.032, -425.93, -58.1864, 1.81514, 86400, 0, 0),
|
||||
(69724, 13022, 429, 2, 0, 0, 122.508, -193.592, -55.2534, 3.11933, 86400, 2, 1),
|
||||
(69971, 13022, 429, 2, 0, 0, 118.955, -189.796, -54.6273, 3.18426, 86400, 2, 1),
|
||||
(69972, 13022, 429, 2, 0, 0, 115.228, -192.819, -55.0426, 2.91091, 86400, 2, 1),
|
||||
(69974, 13022, 429, 2, 0, 0, 115.228, -195.967, -55.6115, 3.54147, 86400, 2, 1),
|
||||
(69975, 13022, 429, 2, 0, 0, 118.605, -198.995, -55.8831, 4.91481, 86400, 2, 1),
|
||||
(69979, 13022, 429, 2, 0, 0, 126.482, -204.473, -56.2875, 4.26236, 86400, 2, 1),
|
||||
(69983, 13022, 429, 2, 0, 0, 110.761, -197.604, -55.6668, 4.2586, 86400, 2, 1),
|
||||
(69984, 13022, 429, 2, 0, 0, 109.855, -191.323, -54.5, 5.53269, 86400, 2, 1),
|
||||
(69985, 13022, 429, 2, 0, 0, 106.918, -189.179, -54.0493, 1.81514, 86400, 2, 1),
|
||||
(70004, 13022, 429, 2, 0, 0, 103.901, -194.5, -54.9578, 4.32842, 86400, 2, 1),
|
||||
(70663, 13022, 429, 2, 0, 0, 5.00858, -220.212, -52.2055, 3.47481, 86400, 2, 1),
|
||||
(70664, 13022, 429, 2, 0, 0, 9.43712, -224.578, -51.9292, 0.964966, 86400, 2, 1),
|
||||
(70665, 13022, 429, 2, 0, 0, 12.13, -225.89, -51.8221, 1.91029, 86400, 2, 1),
|
||||
(70684, 13022, 429, 2, 0, 0, 22.3773, -221.201, -53.114, 1.01456, 86400, 2, 1),
|
||||
(71621, 13022, 429, 2, 0, 0, 1.01247, -216.771, -52.9695, 3.64775, 86400, 2, 1),
|
||||
(71622, 13022, 429, 2, 0, 0, -1.96242, -211.372, -52.9039, 4.5204, 86400, 2, 1),
|
||||
(71981, 13022, 429, 2, 0, 0, 1.6678, -219.749, -52.6945, 2.32129, 86400, 2, 1),
|
||||
(71982, 13022, 429, 2, 0, 0, 3.90308, -224.145, -52.1742, 1.67569, 86400, 2, 1),
|
||||
(72001, 13022, 429, 2, 0, 0, 10.1914, -227.741, -51.7724, 1.31605, 86400, 2, 1),
|
||||
(72257, 13022, 429, 2, 0, 0, 19.6784, -227.142, -52.278, 3.83149, 86400, 2, 1),
|
||||
(72258, 13022, 429, 2, 0, 0, 7.36502, -309.685, -51.1112, 4.55531, 86400, 2, 1),
|
||||
(72340, 13022, 429, 2, 0, 0, 11.0968, -310.742, -51.1119, 5.48033, 86400, 2, 1),
|
||||
(72505, 13022, 429, 2, 0, 0, 2.38361, -311.532, -51.1185, 1.71042, 86400, 2, 1),
|
||||
(72707, 13022, 429, 2, 0, 0, -0.968268, -316.146, -50.6338, 1.20428, 86400, 2, 1),
|
||||
(72779, 13022, 429, 2, 0, 0, 16.3331, -315.152, -51.0991, 4.11898, 86400, 2, 1),
|
||||
(74136, 13022, 429, 2, 0, 0, 14.6583, -310.337, -51.3256, 2.1293, 86400, 2, 1),
|
||||
(74167, 13022, 429, 2, 0, 0, 9.24688, -308.366, -51.3423, 4.19783, 86400, 2, 1),
|
||||
(74178, 13022, 429, 2, 0, 0, 3.19254, -306.155, -51.7484, 2.2254, 86400, 2, 1),
|
||||
(74208, 13022, 429, 2, 0, 0, -0.529834, -310.036, -51.4927, 5.50781, 86400, 2, 1),
|
||||
(74209, 13022, 429, 2, 0, 0, 13.7675, -306.717, -51.6435, 3.9968, 86400, 2, 1),
|
||||
(74210, 13022, 429, 2, 0, 0, -54.14, -220.836, -57.177, 4.77728, 86400, 2, 1),
|
||||
(74211, 13022, 429, 2, 0, 0, -54.2582, -223.259, -57.2345, 3.52189, 86400, 2, 1),
|
||||
(74220, 13022, 429, 2, 0, 0, -59.1212, -222.725, -57.2217, 5.44105, 86400, 2, 1),
|
||||
(74221, 13022, 429, 2, 0, 0, -62.9718, -220.366, -57.1655, 5.67601, 86400, 2, 1),
|
||||
(74240, 13022, 429, 2, 0, 0, -62.4816, -225.4, -57.2017, 0.767945, 86400, 2, 1),
|
||||
(74330, 13022, 429, 2, 0, 0, -59.6312, -229.747, -57.305, 5.07891, 86400, 2, 1),
|
||||
(74331, 13022, 429, 2, 0, 0, -54.873, -230.255, -57.4006, 5.35956, 86400, 2, 1),
|
||||
(74475, 13022, 429, 2, 0, 0, -55.9487, -225.63, -57.2907, 0.44899, 86400, 2, 1),
|
||||
(74516, 13022, 429, 2, 0, 0, -49.7393, -227.547, -57.4026, 2.81523, 86400, 2, 1),
|
||||
(74517, 13022, 429, 2, 0, 0, -50.1508, -223.593, -57.2426, 0.113913, 86400, 2, 1),
|
||||
(74525, 13022, 429, 2, 0, 0, -54.1523, -346.312, -54.1519, 2.58309, 86400, 2, 1),
|
||||
(74526, 13022, 429, 2, 0, 0, -56.9274, -344.93, -54.338, 1.06465, 86400, 2, 1),
|
||||
(74527, 13022, 429, 2, 0, 0, -57.7313, -341.407, -54.032, 4.97419, 86400, 2, 1),
|
||||
(74542, 13022, 429, 2, 0, 0, -60.2078, -339.055, -53.9214, 1.6057, 86400, 2, 1),
|
||||
(74637, 13022, 429, 2, 0, 0, -63.0057, -335.754, -53.699, 4.55531, 86400, 2, 1),
|
||||
(74714, 13022, 429, 2, 0, 0, -61.8909, -333.061, -53.1807, 4.17134, 86400, 2, 1),
|
||||
(74959, 13022, 429, 2, 0, 0, -57.3421, -331.607, -52.5392, 1.90241, 86400, 2, 1),
|
||||
(74973, 13022, 429, 2, 0, 0, -61.1368, -330.426, -52.7177, 5.98648, 86400, 2, 1),
|
||||
(74974, 13022, 429, 2, 0, 0, -65.628, -334.265, -53.7337, 5.86431, 86400, 2, 1),
|
||||
(75099, 13022, 429, 2, 0, 0, -54.4685, -349.823, -54.3427, 2.94961, 86400, 2, 1),
|
||||
(75100, 13022, 429, 2, 0, 0, -114.53, -298.031, -57.1758, 2.37651, 86400, 2, 1),
|
||||
(75101, 13022, 429, 2, 0, 0, -119.468, -295.465, -56.8971, 3.50826, 86400, 2, 1),
|
||||
(75102, 13022, 429, 2, 0, 0, -115.32, -295.053, -57.1688, 3.51589, 86400, 2, 1),
|
||||
(75103, 13022, 429, 2, 0, 0, -113.643, -286.896, -57.3958, 0.44145, 86400, 2, 1),
|
||||
(75110, 13022, 429, 2, 0, 0, -112.49, -292.047, -57.3941, 3.20386, 86400, 2, 1),
|
||||
(75111, 13022, 429, 2, 0, 0, -113.132, -297.049, -57.2797, 2.96803, 86400, 2, 1),
|
||||
(75909, 13022, 429, 2, 0, 0, -114.571, -303.104, -57.0566, 0.488692, 86400, 2, 1),
|
||||
(75968, 13022, 429, 2, 0, 0, -118.833, -302.067, -57.0399, 4.88111, 86400, 2, 1),
|
||||
(75969, 13022, 429, 2, 0, 0, -111.067, -302.288, -57.2519, 0.994838, 86400, 2, 1),
|
||||
(75970, 13022, 429, 2, 0, 0, -107.508, -295.857, -57.6574, 3.88216, 86400, 2, 1),
|
||||
(75971, 13022, 429, 2, 0, 0, -149.588, -191.55, -50.2393, 4.06322, 86400, 2, 1),
|
||||
(76050, 13022, 429, 2, 0, 0, -148.164, -194.851, -51.1721, 5.45461, 86400, 2, 1),
|
||||
(76062, 13022, 429, 2, 0, 0, -149.81, -199.836, -52.1027, 2.33874, 86400, 2, 1),
|
||||
(76311, 13022, 429, 2, 0, 0, -148.09, -204.423, -53.0782, 1.0472, 86400, 2, 1),
|
||||
(76312, 13022, 429, 2, 0, 0, -140.036, -200.326, -53.2361, 0.174533, 86400, 2, 1),
|
||||
(76313, 13022, 429, 2, 0, 0, -141.949, -193.913, -51.5956, 2.64255, 86400, 2, 1),
|
||||
(76314, 13022, 429, 2, 0, 0, -134.406, -189.794, -50.3224, 6.12191, 86400, 2, 1),
|
||||
(76416, 13022, 429, 2, 0, 0, -141.793, -189.652, -50.5362, 5.3421, 86400, 2, 1),
|
||||
(77759, 13022, 429, 2, 0, 0, -135.247, -191.384, -50.871, 0.344104, 86400, 2, 1),
|
||||
(77831, 13022, 429, 2, 0, 0, -144.024, -197.906, -52.2458, 0.750492, 86400, 2, 1),
|
||||
(77843, 13285, 429, 2, 0, 0, -129.888, -246.628, -54.0495, 5.41052, 86400, 2, 1),
|
||||
(77845, 14398, 429, 2, 0, 0, 48.1242, 508.601, -3.48436, 6.21337, 86400, 0, 0),
|
||||
(78185, 14398, 429, 2, 0, 0, 90.7675, 485.778, 28.6844, 0.314159, 86400, 0, 0),
|
||||
(78188, 14398, 429, 2, 0, 0, 4.40959, 505.233, -3.48315, 0.942478, 86400, 0, 0),
|
||||
(78215, 14398, 429, 2, 0, 0, 56.275, 526.81, 28.6857, 6.00393, 86400, 0, 0),
|
||||
(78312, 14398, 429, 2, 0, 0, -54.9222, 568.482, 28.6977, 3.61283, 86400, 0, 0),
|
||||
(78490, 14398, 429, 2, 0, 0, 5.64661, 567.147, 28.6886, 5.65487, 86400, 0, 0),
|
||||
(78552, 14398, 429, 2, 0, 0, -17.0975, 531.373, 28.6855, 0.087266, 86400, 0, 0),
|
||||
(78553, 11469, 429, 2, 0, 1, 55.0221, 508.635, -3.48438, 3.15905, 86400, 0, 0),
|
||||
(78653, 11469, 429, 2, 0, 1, 121.059, 488.502, 28.6844, 4.5204, 86400, 0, 0),
|
||||
(78681, 11469, 429, 2, 0, 1, 100.154, 567.333, 28.6954, 1.39626, 86400, 0, 0),
|
||||
(78739, 11469, 429, 2, 0, 1, 62.6031, 525.741, 28.6854, 2.93215, 86400, 0, 0),
|
||||
(78740, 11469, 429, 2, 0, 1, -60.8733, 565.822, 28.6972, 0.174533, 86400, 0, 0),
|
||||
(78741, 11469, 429, 2, 0, 1, 78.0193, 572.068, 28.6971, 5.60251, 86400, 0, 0),
|
||||
(78924, 11469, 429, 2, 0, 1, -28.5838, 511.139, -3.48528, 5.02655, 86400, 0, 0),
|
||||
(78925, 11469, 429, 2, 0, 1, -106.094, 532.15, 28.6969, 4.34587, 86400, 0, 0),
|
||||
(78926, 11469, 429, 2, 0, 1, 7.98379, 564.159, 28.6879, 2.02458, 86400, 0, 0),
|
||||
(78927, 11469, 429, 2, 0, 1, -67.2448, 524.653, 28.6861, 6.23082, 86400, 0, 0),
|
||||
(78929, 11470, 429, 2, 0, 1, 55.0866, 505.726, -3.48333, 2.67035, 86400, 0, 0),
|
||||
(78930, 11470, 429, 2, 0, 1, 97.1054, 488.343, 28.6844, 3.10669, 86400, 0, 0),
|
||||
(78931, 11470, 429, 2, 0, 1, 5.91784, 509.837, -3.48481, 4.59022, 86400, 0, 0),
|
||||
(78932, 11470, 429, 2, 0, 1, 122.531, 481.388, 28.6844, 1.58825, 86400, 0, 0),
|
||||
(78965, 11470, 429, 2, 0, 1, 118.721, 481.643, 28.6844, 1.01229, 86400, 0, 0),
|
||||
(78995, 11470, 429, 2, 0, 1, 99.0028, 570.998, 28.6964, 5.2709, 86400, 0, 0),
|
||||
(78997, 11470, 429, 2, 0, 1, 56.6144, 524.315, 28.685, 0.523599, 86400, 0, 0),
|
||||
(79001, 11470, 429, 2, 0, 1, -54.1802, 566.224, 28.6972, 3.1765, 86400, 0, 0),
|
||||
(79002, 11470, 429, 2, 0, 1, -12.0959, 530.086, 28.685, 3.1765, 86400, 0, 0),
|
||||
(79003, 11470, 429, 2, 0, 1, -16.9684, 527.327, 28.6848, 0.610865, 86400, 0, 0),
|
||||
(79268, 11470, 429, 2, 0, 1, 82.6258, 570.367, 28.6977, 3.08923, 86400, 0, 0),
|
||||
(79269, 11470, 429, 2, 0, 1, 79.9753, 564.996, 28.6964, 1.5708, 86400, 0, 0),
|
||||
(79270, 11470, 429, 2, 0, 1, -27.428, 507.017, -3.48379, 1.85005, 86400, 0, 0),
|
||||
(79272, 11470, 429, 2, 0, 1, -108.313, 526.203, 28.6966, 1.25664, 86400, 0, 0),
|
||||
(79278, 11470, 429, 2, 0, 1, -24.9202, 509.228, -3.48459, 2.44346, 86400, 0, 0),
|
||||
(79279, 11470, 429, 2, 0, 1, 9.66484, 568.061, 28.6882, 3.75246, 86400, 0, 0),
|
||||
(79282, 11470, 429, 2, 0, 1, 7.29686, 509.009, -3.48451, 3.80482, 86400, 0, 0),
|
||||
(79401, 11470, 429, 2, 0, 1, -61.637, 526.777, 28.6853, 3.28122, 86400, 0, 0),
|
||||
(79402, 11471, 429, 2, 0, 0, -12.1814, 558.704, -4.39591, 5.99616, 86400, 8, 1),
|
||||
(79403, 11471, 429, 2, 0, 0, 109.165, 479.837, -4.31265, 5.37561, 86400, 8, 1),
|
||||
(79404, 11471, 429, 2, 0, 0, 107.902, 473.495, -4.31271, 0.663225, 86400, 8, 1),
|
||||
(79410, 11471, 429, 2, 0, 0, 98.7997, 546.439, -4.31221, 6.12611, 86400, 8, 1),
|
||||
(79413, 11471, 429, 2, 0, 0, 128.643, 561.759, -4.31221, 3.12414, 86400, 8, 1),
|
||||
(79415, 11471, 429, 2, 0, 0, -96.1452, 465.968, -4.31524, 6.00393, 86400, 8, 1),
|
||||
(79417, 11471, 429, 2, 0, 0, -90.7062, 517.615, -4.31369, 3.15905, 86400, 8, 1),
|
||||
(79422, 11471, 429, 2, 0, 0, 103.881, 501.979, -4.31225, 2.16421, 86400, 8, 1),
|
||||
(79430, 11471, 429, 2, 0, 0, 54.076, 542.697, -4.39562, 4.00858, 86400, 8, 1),
|
||||
(79436, 11471, 429, 2, 0, 0, 68.6846, 546.253, -4.39761, 4.57106, 86400, 8, 1),
|
||||
(79437, 11471, 429, 2, 0, 0, -54.5304, 538.834, -4.31221, 5.63741, 86400, 8, 1),
|
||||
(79439, 11471, 429, 2, 0, 0, -53.2673, 555.241, -4.40285, 0.570829, 86400, 8, 1),
|
||||
(79442, 11471, 429, 2, 0, 0, 32.1369, 566.978, -4.3122, 2.87979, 86400, 8, 1),
|
||||
(79443, 11471, 429, 2, 0, 0, 128.655, 439.345, -4.30314, 0.750492, 86400, 8, 1),
|
||||
(79446, 11472, 429, 2, 0, 0, -20.3706, 539.497, -4.31221, 5.96903, 86400, 8, 1),
|
||||
(79447, 11472, 429, 2, 0, 0, 115.494, 462.595, -4.31628, 0, 86400, 8, 1),
|
||||
(79448, 11472, 429, 2, 0, 0, 90.1725, 558.166, -4.3122, 0.506145, 86400, 8, 1),
|
||||
(79506, 11472, 429, 2, 0, 0, 135.202, 564.822, -4.31221, 3.14159, 86400, 8, 1),
|
||||
(79533, 11472, 429, 2, 0, 0, -85.7577, 474.07, -4.31686, 0.174533, 86400, 8, 1),
|
||||
(79535, 11472, 429, 2, 0, 0, -78.8651, 514.519, -4.31482, 2.40855, 86400, 8, 1),
|
||||
(79536, 11472, 429, 2, 0, 0, -96.1273, 509.47, -4.31524, 2.18166, 86400, 8, 1),
|
||||
(79559, 11472, 429, 2, 0, 0, 99.151, 510.032, -4.31224, 1.06465, 86400, 8, 1),
|
||||
(79560, 11472, 429, 2, 0, 0, 102.626, 518.346, -4.39536, 2.62741, 86400, 8, 1),
|
||||
(79561, 11472, 429, 2, 0, 0, 59.9386, 535.892, -4.3122, 2.18166, 86400, 8, 1),
|
||||
(79570, 11472, 429, 2, 0, 0, -60.4682, 549.095, -4.40406, 3.71401, 86400, 8, 1),
|
||||
(79581, 11472, 429, 2, 0, 0, -58.685, 566.327, -4.3122, 0, 86400, 8, 1),
|
||||
(79590, 11472, 429, 2, 0, 0, 33.8972, 557.805, -4.3122, 4.2586, 86400, 8, 1),
|
||||
(79594, 11472, 429, 2, 0, 0, 120.586, 438.521, -4.31108, 1.65806, 86400, 8, 1),
|
||||
(79633, 11472, 429, 2, 0, 0, 62.4359, 556.919, -4.3074, 0, 86400, 8, 1),
|
||||
(79695, 11473, 429, 2, 0, 0, 107.537, 519.429, 28.6011, 4.88988, 86400, 0, 2),
|
||||
(80148, 11473, 429, 2, 0, 0, -41.5571, 610.235, -23.3052, 1.09859, 86400, 0, 2),
|
||||
(80150, 11473, 429, 2, 0, 0, 60.3375, 410.765, -3.59399, 4.22231, 86400, 0, 2),
|
||||
(80244, 11473, 429, 2, 0, 0, 33.9748, 547.044, 28.6048, 3.23875, 86400, 0, 2),
|
||||
(80245, 11473, 429, 2, 0, 0, 7.15476, 551.157, -23.3052, 0.111138, 86400, 0, 2),
|
||||
(80252, 11475, 429, 2, 0, 0, -20.8648, 551.596, -4.39737, 4.71914, 86400, 8, 1),
|
||||
(80258, 11475, 429, 2, 0, 0, 101.293, 479.851, -4.31301, 4.50295, 86400, 8, 1),
|
||||
(83181, 11475, 429, 2, 0, 0, 88.1093, 548.942, -4.3122, 3.80482, 86400, 8, 1),
|
||||
(83184, 11475, 429, 2, 0, 0, 135.813, 559.564, -4.31221, 3.12414, 86400, 8, 1),
|
||||
(84086, 11475, 429, 2, 0, 0, -98.2049, 476.774, -4.31492, 1.85005, 86400, 8, 1),
|
||||
(84087, 11475, 429, 2, 0, 0, -55.1989, 563.449, -4.40317, 5.51304, 86400, 8, 1),
|
||||
(84088, 11475, 429, 2, 0, 0, 28.9378, 554.511, -23.2219, 3.83972, 86400, 8, 1),
|
||||
(84089, 11475, 429, 2, 0, 0, -17.531, 558.016, -23.2219, 4.43314, 86400, 8, 1),
|
||||
(84091, 11475, 429, 2, 0, 0, 21.8259, 551.752, -4.39944, 2.73993, 86400, 8, 1),
|
||||
(84092, 11475, 429, 2, 0, 0, 119.8, 427.561, -4.30938, 1.43117, 86400, 8, 1),
|
||||
(84093, 11475, 429, 2, 0, 0, 57.5582, 546.248, -4.3122, 0.122173, 86400, 8, 1),
|
||||
(84141, 11476, 429, 2, 0, 0, 125.715, 384.229, 28.6884, 4.85202, 86400, 0, 0),
|
||||
(84142, 11476, 429, 2, 0, 0, 117.153, 390.882, 28.6844, 3.92699, 86400, 0, 0),
|
||||
(84143, 11476, 429, 2, 0, 0, -92.792, 387.466, 28.6855, 3.33358, 86400, 0, 0),
|
||||
(84144, 11476, 429, 2, 0, 0, -64.0295, 564.499, 28.6968, 4.83456, 86400, 0, 0),
|
||||
(84145, 11476, 429, 2, 0, 0, -56.3611, 560.078, 28.6955, 4.59022, 86400, 0, 0),
|
||||
(84146, 11476, 429, 2, 0, 0, -104.183, 526.692, 28.6962, 1.0472, 86400, 0, 0),
|
||||
(84147, 11476, 429, 2, 0, 0, 106.187, 395.379, 28.6844, 2.87979, 86400, 0, 0),
|
||||
(84157, 11476, 429, 2, 0, 0, 107.807, 382.362, 28.6845, 3.28122, 86400, 0, 0),
|
||||
(84158, 11476, 429, 2, 0, 0, -21.4629, 529.414, 28.6858, 1.25664, 86400, 0, 0),
|
||||
(84159, 11476, 429, 2, 0, 0, -81.6961, 403.148, 28.6844, 2.86234, 86400, 0, 0),
|
||||
(84160, 11476, 429, 2, 0, 0, -80.6973, 380.285, 28.6892, 4.50295, 86400, 0, 0),
|
||||
(84161, 11476, 429, 2, 0, 0, -81.8493, 391.963, 28.6844, 5.58505, 86400, 0, 0),
|
||||
(84162, 11476, 429, 2, 0, 0, -1.28895, 506.292, -3.48353, 0.750492, 86400, 0, 0),
|
||||
(84163, 11476, 429, 2, 0, 0, 10.3501, 504.603, -3.48293, 4.60767, 86400, 0, 0),
|
||||
(84164, 11476, 429, 2, 0, 0, 118.854, 396.512, 28.6844, 4.76475, 86400, 0, 0),
|
||||
(84165, 11476, 429, 2, 0, 0, 120.028, 383.161, 28.6882, 5.81195, 86400, 0, 0),
|
||||
(84166, 11476, 429, 2, 0, 0, -90.3692, 395.925, 28.6844, 0.733038, 86400, 0, 0),
|
||||
(84167, 11476, 429, 2, 0, 0, 95.5775, 480.244, 28.6844, 3.01942, 86400, 0, 0),
|
||||
(84168, 11476, 429, 2, 0, 0, 97.0632, 564.434, 28.696, 0.523599, 86400, 0, 0),
|
||||
(84169, 11477, 429, 2, 0, 0, 93.1133, 492.334, 28.6844, 3.68265, 86400, 0, 0),
|
||||
(84171, 11477, 429, 2, 0, 0, 49.3202, 503.902, -3.48267, 1.65806, 86400, 0, 0),
|
||||
(84172, 11477, 429, 2, 0, 0, 61.3003, 507.949, -3.48413, 0.418879, 86400, 0, 0),
|
||||
(84173, 11477, 429, 2, 0, 0, 105.119, 570.376, 28.6945, 4.81711, 86400, 0, 0),
|
||||
(84174, 11477, 429, 2, 0, 0, -81.1514, 396.299, 28.6844, 0.907571, 86400, 0, 0),
|
||||
(84175, 11477, 429, 2, 0, 0, -105.719, 535.634, 28.6958, 1.72788, 86400, 0, 0),
|
||||
(84176, 11477, 429, 2, 0, 0, 109.753, 391.43, 28.6844, 0.191986, 86400, 0, 0),
|
||||
(84177, 11477, 429, 2, 0, 0, 104.027, 377.357, 28.691, 2.61799, 86400, 0, 0),
|
||||
(84178, 11477, 429, 2, 0, 0, -87.1873, 391.362, 28.6844, 4.93928, 86400, 0, 0),
|
||||
(84179, 11477, 429, 2, 0, 0, 112.952, 396.303, 28.6844, 3.735, 86400, 0, 0),
|
||||
(84180, 11477, 429, 2, 0, 0, 113.487, 381.919, 28.6862, 3.22886, 86400, 0, 0),
|
||||
(84181, 11477, 429, 2, 0, 0, -33.4381, 505.196, -3.48314, 1.06465, 86400, 0, 0),
|
||||
(84182, 11477, 429, 2, 0, 0, -22.4055, 504.89, -3.48303, 4.45059, 86400, 0, 0),
|
||||
(84183, 11477, 429, 2, 0, 0, -92.207, 380.287, 28.6892, 4.76475, 86400, 0, 0),
|
||||
(84184, 11477, 429, 2, 0, 0, -86.1771, 399.27, 28.6844, 5.35816, 86400, 0, 0),
|
||||
(84185, 11477, 429, 2, 0, 0, -8.55244, 526.9, 28.6848, 5.41052, 86400, 0, 0),
|
||||
(84186, 11477, 429, 2, 0, 0, -90.7518, 404.466, 28.6844, 0.558505, 86400, 0, 0),
|
||||
(84187, 14361, 429, 2, 0, 0, 48.8261, 474.314, -23.294, 3.103032, 86400, 8, 1),
|
||||
(84188, 14361, 429, 2, 0, 0, -21.224, 476.346, -23.301, 5.667356, 86400, 8, 1);
|
||||
|
||||
UPDATE `creature` SET `spawndist`=10, `MovementType`=1 WHERE `id` IN (883,721,1412,4075,2914,4076) AND `map`=429;
|
||||
|
||||
DELETE FROM `creature_addon` WHERE `guid` IN (10299, 12572, 16400, 16402, 54338, 54340, 54382, 54384, 54386, 54388, 54390, 54425, 54426, 54431, 79695, 80148, 80150, 80244, 80245);
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES
|
||||
(10299,102990,0,0,0,0, ''),
|
||||
(12572,125720,0,0,0,0,''),
|
||||
(16400,164000,0,0,0,0,''),
|
||||
(16402,164020,0,0,0,0,''),
|
||||
(54338,543380,0,0,0,0,''),
|
||||
(54340,543400,0,0,0,0,''),
|
||||
(54382,543820,0,0,0,0,''),
|
||||
(54384,543840,0,0,0,0,''),
|
||||
(54386,543860,0,0,0,0,''),
|
||||
(54388,543880,0,0,0,0,''),
|
||||
(54390,543900,0,0,0,0,''),
|
||||
(54425,544250,0,0,0,0,''),
|
||||
(54426,544260,0,0,0,0,''),
|
||||
(54431,544310,0,0,0,0,''),
|
||||
(79695,796950,0,0,0,0,''),
|
||||
(80148,801480,0,0,0,0,''),
|
||||
(80150,801500,0,0,0,0,''),
|
||||
(80244,802440,0,0,0,0,''),
|
||||
(80245,802450,0,0,0,0,'');
|
||||
|
||||
DELETE FROM `creature_formations` WHERE `leaderGUID` IN (10299, 12572, 16402, 16400);
|
||||
INSERT INTO `creature_formations` (`leaderGUID`,`memberGUID`,`dist`,`angle`,`groupAI`) VALUES
|
||||
(10299, 10299, 0, 0, 2),
|
||||
(10299, 23431, 4, 90, 2),
|
||||
(10299, 23434, 4, 180, 2),
|
||||
(10299, 23441, 4, 270, 2),
|
||||
(10299, 28649, 4, 0, 2),
|
||||
(12572, 12572, 0, 0, 2),
|
||||
(12572, 28786, 4, 90, 2),
|
||||
(12572, 28800, 4, 180, 2),
|
||||
(12572, 33512, 4, 270, 2),
|
||||
(12572, 33523, 4, 0, 2),
|
||||
(16402, 16402, 0, 0, 2),
|
||||
(16402, 45842, 4, 90, 2),
|
||||
(16402, 45844, 4, 180, 2),
|
||||
(16402, 46339, 4, 270, 2),
|
||||
(16402, 48258, 4, 0, 2),
|
||||
(16400, 16400, 0, 0, 2),
|
||||
(16400, 34521, 4, 90, 2),
|
||||
(16400, 42797, 4, 180, 2),
|
||||
(16400, 45831, 4, 270, 2),
|
||||
(16400, 45838, 4, 0, 2);
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id` IN (102990, 125720, 164000, 164020, 543380, 543400, 543820, 543840, 543860, 543880, 543900, 544250, 544260, 544310, 796950, 801480, 801500, 802440, 802450);
|
||||
INSERT INTO `waypoint_data`(`id`,`point`,`position_x`,`position_y`,`position_z`) VALUES
|
||||
(102990, 1, -154.435, 772.67, -24.5793),
|
||||
(102990, 2, -144.706, 767.71, -24.5793),
|
||||
(102990, 3, -148.095, 759.643, -24.5793),
|
||||
(102990, 4, -157.824, 758.463, -24.5793),
|
||||
(102990, 5, -167.754, 763.006, -24.5793),
|
||||
(102990, 6, -172.929, 772.622, -24.5793),
|
||||
(102990, 7, -173.695, 786.811, -24.578),
|
||||
(102990, 8, -174.708, 799.862, -24.578),
|
||||
(102990, 9, -177.135, 809.357, -24.5795),
|
||||
(102990, 10, -178.491, 821.32, -24.5795),
|
||||
(102990, 11, -176.593, 831.006, -24.5795),
|
||||
(102990, 12, -174.576, 840.667, -24.5795),
|
||||
(102990, 13, -164.727, 845.384, -24.5795),
|
||||
(102990, 14, -156.071, 840.789, -24.5795),
|
||||
(102990, 15, -156.254, 829.871, -24.5795),
|
||||
(102990, 16, -156.523, 818.954, -24.5795),
|
||||
(102990, 17, -156.871, 804.818, -24.5795),
|
||||
(102990, 18, -157.14, 793.901, -24.5795),
|
||||
(125720, 1, -5.30967, 673.688, -24.5803),
|
||||
(125720, 2, -17.9123, 665.083, -24.6109),
|
||||
(125720, 3, -30.7467, 656.828, -24.6484),
|
||||
(125720, 4, -44.523, 647.967, -24.6593),
|
||||
(125720, 5, -57.4163, 639.674, -24.6694),
|
||||
(125720, 6, -68.4256, 632.593, -24.5803),
|
||||
(125720, 7, -71.7652, 641.807, -24.5803),
|
||||
(125720, 8, -76.6076, 655.166, -24.5803),
|
||||
(125720, 9, -81.0684, 667.473, -24.5803),
|
||||
(125720, 10, -85.9108, 680.832, -24.5803),
|
||||
(125720, 11, -90.3715, 693.139, -24.5803),
|
||||
(125720, 12, -95.9534, 708.538, -24.5803),
|
||||
(125720, 13, -86.3932, 706.383, -24.5803),
|
||||
(125720, 14, -70.414, 702.782, -24.5803),
|
||||
(125720, 15, -52.2496, 698.688, -24.5961),
|
||||
(125720, 16, -52.2496, 698.688, -24.5961),
|
||||
(125720, 17, -38.1345, 697.049, -24.599),
|
||||
(125720, 18, -22.9764, 695.288, -24.6007),
|
||||
(125720, 19, -4.4601, 693.337, -24.5803),
|
||||
(125720, 20, 10.8104, 691.987, -24.5803),
|
||||
(125720, 21, 24.8946, 683.624, -24.5803),
|
||||
(125720, 22, 16.1033, 679.293, -24.5803),
|
||||
(164000, 1, 83.1085, 831.524, -24.5803),
|
||||
(164000, 2, 87.7018, 821.617, -24.5803),
|
||||
(164000, 3, 91.0859, 810.063, -24.5796),
|
||||
(164000, 4, 92.2108, 798.075, -24.5786),
|
||||
(164000, 5, 94.742, 785.232, -24.5783),
|
||||
(164000, 6, 97.4897, 771.291, -24.5797),
|
||||
(164000, 7, 98.9007, 753.848, -24.5797),
|
||||
(164000, 8, 90.5121, 756.336, -24.5797),
|
||||
(164000, 9, 82.5436, 759.951, -24.5797),
|
||||
(164000, 10, 74.0588, 764.855, -24.5797),
|
||||
(164000, 11, 66.3495, 770.905, -24.5797),
|
||||
(164000, 12, 66.6688, 781.821, -24.5797),
|
||||
(164000, 13, 71.6043, 793.945, -24.5797),
|
||||
(164000, 14, 76.962, 807.106, -24.5797),
|
||||
(164000, 15, 82.7723, 818.914, -24.5797),
|
||||
(164000, 16, 89.5408, 832.669, -24.5797),
|
||||
(164000, 17, 97.0817, 848.46, -24.5797),
|
||||
(164000, 18, 98.023, 857.16, -24.5797),
|
||||
(164000, 19, 87.6171, 860.471, -24.5797),
|
||||
(164000, 20, 73.6134, 862.883, -24.5797),
|
||||
(164000, 21, 63.9142, 861.481, -24.5797),
|
||||
(164000, 22, 64.0519, 851.612, -24.5797),
|
||||
(164000, 23, 74.6603, 845.918, -24.5797),
|
||||
(164020, 1, -5.4777, 944.839, -24.5779),
|
||||
(164020, 2, -1.03682, 937.299, -24.5779),
|
||||
(164020, 3, 5.60674, 926.02, -24.5798),
|
||||
(164020, 4, 11.7174, 915.646, -24.5798),
|
||||
(164020, 5, 21.5165, 915.514, -24.5798),
|
||||
(164020, 6, 32.4355, 915.366, -24.5798),
|
||||
(164020, 7, 42.3046, 915.232, -24.5798),
|
||||
(164020, 8, 54.2735, 915.07, -24.5798),
|
||||
(164020, 9, 64.1426, 914.937, -24.5798),
|
||||
(164020, 10, 57.9663, 921.135, -24.5798),
|
||||
(164020, 11, 50.2583, 928.87, -24.5798),
|
||||
(164020, 12, 40.4738, 927.573, -24.5798),
|
||||
(164020, 13, 29.6485, 926.138, -24.5798),
|
||||
(164020, 14, 17.7128, 924.557, -24.5798),
|
||||
(164020, 15, 6.88749, 923.122, -24.5798),
|
||||
(164020, 16, -12.612, 920.538, -24.5798),
|
||||
(164020, 17, -23.282, 920.283, -24.5798),
|
||||
(164020, 18, -34.1245, 927.617, -24.5798),
|
||||
(164020, 19, -39.5547, 935.775, -24.5798),
|
||||
(164020, 20, -41.3741, 945.404, -24.5798),
|
||||
(164020, 21, -36.9364, 952.946, -24.5798),
|
||||
(164020, 22, -22.3878, 957.71, -24.5798),
|
||||
(543380, 1, -73.8964, 212.391, -4.98697),
|
||||
(543380, 2, -83.5566, 222.717, -4.98697),
|
||||
(543380, 3, -88.7199, 241.697, -4.98697),
|
||||
(543380, 4, -90.2657, 259.129, -4.98693),
|
||||
(543380, 5, -87.2635, 277.409, -4.98693),
|
||||
(543380, 6, -86.9805, 298.127, -4.98693),
|
||||
(543380, 7, -86.7263, 316.746, -4.98693),
|
||||
(543380, 8, -83.9975, 329.548, -4.98693),
|
||||
(543380, 9, -70.1918, 336.212, -4.98693),
|
||||
(543380, 10, -51.8428, 338.936, -4.99171),
|
||||
(543380, 11, -28.0661, 342.274, -4.98622),
|
||||
(543380, 12, -6.23548, 341.633, -4.98622),
|
||||
(543380, 13, 3.63272, 341.485, -4.98622),
|
||||
(543380, 14, 38.6326, 341.557, -4.98622),
|
||||
(543380, 15, 88.7139, 339.778, -4.98622),
|
||||
(543380, 16, 108.609, 331.165, -4.98622),
|
||||
(543380, 17, 119.648, 319.067, -4.98622),
|
||||
(543380, 18, 120.329, 292.903, -4.98622),
|
||||
(543380, 19, 111.975, 226.983, -4.98622),
|
||||
(543380, 20, 100.583, 216.515, -4.98622),
|
||||
(543380, 21, 82.2182, 213.947, -4.98622),
|
||||
(543380, 22, 47.2589, 212.432, -4.98622),
|
||||
(543380, 23, 12.259, 212.359, -4.98622),
|
||||
(543380, 24, -22.738, 211.908, -4.98622),
|
||||
(543400, 1, 26.8532, 335.164, -4.98671),
|
||||
(543400, 2, 38.821, 334.949, -4.98671),
|
||||
(543400, 3, 73.8035, 336.03, -4.98671),
|
||||
(543400, 4, 110.728, 334.215, -4.98671),
|
||||
(543400, 5, 110.728, 334.215, -4.98671),
|
||||
(543400, 6, 121.38, 308.731, -4.98671),
|
||||
(543400, 7, 119.169, 273.845, -4.98671),
|
||||
(543400, 8, 118.87, 258.598, -4.98671),
|
||||
(543400, 9, 106.978, 216.284, -4.98671),
|
||||
(543400, 10, 106.978, 216.284, -4.98671),
|
||||
(543400, 11, 85.213, 217.979, -4.98671),
|
||||
(543400, 12, 50.3325, 215.232, -4.98671),
|
||||
(543400, 13, 15.3332, 215.017, -4.98671),
|
||||
(543400, 14, 15.3332, 215.017, -4.98671),
|
||||
(543400, 15, -19.6662, 214.807, -4.98671),
|
||||
(543400, 16, -54.6274, 216.314, -4.98671),
|
||||
(543400, 17, -82.6529, 224.386, -4.98671),
|
||||
(543400, 18, -82.6529, 224.386, -4.98671),
|
||||
(543400, 19, -89.7594, 267.371, -4.98671),
|
||||
(543400, 20, -89.013, 294.647, -4.98671),
|
||||
(543400, 21, -85.51, 318.46, -4.98671),
|
||||
(543400, 22, -81.1829, 337.575, -4.98671),
|
||||
(543400, 23, -46.2477, 339.704, -4.99116),
|
||||
(543400, 24, -11.3112, 341.766, -4.98717),
|
||||
(543820, 1, 114.671, 227.08, -4.9866),
|
||||
(543820, 2, 89.541, 216.687, -4.9866),
|
||||
(543820, 3, 79.8026, 215.111, -4.9866),
|
||||
(543820, 4, 44.9551, 211.876, -4.9866),
|
||||
(543820, 5, 9.99093, 210.322, -4.9866),
|
||||
(543820, 6, -25.0021, 210.344, -4.9866),
|
||||
(543820, 7, -59.9158, 212.586, -4.9866),
|
||||
(543820, 8, -84.5021, 216.159, -4.9866),
|
||||
(543820, 9, -84.5021, 216.159, -4.9866),
|
||||
(543820, 10, -91.4859, 237.936, -4.9866),
|
||||
(543820, 11, -92.2355, 265.218, -4.9866),
|
||||
(543820, 12, -90.0746, 300.136, -4.9866),
|
||||
(543820, 13, -81.1569, 338.051, -4.9866),
|
||||
(543820, 14, -81.1569, 338.051, -4.9866),
|
||||
(543820, 15, -47.9004, 343.989, -4.98959),
|
||||
(543820, 16, -35.9391, 344.416, -4.98728),
|
||||
(543820, 17, -1.00653, 342.344, -4.98657),
|
||||
(543820, 18, 33.9782, 341.588, -4.98657),
|
||||
(543820, 19, 68.9776, 341.387, -4.98657),
|
||||
(543820, 20, 113.799, 334.378, -4.98657),
|
||||
(543820, 21, 113.799, 334.378, -4.98657),
|
||||
(543820, 22, 118.185, 304.186, -4.98657),
|
||||
(543820, 23, 118.682, 269.196, -4.98657),
|
||||
(543820, 24, 120.411, 240.899, -4.98657),
|
||||
(543840, 1, -89.2483, 298.063, -4.98622),
|
||||
(543840, 2, -86.6724, 316.433, -4.98622),
|
||||
(543840, 3, -76.985, 333.552, -4.98622),
|
||||
(543840, 4, -63.3183, 337.292, -4.99127),
|
||||
(543840, 5, -28.4434, 340.194, -4.98709),
|
||||
(543840, 6, 6.5018, 342.149, -4.98709),
|
||||
(543840, 7, 47.8583, 343.148, -4.98709),
|
||||
(543840, 8, 87.0492, 340.368, -4.98709),
|
||||
(543840, 9, 117.774, 323.333, -4.98709),
|
||||
(543840, 10, 123.825, 298.118, -4.98698),
|
||||
(543840, 11, 119.259, 263.425, -4.98695),
|
||||
(543840, 12, 108.497, 226.132, -4.98695),
|
||||
(543840, 13, 82.7994, 214.571, -4.98695),
|
||||
(543840, 14, 82.7994, 214.571, -4.98695),
|
||||
(543840, 15, 12.8024, 215.186, -4.98695),
|
||||
(543840, 16, 12.8024, 215.186, -4.98695),
|
||||
(543840, 17, -22.1961, 215.231, -4.98695),
|
||||
(543840, 18, -76.6187, 216.042, -4.98695),
|
||||
(543840, 19, -87.4764, 228.307, -4.98695),
|
||||
(543840, 20, -89.1398, 243.476, -4.98695),
|
||||
(543840, 21, -91.262, 263.031, -4.98695),
|
||||
(543860, 1, -16.4076, 348.596, -4.9869),
|
||||
(543860, 2, -16.4076, 348.596, -4.9869),
|
||||
(543860, 3, 18.5198, 346.482, -4.9869),
|
||||
(543860, 4, 53.5181, 346.274, -4.9869),
|
||||
(543860, 5, 88.518, 346.209, -4.9869),
|
||||
(543860, 6, 114.465, 340.268, -4.9869),
|
||||
(543860, 7, 117.418, 324.165, -4.9869),
|
||||
(543860, 8, 118.694, 289.193, -4.9869),
|
||||
(543860, 9, 118.971, 261.903, -4.9869),
|
||||
(543860, 10, 107.029, 215.807, -4.9869),
|
||||
(543860, 11, 107.029, 215.807, -4.9869),
|
||||
(543860, 12, 89.7454, 218.034, -4.9869),
|
||||
(543860, 13, 54.7761, 216.829, -4.9869),
|
||||
(543860, 14, 19.8255, 214.97, -4.9869),
|
||||
(543860, 15, -15.1467, 213.943, -4.9869),
|
||||
(543860, 16, -50.08, 215.584, -4.9869),
|
||||
(543860, 17, -82.4049, 219.347, -4.9869),
|
||||
(543860, 18, -82.4049, 219.347, -4.9869),
|
||||
(543860, 19, -88.2075, 242.61, -4.9869),
|
||||
(543860, 20, -88.8789, 277.591, -4.9869),
|
||||
(543860, 21, -86.525, 312.477, -4.9869),
|
||||
(543860, 22, -79.2253, 344.117, -4.9869),
|
||||
(543860, 23, -79.2253, 344.117, -4.9869),
|
||||
(543860, 24, -54.1034, 343.479, -4.98848),
|
||||
(543880, 1, 115.755, 314.173, -4.98717),
|
||||
(543880, 2, 117.562, 297.903, -4.98694),
|
||||
(543880, 3, 118.321, 262.923, -4.98691),
|
||||
(543880, 4, 115.262, 232.563, -4.98691),
|
||||
(543880, 5, 110.387, 212.396, -4.98691),
|
||||
(543880, 6, 110.387, 212.396, -4.98691),
|
||||
(543880, 7, 75.4159, 211.197, -4.98691),
|
||||
(543880, 8, 40.4165, 211.399, -4.98691),
|
||||
(543880, 9, 40.4165, 211.399, -4.98691),
|
||||
(543880, 10, 5.4171, 211.601, -4.98691),
|
||||
(543880, 11, -29.5634, 212.33, -4.98691),
|
||||
(543880, 12, -71.2713, 218.914, -4.98691),
|
||||
(543880, 13, -88.2601, 228.243, -4.98691),
|
||||
(543880, 14, -88.2601, 228.243, -4.98691),
|
||||
(543880, 15, -89.4113, 260.966, -4.98691),
|
||||
(543880, 16, -87.0255, 295.884, -4.98691),
|
||||
(543880, 17, -87.0255, 295.884, -4.98691),
|
||||
(543880, 18, -80.071, 340.074, -4.98691),
|
||||
(543880, 19, -74.611, 340.064, -4.98691),
|
||||
(543880, 20, -39.6339, 341.307, -4.99006),
|
||||
(543880, 21, -39.6339, 341.307, -4.99006),
|
||||
(543880, 22, 21.3739, 343.155, -4.9866),
|
||||
(543880, 23, 21.3739, 343.155, -4.9866),
|
||||
(543880, 24, 56.3695, 342.632, -4.9866),
|
||||
(543880, 25, 103.262, 341.809, -4.9866),
|
||||
(543900, 1, 34.5478, 217.578, -4.98578),
|
||||
(543900, 2, 19.2937, 217.157, -4.98578),
|
||||
(543900, 3, -0.363967, 216.641, -4.98578),
|
||||
(543900, 4, -18.9839, 216.676, -4.98578),
|
||||
(543900, 5, -38.6539, 216.713, -4.98578),
|
||||
(543900, 6, -58.3239, 216.75, -4.98578),
|
||||
(543900, 7, -77.9938, 216.787, -4.98578),
|
||||
(543900, 8, -83.2943, 225.03, -4.98578),
|
||||
(543900, 9, -85.1063, 242.365, -4.98578),
|
||||
(543900, 10, -87.7018, 258.538, -4.98578),
|
||||
(543900, 11, -88.1481, 275.962, -4.98578),
|
||||
(543900, 12, -88.2849, 298.852, -4.98578),
|
||||
(543900, 13, -88.389, 316.282, -4.98578),
|
||||
(543900, 14, -84.3206, 328.723, -4.98578),
|
||||
(543900, 15, -70.5643, 332.285, -4.98578),
|
||||
(543900, 16, -57.7842, 335.117, -4.99263),
|
||||
(543900, 17, -39.3587, 337.263, -4.99263),
|
||||
(543900, 18, -20.8812, 338.901, -4.98703),
|
||||
(543900, 19, -4.56519, 340.348, -4.98703),
|
||||
(543900, 20, 17.1954, 342.208, -4.98703),
|
||||
(543900, 21, 34.6832, 342.863, -4.98703),
|
||||
(543900, 22, 52.1131, 342.83, -4.98703),
|
||||
(543900, 23, 69.6128, 342.728, -4.98703),
|
||||
(543900, 24, 87.0425, 342.627, -4.98703),
|
||||
(543900, 25, 104.035, 338.747, -4.98703),
|
||||
(543900, 26, 111.873, 329.608, -4.98703),
|
||||
(543900, 27, 115.558, 309.218, -4.98703),
|
||||
(543900, 28, 118.845, 291.025, -4.98697),
|
||||
(543900, 29, 118.756, 275.695, -4.98697),
|
||||
(543900, 30, 118.693, 264.776, -4.98697),
|
||||
(543900, 31, 118.598, 248.396, -4.98697),
|
||||
(543900, 32, 111.179, 230.179, -4.98697),
|
||||
(543900, 33, 107.479, 221.104, -4.98697),
|
||||
(543900, 34, 88.2103, 217.151, -4.98697),
|
||||
(543900, 35, 76.341, 215.181, -4.98697),
|
||||
(544250, 1, 55.4787, 876.545, -24.5798),
|
||||
(544250, 2, 58.4186, 870.74, -24.5798),
|
||||
(544250, 3, 69.3692, 840.988, -24.5798),
|
||||
(544250, 4, 74.0909, 817.491, -24.5798),
|
||||
(544250, 5, 73.5212, 793.543, -24.5798),
|
||||
(544250, 6, 65.9317, 764.005, -24.5798),
|
||||
(544250, 7, 65.9317, 764.005, -24.5798),
|
||||
(544250, 8, 54.1359, 735.838, -24.5798),
|
||||
(544250, 9, 31.3882, 711.213, -24.5798),
|
||||
(544250, 10, 18.0454, 703.679, -24.5798),
|
||||
(544250, 11, 7.18085, 698.665, -24.5798),
|
||||
(544250, 12, -22.2467, 690.413, -24.6071),
|
||||
(544250, 13, -50.5894, 689.023, -24.6085),
|
||||
(544250, 14, -71.0247, 692.005, -24.5802),
|
||||
(544250, 15, -93.3868, 700.675, -24.5802),
|
||||
(544250, 16, -110.708, 712.105, -24.5802),
|
||||
(544250, 17, -131.417, 733.017, -24.5802),
|
||||
(544250, 18, -143.199, 751.343, -24.5802),
|
||||
(544250, 19, -153.187, 776.737, -24.5799),
|
||||
(544250, 20, -159.062, 798.881, -24.5798),
|
||||
(544250, 21, -159.355, 819.563, -24.5798),
|
||||
(544250, 22, -155.124, 840.958, -24.5798),
|
||||
(544250, 23, -144.749, 864.941, -24.5798),
|
||||
(544250, 24, -130.939, 884.591, -24.5798),
|
||||
(544250, 25, -120.263, 895.487, -24.5798),
|
||||
(544250, 26, -109.303, 904.52, -24.5798),
|
||||
(544250, 27, -83.0675, 920.156, -24.5798),
|
||||
(544250, 28, -61.47, 927.568, -24.5798),
|
||||
(544250, 29, -52.8273, 928.904, -24.5798),
|
||||
(544250, 30, -23.421, 929.512, -24.5798),
|
||||
(544250, 31, -0.32935, 923.326, -24.5798),
|
||||
(544250, 32, 5.43025, 920.153, -24.5798),
|
||||
(544250, 33, 34.1104, 900.106, -24.5798),
|
||||
(544250, 34, 47.9829, 887.944, -24.5798),
|
||||
(544260, 1, -50.8946, 924.926, -24.58),
|
||||
(544260, 2, -37.8765, 926.264, -24.58),
|
||||
(544260, 3, -18.3397, 924.691, -24.58),
|
||||
(544260, 4, 4.03956, 920.047, -24.58),
|
||||
(544260, 5, 34.6149, 901.087, -24.58),
|
||||
(544260, 6, 53.7311, 880.485, -24.58),
|
||||
(544260, 7, 68.0988, 854.725, -24.58),
|
||||
(544260, 8, 68.0988, 854.725, -24.58),
|
||||
(544260, 9, 77.7407, 812.297, -24.58),
|
||||
(544260, 10, 76.5112, 793.822, -24.58),
|
||||
(544260, 11, 71.1371, 773.819, -24.58),
|
||||
(544260, 12, 50.5952, 730.522, -24.58),
|
||||
(544260, 13, 45.586, 724.774, -24.58),
|
||||
(544260, 14, 15.797, 701.048, -24.58),
|
||||
(544260, 15, -1.51792, 694.488, -24.58),
|
||||
(544260, 16, -37.1045, 689.691, -24.6085),
|
||||
(544260, 17, -65.9996, 695.076, -24.5803),
|
||||
(544260, 18, -80.3435, 700.266, -24.5803),
|
||||
(544260, 19, -111.404, 718.497, -24.5803),
|
||||
(544260, 20, -131.6, 738.414, -24.5803),
|
||||
(544260, 21, -146.426, 766.102, -24.5803),
|
||||
(544260, 22, -150.01, 781, -24.5803),
|
||||
(544260, 23, -154.91, 821.066, -24.5803),
|
||||
(544260, 24, -152.247, 839.352, -24.5803),
|
||||
(544260, 25, -140.582, 866.388, -24.5803),
|
||||
(544260, 26, -122.367, 889.574, -24.5803),
|
||||
(544260, 27, -96.6418, 909.653, -24.5803),
|
||||
(544260, 28, -96.6418, 909.653, -24.5803),
|
||||
(544260, 29, -62.5695, 926.968, -24.5803),
|
||||
(544310, 1, 29.5451, 714.823, -24.5795),
|
||||
(544310, 2, 29.5451, 714.823, -24.5795),
|
||||
(544310, 3, -10.9031, 695.891, -24.5795),
|
||||
(544310, 4, -21.5201, 693.437, -24.6036),
|
||||
(544310, 5, -53.1765, 691.732, -24.605),
|
||||
(544310, 6, -78.7322, 697.07, -24.5803),
|
||||
(544310, 7, -92.8619, 702.815, -24.5803),
|
||||
(544310, 8, -112.851, 716.129, -24.5803),
|
||||
(544310, 9, -126.818, 729.814, -24.5803),
|
||||
(544310, 10, -139.996, 749.901, -24.5803),
|
||||
(544310, 11, -147.555, 766.831, -24.5803),
|
||||
(544310, 12, -154.086, 789.885, -24.5799),
|
||||
(544310, 13, -155.547, 805.07, -24.5799),
|
||||
(544310, 14, -154.262, 834.549, -24.5799),
|
||||
(544310, 15, -147.382, 859.771, -24.5799),
|
||||
(544310, 16, -135.921, 880.835, -24.5796),
|
||||
(544310, 17, -128.993, 889.27, -24.5796),
|
||||
(544310, 18, -104.848, 911.338, -24.5796),
|
||||
(544310, 19, -90.7347, 919.589, -24.5796),
|
||||
(544310, 20, -71.3188, 927.004, -24.5796),
|
||||
(544310, 21, -41.4765, 933.168, -24.5796),
|
||||
(544310, 22, -29.4596, 932.823, -24.5796),
|
||||
(544310, 23, -13.4772, 929.362, -24.5796),
|
||||
(544310, 24, 17.9632, 916.755, -24.5796),
|
||||
(544310, 25, 30.2583, 909.683, -24.5796),
|
||||
(544310, 26, 47.8817, 895.083, -24.5796),
|
||||
(544310, 27, 59.3745, 881.922, -24.5796),
|
||||
(544310, 28, 68.8637, 864.739, -24.5796),
|
||||
(544310, 29, 77.5734, 840.063, -24.5796),
|
||||
(544310, 30, 81.0719, 826.298, -24.5796),
|
||||
(544310, 31, 81.2277, 792.834, -24.5795),
|
||||
(544310, 32, 81.2277, 792.834, -24.5795),
|
||||
(544310, 33, 65.8591, 753.228, -24.5795),
|
||||
(544310, 34, 62.3924, 747.722, -24.5795),
|
||||
(544310, 35, 50.8683, 733.109, -24.5795),
|
||||
(544310, 36, 40.5306, 723.359, -24.5795),
|
||||
(796950, 1, 106.147, 512.802, 28.6011),
|
||||
(796950, 2, 105.908, 495.303, 28.6011),
|
||||
(796950, 3, 105.609, 473.465, 28.6011),
|
||||
(796950, 4, 105.4, 458.207, 28.6011),
|
||||
(796950, 5, 105.221, 445.118, 28.6011),
|
||||
(796950, 6, 104.29, 428.765, 28.6011),
|
||||
(796950, 7, 101.775, 441.67, 28.6011),
|
||||
(796950, 8, 101.244, 455.87, 28.6011),
|
||||
(796950, 9, 102.664, 470.009, 28.6011),
|
||||
(796950, 10, 103.137, 484.211, 28.6011),
|
||||
(796950, 11, 103.682, 500.582, 28.6011),
|
||||
(796950, 12, 104.191, 515.833, 28.6011),
|
||||
(796950, 13, 104.699, 531.085, 28.6012),
|
||||
(801480, 1, -39.0581, 597.648, -23.3052),
|
||||
(801480, 2, -37.837, 586.796, -23.3052),
|
||||
(801480, 3, -36.1306, 571.632, -23.3052),
|
||||
(801480, 4, -26.9216, 563.985, -23.3052),
|
||||
(801480, 5, -13.9609, 555.798, -23.3052),
|
||||
(801480, 6, 8.84675, 556.854, -23.3052),
|
||||
(801480, 7, 27.2069, 554.206, -23.3052),
|
||||
(801480, 8, 16.3417, 553.113, -23.3052),
|
||||
(801480, 9, 1.29342, 555.646, -23.3052),
|
||||
(801480, 10, -15.9638, 558.551, -23.3052),
|
||||
(801480, 11, -25.6026, 560.309, -23.3052),
|
||||
(801480, 12, -34.0073, 573.046, -23.3052),
|
||||
(801480, 13, -37.8825, 585.55, -23.3052),
|
||||
(801480, 14, -38.8771, 600.847, -23.3052),
|
||||
(801480, 15, -39.1344, 619.39, -24.6097),
|
||||
(801500, 1, 64.9552, 410.517, -3.58731),
|
||||
(801500, 2, 73.6344, 410.637, -3.58544),
|
||||
(801500, 3, 74.2298, 420.418, -3.58048),
|
||||
(801500, 4, 74.4176, 431.337, -3.57654),
|
||||
(801500, 5, 74.4382, 442.257, -3.57307),
|
||||
(801500, 6, 74.1302, 456.464, -3.57242),
|
||||
(801500, 7, 73.8936, 467.381, -3.57242),
|
||||
(801500, 8, 73.9142, 478.301, -3.57242),
|
||||
(801500, 9, 73.937, 490.341, -3.56964),
|
||||
(801500, 10, 73.9576, 501.261, -3.56833),
|
||||
(801500, 11, 73.9411, 492.511, -3.56833),
|
||||
(801500, 12, 73.9143, 478.301, -3.57121),
|
||||
(801500, 13, 73.8834, 461.921, -3.57121),
|
||||
(801500, 14, 73.8545, 446.591, -3.57121),
|
||||
(801500, 15, 73.8258, 431.331, -3.57603),
|
||||
(801500, 16, 73.8032, 419.361, -3.58082),
|
||||
(801500, 17, 73.7908, 412.781, -3.584),
|
||||
(801500, 18, 66.6589, 410.069, -3.58755),
|
||||
(801500, 19, 56.7898, 410.204, -3.58755),
|
||||
(801500, 20, 45.8759, 409.839, -3.58755),
|
||||
(802440, 1, 25.0347, 545.256, 28.604),
|
||||
(802440, 2, 8.7026, 546.508, 28.604),
|
||||
(802440, 3, -15.2372, 548.343, 28.6049),
|
||||
(802440, 4, -35.0997, 542.444, 28.6054),
|
||||
(802440, 5, -55.3896, 534.363, 28.6054),
|
||||
(802440, 6, -72.3678, 526.929, 28.6037),
|
||||
(802440, 7, -85.0387, 513.381, 28.6022),
|
||||
(802440, 8, -88.1879, 501.76, 28.6022),
|
||||
(802440, 9, -81.8908, 492.839, 28.6022),
|
||||
(802440, 10, -71.3087, 495.534, 28.6022),
|
||||
(802440, 11, -73.56, 509.565, 28.6022),
|
||||
(802440, 12, -73.8006, 526.993, 28.604),
|
||||
(802440, 13, -63.1055, 542.149, 28.606),
|
||||
(802440, 14, -42.3099, 548.822, 28.6074),
|
||||
(802440, 15, -23.1223, 553.151, 28.6074),
|
||||
(802440, 16, -4.57324, 553.335, 28.6044),
|
||||
(802440, 17, 10.4068, 556.592, 28.6044),
|
||||
(802440, 18, 25.6198, 554.701, 28.6044),
|
||||
(802440, 19, 42.9973, 555.282, 28.6061),
|
||||
(802440, 20, 59.2954, 553.646, 28.608),
|
||||
(802440, 21, 70.6201, 545.179, 28.608),
|
||||
(802440, 22, 77.6307, 536.806, 28.6066),
|
||||
(802440, 23, 71.2228, 529.391, 28.6037),
|
||||
(802440, 24, 62.5625, 530.641, 28.6037),
|
||||
(802440, 25, 51.3418, 535.006, 28.6037),
|
||||
(802450, 1, 17.4567, 551.282, -23.3052),
|
||||
(802450, 2, 35.8463, 552.806, -23.3052),
|
||||
(802450, 3, 47.0688, 542.364, -23.3052),
|
||||
(802450, 4, 50.5433, 528.61, -23.3052),
|
||||
(802450, 5, 51.314, 510.007, -23.3052),
|
||||
(802450, 6, 51.724, 524.14, -23.3052),
|
||||
(802450, 7, 47.243, 538.801, -23.3052),
|
||||
(802450, 8, 38.4927, 548.528, -23.3052),
|
||||
(802450, 9, 20.1324, 554.429, -23.3052),
|
||||
(802450, 10, -1.65534, 555.774, -23.3052),
|
||||
(802450, 11, -21.1967, 558.015, -23.3052),
|
||||
(802450, 12, -32.3997, 569.965, -23.3052),
|
||||
(802450, 13, -37.0581, 579.841, -23.3052),
|
||||
(802450, 14, -39.1951, 592.826, -23.3052),
|
||||
(802450, 15, -37.2528, 582.081, -23.3052),
|
||||
(802450, 16, -33.1838, 569.605, -23.3052),
|
||||
(802450, 17, -18.8693, 557.95, -23.3052),
|
||||
(802450, 18, -8.01747, 556.732, -23.3052);
|
||||
@@ -0,0 +1,3 @@
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_gen_paralytic_poison';
|
||||
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
|
||||
(35201, 'spell_gen_paralytic_poison');
|
||||
@@ -0,0 +1,3 @@
|
||||
--
|
||||
UPDATE `gameobject` SET `spawntimesecs` = 2 WHERE `id` IN (192788,194340,194341,194423,194424,193403,193404,193405,193406,176484,176485,176486,176487,19022,2708,1736,52,54,57,58,2086,2087,142088);
|
||||
--
|
||||
@@ -0,0 +1,30 @@
|
||||
UPDATE `creature_template` SET `ScriptName`='npc_bountiful_table' WHERE `entry`=32823;
|
||||
UPDATE `creature_template_addon` SET `auras`='' WHERE `entry` IN (34812,34819,34822,34823,34824);
|
||||
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName` IN (
|
||||
'spell_pilgrims_bounty_on_plate_turkey',
|
||||
'spell_pilgrims_bounty_on_plate_cranberries',
|
||||
'spell_pilgrims_bounty_on_plate_stuffing',
|
||||
'spell_pilgrims_bounty_on_plate_sweet_potatoes',
|
||||
'spell_pilgrims_bounty_on_plate_pie',
|
||||
'spell_pilgrims_bounty_a_serving_of_cranberries',
|
||||
'spell_pilgrims_bounty_a_serving_of_pie',
|
||||
'spell_pilgrims_bounty_a_serving_of_stuffing',
|
||||
'spell_pilgrims_bounty_a_serving_of_turkey',
|
||||
'spell_pilgrims_bounty_a_serving_of_potatoes');
|
||||
INSERT INTO `spell_script_names` (`spell_id` ,`ScriptName`) VALUES
|
||||
(66250,'spell_pilgrims_bounty_on_plate_turkey'),
|
||||
(66261,'spell_pilgrims_bounty_on_plate_cranberries'),
|
||||
(66259,'spell_pilgrims_bounty_on_plate_stuffing'),
|
||||
(66262,'spell_pilgrims_bounty_on_plate_sweet_potatoes'),
|
||||
(66260,'spell_pilgrims_bounty_on_plate_pie'),
|
||||
(61804,'spell_pilgrims_bounty_a_serving_of_cranberries'),
|
||||
(61805,'spell_pilgrims_bounty_a_serving_of_pie'),
|
||||
(61806,'spell_pilgrims_bounty_a_serving_of_stuffing'),
|
||||
(61807,'spell_pilgrims_bounty_a_serving_of_turkey'),
|
||||
(61808,'spell_pilgrims_bounty_a_serving_of_potatoes'),
|
||||
(61793,'spell_pilgrims_bounty_a_serving_of_cranberries'),
|
||||
(61794,'spell_pilgrims_bounty_a_serving_of_pie'),
|
||||
(61795,'spell_pilgrims_bounty_a_serving_of_stuffing'),
|
||||
(61796,'spell_pilgrims_bounty_a_serving_of_turkey'),
|
||||
(61797,'spell_pilgrims_bounty_a_serving_of_potatoes');
|
||||
@@ -0,0 +1,24 @@
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName` IN (
|
||||
'spell_mother_shahraz_fatal_attraction',
|
||||
'spell_mother_shahraz_fatal_attraction_link',
|
||||
'spell_mother_shahraz_saber_lash',
|
||||
'spell_mother_shahraz_generic_periodic',
|
||||
'spell_mother_shahraz_random_periodic');
|
||||
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
|
||||
(40869,'spell_mother_shahraz_fatal_attraction'),
|
||||
(40870,'spell_mother_shahraz_fatal_attraction_link'),
|
||||
(40816,'spell_mother_shahraz_saber_lash'),
|
||||
(40863,'spell_mother_shahraz_generic_periodic'),
|
||||
(40865,'spell_mother_shahraz_generic_periodic'),
|
||||
(40866,'spell_mother_shahraz_generic_periodic'),
|
||||
(40862,'spell_mother_shahraz_generic_periodic'),
|
||||
(40867,'spell_mother_shahraz_random_periodic');
|
||||
|
||||
DELETE FROM `creature_addon` WHERE `guid`=52760;
|
||||
INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `auras`) VALUES
|
||||
(52760, 0, 0, 0, 0, 0, 40816);
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`=22947 AND `GroupID` IN(6,7);
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `Comment`) VALUES
|
||||
(22947, 6, 0, '%s goes into a frenzy!', 41, 0, 100, 0, 0, 0, 2384, 0, 'shahraz EMOTE_ENRAGE'),
|
||||
(22947, 7, 0, '%s goes into a berserker rage!', 16, 0, 100, 0, 0, 0, 4428, 0, 'shahraz EMOTE_BERSERK');
|
||||
@@ -0,0 +1,3 @@
|
||||
DELETE FROM `command` WHERE `name`='server debug';
|
||||
INSERT INTO `command` (`name`, `permission`, `help`) VALUES
|
||||
('server debug', 872, 'Syntax: .server debug\n\nShows detailed information about server setup, useful when reporting a bug');
|
||||
@@ -0,0 +1 @@
|
||||
UPDATE `vehicle_template_accessory` SET `minion`=0 WHERE `entry`=33293 AND `accessory_entry`=33329;
|
||||
@@ -0,0 +1,2 @@
|
||||
-- Fix emblem frost exploit in Ruby Sanctum
|
||||
UPDATE `creature_template` SET `flags_extra`=`flags_extra` | 1 WHERE `entry`IN(39823,39920,39805);
|
||||
@@ -0,0 +1,17 @@
|
||||
--
|
||||
-- [Q] Altered Beings - http://wotlk.openwow.com/quest=880
|
||||
-- Tonga Runetotem SAI - delay textevent
|
||||
SET @ENTRY := 3448;
|
||||
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,1,20,0,100,0,880,0,0,0,80,@ENTRY*100+00,2,0,0,0,0,1,0,0,0,0,0,0,0,"Tonga Runetotem - On Quest 'Altered Beings' Finished - Run Script");
|
||||
|
||||
-- Actionlist SAI
|
||||
SET @ENTRY := 344800;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=9;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(@ENTRY,9,0,0,0,0,100,0,0,0,0,0,1,0,5000,0,0,0,0,1,0,0,0,0,0,0,0,"Tonga Runetotem - On Script - Say Line 0"),
|
||||
(@ENTRY,9,1,0,0,0,100,0,5000,5000,0,0,1,1,4000,0,0,0,0,1,0,0,0,0,0,0,0,"Tonga Runetotem - On Script - Say Line 1"),
|
||||
(@ENTRY,9,2,0,0,0,100,0,4000,4000,0,0,1,2,4000,0,0,0,0,1,0,0,0,0,0,0,0,"Tonga Runetotem - On Script - Say Line 2"),
|
||||
(@ENTRY,9,3,0,0,0,100,0,4000,4000,0,0,1,3,4000,0,0,0,0,1,0,0,0,0,0,0,0,"Tonga Runetotem - On Script - Say Line 3");
|
||||
@@ -0,0 +1,350 @@
|
||||
|
||||
--
|
||||
-- Birds in Sethekk Halls - spawns and paths
|
||||
-- Set InhabitType to flying
|
||||
UPDATE `creature_template` SET `InhabitType`= 4 WHERE `entry` IN (21931);
|
||||
|
||||
SET @GUID := 99126; -- 15 unused GUIDs from TC
|
||||
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @GUID AND @GUID+14;
|
||||
INSERT INTO `creature` (guid, id, map, spawnMask, position_x, position_y, position_z, orientation, spawntimesecs, curhealth, curmana, spawndist, MovementType) VALUES
|
||||
(@GUID+0, 21931, 556, 6, -69.078, 255.062, 27.6692, 2.23169, 1, 6326, 0, 0, 2),
|
||||
(@GUID+1, 21931, 556, 6, 84.91618, 251.3969, 37.0668, 3.204143, 1, 6326, 0, 0, 2),
|
||||
(@GUID+2, 21931, 556, 6, 82.7928, 251.0653, 37.0668, 3.192098, 1, 6326, 0, 0, 2),
|
||||
(@GUID+3, 21931, 556, 6, -55.35431, 292.4135, 27.84376, 3.334406, 1, 6326, 0, 0, 2),
|
||||
(@GUID+4, 21931, 556, 6, -56.81138, 293.4768, 27.82975, 1.066901, 1, 6326, 0, 0, 2),
|
||||
(@GUID+5, 21931, 556, 6, -109.229, 288.209, 53.3584, 3.249347, 1, 6326, 0, 0, 2),
|
||||
(@GUID+6, 21931, 556, 6, -77.7733, 299.15, 60.5558, 5.757163, 1, 6326, 0, 0, 2),
|
||||
(@GUID+7, 21931, 556, 6, -52.39689, 293.2879, 27.82958, 1.420948, 1, 6326, 0, 0, 2),
|
||||
(@GUID+8, 21931, 556, 6, -65.26201, 281.413, 47.28283, 0.8305511, 1, 6326, 0, 0, 2),
|
||||
(@GUID+9, 21931, 556, 6, -59.42, 289.0999, 27.89292, 2.894336, 1, 6326, 0, 0, 2),
|
||||
(@GUID+10, 21931, 556, 6, -102.279, 278.86, 56.0703, 5.414571, 1, 6326, 0, 0, 2),
|
||||
(@GUID+11, 21931, 556, 6, -86.60637, 286.1224, 27.48317, 2.953945, 1, 6326, 0, 0, 2),
|
||||
(@GUID+12, 21931, 556, 6, -68.3353, 281.741, 61.757, 3.844181, 1, 6326, 0, 0, 2),
|
||||
(@GUID+13, 21931, 556, 6, -71.9701, 272.574, 59.1446, 6.184331, 1, 6326, 0, 0, 2),
|
||||
(@GUID+14, 21931, 556, 6, -84.35631, 263.7281, 27.80793, 4.523829, 1, 6326, 0, 0, 2);
|
||||
|
||||
DELETE FROM `creature_addon` WHERE `guid` BETWEEN @GUID AND @GUID+14;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES
|
||||
(@GUID+0, (@GUID+0) *10, 0, 0, 1, 0, ''),
|
||||
(@GUID+1, (@GUID+1) *10, 0, 0, 1, 0, ''),
|
||||
(@GUID+2, (@GUID+2) *10, 0, 0, 1, 0, ''),
|
||||
(@GUID+3, (@GUID+3) *10, 0, 0, 1, 0, ''),
|
||||
(@GUID+4, (@GUID+4) *10, 0, 0, 1, 0, ''),
|
||||
(@GUID+5, (@GUID+5) *10, 0, 0, 1, 0, ''),
|
||||
(@GUID+6, (@GUID+6) *10, 0, 0, 1, 0, ''),
|
||||
(@GUID+7, (@GUID+7) *10, 0, 0, 1, 0, ''),
|
||||
(@GUID+8, (@GUID+8) *10, 0, 0, 1, 0, ''),
|
||||
(@GUID+9, (@GUID+9) *10, 0, 0, 1, 0, ''),
|
||||
(@GUID+10, (@GUID+10)*10, 0, 0, 1, 0, ''),
|
||||
(@GUID+11, (@GUID+11)*10, 0, 0, 1, 0, ''),
|
||||
(@GUID+12, (@GUID+12)*10, 0, 0, 1, 0, ''),
|
||||
(@GUID+13, (@GUID+13)*10, 0, 0, 1, 0, ''),
|
||||
(@GUID+14, (@GUID+14)*10, 0, 0, 1, 0, '');
|
||||
|
||||
-- 1.
|
||||
SET @PATH := (@GUID+0) * 10;
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`) VALUES
|
||||
(@PATH, 1, -69.078, 255.062, 27.6692),
|
||||
(@PATH, 2, -69.078, 255.062, 27.6692),
|
||||
(@PATH, 3, -77.6467, 256.825, 27.8182),
|
||||
(@PATH, 4, -85.5541, 263.248, 37.4314),
|
||||
(@PATH, 5, -89.3701, 273.449, 46.1637),
|
||||
(@PATH, 6, -87.3918, 283.626, 55.5433),
|
||||
(@PATH, 7, -81.6323, 288.392, 67.374),
|
||||
(@PATH, 8, -83.6451, 281.803, 77.323),
|
||||
(@PATH, 9, -97.3242, 280.983, 74.488),
|
||||
(@PATH, 10, -95.2966, 294.303, 27.4832),
|
||||
(@PATH, 11, -91.9066, 298.554, 40.3148),
|
||||
(@PATH, 12, -84.9968, 296.969, 52.3776),
|
||||
(@PATH, 13, -81.5458, 289.807, 63.8514),
|
||||
(@PATH, 14, -91.5585, 284.275, 71.9894),
|
||||
(@PATH, 15, -95.834, 292.943, 27.4832),
|
||||
(@PATH, 16, -94.3393, 295.352, 41.1404),
|
||||
(@PATH, 17, -88.5665, 292.19, 53.5047),
|
||||
(@PATH, 18, -88.0789, 284.173, 65.0211),
|
||||
(@PATH, 19, -96.7033, 282.247, 75.63),
|
||||
(@PATH, 20, -92.1857, 296.241, 27.4832);
|
||||
|
||||
-- 2.
|
||||
SET @PATH := (@GUID+1) * 10;
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`) VALUES
|
||||
(@PATH, 1, -84.3563, 263.728, 27.8079),
|
||||
(@PATH, 2, -87.4666, 261.464, 58.4138),
|
||||
(@PATH, 3, -94.4575, 270.352, 66.6585),
|
||||
(@PATH, 4, -95.7386, 284.443, 27.4832),
|
||||
(@PATH, 5, -91.3219, 290.488, 39.2894),
|
||||
(@PATH, 6, -84.573, 290.53, 51.5467),
|
||||
(@PATH, 7, -83.1581, 284.409, 64.0506),
|
||||
(@PATH, 8, -92.9101, 280.978, 73.484),
|
||||
(@PATH, 9, -96.079, 293.202, 74.566),
|
||||
(@PATH, 10, -82.8515, 297.569, 74.9201),
|
||||
(@PATH, 11, -77.4638, 284.989, 27.4832),
|
||||
(@PATH, 12, -81.0183, 279.803, 39.9446),
|
||||
(@PATH, 13, -89.1536, 280.506, 51.3678),
|
||||
(@PATH, 14, -94.1382, 293.611, 27.4832),
|
||||
(@PATH, 15, -88.9669, 297.982, 39.6762),
|
||||
(@PATH, 16, -84.4414, 293.357, 52.098),
|
||||
(@PATH, 17, -86.5034, 284.787, 63.0289),
|
||||
(@PATH, 18, -97.8593, 278.945, 26.2094),
|
||||
(@PATH, 19, -83.9472, 285.452, 63.0513),
|
||||
(@PATH, 20, -93.4871, 275.608, 26.8408);
|
||||
|
||||
-- 3.
|
||||
SET @PATH := (@GUID+2) * 10;
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`) VALUES
|
||||
(@PATH, 1, 84.9162, 251.397, 37.0668),
|
||||
(@PATH, 2, 83.9651, 251.088, 37.0668),
|
||||
(@PATH, 3, 51.4796, 252.183, 37.0668),
|
||||
(@PATH, 4, 33.2474, 282.432, 37.0668),
|
||||
(@PATH, 5, -4.58595, 288.248, 37.0668),
|
||||
(@PATH, 6, -33.1252, 287.388, 33.6501),
|
||||
(@PATH, 7, -63.6614, 287.145, 37.0668),
|
||||
(@PATH, 8, -86.5805, 281.312, 37.0668),
|
||||
(@PATH, 9, -122.867, 287.583, 33.7057),
|
||||
(@PATH, 10, -166.135, 286.002, 37.0668),
|
||||
(@PATH, 11, -197.129, 319.599, 41.5668),
|
||||
(@PATH, 12, -226.722, 321.688, 41.5391),
|
||||
(@PATH, 13, -241.978, 284.026, 37.0668),
|
||||
(@PATH, 14, -241.867, 239.697, 34.7891),
|
||||
(@PATH, 15, -240.409, 205.258, 33.289),
|
||||
(@PATH, 16, -247.921, 181.826, 37.0668),
|
||||
(@PATH, 17, -258.541, 176.818, 28.8724),
|
||||
(@PATH, 18, -254.589, 187.929, 17.5946),
|
||||
(@PATH, 19, -233.282, 183.525, 9.45569),
|
||||
(@PATH, 20, -207.969, 174.104, 9.45569),
|
||||
(@PATH, 21, -174.273, 173.592, 7.17792),
|
||||
(@PATH, 22, -153.428, 164.087, 10.4835),
|
||||
(@PATH, 23, -141.719, 162.854, 10.9835),
|
||||
(@PATH, 24, -125.931, 171.58, 9.15015),
|
||||
(@PATH, 25, -97.7346, 173.65, 7.15014),
|
||||
(@PATH, 26, -82.8989, 173.921, 10.3168),
|
||||
(@PATH, 27, -73.9182, 173.077, 10.3168),
|
||||
(@PATH, 28, -69.9846, 163.459, 10.3168),
|
||||
(@PATH, 29, -70.2812, 156.773, 9.34458),
|
||||
(@PATH, 30, -71.1548, 128.592, 6.7057),
|
||||
(@PATH, 31, -80.0383, 115.576, 7.51125),
|
||||
(@PATH, 32, -82.5443, 99.0856, 7.51125),
|
||||
(@PATH, 33, -74.7056, 88.5289, 7.51125),
|
||||
(@PATH, 34, -60.1037, 87.1475, 7.51125),
|
||||
(@PATH, 35, -43.8567, 99.2091, 7.03903),
|
||||
(@PATH, 36, -21.4774, 99.8071, 7.26125),
|
||||
(@PATH, 37, 7.50968, 100.248, 7.51125),
|
||||
(@PATH, 38, 27.4025, 97.8097, 19.3168),
|
||||
(@PATH, 39, 37.0373, 95.8226, 30.8446);
|
||||
|
||||
-- 4.
|
||||
SET @PATH := (@GUID+3) * 10;
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`) VALUES
|
||||
(@PATH, 1, -119.16, 291.958, 26.7305),
|
||||
(@PATH, 2, -119.16, 291.958, 26.7305),
|
||||
(@PATH, 3, -118.246, 291.551, 26.7198),
|
||||
(@PATH, 4, -116.125, 290.169, 41.5238),
|
||||
(@PATH, 5, -114.528, 275.12, 40.1532),
|
||||
(@PATH, 6, -90.689, 265.24, 41.0333),
|
||||
(@PATH, 7, -62.0894, 286.098, 48.6939),
|
||||
(@PATH, 8, -76.8407, 304.686, 51.9439),
|
||||
(@PATH, 9, -98.7576, 303.572, 46.4161);
|
||||
|
||||
-- 5.
|
||||
SET @PATH := (@GUID+4) * 10;
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`) VALUES
|
||||
(@PATH, 1, -56.8114, 293.477, 27.8298),
|
||||
(@PATH, 2, -58.7468, 295.764, 29.4033),
|
||||
(@PATH, 3, -80.8255, 317.109, 28.9557),
|
||||
(@PATH, 4, -84.6018, 313.357, 62.0829),
|
||||
(@PATH, 5, -100.485, 310.06, 60.6726),
|
||||
(@PATH, 6, -119.643, 290.201, 57.4676),
|
||||
(@PATH, 7, -119.602, 271.028, 61.3137),
|
||||
(@PATH, 8, -99.3827, 260.039, 59.8997),
|
||||
(@PATH, 9, -62.9444, 265.206, 63.3061),
|
||||
(@PATH, 10, -53.9817, 286.896, 63.0482),
|
||||
(@PATH, 11, -66.9341, 300.934, 58.5854),
|
||||
(@PATH, 12, -82.0958, 309.241, 61.3414),
|
||||
(@PATH, 13, -100.199, 310.19, 60.9001),
|
||||
(@PATH, 14, -109.249, 296.2, 58.5368),
|
||||
(@PATH, 15, -112.956, 287.824, 28.945),
|
||||
(@PATH, 16, -131.244, 263.41, 30.9794),
|
||||
(@PATH, 17, -124.562, 262.687, 57.9071),
|
||||
(@PATH, 18, -89.1208, 261.935, 60.3001),
|
||||
(@PATH, 19, -66.6449, 264.328, 64.3038),
|
||||
(@PATH, 20, -56.4546, 270.201, 65.3866),
|
||||
(@PATH, 21, -53.7442, 287.453, 64.0839),
|
||||
(@PATH, 22, -56.4072, 293.549, 29.5758);
|
||||
|
||||
-- 6.
|
||||
SET @PATH := (@GUID+5) * 10;
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`) VALUES
|
||||
(@PATH, 1, -59.42, 289.1, 27.8929),
|
||||
(@PATH, 2, -58.7468, 295.764, 29.4033),
|
||||
(@PATH, 3, -80.8255, 317.109, 28.9557),
|
||||
(@PATH, 4, -84.6018, 313.357, 62.0829),
|
||||
(@PATH, 5, -100.485, 310.06, 60.6726),
|
||||
(@PATH, 6, -119.643, 290.201, 57.4676),
|
||||
(@PATH, 7, -119.602, 271.028, 61.3137),
|
||||
(@PATH, 8, -99.3827, 260.039, 59.8997),
|
||||
(@PATH, 9, -62.9444, 265.206, 63.3061),
|
||||
(@PATH, 10, -53.9817, 286.896, 63.0482),
|
||||
(@PATH, 11, -66.9341, 300.934, 58.5854),
|
||||
(@PATH, 12, -82.0958, 309.241, 61.3414),
|
||||
(@PATH, 13, -100.199, 310.19, 60.9001),
|
||||
(@PATH, 14, -109.249, 296.2, 58.5368),
|
||||
(@PATH, 15, -112.956, 287.824, 28.945),
|
||||
(@PATH, 16, -131.244, 263.41, 30.9794),
|
||||
(@PATH, 17, -124.562, 262.687, 57.9071),
|
||||
(@PATH, 18, -89.1208, 261.935, 60.3001),
|
||||
(@PATH, 19, -66.6449, 264.328, 64.3038),
|
||||
(@PATH, 20, -56.4546, 270.201, 65.3866),
|
||||
(@PATH, 21, -53.7442, 287.453, 64.0839),
|
||||
(@PATH, 22, -56.4072, 293.549, 29.5758);
|
||||
|
||||
-- 7.
|
||||
SET @PATH := (@GUID+6) * 10;
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`) VALUES
|
||||
(@PATH, 1, -52.3969, 293.288, 27.8296),
|
||||
(@PATH, 2, -58.7468, 295.764, 29.4033),
|
||||
(@PATH, 3, -80.8255, 317.109, 28.9557),
|
||||
(@PATH, 4, -84.6018, 313.357, 62.0829),
|
||||
(@PATH, 5, -100.485, 310.06, 60.6726),
|
||||
(@PATH, 6, -119.643, 290.201, 57.4676),
|
||||
(@PATH, 7, -119.602, 271.028, 61.3137),
|
||||
(@PATH, 8, -99.3827, 260.039, 59.8997),
|
||||
(@PATH, 9, -62.9444, 265.206, 63.3061),
|
||||
(@PATH, 10, -53.9817, 286.896, 63.0482),
|
||||
(@PATH, 11, -66.9341, 300.934, 58.5854),
|
||||
(@PATH, 12, -82.0958, 309.241, 61.3414),
|
||||
(@PATH, 13, -100.199, 310.19, 60.9001),
|
||||
(@PATH, 14, -109.249, 296.2, 58.5368),
|
||||
(@PATH, 15, -112.956, 287.824, 28.945),
|
||||
(@PATH, 16, -131.244, 263.41, 30.9794),
|
||||
(@PATH, 17, -124.562, 262.687, 57.9071),
|
||||
(@PATH, 18, -89.1208, 261.935, 60.3001),
|
||||
(@PATH, 19, -66.6449, 264.328, 64.3038),
|
||||
(@PATH, 20, -56.4546, 270.201, 65.3866),
|
||||
(@PATH, 21, -53.7442, 287.453, 64.0839),
|
||||
(@PATH, 22, -56.4072, 293.549, 29.5758);
|
||||
|
||||
-- 8.
|
||||
SET @PATH := (@GUID+7) * 10;
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`) VALUES
|
||||
(@PATH, 1, -62.0894, 286.098, 48.6939),
|
||||
(@PATH, 2, -76.8407, 304.686, 51.9439),
|
||||
(@PATH, 3, -98.7576, 303.572, 46.4161),
|
||||
(@PATH, 4, -119.16, 291.958, 26.7305),
|
||||
(@PATH, 5, -119.16, 291.958, 26.7305),
|
||||
(@PATH, 6, -118.246, 291.551, 26.7198),
|
||||
(@PATH, 7, -116.125, 290.169, 41.5238),
|
||||
(@PATH, 8, -114.528, 275.12, 40.1532),
|
||||
(@PATH, 9, -90.689, 265.24, 41.0333);
|
||||
|
||||
-- 9.
|
||||
SET @PATH := (@GUID+8) * 10;
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`) VALUES
|
||||
(@PATH, 1, -109.229, 288.209, 53.3584),
|
||||
(@PATH, 2, -102.279, 278.86, 56.0703),
|
||||
(@PATH, 3, -88.1313, 272.423, 59.4688),
|
||||
(@PATH, 4, -71.9701, 272.574, 59.1446),
|
||||
(@PATH, 5, -68.3353, 281.741, 61.757),
|
||||
(@PATH, 6, -77.7733, 299.15, 60.5558),
|
||||
(@PATH, 7, -94.7425, 300.49, 56.1018);
|
||||
|
||||
-- 10.
|
||||
SET @PATH := (@GUID+9) * 10;
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`) VALUES
|
||||
(@PATH, 1, -71.9701, 272.574, 59.1446),
|
||||
(@PATH, 2, -68.3353, 281.741, 61.757),
|
||||
(@PATH, 3, -77.7733, 299.15, 60.5558),
|
||||
(@PATH, 4, -94.7425, 300.49, 56.1018),
|
||||
(@PATH, 5, -109.229, 288.209, 53.3584),
|
||||
(@PATH, 6, -102.279, 278.86, 56.0703),
|
||||
(@PATH, 7, -88.1313, 272.423, 59.4688);
|
||||
|
||||
-- 11.
|
||||
SET @PATH := (@GUID+10) * 10;
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`) VALUES
|
||||
(@PATH, 1, -68.3353, 281.741, 61.757),
|
||||
(@PATH, 2, -77.7733, 299.15, 60.5558),
|
||||
(@PATH, 3, -94.7425, 300.49, 56.1018),
|
||||
(@PATH, 4, -109.229, 288.209, 53.3584),
|
||||
(@PATH, 5, -102.279, 278.86, 56.0703),
|
||||
(@PATH, 6, -88.1313, 272.423, 59.4688),
|
||||
(@PATH, 7, -71.9701, 272.574, 59.1446);
|
||||
|
||||
-- 12.
|
||||
SET @PATH := (@GUID+11) * 10;
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`) VALUES
|
||||
(@PATH, 1, -102.279, 278.86, 56.0703),
|
||||
(@PATH, 2, -88.1313, 272.423, 59.4688),
|
||||
(@PATH, 3, -71.9701, 272.574, 59.1446),
|
||||
(@PATH, 4, -68.3353, 281.741, 61.757),
|
||||
(@PATH, 5, -77.7733, 299.15, 60.5558),
|
||||
(@PATH, 6, -94.7425, 300.49, 56.1018),
|
||||
(@PATH, 7, -109.229, 288.209, 53.3584);
|
||||
|
||||
-- 13.
|
||||
SET @PATH := (@GUID+12) * 10;
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`) VALUES
|
||||
(@PATH, 1, -77.7733, 299.15, 60.5558),
|
||||
(@PATH, 2, -94.7425, 300.49, 56.1018),
|
||||
(@PATH, 3, -109.229, 288.209, 53.3584),
|
||||
(@PATH, 4, -102.279, 278.86, 56.0703),
|
||||
(@PATH, 5, -88.1313, 272.423, 59.4688),
|
||||
(@PATH, 6, -71.9701, 272.574, 59.1446),
|
||||
(@PATH, 7, -68.3353, 281.741, 61.757);
|
||||
|
||||
-- 14.
|
||||
SET @PATH := (@GUID+13) * 10;
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`) VALUES
|
||||
(@PATH, 1, -86.6064, 286.122, 27.4832),
|
||||
(@PATH, 2, -84.2669, 286.076, 57.4227),
|
||||
(@PATH, 3, -71.9701, 272.574, 59.1446),
|
||||
(@PATH, 4, -68.3353, 281.741, 61.757),
|
||||
(@PATH, 5, -77.7733, 299.15, 60.5558),
|
||||
(@PATH, 6, -94.7425, 300.49, 56.1018),
|
||||
(@PATH, 7, -109.229, 288.209, 53.3584),
|
||||
(@PATH, 8, -102.279, 278.86, 56.0703),
|
||||
(@PATH, 9, -88.1313, 272.423, 59.4688);
|
||||
|
||||
-- 15.
|
||||
SET @PATH := (@GUID+14) * 10;
|
||||
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`) VALUES
|
||||
(@PATH, 1, 84.9162, 251.397, 37.0668),
|
||||
(@PATH, 2, 83.9651, 251.088, 37.0668),
|
||||
(@PATH, 3, 51.4796, 252.183, 37.0668),
|
||||
(@PATH, 4, 33.2474, 282.432, 37.0668),
|
||||
(@PATH, 5, -4.58595, 288.248, 37.0668),
|
||||
(@PATH, 6, -33.1252, 287.388, 33.6501),
|
||||
(@PATH, 7, -63.6614, 287.145, 37.0668),
|
||||
(@PATH, 8, -77.5616, 286.325, 98.1903);
|
||||
|
||||
UPDATE `waypoint_data` SET `move_type`=1 WHERE `id` IN ((@GUID+0) * 10,(@GUID+1) * 10,(@GUID+2) * 10,(@GUID+3) * 10,(@GUID+4) * 10,(@GUID+5) * 10,(@GUID+6) * 10,(@GUID+7) * 10,(@GUID+8) * 10,(@GUID+9) * 10, (@GUID+10) * 10, (@GUID+11) * 10, (@GUID+12) * 10, (@GUID+13) * 10, (@GUID+14) * 10);
|
||||
@@ -0,0 +1,6 @@
|
||||
--
|
||||
DELETE FROM `creature_addon` WHERE `guid` IN (SELECT `guid` FROM `creature` WHERE `id` IN (22174,22182,22187,22201,22202,22217,22218,22221,22392,22283,22289,22287,22451,22187,22385,22327,22286));
|
||||
DELETE FROM `creature` WHERE `id` IN (22174,22182,22187,22201,22202,22217,22218,22221,22392,22283,22289,22287,22451,22187,22385,22327,22286);
|
||||
|
||||
UPDATE `creature_template` SET `unit_flags`=33555202 WHERE `entry`=22196;
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
--
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 13 AND `SourceEntry` = 29866;
|
||||
@@ -0,0 +1,2 @@
|
||||
--
|
||||
UPDATE `smart_scripts` SET `link`=0 WHERE `entryorguid` IN (3616, 3448) AND `source_type`=0 AND `id`=0;
|
||||
@@ -0,0 +1,28 @@
|
||||
--
|
||||
-- [Q] Birds of a Feather -- http://wotlk.openwow.com/quest=9397
|
||||
UPDATE `creature` SET `MovementType`=0 WHERE `guid`=57793;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=57793;
|
||||
DELETE FROM `waypoint_data` WHERE `id`=577930;
|
||||
-- Falconer Drenna Riverwind SAI
|
||||
SET @ENTRY := 16790;
|
||||
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,1,20,0,100,0,9397,0,0,0,80,@ENTRY*100+00,2,0,0,0,0,1,0,0,0,0,0,0,0,"Falconer Drenna Riverwind - On Quest 'Birds of a Feather' Finished - Run Script"),
|
||||
(@ENTRY,0,1,0,61,0,100,0,0,0,0,0,64,1,0,0,0,0,0,7,0,0,0,0,0,0,0,"Falconer Drenna Riverwind - On Quest 'Birds of a Feather' Finished - Store Targetlist");
|
||||
|
||||
-- Actionlist SAI
|
||||
SET @ENTRY := 1679000;
|
||||
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,59,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"On Script - Set Run Off"),
|
||||
(@ENTRY,9,1,0,0,0,100,0,1000,1000,0,0,69,0,0,0,0,0,0,8,0,0,0,-597.806,4110.68,90.848,2.02116,"On Script - Move To Position"),
|
||||
(@ENTRY,9,2,0,0,0,100,0,2000,2000,0,0,5,16,0,0,0,0,0,1,0,0,0,0,0,0,0,"On Script - Play Emote 16"),
|
||||
(@ENTRY,9,3,0,0,0,100,0,2000,2000,0,0,12,17262,1,20000,0,0,0,8,0,0,0,-597.244,4111.88,90.7789,0.805268,"On Script - Summon Creature 'Captive Female Kaliri'"),
|
||||
(@ENTRY,9,4,0,0,0,100,0,1000,1000,0,0,1,0,0,0,0,0,0,12,1,0,0,0,0,0,0,"On Script - Say Line 0"),
|
||||
(@ENTRY,9,5,0,0,0,100,0,4000,4000,0,0,69,0,0,0,0,0,0,8,0,0,0,-596.347,4108.47,91.0061,5.15176,"On Script - Move To Position"),
|
||||
(@ENTRY,9,6,0,0,0,100,0,2000,2000,0,0,66,0,0,0,0,0,0,8,0,0,0,0,0,0,4.10152,"On Script - Set Orientation 4,10152");
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`=16790;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `Comment`) VALUES
|
||||
(16790, 0, 0, 'Thank you, $N. It looks like they''re going to get along just fine.', 12, 0, 100, 0, 0, 0, 13666, 'Falconer Drenna Riverwind');
|
||||
@@ -0,0 +1,26 @@
|
||||
--
|
||||
-- [Q] Deciphering the Book -- http://wotlk.openwow.com/quest=9557
|
||||
-- Anchorite Paetheus SAI
|
||||
SET @ENTRY := 17424;
|
||||
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,20,0,100,0,9557,0,0,0,80,@ENTRY*100+00,2,0,0,0,0,1,0,0,0,0,0,0,0,"Anchorite Paetheus - On Quest 'Deciphering the Book' Finished - Run Script");
|
||||
|
||||
-- Actionlist SAI
|
||||
SET @ENTRY := 1742400;
|
||||
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,83,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Anchorite Paetheus - On Script - Remove Npc Flag Questgiver"),
|
||||
(@ENTRY,9,1,0,0,0,100,0,1000,1000,0,0,1,0,4000,0,0,0,0,1,0,0,0,0,0,0,0,"Anchorite Paetheus - On Script - Say Line 0"),
|
||||
(@ENTRY,9,2,0,0,0,100,0,4000,4000,0,0,1,1,6000,0,0,0,0,1,0,0,0,0,0,0,0,"Anchorite Paetheus - On Script - Say Line 1"),
|
||||
(@ENTRY,9,3,0,0,0,100,0,6000,6000,0,0,1,2,6000,0,0,0,0,1,0,0,0,0,0,0,0,"Anchorite Paetheus - On Script - Say Line 2"),
|
||||
(@ENTRY,9,4,0,0,0,100,0,6000,6000,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,"Anchorite Paetheus - On Script - Say Line 3"),
|
||||
(@ENTRY,9,5,0,0,0,100,0,0,0,0,0,82,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Anchorite Paetheus - On Script - Add Npc Flag Questgiver");
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`=17424;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `Comment`) VALUES
|
||||
(17424, 0, 0, 'Now, let\'s see....', 12, 0, 100, 69, 0, 0, 14281, 'Anchorite Paetheus'),
|
||||
(17424, 1, 0, 'In the process of translating this, I believe I\'ve learned more about the drunken exploits of a certain \'Andrew Clementine\' than about the journal\'s author.', 12, 0, 100, 1, 0, 0, 14282, 'Anchorite Paetheus'),
|
||||
(17424, 2, 0, 'But, no matter. Mister Clementine\'s... err, \'contribution\' notwithstanding, this seems to be the journal of a man named Nolkai. The entries toward the end describe a brutal battle.', 12, 0, 100, 11, 0, 0, 14283, 'Anchorite Paetheus'),
|
||||
(17424, 3, 0, 'Take a look at this passage...', 12, 0, 100, 0, 0, 0, 14285, 'Anchorite Paetheus');
|
||||
@@ -0,0 +1,26 @@
|
||||
--
|
||||
-- [Q] Into the Churning Gulch -- http://wotlk.openwow.com/quest=10715
|
||||
-- Baron Sablemane SAI
|
||||
SET @ENTRY := 22103;
|
||||
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,20,0,100,0,10715,0,0,0,80,@ENTRY*100+00,2,0,0,0,0,1,0,0,0,0,0,0,0,"Baron Sablemane - On Quest 'Into the Churning Gulch' Finished - Run Script");
|
||||
|
||||
-- Actionlist SAI
|
||||
SET @ENTRY := 2210300;
|
||||
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,83,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Baron Sablemane - On Script - Remove Npc Flag Questgiver"),
|
||||
(@ENTRY,9,1,0,0,0,100,0,1000,1000,0,0,59,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Baron Sablemane - On Script - Set Run Off"),
|
||||
(@ENTRY,9,2,0,0,0,100,0,0,0,0,0,69,0,0,0,0,0,0,8,0,0,0,2915.57,5957.42,3.27419,2.97874,"Baron Sablemane - On Script - Move To Position"),
|
||||
(@ENTRY,9,3,0,0,0,100,0,4000,4000,0,0,17,69,0,0,0,0,0,1,0,0,0,0,0,0,0,"Baron Sablemane - On Script - Set Emote State 69"),
|
||||
(@ENTRY,9,4,0,0,0,100,0,7000,7000,0,0,17,26,0,0,0,0,0,1,0,0,0,0,0,0,0,"Baron Sablemane - On Script - Set Emote State 26"),
|
||||
(@ENTRY,9,5,0,0,0,100,0,2000,2000,0,0,69,0,0,0,0,0,0,8,0,0,0,2919.11,5956.93,3.16149,1.03933,"Baron Sablemane - On Script - Move To Position"),
|
||||
(@ENTRY,9,6,0,0,0,100,0,2000,2000,0,0,69,0,0,0,0,0,0,8,0,0,0,2919.11,5956.93,3.16149,1.58825,"Baron Sablemane - On Script - Move To Position"),
|
||||
(@ENTRY,9,7,0,0,0,100,0,1000,1000,0,0,82,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Baron Sablemane - On Script - Add Npc Flag Questgiver"),
|
||||
(@ENTRY,9,8,0,0,0,100,0,0,0,0,0,1,0,3000,0,0,0,0,1,0,0,0,0,0,0,0,"Baron Sablemane - On Script - Say Line 0");
|
||||
|
||||
DELETE FROM `creature_text` WHERE `CreatureID`=22103;
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `Comment`) VALUES
|
||||
(22103, 0, 0, 'There, it is completed.', 12, 0, 100, 0, 0, 0, 19808, 'Baron Sablemane');
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user