feat(DB): release ACDB 7.0.0 (#12811)

* feat(DB): release ACDB 7.0.0

* cleanup

* we try sourcery
This commit is contained in:
Kitzunu
2022-08-21 12:31:37 +02:00
committed by GitHub
parent 4cd3b9c203
commit 3daa8e2146
739 changed files with 197091 additions and 167873 deletions

View File

@@ -1,29 +0,0 @@
-- DB update 2022_01_23_00 -> 2022_04_24_00
DROP PROCEDURE IF EXISTS `updateDb`;
DELIMITER //
CREATE PROCEDURE updateDb ()
proc:BEGIN DECLARE OK VARCHAR(100) DEFAULT 'FALSE';
SELECT COUNT(*) INTO @COLEXISTS
FROM information_schema.COLUMNS
WHERE TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'version_db_auth' AND COLUMN_NAME = '2022_01_23_00';
IF @COLEXISTS = 0 THEN LEAVE proc; END IF;
START TRANSACTION;
ALTER TABLE version_db_auth CHANGE COLUMN 2022_01_23_00 2022_04_24_00 bit;
SELECT sql_rev INTO OK FROM version_db_auth WHERE sql_rev = '1650806750686513000'; IF OK <> 'FALSE' THEN LEAVE proc; END IF;
--
-- START UPDATING QUERIES
--
INSERT INTO `version_db_auth` (`sql_rev`) VALUES ('1650806750686513000');
UPDATE `updates` SET `state`='ARCHIVED';
--
-- END UPDATING QUERIES
--
UPDATE version_db_auth SET date = '2022_04_24_00' WHERE sql_rev = '1650806750686513000';
COMMIT;
END //
DELIMITER ;
CALL updateDb();
DROP PROCEDURE IF EXISTS `updateDb`;

View File

@@ -1,4 +0,0 @@
-- DB update 2022_04_24_00 -> 2022_04_28_00
--
DROP TABLE IF EXISTS `version_db_auth`;

View File

@@ -0,0 +1,3 @@
--
UPDATE `updates` SET `state`='ARCHIVED';

View File

@@ -1,29 +0,0 @@
-- DB update 2022_04_19_00 -> 2022_04_24_00
DROP PROCEDURE IF EXISTS `updateDb`;
DELIMITER //
CREATE PROCEDURE updateDb ()
proc:BEGIN DECLARE OK VARCHAR(100) DEFAULT 'FALSE';
SELECT COUNT(*) INTO @COLEXISTS
FROM information_schema.COLUMNS
WHERE TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'version_db_characters' AND COLUMN_NAME = '2022_04_19_00';
IF @COLEXISTS = 0 THEN LEAVE proc; END IF;
START TRANSACTION;
ALTER TABLE version_db_characters CHANGE COLUMN 2022_04_19_00 2022_04_24_00 bit;
SELECT sql_rev INTO OK FROM version_db_characters WHERE sql_rev = '1650806739649650000'; IF OK <> 'FALSE' THEN LEAVE proc; END IF;
--
-- START UPDATING QUERIES
--
INSERT INTO `version_db_characters` (`sql_rev`) VALUES ('1650806739649650000');
UPDATE `updates` SET `state`='ARCHIVED';
--
-- END UPDATING QUERIES
--
UPDATE version_db_characters SET date = '2022_04_24_00' WHERE sql_rev = '1650806739649650000';
COMMIT;
END //
DELIMITER ;
CALL updateDb();
DROP PROCEDURE IF EXISTS `updateDb`;

View File

@@ -1,4 +0,0 @@
-- DB update 2022_04_24_00 -> 2022_04_28_00
--
DROP TABLE IF EXISTS `version_db_characters`;

View File

@@ -1,9 +0,0 @@
-- DB update 2022_04_28_00 -> 2022_05_24_00
DROP TABLE IF EXISTS `instance_saved_go_state_data`;
CREATE TABLE IF NOT EXISTS `instance_saved_go_state_data` (
`id` INT UNSIGNED NOT NULL COMMENT 'instance.id',
`guid` INT UNSIGNED NOT NULL COMMENT 'gameobject.guid',
`state` TINYINT UNSIGNED DEFAULT '0' COMMENT 'gameobject.state',
PRIMARY KEY (`id`, `guid`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

View File

@@ -1,3 +0,0 @@
-- DB update 2022_05_24_00 -> 2022_08_02_00
--
UPDATE `characters` SET `taxi_path`=CONCAT('0 ', `taxi_path`) WHERE LENGTH(`taxi_path`) > 0;

View File

@@ -1,6 +0,0 @@
-- DB update 2022_08_02_00 -> 2022_08_07_00
--
ALTER TABLE `character_entry_point`
ADD COLUMN `taxiPath0` INT UNSIGNED DEFAULT 0 NOT NULL AFTER `joinMapId`,
ADD COLUMN `taxiPath1` INT UNSIGNED DEFAULT 0 NOT NULL AFTER `taxiPath0`,
DROP COLUMN `taxiPath`;

View File

@@ -0,0 +1,3 @@
--
UPDATE `updates` SET `state`='ARCHIVED';

View File

@@ -1,30 +0,0 @@
-- DB update 2022_04_24_01 -> 2022_04_24_02
DROP PROCEDURE IF EXISTS `updateDb`;
DELIMITER //
CREATE PROCEDURE updateDb ()
proc:BEGIN DECLARE OK VARCHAR(100) DEFAULT 'FALSE';
SELECT COUNT(*) INTO @COLEXISTS
FROM information_schema.COLUMNS
WHERE TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'version_db_world' AND COLUMN_NAME = '2022_04_24_01';
IF @COLEXISTS = 0 THEN LEAVE proc; END IF;
START TRANSACTION;
ALTER TABLE version_db_world CHANGE COLUMN 2022_04_24_01 2022_04_24_02 bit;
SELECT sql_rev INTO OK FROM version_db_world WHERE sql_rev = '1650806711221200500'; IF OK <> 'FALSE' THEN LEAVE proc; END IF;
--
-- START UPDATING QUERIES
--
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1650806711221200500');
UPDATE `version` SET `db_version`='ACDB 335.7-dev', `cache_id`=7 LIMIT 1;
UPDATE `updates` SET `state`='ARCHIVED';
--
-- END UPDATING QUERIES
--
UPDATE version_db_world SET date = '2022_04_24_02' WHERE sql_rev = '1650806711221200500';
COMMIT;
END //
DELIMITER ;
CALL updateDb();
DROP PROCEDURE IF EXISTS `updateDb`;

View File

@@ -1,31 +0,0 @@
-- DB update 2022_04_24_02 -> 2022_04_24_03
DROP PROCEDURE IF EXISTS `updateDb`;
DELIMITER //
CREATE PROCEDURE updateDb ()
proc:BEGIN DECLARE OK VARCHAR(100) DEFAULT 'FALSE';
SELECT COUNT(*) INTO @COLEXISTS
FROM information_schema.COLUMNS
WHERE TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'version_db_world' AND COLUMN_NAME = '2022_04_24_02';
IF @COLEXISTS = 0 THEN LEAVE proc; END IF;
START TRANSACTION;
ALTER TABLE version_db_world CHANGE COLUMN 2022_04_24_02 2022_04_24_03 bit;
SELECT sql_rev INTO OK FROM version_db_world WHERE sql_rev = '1649654147658907782'; IF OK <> 'FALSE' THEN LEAVE proc; END IF;
--
-- START UPDATING QUERIES
--
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1649654147658907782');
UPDATE `item_template_locale` SET `Name`='Fórmula: encantar capa: tejido de titán',`Description`='Te enseña a encantar de forma permanente una capa para aumentar el índice de defensa 16 p. Requiere un objeto de nivel 60 o superior.' WHERE `ID`=37347 AND `locale` IN ('esES','esMX');
UPDATE `item_template_locale` SET `Description`='Te enseña a encantar de forma permanente una capa para que aumente el sigilo ligeramente y la agilidad 10 p. Requiere un objeto de nivel 60 o superior.' WHERE `ID`=37349 AND `locale` IN ('esES','esMX');
UPDATE `item_template_locale` SET `Description`="Vous apprend à enchanter de manière permanente une cape pour augmenter légèrement le camouflage et ajoute 10 à l'Agilité. Nécessite un objet de niveau 60 ou supérieur." WHERE `ID`=37349 AND `locale`='frFR';
--
-- END UPDATING QUERIES
--
UPDATE version_db_world SET date = '2022_04_24_03' WHERE sql_rev = '1649654147658907782';
COMMIT;
END //
DELIMITER ;
CALL updateDb();
DROP PROCEDURE IF EXISTS `updateDb`;

View File

@@ -1,35 +0,0 @@
-- DB update 2022_04_24_03 -> 2022_04_25_00
DROP PROCEDURE IF EXISTS `updateDb`;
DELIMITER //
CREATE PROCEDURE updateDb ()
proc:BEGIN DECLARE OK VARCHAR(100) DEFAULT 'FALSE';
SELECT COUNT(*) INTO @COLEXISTS
FROM information_schema.COLUMNS
WHERE TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'version_db_world' AND COLUMN_NAME = '2022_04_24_03';
IF @COLEXISTS = 0 THEN LEAVE proc; END IF;
START TRANSACTION;
ALTER TABLE version_db_world CHANGE COLUMN 2022_04_24_03 2022_04_25_00 bit;
SELECT sql_rev INTO OK FROM version_db_world WHERE sql_rev = '1650790172951548882'; IF OK <> 'FALSE' THEN LEAVE proc; END IF;
--
-- START UPDATING QUERIES
--
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1650790172951548882');
DELETE FROM `gameobject_loot_template` WHERE (`Entry` = 13574) AND (`Item` IN (12812));
INSERT INTO `gameobject_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
(13574, 12812, 0, 100, 0, 1, 0, 1, 1, 'Unfired Plate Gauntlets - Unfired Plate Gauntlets');
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=4 AND `SourceGroup`=13574;
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
(4, 13574, 12812, 0, 0, 7, 0, 164, 225, 0, 0, 0, 0, '', 'Unfired Plate Gauntlets while having Blacksmithing skill 225');
--
-- END UPDATING QUERIES
--
UPDATE version_db_world SET date = '2022_04_25_00' WHERE sql_rev = '1650790172951548882';
COMMIT;
END //
DELIMITER ;
CALL updateDb();
DROP PROCEDURE IF EXISTS `updateDb`;

View File

@@ -1,29 +0,0 @@
-- DB update 2022_04_25_00 -> 2022_04_25_01
DROP PROCEDURE IF EXISTS `updateDb`;
DELIMITER //
CREATE PROCEDURE updateDb ()
proc:BEGIN DECLARE OK VARCHAR(100) DEFAULT 'FALSE';
SELECT COUNT(*) INTO @COLEXISTS
FROM information_schema.COLUMNS
WHERE TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'version_db_world' AND COLUMN_NAME = '2022_04_25_00';
IF @COLEXISTS = 0 THEN LEAVE proc; END IF;
START TRANSACTION;
ALTER TABLE version_db_world CHANGE COLUMN 2022_04_25_00 2022_04_25_01 bit;
SELECT sql_rev INTO OK FROM version_db_world WHERE sql_rev = '1650793587179586100'; IF OK <> 'FALSE' THEN LEAVE proc; END IF;
--
-- START UPDATING QUERIES
--
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1650793587179586100');
UPDATE `creature_formations` SET `groupAI`=`groupAI`|0x8 WHERE `leaderGuid` IN (84634,84648);
--
-- END UPDATING QUERIES
--
UPDATE version_db_world SET date = '2022_04_25_01' WHERE sql_rev = '1650793587179586100';
COMMIT;
END //
DELIMITER ;
CALL updateDb();
DROP PROCEDURE IF EXISTS `updateDb`;

View File

@@ -1,73 +0,0 @@
-- DB update 2022_04_25_01 -> 2022_04_25_02
DROP PROCEDURE IF EXISTS `updateDb`;
DELIMITER //
CREATE PROCEDURE updateDb ()
proc:BEGIN DECLARE OK VARCHAR(100) DEFAULT 'FALSE';
SELECT COUNT(*) INTO @COLEXISTS
FROM information_schema.COLUMNS
WHERE TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'version_db_world' AND COLUMN_NAME = '2022_04_25_01';
IF @COLEXISTS = 0 THEN LEAVE proc; END IF;
START TRANSACTION;
ALTER TABLE version_db_world CHANGE COLUMN 2022_04_25_01 2022_04_25_02 bit;
SELECT sql_rev INTO OK FROM version_db_world WHERE sql_rev = '1650555535836713900'; IF OK <> 'FALSE' THEN LEAVE proc; END IF;
--
-- START UPDATING QUERIES
--
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1650555535836713900');
DELETE FROM `player_loot_template` WHERE (`Entry` IN (1, 0)) AND (`Item` IN (43323, 43314, 44809, 43324, 44808, 43322));
INSERT INTO `player_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
(0, 43323, 0, 100, 1, 1, 0, 5, 5, 'Wintergrasp - Alliance - Quiver of Dragonbone Arrows'),
(1, 43323, 0, 100, 1, 1, 0, 5, 5, 'Wintergrasp - Horde - Quiver of Dragonbone Arrows'),
(0, 43314, 0, 100, 1, 1, 0, 5, 5, 'Wintergrasp - Alliance - Eternal Ember'),
(1, 43314, 0, 100, 1, 1, 0, 5, 5, 'Wintergrasp - Horde - Eternal Ember'),
(0, 44809, 0, 100, 1, 1, 0, 5, 5, 'Wintergrasp - Alliance - Horde Herb Pouch'),
(1, 43324, 0, 100, 1, 1, 0, 5, 5, 'Wintergrasp - Horde - Alliance Herb Pouch'),
(0, 44808, 0, 100, 1, 1, 0, 5, 5, 'Wintergrasp - Alliance - Imbued Horde Armor'),
(1, 43322, 0, 100, 1, 1, 0, 5, 5, 'Wintergrasp - Horde - Enchanted Alliance Breastplates');
DELETE FROM `conditions` WHERE (`SourceTypeOrReferenceId` = 28) AND (`SourceGroup` IN (0, 1)) AND (`SourceEntry` IN (43323, 43314, 44809, 43324, 44808, 43322));
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
(28, 0, 43323, 0, 0, 23, 0, 4587, 0, 0, 0, 0, 0, '', 'Alliance - Quiver of Dragonbone Arrows - drop in The Forest of Shadows'),
(28, 0, 43323, 0, 0, 47, 0, 13154, 8, 0, 0, 0, 0, '', 'Alliance - Quiver of Dragonbone Arrows - drop while quest 13154 is in progress'),
(28, 0, 43323, 0, 1, 23, 0, 4587, 0, 0, 0, 0, 0, '', 'Alliance - Quiver of Dragonbone Arrows - drop in The Forest of Shadows'),
(28, 0, 43323, 0, 1, 47, 0, 13196, 8, 0, 0, 0, 0, '', 'Alliance - Quiver of Dragonbone Arrows - drop while quest 13196 is in progress'),
(28, 1, 43323, 0, 0, 23, 0, 4587, 0, 0, 0, 0, 0, '', 'Horde - Quiver of Dragonbone Arrows - drop in The Forest of Shadows'),
(28, 1, 43323, 0, 0, 47, 0, 13193, 8, 0, 0, 0, 0, '', 'Horde - Quiver of Dragonbone Arrows - drop while quest 13193 is in progress'),
(28, 1, 43323, 0, 1, 23, 0, 4587, 0, 0, 0, 0, 0, '', 'Horde - Quiver of Dragonbone Arrows - drop in The Forest of Shadows'),
(28, 1, 43323, 0, 1, 47, 0, 13199, 8, 0, 0, 0, 0, '', 'Horde - Quiver of Dragonbone Arrows - drop while quest 13199 is in progress'),
(28, 0, 43314, 0, 0, 23, 0, 4584, 0, 0, 0, 0, 0, '', 'Alliance - Eternal Ember - drop in The Cauldron of Flames'),
(28, 0, 43314, 0, 0, 47, 0, 13197, 8, 0, 0, 0, 0, '', 'Alliance - Eternal Ember - drop while quest 13197 is in progress'),
(28, 0, 43314, 0, 1, 23, 0, 4584, 0, 0, 0, 0, 0, '', 'Alliance - Eternal Ember - drop in The Cauldron of Flames'),
(28, 0, 43314, 0, 1, 47, 0, 236, 8, 0, 0, 0, 0, '', 'Alliance - Eternal Ember - drop while quest 236 is in progress'),
(28, 1, 43314, 0, 0, 23, 0, 4584, 0, 0, 0, 0, 0, '', 'Horde - Eternal Ember - drop in The Cauldron of Flames'),
(28, 1, 43314, 0, 0, 47, 0, 13191, 8, 0, 0, 0, 0, '', 'Horde - Eternal Ember - drop while quest 13191 is in progress'),
(28, 1, 43314, 0, 1, 23, 0, 4584, 0, 0, 0, 0, 0, '', 'Horde - Eternal Ember - drop in The Cauldron of Flames'),
(28, 1, 43314, 0, 1, 47, 0, 13200, 8, 0, 0, 0, 0, '', 'Horde - Eternal Ember - drop while quest 13200 is in progress'),
(28, 0, 44809, 0, 0, 23, 0, 4590, 0, 0, 0, 0, 0, '', 'Alliance - Horde Herb Pouch - drop in The Steppe of Life'),
(28, 0, 44809, 0, 0, 47, 0, 13156, 8, 0, 0, 0, 0, '', 'Alliance - Horde Herb Pouch - drop while quest 13156 is in progress'),
(28, 0, 44809, 0, 1, 23, 0, 4590, 0, 0, 0, 0, 0, '', 'Alliance - Horde Herb Pouch - drop in The Steppe of Life'),
(28, 0, 44809, 0, 1, 47, 0, 13195, 8, 0, 0, 0, 0, '', 'Alliance - Horde Herb Pouch - drop while quest 13195 is in progress'),
(28, 1, 43324, 0, 0, 23, 0, 4590, 0, 0, 0, 0, 0, '', 'Horde - Alliance Herb Pouch - drop in The Steppe of Life'),
(28, 1, 43324, 0, 0, 47, 0, 13194, 8, 0, 0, 0, 0, '', 'Horde - Alliance Herb Pouch - drop while quest 13194 is in progress'),
(28, 1, 43324, 0, 1, 23, 0, 4590, 0, 0, 0, 0, 0, '', 'Horde - Alliance Herb Pouch - drop in The Steppe of Life'),
(28, 1, 43324, 0, 1, 47, 0, 13201, 8, 0, 0, 0, 0, '', 'Horde - Alliance Herb Pouch - drop while quest 13201 is in progress'),
(28, 0, 44808, 0, 0, 23, 0, 4585, 0, 0, 0, 0, 0, '', 'Alliance - Imbued Horde Armor - drop in Glacial Falls'),
(28, 0, 44808, 0, 0, 47, 0, 13198, 8, 0, 0, 0, 0, '', 'Alliance - Imbued Horde Armor - drop while quest 13198 is in progress'),
(28, 0, 44808, 0, 1, 23, 0, 4585, 0, 0, 0, 0, 0, '', 'Alliance - Imbued Horde Armor - drop in Glacial Falls'),
(28, 0, 44808, 0, 1, 47, 0, 13153, 8, 0, 0, 0, 0, '', 'Alliance - Imbued Horde Armor - drop while quest 13153 is in progress'),
(28, 1, 43322, 0, 0, 23, 0, 4585, 0, 0, 0, 0, 0, '', 'Horde - Enchanted Alliance Breastplates - drop in Glacial Falls'),
(28, 1, 43322, 0, 0, 47, 0, 13192, 8, 0, 0, 0, 0, '', 'Horde - Enchanted Alliance Breastplates - drop while quest 13192 is in progress'),
(28, 1, 43322, 0, 1, 23, 0, 4585, 0, 0, 0, 0, 0, '', 'Horde - Enchanted Alliance Breastplates - drop in Glacial Falls'),
(28, 1, 43322, 0, 1, 47, 0, 13202, 8, 0, 0, 0, 0, '', 'Horde - Enchanted Alliance Breastplates - drop while quest 13202 is in progress');
--
-- END UPDATING QUERIES
--
UPDATE version_db_world SET date = '2022_04_25_02' WHERE sql_rev = '1650555535836713900';
COMMIT;
END //
DELIMITER ;
CALL updateDb();
DROP PROCEDURE IF EXISTS `updateDb`;

View File

@@ -1,29 +0,0 @@
-- DB update 2022_04_25_02 -> 2022_04_25_03
DROP PROCEDURE IF EXISTS `updateDb`;
DELIMITER //
CREATE PROCEDURE updateDb ()
proc:BEGIN DECLARE OK VARCHAR(100) DEFAULT 'FALSE';
SELECT COUNT(*) INTO @COLEXISTS
FROM information_schema.COLUMNS
WHERE TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'version_db_world' AND COLUMN_NAME = '2022_04_25_02';
IF @COLEXISTS = 0 THEN LEAVE proc; END IF;
START TRANSACTION;
ALTER TABLE version_db_world CHANGE COLUMN 2022_04_25_02 2022_04_25_03 bit;
SELECT sql_rev INTO OK FROM version_db_world WHERE sql_rev = '1650789793340379741'; IF OK <> 'FALSE' THEN LEAVE proc; END IF;
--
-- START UPDATING QUERIES
--
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1650789793340379741');
UPDATE `item_template` SET `spellppmRate_1` = 2 WHERE `entry` = 17076;
--
-- END UPDATING QUERIES
--
UPDATE version_db_world SET date = '2022_04_25_03' WHERE sql_rev = '1650789793340379741';
COMMIT;
END //
DELIMITER ;
CALL updateDb();
DROP PROCEDURE IF EXISTS `updateDb`;

View File

@@ -1,4 +0,0 @@
-- DB update 2022_04_25_03 -> 2022_04_28_00
--
DROP TABLE IF EXISTS `version_db_world`;

View File

@@ -1,6 +0,0 @@
-- DB update 2022_04_28_00 -> 2022_05_01_00
UPDATE `creature_template` SET `AIName` = 'SmartAI' WHERE `entry` = 14347;
DELETE FROM `smart_scripts` WHERE (`entryorguid` = 14347) AND (`source_type` = 0) AND (`id` IN (2));
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(14347, 0, 2, 0, 20, 0, 100, 0, 7786, 0, 0, 0, 0, 12, 14435, 6, 3600000, 0, 0, 0, 8, 0, 0, 0, 0, -6241.77, 1717.14, 4.25042, 0.680879, 'Highlord Demitrian - On Quest Thunderaan the Windseeker Finished - Summon Creature Prince Thunderaan at XYZO');

View File

@@ -1,3 +0,0 @@
-- DB update 2022_05_01_00 -> 2022_05_01_01
--
UPDATE `creature_template` SET `flags_extra`=`flags_extra`|0x20000000 WHERE `entry`=8236;

View File

@@ -1,9 +0,0 @@
-- DB update 2022_05_01_01 -> 2022_05_03_00
-- Fix for the levitate issue
UPDATE `creature_template` SET `speed_walk` = 1, `speed_run` = 2.14286, `flags_extra` = `flags_extra`|512 WHERE `entry` = 14517;
UPDATE `creature_template_movement` SET `Flight` = 0 WHERE `CreatureId` = 14517;
-- Update Emotes
DELETE FROM `creature_text` WHERE `CreatureID` = 14517 AND `GroupID` IN (3,4);
INSERT INTO `creature_text` (`CreatureID`,`GroupID`,`ID`,`Text`,`Type`,`Language`,`Probability`,`Emote`,`Duration`,`Sound`,`BroadcastTextId`,`TextRange`,`comment`) VALUES
(14517,3,0,'%s emits a deafening shriek!',16,0,100,0,0,0,10370,0,'High Priestess Jeklik - EMOTE_SUMMON_BATS'),
(14517,4,0,'%s begins to cast a Great Heal!',16,0,100,0,0,0,10494,0,'High Priestess Jeklik - EMOTE_GREAT_HEAL');

View File

@@ -1,3 +0,0 @@
-- DB update 2022_05_03_00 -> 2022_05_03_01
--
UPDATE `gameobject_template_addon` SET `flags` = `flags` |16 WHERE `entry` = 179116;

View File

@@ -1,5 +0,0 @@
-- DB update 2022_05_03_01 -> 2022_05_03_02
--
DELETE FROM `areatrigger_scripts` WHERE `entry` = 4052 AND `ScriptName` = 'at_battleguard_sartura';
INSERT INTO `areatrigger_scripts` (`entry`, `ScriptName`) VALUES
(4052, 'at_battleguard_sartura');

View File

@@ -1,5 +0,0 @@
-- DB update 2022_05_03_02 -> 2022_05_04_00
UPDATE `creature_template` SET `faction` = 1216 WHERE (`entry` = 13086);
UPDATE `creature_template` SET `faction` = 1216 WHERE (`entry` = 22670);
UPDATE `creature_template` SET `faction` = 1216 WHERE (`entry` = 31918);
UPDATE `creature_template` SET `faction` = 1216 WHERE (`entry` = 37234);

View File

@@ -1,114 +0,0 @@
-- DB update 2022_05_04_00 -> 2022_05_04_01
-- Fix scripted npcs at Falconwing Square
-- Novice Ranger scripting missing
-- Wretched Captive scripting incorrect
-- Sergeant Kan'ren scripting incorrect
-- Sleyin scripting incorrect
-- Kyrenna scripting incorrect
-- Novice Ranger SAI
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=16923;
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (16923) AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_param4`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(16923,0,0,0,1,0,100,0,215000,225000,215000,225000,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Novice Ranger - OOC - Say text 0');
-- Wretched Captive SAI
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=16916;
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (16916) AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_param4`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(16916,0,0,0,1,0,100,0,18000,18000,18000,18000,0,5,20,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Wretched Captive - OOC - Play Emote 20 "Beg"');
-- Fix Wretched Captive text
UPDATE `creature_text` SET `Emote`=18, `Duration`=0 WHERE `CreatureID`=16916;
-- Sergeant Kan'ren SAI
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=16924;
DELETE FROM `smart_scripts` WHERE `entryorguid`=16924 AND `source_type`=0;
DELETE FROM `smart_scripts` WHERE `entryorguid`=169240 AND `source_type`=9;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_param4`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(16924,0,0,0,1,0,100,0,255000,255000,255000,255000,0,80,169240,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Sergeant Kan''ren - OOC - Run script'),
(169240,9,0,0,0,0,100,0,0,0,0,0,0,53,0,16924,0,0,0,0,1,0,0,0,0,0,0,0,0,'Sergeant Kan''ren - Script - Load path'),
(169240,9,1,0,0,0,100,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Sergeant Kan''ren - Script - Say text 0'),
(169240,9,2,0,0,0,100,0,4000,4000,0,0,0,66,0,0,0,0,0,0,8,0,0,0,0,0,0,0,1.04719758,'Sergeant Kan''ren - Script - Set Orientation'),
(169240,9,3,0,0,0,100,0,0,0,0,0,0,1,0,0,0,0,0,0,19,16916,10,0,0,0,0,0,0,'Sergeant Kan''ren - Script - Wretched Captive Say text 0'),
(169240,9,4,0,0,0,100,0,6000,6000,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Sergeant Kan''ren - Script - Say text 1');
-- SAI Path for Kan'ren
DELETE FROM `waypoints` WHERE `entry`=16924;
INSERT INTO `waypoints` (`entry`,`pointid`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`point_comment`) VALUES
(16924,1,9513.46,-6840.1626,16.743443,0,0, 'Kan''ren'),
(16924,2,9514.46,-6839.1626,16.743443,0,0, 'Kan''ren'),
(16924,3,9514.46,-6837.6626,16.743443,0,0, 'Kan''ren'),
(16924,4,9513.21,-6836.9126,16.743443,0,0, 'Kan''ren'),
(16924,5,9512.21,-6837.6626,16.743443,0,0, 'Kan''ren'),
(16924,6,9511.96,-6839.1626,16.743443,0,0, 'Kan''ren'),
(16924,7,9512.21,-6840.1626,16.493443,0,0, 'Kan''ren');
-- Fix Kan'ren sheath
UPDATE `creature_addon` SET `bytes2`=1 WHERE `guid`=58702;
-- Fix Kan'ren text
UPDATE `creature_text` SET `Emote`=0, `Duration`=0 WHERE `CreatureID`=16924;
-- Sleyin SAI
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=18926;
DELETE FROM `smart_scripts` WHERE `entryorguid`=18926 AND `source_type`=0;
DELETE FROM `smart_scripts` WHERE `entryorguid`=189260 AND `source_type`=9;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_param4`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(18926,0,0,0,1,0,100,0,102000,102000,204000,204000,0,80,189260,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Sleyin - OOC - Run script'),
(189260,9,0,0,0,0,100,0,0,0,0,0,0,59,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Sleyin - Script - Set run off'),
(189260,9,1,0,0,0,100,0,0,0,0,0,0,69,0,0,0,0,0,0,8,0,0,0,0,9486.051,-6807.0537,16.575666,0,'Sleyin - Script - Move to'),
(189260,9,2,0,0,0,100,0,2000,2000,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Sleyin - Script - Say text 0'),
(189260,9,3,0,0,0,100,0,6000,6000,0,0,0,69,0,0,0,0,0,0,8,0,0,0,0,9482.344,-6805.512,16.575666,0,'Sleyin - Script - Move to'),
(189260,9,4,0,0,0,100,0,2000,2000,0,0,0,66,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0.7504915595,'Sleyin - Script - Set Orientation'),
(189260,9,5,0,0,0,100,0,2000,2000,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Sleyin - Script - Say text 1'),
(189260,9,6,0,0,0,100,0,92000,92000,0,0,0,69,0,0,0,0,0,0,8,0,0,0,0,9486.051,-6807.0537,16.575666,0,'Sleyin - Script - Move to'),
(189260,9,7,0,0,0,100,0,2000,2000,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Sleyin - Script - Say text 0'),
(189260,9,8,0,0,0,100,0,6000,6000,0,0,0,69,0,0,0,0,0,0,8,0,0,0,0,9482.344,-6805.512,16.575666,0,'Sleyin - Script - Move to'),
(189260,9,9,0,0,0,100,0,2000,2000,0,0,0,66,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0.7504915595,'Sleyin - Script - Set Orientation'),
(189260,9,10,0,0,0,100,0,2000,2000,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Sleyin - Script - Say text 1');
-- Fix Sleyin text
UPDATE `creature_text` SET `Emote`=22 WHERE `CreatureID`=18926 AND `GroupID`=0;
UPDATE `creature_text` SET `Emote`=274 WHERE `CreatureID`=18926 AND `GroupID`=2;
-- Remove Sleyin path
UPDATE `creature` SET `MovementType`=0 WHERE `guid` IN (67954);
UPDATE `creature_addon` SET `path_id`=0,`bytes2`=1 WHERE `guid` IN (67954);
DELETE FROM `waypoint_data` WHERE `id`=679540;
DELETE FROM `waypoint_scripts` WHERE `id`=160;
-- Kyrenna SAI
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=18929;
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (18929) AND `source_type`=0;
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (189290) AND `source_type`=9;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_param4`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(18929,0,0,0,1,0,100,0,60000,60000,558000,558000,0,80,189290,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Kyrenna - OOC - Run script'),
(189290,9,0,0,0,0,100,0,0,0,0,0,0,53,0,189290,0,0,0,0,1,0,0,0,0,0,0,0,0,'Kyrenna - Script - Move path'),
(189290,9,1,0,0,0,100,0,7000,7000,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Kyrenna - Script - Say text 0'),
(189290,9,2,0,0,0,100,0,8000,8000,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Kyrenna - Script - Say text 1'),
(189290,9,3,0,0,0,100,0,8000,8000,0,0,0,53,0,189291,0,0,0,0,1,0,0,0,0,0,0,0,0,'Kyrenna - Script - Move path'),
(189290,9,4,0,0,0,100,0,6000,6000,0,0,0,66,0,0,0,0,0,0,8,0,0,0,0,0,0,0,2.51327419,'Kyrenna - Script - Set Orientation'),
(189290,9,5,0,0,0,100,0,204000,204000,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Kyrenna - Script - Say text 2'),
(189290,9,6,0,0,0,100,0,7000,7000,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Kyrenna - Script - Say text 3'),
(189290,9,7,0,0,0,100,0,201000,201000,0,0,0,1,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Kyrenna - Script - Say text 4'),
(189290,9,8,0,0,0,100,0,7000,7000,0,0,0,1,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Kyrenna - Script - Say text 5');
-- SAI Path for Kyrenna
DELETE FROM `waypoints` WHERE `entry` IN (189290,189291);
INSERT INTO `waypoints` (`entry`,`pointid`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`point_comment`) VALUES
(189290,1,9548.289,-6828.249,16.763393,0,0, 'Kyrenna'),
(189290,2,9551.43,-6836.5903,16.611946,0,0, 'Kyrenna'),
(189291,1,9548.289,-6828.249,16.763393,0,0, 'Kyrenna'),
(189291,2,9552.018,-6825.113,16.513393,0,0, 'Kyrenna');
-- Fix text for Kyrenna
DELETE FROM `creature_text` WHERE `CreatureID`=18929;
INSERT INTO `creature_text` (`CreatureID`,`GroupID`,`ID`,`Text`,`Type`,`Language`,`Probability`,`Emote`,`Duration`,`Sound`,`BroadcastTextId`,`TextRange`,`comment`) VALUES
(18929,0,0,'If only I had some wine to go with my cheese...',12,0,100,18,0,0,16093,0,'Kyrenna'),
(18929,1,0,'The hours would pass so much more sweetly.',12,0,100,0,0,0,16096,0,'Kyrenna'),
(18929,2,0,'Ooh what a dreadful job!',12,0,100,1,0,0,16094,0,'Kyrenna'),
(18929,3,0,'All day, surrounded by the stench of bad feet.',12,0,100,0,0,0,16095,0,'Kyrenna'),
(18929,4,0,'Why couldn''t mother have chosen something else to dedicate herself to?',12,0,100,1,0,0,16097,0,'Kyrenna'),
(18929,5,0,'Cakes, pastries, even bread - anything but cheese!',12,0,100,0,0,0,16098,0,'Kyrenna');

View File

@@ -1,7 +0,0 @@
-- DB update 2022_05_04_01 -> 2022_05_05_00
UPDATE `quest_greeting` SET `Greeting`='Hello, citizen. You look like a $g man : woman; with a purpose - do you have business with the Stormwind Army?' WHERE `ID`=261;
UPDATE `quest_greeting` SET `Greeting`='Hello, hello! Welcome to my kitchen, $g sir : m''lady;! This is where all of the Scarlet Raven Tavern''s finest delicacies are made. Ah, just smell the wonderful aroma!' WHERE `ID`=272;
UPDATE `quest_greeting` SET `Greeting`='Hey $Gbuddy:ma''am;, do you think you could give me a hand with something? I''m really IN dire straits here...' WHERE `ID`=415;
UPDATE `quest_greeting` SET `Greeting`='You watch where you step around here, $Glad:lass;. You might not be a part of our outfit, but that doesn''t mean I won''t take a cane to you if you fall out of line!' WHERE `ID`=733;
UPDATE `quest_greeting` SET `Greeting`='Greetings, $G lad : lass;. I''m Grelin Whitebeard. I''m here to examine the threat posed by the growing numbers of trolls in Coldridge Valley. What have I found? It''s a bit troubling...' WHERE `ID`=786;
UPDATE `quest_greeting` SET `Greeting`='Good day, $glad:lass;! Perhaps you could help me with some things that need to be taken care of.' WHERE `ID`=3663;

View File

@@ -1,12 +0,0 @@
-- DB update 2022_05_05_00 -> 2022_05_05_01
-- Fix gossip for Captured Arko'narin
UPDATE `creature_template` SET `gossip_menu_id`=3129 WHERE `entry`=11016;
DELETE FROM `gossip_menu` WHERE `MenuID`=30229;
DELETE FROM `gossip_menu` WHERE `MenuID`=3129 AND `TextID`=4114;
INSERT INTO `gossip_menu` (`MenuID`,`TextID`) VALUES (3129,4114);
-- Conditions for gosip text
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=14 AND `SourceGroup`=3129;
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
(14,3129,4113,0,0,8,0,5202,0,0,0,0,0,'','Captured Arko''narin - Show Gossip Menu Text 4113 if Quest 5202 is rewarded'),
(14,3129,4114,0,0,8,0,5203,0,0,0,0,0,'','Captured Arko''narin - Show Gossip Menu Text 4114 if Quest 5203 is rewarded');

View File

@@ -1,40 +0,0 @@
-- DB update 2022_05_05_01 -> 2022_05_06_00
-- Gravis Slipknot
-- Waypoint and equipment taken from cmangos/tbc-db@ea2fab0 cmangos/tbc-db@381c515
UPDATE `creature_model_info` SET `DisplayID_Other_Gender` = 0 WHERE `DisplayID` = 2582;
UPDATE `creature_equip_template` SET `ItemID1` = 4560, `VerifiedBuild` = 0 WHERE `CreatureID` = 14221 AND `ID` = 1;
UPDATE `creature` SET `position_x` = 717.6572, `position_y` = -846.4034, `position_z` = 160.7536, `orientation` = 3.351032 WHERE `id1` = 14221;
UPDATE `creature_template` SET `speed_walk` = 1 WHERE (`entry` = 14221);
SET @NPC := 86756;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `wander_distance`= 0, `MovementType`= 2 WHERE `guid`=@NPC;
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
INSERT INTO `creature_addon` (`guid`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES (@NPC,@PATH,0,0,1,0, '');
DELETE FROM `waypoint_data` WHERE `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
(@PATH,1,710.176,-847.23,158.978,0,0),
(@PATH,2,700.134,-853.063,158.516,0,0),
(@PATH,3,684.42,-847.68,158.498,0,0),
(@PATH,4,666.937,-858.739,158.498,0,0),
(@PATH,5,663.885,-866.644,158.499,0,0),
(@PATH,6,662.637,-879.389,158.291,0,0),
(@PATH,7,659.842,-884.845,158.617,0,0),
(@PATH,8,666.729,-899.79,164.624,0,0),
(@PATH,9,669.022,-904.201,164.414,0,0),
(@PATH,10,667.229,-921.961,164.414,0,0),
(@PATH,11,666.778,-939.546,164.85,0,0),
(@PATH,12,673.587,-950.274,164.35,0,0),
(@PATH,13,684.347,-959.261,164.35,0,0),
(@PATH,14,698.708,-966.321,164.653,0,0),
(@PATH,15,708.321,-976.576,165.562,0,30000),
(@PATH,16,700.121,-957.096,164.68,0,0),
(@PATH,17,715.224,-933.369,164.344,0,0),
(@PATH,18,716.543,-899.917,166.366,0,0),
(@PATH,19,715.204,-866.595,161.66,0,0),
(@PATH,20,717.657,-846.403,160.754,0,0),
(@PATH,21,717.657,-846.403,160.754,3.35103,30000);

View File

@@ -1,6 +0,0 @@
-- DB update 2022_05_06_00 -> 2022_05_06_01
--
-- Remove the item Cache of Zanzil's Altered Mixture (8073) from Grand Foreman Puzik Gallywix (7288)
DELETE FROM `creature_loot_template` WHERE `Entry` = 7288 AND `Item` = 8073;

View File

@@ -1,36 +0,0 @@
-- DB update 2022_05_06_01 -> 2022_05_06_02
-- Quest 1452 "Rhapsody's Kalimdor Kocktail" turn in script
-- Rhapsody Shindigger SAI
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=5634;
DELETE FROM `smart_scripts` WHERE `entryorguid`=5634 AND `source_type`=0;
DELETE FROM `smart_scripts` WHERE `entryorguid`=56340 AND `source_type`=9;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_param4`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(5634,0,0,0,1,0,100,0,180000,210000,180000,210000,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Rhapsody Shindigger - OOC - Say text 3'),
(5634,0,1,0,1,0,100,0,160000,220000,160000,220000,0,5,92,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Rhapsody Shindigger - OOC - Emote Drink'),
(5634,0,2,0,20,0,100,0,1452,0,0,0,0,80,56340,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Rhapsody Shindigger - On Quest Reward - Run Script'),
(56340,9,0,0,0,0,100,0,0,0,0,0,0,83,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Rhapsody Shindigger - Script - Remove questgiver flag'),
(56340,9,1,0,0,0,100,0,1000,1000,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Rhapsody Shindigger - Script - Say text 0'),
(56340,9,2,0,0,0,100,0,0,0,0,0,0,59,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Rhapsody Shindigger - Script - Set run off'),
(56340,9,3,0,0,0,100,0,4000,4000,0,0,0,69,0,0,0,0,0,0,8,0,0,0,0,219.01102,-2614.0579,160.5317,0,'Rhapsody Shindigger - Script - Move to'),
(56340,9,4,0,0,0,100,0,2000,2000,0,0,0,17,133,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Rhapsody Shindigger - Script - Set emotestate'),
(56340,9,5,0,0,0,100,0,6000,6000,0,0,0,17,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Rhapsody Shindigger - Script - Set emotestate'),
(56340,9,6,0,0,0,100,0,0,0,0,0,0,69,0,0,0,0,0,0,8,0,0,0,0,221.79509,-2613.766,160.41942,0,'Rhapsody Shindigger - Script - Move to'),
(56340,9,7,0,0,0,100,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Rhapsody Shindigger - Script - Say text 1'),
(56340,9,8,0,0,0,100,0,2000,2000,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Rhapsody Shindigger - Script - Say text 2'),
(56340,9,9,0,0,0,100,0,4000,4000,0,0,0,69,0,0,0,0,0,0,8,0,0,0,0,223.71512,-2609.9314,160.19234,0,'Rhapsody Shindigger - Script - Move to'),
(56340,9,10,0,0,0,100,0,0,0,0,0,0,17,93,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Rhapsody Shindigger - Script - Set emotestate'),
(56340,9,11,0,0,0,100,0,3000,3000,0,0,0,17,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Rhapsody Shindigger - Script - Set emotestate'),
(56340,9,12,0,0,0,100,0,0,0,0,0,0,90,7,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Rhapsody Shindigger - Script - Set standstate'),
(56340,9,13,0,0,0,100,0,0,0,0,0,0,1,4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Rhapsody Shindigger - Script - Say text 4'),
(56340,9,14,0,0,0,100,0,5000,5000,0,0,0,17,93,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Rhapsody Shindigger - Script - Set emotestate'),
(56340,9,15,0,0,0,100,0,0,0,0,0,0,91,7,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Rhapsody Shindigger - Script - Set standstate'),
(56340,9,16,0,0,0,100,0,1000,1000,0,0,0,69,0,0,0,0,0,0,8,0,0,0,0,219.59831,-2612.208,160.44882,0,'Rhapsody Shindigger - Script - Move to'),
(56340,9,17,0,0,0,100,0,4000,4000,0,0,0,66,0,0,0,0,0,0,8,0,0,0,0,0,0,0,1.151917,'Rhapsody Shindigger - Script - Set Orientation'),
(56340,9,18,0,0,0,100,0,1000,1000,0,0,0,1,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Rhapsody Shindigger - Script - Say text 5'),
(56340,9,19,0,0,0,100,0,3000,3000,0,0,0,82,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Rhapsody Shindigger - Script - Add questgiver flag'),
(56340,9,20,0,0,0,100,0,1000,1000,0,0,0,1,6,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Rhapsody Shindigger - Script - Say text 6');
-- Fix emotes in Rhapsody Shindigger creature text
UPDATE `creature_text` SET `Emote`=0 WHERE `CreatureID`=5634 AND `GroupID` IN (0,3,4,6);
UPDATE `creature_text` SET `Emote`=92 WHERE `CreatureID`=5634 AND `GroupID` IN (5);

View File

@@ -1,3 +0,0 @@
-- DB update 2022_05_06_02 -> 2022_05_06_03
-- Fix Valkyrion Harpoon Gun SAI to set rooted on passenger exit
UPDATE `smart_scripts` SET `event_type`=28, `event_flags`=0, `comment`='Valkyrion Harpoon Gun - On Passenger exit - Set Rooted On' WHERE `entryorguid`=30066;

View File

@@ -1,3 +0,0 @@
-- DB update 2022_05_06_03 -> 2022_05_07_00
--
UPDATE `spell_area` SET `quest_start`=12924 WHERE `spell`=55858;

View File

@@ -1,4 +0,0 @@
-- DB update 2022_05_07_00 -> 2022_05_07_01
-- Remove Orphan Matron Aria duplicate
DELETE FROM `creature` WHERE `id1` = 34365 AND `guid` = 245000;
DELETE FROM `game_event_creature` WHERE `guid` = 245000 AND `eventEntry` = 10;

View File

@@ -1,10 +0,0 @@
-- DB update 2022_05_07_01 -> 2022_05_08_00
--
UPDATE `smart_scripts` SET `action_type`=85 WHERE `entryorguid`=30105 AND `source_type`=0 AND `id`=1;
DELETE FROM `smart_scripts` WHERE `entryorguid`=30331 AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(30331,0,0,1,27,0,100,512,0,0,0,0,0,53,1,30331,0,0,0,0,1,0,0,0,0,0,0,0,0,'Jokkum - On Passenger boarded - Start WP'),
(30331,0,1,2,61,0,100,512,0,0,0,0,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,'Jokkum - On Passenger boarded - Talk1'),
(30331,0,2,0,61,0,100,512,0,0,0,0,0,18,768,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Jokkum - On Passenger boarded - Set ImmuneNPC/PC'),
(30331,0,3,4,40,0,100,512,30,30331,0,0,0,28,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Jokkum - On way pont 22 - Remove all auras'),
(30331,0,4,0,61,0,100,512,0,0,0,0,0,80,3033100,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Jokkum - On way pont 22 - Actionlist');

View File

@@ -1,6 +0,0 @@
-- DB update 2022_05_08_00 -> 2022_05_08_01
--
DELETE FROM `creature_text` WHERE `CreatureID` = 25740 AND `GroupID` IN (0, 1);
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(25740, 0, 0, "Ahune Retreats. His defenses diminish.", 41, 0, 100, 0, 0, 0, 24931, 0, "ahune EMOTE_RETREAT"),
(25740, 1, 0, "Ahune will soon resurface.", 41, 0, 100, 0, 0, 0, 24932, 0, "ahune EMOTE_RESURFACE");

View File

@@ -1,3 +0,0 @@
-- DB update 2022_05_08_01 -> 2022_05_08_02
--
UPDATE `areatrigger_teleport` SET `target_map` = 0, `target_position_x` = -7510.59, `target_position_y` = -1041.45, `target_position_z` = 180.911, `target_orientation` = 3.8666 WHERE ID = 2890;

View File

@@ -1,19 +0,0 @@
-- DB update 2022_05_08_02 -> 2022_05_08_03
--
DELETE FROM `spell_script_names` WHERE `ScriptName` IN ('spell_vem_knockback', 'spell_vem_vengeance');
DELETE FROM `spell_script_names` WHERE `spell_id` = 18670; -- Delete the current script to prevent stacking.
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
(18670, 'spell_vem_knockback'),
(25790, 'spell_vem_vengeance');
UPDATE `creature_template` SET `unit_flags` = `unit_flags`|33554432, `flags_extra` = `flags_extra`|128 WHERE `entry` = 15933;
DELETE FROM `creature_template_addon` WHERE `entry` = 15933;
INSERT INTO `creature_template_addon` (`entry`,`auras`) VALUES
(15933, '25786 26575');
DELETE FROM `creature_text` WHERE `CreatureID` IN (15511, 15543, 15544);
INSERT INTO `creature_text` (`CreatureID`,`GroupID`,`ID`,`Text`,`Type`,`Language`,`Probability`,`Emote`,`Duration`,`Sound`,`BroadcastTextId`,`TextRange`,`comment`) VALUES
(15511, 0, 0, '%s is devoured!', 16, 0, 100, 0, 0, 0, 11115, 0, 'Lord Kri - EMOTE_DEVOURED'),
(15543, 0, 0, '%s is devoured!', 16, 0, 100, 0, 0, 0, 11115, 0, 'Princess Yauj - EMOTE_DEVOURED'),
(15544, 0, 0, '%s is devoured!', 16, 0, 100, 0, 0, 0, 11115, 0, 'Vem - EMOTE_DEVOURED');

View File

@@ -1,6 +0,0 @@
-- DB update 2022_05_08_03 -> 2022_05_08_04
--
DELETE FROM `gossip_menu` WHERE `MenuID` IN (7106,7107);
INSERT INTO `gossip_menu` VALUES (7106, 8363), (7107, 8364);
UPDATE `gossip_menu_option` SET `ActionMenuID`=7099 WHERE `MenuID`=7107 AND `OptionID`=0;

View File

@@ -1,3 +0,0 @@
-- DB update 2022_05_08_04 -> 2022_05_08_05
--
UPDATE `page_text` SET `text` = 'Solomon,$B$BThe carrier of this decree has been granted official status as an acting deputy of Stormwind. You may use $ghim:her to find proof of the black dragonflight''s involvement with the Blackrock orcs. Should such proof be found, this deputy shall return said proof to me in Stormwind, at which time I shall release the order to dispense sufficient millitary force to aid Lakeshire.$B$BRegards,$B$B$B$BHighlord Bolvar Fordragon' WHERE `id` = 1471;

View File

@@ -1,5 +0,0 @@
-- DB update 2022_05_08_05 -> 2022_05_08_06
--
DELETE FROM `spell_dbc` WHERE `id` = 1206;
INSERT INTO `spell_dbc` (`Id`, `Targets`, `CastingTimeIndex`, `ProcChance`, `RangeIndex`, `EquippedItemClass`, `EquippedItemSubclass`, `Effect_1`, `ImplicitTargetA_1`, `EffectTriggerSpell_1`, `Name_Lang_enUS`, `EffectBonusMultiplier_1`, `EffectBonusMultiplier_2`, `EffectBonusMultiplier_3`) VALUES
(1206, 256, 1, 101, 1, -1, -1, 3, 1, 11, 'Dummy Proc', 1, 1, 1);

View File

@@ -1,59 +0,0 @@
-- DB update 2022_05_08_06 -> 2022_05_08_07
-- Quest You'll Need a Gryphon
UPDATE `creature_template` SET `AIName` = 'SmartAI' WHERE `entry` = 29403;
DELETE FROM `smart_scripts` WHERE (`source_type` = 0 AND `entryorguid` = 29403);
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(29403, 0, 0, 1, 25, 0, 100, 257, 0, 0, 0, 0, 0, 11, 61646, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Onslaught Gryphon - On Reset - Cast \'Loaner Vehicle Speed\' (No Repeat)'),
(29403, 0, 1, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, 60, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Onslaught Gryphon - On Reset - Set Fly On (No Repeat)'),
(29403, 0, 2, 0, 28, 0, 100, 0, 0, 0, 0, 0, 0, 11, 45472, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 'Onslaught Gryphon - On Passenger Removed - Cast \'Parachute\'');
-- Not necessary
UPDATE `creature_template` SET `npcflag` = 0 WHERE (`entry` = 29403);
DELETE FROM `npc_spellclick_spells` WHERE `npc_entry`=29403 AND `spell_id`=49641;
-- Rename update
UPDATE `spell_script_names` SET `ScriptName`='spell_deliver_gryphon' WHERE `spell_id`=54420 AND `ScriptName`='spell_gen_despawn_self';
DELETE FROM `spell_script_names` WHERE `spell_id`=49642 AND `ScriptName`='spell_onslaught_or_call_bone_gryphon';
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES (49642, 'spell_onslaught_or_call_bone_gryphon');
-- An additional + (animation)
-- Is not part of quest!
UPDATE `creature_template` SET `AIName` = 'SmartAI' WHERE `entry` = 29648;
DELETE FROM `smart_scripts` WHERE (`source_type` = 0 AND `entryorguid` = 29648);
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(29648, 0, 0, 0, 1, 0, 100, 0, 13000, 13000, 13000, 13000, 0, 70, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Bone Gryphon - Out of Combat - Respawn Self'),
(29648, 0, 1, 0, 25, 0, 100, 0, 0, 0, 0, 0, 0, 11, 54476, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Bone Gryphon - On Reset - Cast \'Blood Presence\'');
-- Npc Captured Onslaught Gryphon (animation)
DELETE FROM `creature_template_addon` WHERE (`entry` = 29415);
INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `visibilityDistanceType`, `auras`) VALUES
(29415, 0, 0, 50331648, 1, 0, 0, '57764');
-- Observation: TARGET_UNIT_NEARBY_ENTRY (not target)
-- That's why the condition was necessary
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceGroup`=1 AND `SourceEntry`=10727;
INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition`,`ErrorType`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES
(13,1,10727,0,0,31,0,3,29415,0,0,0,0,"","Uzo's Ritual of Blood Triggered Transform.");
-- Continuing the event after the end
SET @NPC_UZO_DEATHCALLER := 29405;
UPDATE `creature_template` SET `AIName` = 'SmartAI' WHERE `entry` = @NPC_UZO_DEATHCALLER;
DELETE FROM `smart_scripts` WHERE (`source_type` = 0 AND `entryorguid` = @NPC_UZO_DEATHCALLER);
DELETE FROM `smart_scripts` WHERE (`source_type` = 9 AND `entryorguid` = @NPC_UZO_DEATHCALLER*100);
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(@NPC_UZO_DEATHCALLER, 0, 0, 0, 20, 0, 100, 0, 12814, 0, 0, 0, 0, 80, @NPC_UZO_DEATHCALLER*100, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Uzo Deathcaller - On Quest \'You\'ll Need a Gryphon\' Finished - Run Script'),
(@NPC_UZO_DEATHCALLER*100, 9, 0, 0, 0, 0, 100, 0, 5000, 5000, 0, 0, 0, 11, 10727, 0, 0, 0, 0, 0, 19, 29415, 0, 0, 0, 0, 0, 0, 0, 'Uzo Deathcaller - Actionlist - Cast \'Uzo`s Ritual of Blood\''),
(@NPC_UZO_DEATHCALLER*100, 9, 1, 0, 0, 0, 100, 0, 8300, 8300, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Uzo Deathcaller - Actionlist - Say Line 0'),
(@NPC_UZO_DEATHCALLER*100, 9, 2, 0, 0, 0, 100, 0, 16000, 16000, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 19, 29415, 0, 0, 0, 0, 0, 0, 0, 'Uzo Deathcaller - Actionlist - Despawn Instant'),
(@NPC_UZO_DEATHCALLER*100, 9, 3, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 70, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Uzo Deathcaller - Actionlist - Respawn Self'); -- in the transformation process there is a visual bug (I mean for magic who use), so it was added
-- End event
DELETE FROM `creature_text` WHERE `CreatureID`=@NPC_UZO_DEATHCALLER;
INSERT INTO `creature_text` (`CreatureID`,`GroupID`,`ID`,`Text`,`Type`,`Language`,`Probability`,`Emote`,`Duration`,`Sound`,`BroadcastTextId`, `TextRange`, `comment`) VALUES
(@NPC_UZO_DEATHCALLER, 0, 0, 'There you go, mon. Your very own bone gryphon Now let\'s talk about you takin\' it out to fight the Onslaught!', 12 , 0, 100, 0, 0, 0, 30116, 1, '');

View File

@@ -1,34 +0,0 @@
-- DB update 2022_05_08_07 -> 2022_05_08_08
-- Soulflayer
UPDATE `creature_template` SET `AIName` = 'SmartAI' WHERE `entry` = 11359;
DELETE FROM `smart_scripts` WHERE (`entryorguid` = 11359) AND (`source_type` = 0) AND (`id` IN (0, 1, 3));
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(11359, 0, 0, 0, 0, 0, 100, 0, 16000, 19000, 2100, 23000, 0, 11, 22678, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 'Soulflayer - In Combat - Cast \'Fear\''),
(11359, 0, 1, 0, 0, 0, 100, 0, 10000, 14000, 20000, 22000, 0, 11, 24619, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 'Soulflayer - In Combat - Cast \'Soul Tap\''),
(11359, 0, 3, 0, 2, 0, 100, 1, 0, 30, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 'Soulflayer - Between 0-30% Health - Say Line 0 (No Repeat)');
-- Gurubashi Berserker
UPDATE `creature_template` SET `AIName` = 'SmartAI' WHERE `entry` = 11352;
DELETE FROM `smart_scripts` WHERE (`source_type` = 0 AND `entryorguid` = 11352);
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(11352, 0, 0, 0, 0, 0, 100, 0, 15000, 15000, 15000, 15000, 0, 11, 16508, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 'Gurubashi Berserker - In Combat - Cast \'Intimidating Roar\''),
(11352, 0, 1, 0, 0, 0, 100, 0, 10000, 10000, 15000, 15000, 0, 11, 11130, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 'Gurubashi Berserker - In Combat - Cast \'Knock Away\''),
(11352, 0, 2, 0, 0, 0, 100, 0, 3000, 3000, 13000, 18000, 0, 11, 15588, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Gurubashi Berserker - In Combat - Cast \'Thunderclap\''),
(11352, 0, 3, 0, 2, 0, 100, 1, 0, 30, 0, 0, 0, 11, 8269, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Gurubashi Berserker - Between 0-30% Health - Cast \'Frenzy\' (No Repeat)'),
(11352, 0, 4, 0, 2, 0, 100, 1, 0, 30, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Gurubashi Berserker - Between 0-30% Health - Say Line 0 (No Repeat)');
-- Gurubashi Axe Thrower
UPDATE `creature_template` SET `AIName` = 'SmartAI' WHERE `entry` = 11350;
DELETE FROM `smart_scripts` WHERE (`entryorguid` = 11350) AND (`source_type` = 0) AND (`id` IN (0, 1, 3));
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(11350, 0, 0, 0, 4, 0, 30, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 'Gurubashi Axe Thrower - On Aggro - Say Line 1'),
(11350, 0, 1, 0, 9, 0, 100, 1, 5, 30, 1500, 2000, 0, 11, 22887, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 'Gurubashi Axe Thrower - Within 5-30 Range - Cast \'Throw\''),
(11350, 0, 3, 0, 2, 0, 100, 1, 0, 30, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 'Gurubashi Axe Thrower - Between 0-30% Health - Say Line 0 (No Repeat)');
-- Razzashi Serpent
UPDATE `creature_template` SET `AIName` = 'SmartAI' WHERE `entry` = 11371;
DELETE FROM `smart_scripts` WHERE (`source_type` = 0 AND `entryorguid` = 11371);
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(11371, 0, 0, 0, 0, 0, 100, 0, 7000, 9000, 12000, 15000, 0, 11, 20539, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 'Razzashi Serpent - In Combat - Cast \'Fatal Bite\''),
(11371, 0, 1, 0, 0, 0, 100, 0, 9000, 11000, 14000, 17000, 0, 11, 24002, 1, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 'Razzashi Serpent - In Combat - Cast \'Tranquilizing Poison\''),
(11371, 0, 2, 0, 0, 0, 100, 0, 3000, 5000, 11000, 11000, 0, 11, 12097, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 'Razzashi Serpent - In Combat - Cast \'Pierce Armor\'');

View File

@@ -1,3 +0,0 @@
-- DB update 2022_05_08_08 -> 2022_05_08_09
--
UPDATE `quest_template` SET `AllowableRaces`=1024 WHERE `id`=10366;

View File

@@ -1,13 +0,0 @@
-- DB update 2022_05_08_09 -> 2022_05_09_00
-- Clear Auriaya's creature_text (duplicate and EMOTE_DEATH missing), CN locale is also wrong
DELETE FROM `creature_text` WHERE `CreatureID`=33515;
-- EMOTE_DEATH has no BroadcastTextID
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(33515, 0, 0, 'Some things are better left alone!', 14, 0, 100, 0, 0, 15473, 34341, 0, 'Auriaya SAY_AGGRO'),
(33515, 1, 0, 'The secret dies with you.', 14, 0, 100, 0, 0, 15474, 34354, 0, 'Auriaya SAY_SLAY_1'),
(33515, 1, 1, 'There is no escape!', 14, 0, 100, 0, 0, 15475, 37177, 0, 'Auriaya SAY_SLAY_2'),
(33515, 2, 0, 'You waste my time!', 14, 0, 100, 0, 0, 15477, 34358, 0, 'Auriaya SAY_BERSERK'),
(33515, 3, 0, '%s screams in agony.', 16, 0, 100, 0, 0, 15476, 0, 0, 'Auriaya EMOTE_DEATH'),
(33515, 4, 0, '%s begins to cast Terrifying Screech.', 41, 0, 100, 0, 0, 0, 34450, 0, 'Auriaya EMOTE_FEAR'),
(33515, 5, 0, '%s begins to activate the Feral Defender!', 41, 0, 100, 0, 0, 0, 34162, 0, 'Auriaya EMOTE_DEFENDER');

View File

@@ -1,3 +0,0 @@
-- DB update 2022_05_09_00 -> 2022_05_11_00
--
DELETE FROM `spell_script_names` WHERE `ScriptName`='aura_class_call_berserk';

View File

@@ -1,55 +0,0 @@
-- DB update 2022_05_11_00 -> 2022_05_11_01
-- Add major mattingly and overlord rhuntak creature_text
DELETE FROM `creature_text` WHERE `CreatureID` IN (14394, 14392);
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(14394, 0, 0, 'Citizens and allies of Stormwind, on this day, history has been made. $n has laid waste to that which had attempted to usurp the rule of the kingdom. Gather round and join me in honoring our heroes.', 14, 0, 100, 0, 0, 0, 9495, 0, 'Major Mattingly'),
(14394, 1, 0, 'Behold the might of the Alliance! The dread lady, Onyxia, hangs from the arches! Let the rallying cry of the dragon slayer lift your spirits!', 14, 0, 100, 0, 0, 0, 9496, 0, 'Major Mattingly'),
(14392, 0, 0, 'People of the Horde, citizens of Orgrimmar, come, gather round and celebrate a hero of the Horde. On this day, $n, under the auspices of our glorious Warchief, laid a mortal blow against the Black Dragonflight. The brood mother, Onyxia, has been slain!', 14, 0, 100, 0, 0, 0, 9491, 0, 'overlord runthak'),
(14392, 1, 0, 'Bear witness to the undeniable power of your Warchief! Be lifted by the rallying cry of your dragon slayers!', 14, 0, 100, 0, 0, 0, 9492, 0, 'overlord runthak'),
(14392, 2, 0, 'NEFARIAN IS SLAIN! People of Orgrimmar, bow down before the might of $n and $g his:her; allies for they have laid a blow against the Black Dragonflight that is sure to stir the Aspects from their malaise! This defeat shall surely be felt by the father of the Black Flight: Deathwing reels in pain and anguish this day!', 14, 0, 100, 0, 0, 0, 9867, 0, 'overlord runthak'),
(14392, 3, 0, 'Be lifted by $n\'s accomplishment! Revel in $g his:her; rallying cry!', 14, 0, 100, 0, 0, 0, 9868, 0, 'overlord runthak');
-- Add major mattingly and rhuntak smartai
UPDATE `creature_template` SET `AIName` = 'SmartAI' WHERE `entry` IN (14394, 14392);
DELETE FROM `smart_scripts` WHERE (`source_type` = 0 AND `entryorguid` IN (14394, 14392)) OR (`source_type` = 9 AND `entryorguid` IN (1439400, 1439200, 1439201));
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(14394, 0, 0, 1, 20, 0, 100, 512, 7496, 0, 0, 0, 0, 80, 1439400, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Major Mattingly - On Quest Celebrating Good Times Finished - Run Script'),
(14394, 0, 1, 0, 61, 0, 100, 512, 0, 0, 0, 0, 0, 64, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 'Major Mattingly - On Quest Celebrating Good Times Finished - Store Targetlist'),
(1439400, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 48, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Major Mattingly - Actionlist - Set Active On'),
(1439400, 9, 1, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 0, 83, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Major Mattingly - Actionlist - Remove Npc Flags Questgiver'),
(1439400, 9, 2, 0, 0, 0, 100, 0, 5000, 5000, 0, 0, 0, 1, 0, 8000, 0, 0, 0, 0, 12, 1, 0, 0, 0, 0, 0, 0, 0, 'Major Mattingly - Actionlist - Say Line 0'),
(1439400, 9, 3, 0, 0, 0, 100, 0, 8000, 8000, 0, 0, 0, 1, 1, 10000, 0, 0, 0, 0, 12, 1, 0, 0, 0, 0, 0, 0, 0, 'Major Mattingly - Actionlist - Say Line 1'),
(1439400, 9, 4, 0, 0, 0, 100, 0, 3000, 3000, 0, 0, 0, 50, 179558, 7200, 1, 0, 0, 0, 8, 0, 0, 0, 0, -8971.19, 554.141, 105.972, -2.25147, 'Major Mattingly - Actionlist - Summon Gameobject \'The Severed Head of Onyxia\''),
(1439400, 9, 5, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 20, 179558, 100, 0, 0, 0, 0, 0, 0, 'Major Mattingly - Actionlist - Activate Gameobject'),
(1439400, 9, 6, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 11, 22888, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Major Mattingly - Actionlist - Cast \'Rallying Cry of the Dragonslayer\''),
(1439400, 9, 7, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 0, 82, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Major Mattingly - Actionlist - Add Npc Flags Questgiver'),
(1439400, 9, 8, 0, 0, 0, 100, 0, 7200000, 7200000, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 14, 0, 179558, 0, 0, 0, 0, 0, 0, 'Major Mattingly - Actionlist - Despawn Instant'),
(1439400, 9, 9, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 48, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Major Mattingly - Actionlist - Set Active Off'),
(14392, 0, 0, 2, 20, 0, 100, 512, 7491, 0, 0, 0, 0, 80, 1439200, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Overlord Runthak - On Quest \'For All To See\' Finished - Run Script'),
(14392, 0, 2, 0, 61, 0, 100, 512, 0, 0, 0, 0, 0, 64, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 'Overlord Runthak - On Quest \'For All To See\' Finished - Store Targetlist'),
(14392, 0, 3, 5, 20, 0, 100, 512, 7784, 0, 0, 0, 0, 80, 1439201, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Overlord Runthak - On Quest \'The Lord of Blackrock\' Finished - Run Script'),
(14392, 0, 5, 0, 61, 0, 100, 512, 0, 0, 0, 0, 0, 64, 2, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 'Overlord Runthak - On Quest \'The Lord of Blackrock\' Finished - Store Targetlist'),
(1439200, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 48, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Overlord Runthak - Actionlist - Set Active On'),
(1439200, 9, 1, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 0, 83, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Overlord Runthak - Actionlist - Remove Npc Flags Questgiver'),
(1439200, 9, 2, 0, 0, 0, 100, 0, 5000, 5000, 0, 0, 0, 1, 0, 8000, 0, 0, 0, 0, 12, 1, 0, 0, 0, 0, 0, 0, 0, 'Overlord Runthak - Actionlist - Say Line 0'),
(1439200, 9, 3, 0, 0, 0, 100, 0, 8000, 8000, 0, 0, 0, 1, 1, 10000, 0, 0, 0, 0, 12, 1, 0, 0, 0, 0, 0, 0, 0, 'Overlord Runthak - Actionlist - Say Line 1'),
(1439200, 9, 4, 0, 0, 0, 100, 0, 3000, 3000, 0, 0, 0, 50, 179556, 7200, 1, 0, 0, 0, 8, 0, 0, 0, 0, 1536.94, -4409.44, 8.05935, 1.64061, 'Overlord Runthak - Actionlist - Summon Gameobject \'The Severed Head of Onyxia\''),
(1439200, 9, 5, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 20, 179556, 100, 0, 0, 0, 0, 0, 0, 'Overlord Runthak - Actionlist - Activate Gameobject'),
(1439200, 9, 6, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 11, 22888, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Overlord Runthak - Actionlist - Cast \'Rallying Cry of the Dragonslayer\''),
(1439200, 9, 7, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 0, 82, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Overlord Runthak - Actionlist - Add Npc Flags Questgiver'),
(1439200, 9, 8, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 41, 7200000, 0, 0, 0, 0, 0, 14, 0, 179556, 0, 0, 0, 0, 0, 0, 'Overlord Runthak - Actionlist - Despawn In 7200000 ms'),
(1439200, 9, 9, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 48, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Overlord Runthak - Actionlist - Set Active Off'),
(1439201, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 48, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Overlord Runthak - Actionlist - Set Active On'),
(1439201, 9, 1, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 0, 83, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Overlord Runthak - Actionlist - Remove Npc Flags Questgiver'),
(1439201, 9, 2, 0, 0, 0, 100, 0, 5000, 5000, 0, 0, 0, 1, 2, 8000, 0, 0, 0, 0, 12, 2, 0, 0, 0, 0, 0, 0, 0, 'Overlord Runthak - Actionlist - Say Line 2'),
(1439201, 9, 3, 0, 0, 0, 100, 0, 8000, 8000, 0, 0, 0, 1, 3, 10000, 0, 0, 0, 0, 12, 2, 0, 0, 0, 0, 0, 0, 0, 'Overlord Runthak - Actionlist - Say Line 3'),
(1439201, 9, 4, 0, 0, 0, 100, 0, 3000, 3000, 0, 0, 0, 50, 179881, 7200, 1, 0, 0, 0, 8, 0, 0, 0, 0, 1536.94, -4421.62, 7.55304, -1.15192, 'Overlord Runthak - Actionlist - Summon Gameobject \'The Severed Head of Nefarian\''),
(1439201, 9, 5, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 20, 179881, 100, 0, 0, 0, 0, 0, 0, 'Overlord Runthak - Actionlist - Activate Gameobject'),
(1439201, 9, 6, 0, 0, 0, 100, 0, 6000, 6000, 0, 0, 0, 11, 22888, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Overlord Runthak - Actionlist - Cast \'Rallying Cry of the Dragonslayer\''),
(1439201, 9, 7, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 0, 82, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Overlord Runthak - Actionlist - Add Npc Flags Questgiver'),
(1439201, 9, 8, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 41, 7200000, 0, 0, 0, 0, 0, 14, 0, 179881, 0, 0, 0, 0, 0, 0, 'Overlord Runthak - Actionlist - Despawn In 7200000 ms'),
(1439201, 9, 9, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 48, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Overlord Runthak - Actionlist - Set Active Off');
-- add conditions so the timed action does not happen if the gameobject is there.
DELETE FROM `conditions` WHERE (`SourceTypeOrReferenceId` = 22) AND (`SourceGroup` = 1) AND (`SourceEntry` = 14392) AND (`SourceId` = 0) AND (`ElseGroup` = 0) AND (`ConditionTypeOrReference` = 30) AND (`ConditionTarget` = 0) AND (`ConditionValue1` = 179556) AND (`ConditionValue2` = 120) AND (`ConditionValue3` = 0) OR (`SourceTypeOrReferenceId` = 22) AND (`SourceGroup` = 4) AND (`SourceEntry` = 14392) AND (`SourceId` = 0) AND (`ElseGroup` = 0) AND (`ConditionTypeOrReference` = 30) AND (`ConditionTarget` = 0) AND (`ConditionValue1` = 179881) AND (`ConditionValue2` = 120) AND (`ConditionValue3` = 0);
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
(22, 1, 14392, 0, 0, 30, 0, 179556, 120, 0, 1, 0, 0, '', ''),
(22, 4, 14392, 0, 0, 30, 0, 179881, 120, 0, 1, 0, 0, '', '');

View File

@@ -1,17 +0,0 @@
-- DB update 2022_05_11_01 -> 2022_05_11_02
-- update Wintergrasp battle announce Chinese translation
UPDATE `acore_string` SET `locale_zhCN` = '|cffff0000[冬拥湖]:|r 战斗开始了!|r' WHERE `entry` = 20078;
-- add object's Chinese translation
DELETE from `gameobject_template_locale` where `entry` IN (175226,175230,175233,176191,176197,176198) AND `locale` = 'zhCN';
INSERT INTO `gameobject_template_locale` (`entry`, `locale`, `name`, `castBarCaption`, `VerifiedBuild`) VALUES
(175226, 'zhCN', '搁浅的海洋生物', '', 0),
(175230, 'zhCN', '搁浅的海洋生物', '', 0),
(175233, 'zhCN', '搁浅的海洋生物', '', 0),
(176191, 'zhCN', '搁浅的海龟', '', 0),
(176197, 'zhCN', '搁浅的海龟', '', 0),
(176198, 'zhCN', '搁浅的海龟', '', 0);
-- add an item's Chinese translation
DELETE from `item_template_locale` where `ID` = 27808 AND `locale` = 'zhCN';
INSERT INTO `item_template_locale` (`ID`, `locale`, `Name`, `Description`, `VerifiedBuild`) VALUES ( 27808, 'zhCN', '超级蹦床4000型的钥匙', '钥匙上刻有一行小字瓦萨特不对使用超级蹦床4000型所造成的任何后果负责。', -12340);

View File

@@ -1,4 +0,0 @@
-- DB update 2022_05_11_02 -> 2022_05_12_00
--
UPDATE `quest_template_addon` SET `PrevQuestId`=0 WHERE `ID`=1699;
UPDATE `quest_template_addon` SET `NextQuestId`=1699 WHERE `ID` IN (1698,10371);

View File

@@ -1,9 +0,0 @@
-- DB update 2022_05_12_00 -> 2022_05_16_00
-- fixed quest 12924 spell area
UPDATE `spell_area` SET `quest_start` = 12956 WHERE `spell` = 55858;
-- (Quests) Forging an Alliance require A Spark of Hope + Mending Fences
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 19 AND `SourceEntry`=12924;
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
(19, 0, 12924, 0, 0, 8, 0, 12956, 0, 0, 0, 0, 0, '', 'Forging an Alliance - Requires quest rewarded'),
(19, 0, 12924, 0, 0, 8, 0, 12915, 0, 0, 0, 0, 0, '', 'Forging an Alliance - Requires quest rewarded');

View File

@@ -1,5 +0,0 @@
-- DB update 2022_05_16_00 -> 2022_05_16_01
--
DELETE FROM `smart_scripts` WHERE `entryorguid`=30331 AND `source_type`=0 AND `id`=5;
INSERT INTO `smart_scripts` VALUES
(30331,0,5,0,54,0,100,0,0,0,0,0,0,85,56606,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Jokkum - on just summoned - Cast Riding Jokkum');

View File

@@ -1,62 +0,0 @@
-- DB update 2022_05_16_01 -> 2022_05_17_00
-- Add Missing gossip text
DELETE FROM `gossip_menu` WHERE `MenuID`=7346 AND `TextID`=8760;
INSERT INTO `gossip_menu` (`MenuID`,`TextID`) VALUES (7346,8760);
-- Conditions for gossip text
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=14 AND `SourceGroup`=7346;
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
(14,7346,8759,0,0,8,0,9067,0,0,1,0,0,'','Show gossip text 8759 if quest ''The Party Never Ends'' is not rewarded'),
(14,7346,8760,0,0,8,0,9067,0,0,0,0,0,'','Show gossip text 8760 if quest ''The Party Never Ends'' is rewarded');
-- Remove hack SAI from Fireworks Launchers
UPDATE `gameobject_template` SET `AIName`='' WHERE `entry`=180771;
DELETE FROM `smart_scripts` WHERE `entryorguid`=180771 AND `source_type`=1;
DELETE FROM `smart_scripts` WHERE `entryorguid`=17056 AND `source_type`=0;
-- Correct facing
UPDATE `creature` SET `orientation`=2.14675498 WHERE `guid`=59449;
-- Correct equipment
UPDATE `creature` SET `equipment_id`=0 WHERE `id1`=17056;
-- Correct Addon
UPDATE `creature_addon` SET `bytes1`=0,`bytes2`=1,`emote`=0 WHERE `guid` IN (SELECT `guid` FROM `creature` WHERE `id1`=17056);
UPDATE `creature_addon` SET `auras`='42386' WHERE `guid` IN (59434);
-- Move start location
UPDATE `creature` SET `position_x`=8679.53,`position_y`=-6342.703,`position_z`=55.914032,`orientation`=6.2308254 WHERE `guid`=59444;
-- Add Missing meat equipment
DELETE FROM `creature_equip_template` WHERE `CreatureID`=17056 AND `ID`=2;
INSERT INTO `creature_equip_template` (`CreatureID`,`ID`,`ItemID1`,`ItemID2`,`ItemID3`,`VerifiedBuild`) VALUES (17056,2,2202,0,0,0);
-- Pathing for Eversong Partygoer Entry: 17056
DELETE FROM `waypoint_data` WHERE `id` IN (594440,594441,594442,594443,594444);
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_type`,`action`,`action_chance`,`wpguid`) VALUES
(594440,1,8680.874,-6340.5757,55.93538,0,0,0,0,100,0),
(594440,2,8685.874,-6338.5757,55.94099,0,0,0,0,100,0),
(594440,3,8687.746,-6339.301,55.93539,0,0,0,0,100,0),
(594440,4,8687.746,-6339.301,55.93539,4.502949,1000,0,0,100,0),
(594441,1,8689.3545,-6332.7295,55.95669,0,0,0,0,100,0),
(594441,2,8691,-6332.577,55.95949,0,0,0,0,100,0),
(594441,3,8691,-6332.577,55.95949,5.148721,1000,0,0,100,0),
(594442,1,8681.171,-6329.512,55.948093,0,0,0,0,100,0),
(594442,2,8681.171,-6329.512,55.948093,2.303835,1000,0,0,100,0),
(594443,1,8675.356,-6334.1494,55.932705,0,0,0,0,100,0),
(594443,2,8675.356,-6334.1494,55.932705,3.124139,1000,0,0,100,0),
(594444,1,8678.709,-6342.523,55.915527,0,0,0,0,100,0),
(594444,2,8679.53,-6342.703,55.914032,0,0,0,0,100,0),
(594444,3,8679.53,-6342.703,55.914032,6.230825,1000,0,0,100,0);
UPDATE `creature` SET `ScriptName`='npc_partygoer_pather' WHERE `guid`=59444;
UPDATE `creature` SET `ScriptName`='npc_partygoer' WHERE `guid` IN (59435,59436,59437,59438,59439,59440,59441,59442,59443,59445,59446,59447,59448,59449);
-- Sempstress Ambershine SAI
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=16366;
DELETE FROM `smart_scripts` WHERE `entryorguid`=16366 AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_param4`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(16366,0,0,0,1,0,100,0,8000,15000,8000,15000,0,10,1,5,11,18,24,25,1,0,0,0,0,0,0,0,0,'Sempstress Ambershine - OOC - Random Emote');
-- Botanist Tyniarrel SAI
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=16367;
DELETE FROM `smart_scripts` WHERE `entryorguid`=16367 AND `source_type`=0;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_param4`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(16367,0,0,0,1,0,100,0,8000,15000,8000,15000,0,10,1,5,11,18,24,25,1,0,0,0,0,0,0,0,0,'Botanist Tyniarrel - OOC - Random Emote');

View File

@@ -1,7 +0,0 @@
-- DB update 2022_05_17_00 -> 2022_05_17_01
UPDATE `creature_template` SET `AIName` = 'SmartAI' WHERE `entry` = 10376;
DELETE FROM `smart_scripts` WHERE (`source_type` = 0 AND `entryorguid` = 10376);
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(10376, 0, 0, 0, 37, 0, 85, 512, 0, 0, 0, 0, 0, 41, 500, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'On AI initialize - None: Despawn in 0.5 s'),
(10376, 0, 1, 0, 6, 0, 100, 514, 0, 0, 0, 0, 0, 11, 16103, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Crystal Fang - On Death - Cast Spell Summon Spire Spiderling (16103)');

View File

@@ -1,5 +0,0 @@
-- DB update 2022_05_17_01 -> 2022_05_17_02
-- (Quest) Coward Delivery... Under 30 Minutes or it's Free - Cast "Call Alliance Deserter" on accept
UPDATE `quest_template_addon` SET `SourceSpellID` = 45975 WHERE `ID` = 11711;
-- Valiance Keep Officer set NPC and PC immunity flags
UPDATE `creature_template` SET `unit_flags` = `unit_flags` | 768 WHERE `entry` = 25759;

View File

@@ -1,3 +0,0 @@
-- DB update 2022_05_17_02 -> 2022_05_17_03
-- Goblin Land Mine, remove Hakkar sound on arming
UPDATE `creature_text` SET `Sound` = 0 WHERE `CreatureID` = 7527;

View File

@@ -1,2 +0,0 @@
-- DB update 2022_05_17_03 -> 2022_05_17_04
UPDATE `creature_template` SET `flags_extra` = `flags_extra`|256 WHERE `entry` = 14834;

View File

@@ -1,20 +0,0 @@
-- DB update 2022_05_17_04 -> 2022_05_17_05
-- Gossips where already on the database, just not linked to each other
DELETE FROM `gossip_menu` WHERE `MenuID` IN (5812, 5813, 5814, 5815, 5816);
INSERT INTO `gossip_menu` (`MenuID`, `TextID`) VALUES
(5812, 6985),
(5813, 6986),
(5814, 6987),
(5815, 6988),
(5816, 6989);
-- Conditions to display the first gossip menu option
DELETE FROM `conditions` WHERE (`SourceTypeOrReferenceId` = 15) AND (`SourceGroup` = 5812) AND (`SourceEntry` = 0) AND (`SourceId` = 0) AND (`ConditionTypeOrReference` IN (2, 47));
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
(15, 5812, 0, 0, 5, 2, 0, 18563, 1, 0, 0, 0, 0, '', 'If player has \'Bindings of the Windseeker\' Left half in inventory'),
(15, 5812, 0, 0, 4, 2, 0, 18563, 1, 1, 0, 0, 0, '', 'If player has \'Bindings of the Windseeker\' Left half in bank'),
(15, 5812, 0, 0, 2, 2, 0, 18563, 1, 0, 0, 0, 0, '', 'If player has \'Bindings of the Windseeker\' Left half in inventory'),
(15, 5812, 0, 0, 3, 2, 0, 18564, 1, 1, 0, 0, 0, '', 'If player has \'Bindings of the Windseeker\' Left half in bank'),
(15, 5812, 0, 0, 1, 47, 0, 7786, 74, 0, 0, 0, 0, '', 'If player has quest \'Thunderaan the Windseeker\'');
UPDATE `creature_template` SET `gossip_menu_id` = 5812, `npcflag` = 3 WHERE (`entry` = 14348);

View File

@@ -1,3 +0,0 @@
-- DB update 2022_05_17_05 -> 2022_05_18_00
--
UPDATE `spell_proc_event` SET `SpellFamilyName`=11, `SpellFamilyMask0`=0x981001C3, `SpellFamilyMask1`=0x00001400, `SpellFamilyMask2`=0x00000010, `procFlags`=0x00015550 WHERE `entry`=16246;

View File

@@ -1,3 +0,0 @@
-- DB update 2022_05_18_00 -> 2022_05_18_01
--
DELETE FROM `player_factionchange_quests` WHERE `alliance_id`=14111;

View File

@@ -1,26 +0,0 @@
-- DB update 2022_05_18_01 -> 2022_05_21_00
-- Ulduar / Thorim
DELETE FROM `creature_text` WHERE `CreatureID`=32865;
-- Thorim - SPECIAL 1 and 3 have no BroadcastTextId
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(32865, 0,0,'Interlopers! You mortals who dare to interfere with my sport will pay... Wait--you...',14,0,100,0,0,15733,33145,0,'Thorim SAY_AGGRO_1'),
(32865, 1,0,'I remember you... In the mountains... But you... what is this? Where am--',14,0,100,0,0,15734,33270,0,'Thorim SAY_AGGRO_2'),
(32865, 2,0,'Behold the power of the storms and despair!',14,0,100,0,0,15735,0,0,'Thorim SAY_SPECIAL_1'),
(32865, 3,0,'Do not hold back! Destroy them!',14,0,100,0,0,15736,34241,0,'Thorim SAY_SPECIAL_2'),
(32865, 4,0,'Have you begun to regret your intrusion?',14,0,100,0,0,15737,0,0,'Thorim SAY_SPECIAL_3'),
(32865, 5,0,'Impertinent whelps, you dare challenge me atop my pedestal? I will crush you myself!',14,0,100,0,0,15738,33148,0,'Thorim SAY_JUMPDOWN'),
(32865, 6,0,'Can''t you at least put up a fight!?',14,0,100,0,0,15739,34239,0,'Thorim SAY_SLAY_1'),
(32865, 6,1,'Pathetic.',14,0,100,0,0,15740,35768,0,'Thorim SAY_SLAY_2'),
(32865, 7,0,'My patience has reached its limit!',14,0,100,0,0,15741,33365,0,'Thorim SAY_BERSERK'),
(32865, 8,0,'Failures! Weaklings!',14,0,100,0,0,15742,33274,0,'Thorim SAY_WIPE'),
(32865, 9,0,'Stay your arms! I yield!',14,0,100,0,0,15743,33948,0,'Thorim SAY_DEATH'),
(32865,10,0,'I feel as though I am awakening from a nightmare, but the shadows in this place yet linger.',14,0,100,0,0,15744,33949,0,'Thorim SAY_END_NORMAL_1'),
(32865,11,0,'Sif... was Sif here? Impossible--she died by my brother''s hand. A dark nightmare indeed....',14,0,100,0,0,15745,33950,0,'Thorim SAY_END_NORMAL_2'),
(32865,12,0,'I need time to reflect.... I will aid your cause if you should require it. I owe you at least that much. Farewell.',14,0,100,0,0,15746,33951,0,'Thorim SAY_END_NORMAL_3'),
(32865,13,0,'You! Fiend! You are not my beloved! Be gone!',14,0,100,0,0,15747,33952,0,'Thorim SAY_END_HARD_1'),
(32865,14,0,'Behold the hand behind all the evil that has befallen Ulduar, left my kingdom in ruins, corrupted my brother, and slain my wife.',14,0,100,0,0,15748,33953,0,'Thorim SAY_END_HARD_2'),
(32865,15,0,'And now it falls to you, champions, to avenge us all. The task before you is great, but I will lend you my aid as I am able. You must prevail.',14,0,100,0,0,15749,33954,0,'Thorim SAY_END_HARD_3');
-- Set Thorim's traps trigger creature(s) flag
UPDATE `creature_template` SET `flags_extra` = `flags_extra` | 128 WHERE `entry` IN (33054,33725);

View File

@@ -1,9 +0,0 @@
-- DB update 2022_05_21_00 -> 2022_05_21_01
-- Ulduar/Mimiron, set Computer model to be female
UPDATE `creature_template` SET `modelid1` = 29101 WHERE `entry` = 34143;
-- Leviathan Mk II
DELETE FROM `creature_text` WHERE `CreatureID` = 33432;
-- Leviathan Mk II - Plasma Blast boss emote
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(33432, 0, 0, '%s begins to cast Plasma Blast!', 41, 0, 100, 0, 0, 15800, 0, 0, 'Leviathan Mk II - EMOTE_PLASMA_BLAST');

View File

@@ -1,14 +0,0 @@
-- DB update 2022_05_21_01 -> 2022_05_21_02
-- Horde Scout, fix wrong broadcastTextId(previously 1934, now 1935)
DELETE FROM `creature_text` WHERE `CreatureID` = 11680;
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(11680, 0, 0, 'Time to die, $c.', 12, 0, 100, 0, 0, 0, 1935, 0, 'Horde Scout');
-- Horde Scout SAI
UPDATE `creature_template` SET `AIName` = 'SmartAI' WHERE `entry` = 11680;
DELETE FROM `smart_scripts` WHERE `entryorguid` = 11680;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(11680, 0, 0, 0, 4, 0, 15, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Horde Scout - On Aggro - Say Line 0 (No Repeat)'),
(11680, 0, 1, 0, 0, 0, 100, 0, 0, 0, 2300, 3900, 0, 11, 6660, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 'Horde Scout - Combat CMC - Cast \'Shoot\''),
(11680, 0, 2, 0, 9, 0, 100, 0, 5, 30, 12000, 15000, 0, 11, 18545, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 'Horde Scout - Within 5-30 Range - Cast \'Scorpid Sting\''),
(11680, 0, 3, 0, 2, 0, 100, 1, 0, 15, 0, 0, 0, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Horde Scout - 0-15% Health - Flee For Assist (No Repeat)');

View File

@@ -1,18 +0,0 @@
-- DB update 2022_05_21_02 -> 2022_05_21_03
-- Dungeon/BRD Link mobs in the 2 rooms before High Interrogator Gerstahn (no previous creature_formations for the listed GUIDs)
-- Left room
DELETE FROM `creature_formations` WHERE `memberguid` IN (90695,91054,91082,90850);
INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`, `point_1`, `point_2`) VALUES
(91054, 90695, 0, 0, 3, 0, 0),
(91054, 91054, 0, 0, 3, 0, 0),
(91054, 91082, 0, 0, 3, 0, 0),
(91054, 90850, 0, 0, 3, 0, 0);
-- Right room
DELETE FROM `creature_formations` WHERE `memberguid` IN (91037,45892,91076,90899,91087);
INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`, `point_1`, `point_2`) VALUES
(91037, 91037, 0, 0, 3, 0, 0),
(91037, 45892, 0, 0, 3, 0, 0),
(91037, 91076, 0, 0, 3, 0, 0),
(91037, 90899, 0, 0, 3, 0, 0),
(91037, 91087, 0, 0, 3, 0, 0);

View File

@@ -1,7 +0,0 @@
-- DB update 2022_05_21_03 -> 2022_05_21_04
--
ALTER TABLE `waypoint_data` CHANGE `orientation` `orientation` FLOAT DEFAULT NULL NULL;
UPDATE `waypoint_data` SET `orientation`= NULL WHERE `orientation`= 0;
ALTER TABLE `waypoints` CHANGE `orientation` `orientation` FLOAT DEFAULT NULL NULL;
UPDATE `waypoints` SET `orientation`= NULL WHERE `orientation`= 0;

View File

@@ -1,3 +0,0 @@
-- DB update 2022_05_21_04 -> 2022_05_23_00
--
UPDATE `smart_scripts` SET `event_flags`=512 WHERE `entryorguid`=2830800;

View File

@@ -1,11 +0,0 @@
-- DB update 2022_05_23_00 -> 2022_05_23_01
/*
Darnassus Temple of the Moon Moonwell spell focus objects
*/
DELETE FROM `gameobject` WHERE `guid` IN (2135451,2135452,2135453,2135454);
INSERT INTO `gameobject` VALUES
(2135451, 177281, 1, 0, 0, 1, 1, 9637.86, 2524.03, 1330, 0, -0, -0, 0, 0, 300, 0, 1, '', 0),
(2135452, 177281, 1, 0, 0, 1, 1, 9629.63, 2524.03, 1330, 0, -0, -0, 0, 0, 300, 0, 1, '', 0),
(2135453, 177281, 1, 0, 0, 1, 1, 9634.05, 2519.87, 1330, 0, -0, -0, 0, 0, 300, 0, 1, '', 0),
(2135454, 177281, 1, 0, 0, 1, 1, 9633.71, 2528.07, 1330, 0, -0, -0, 0, 0, 300, 0, 1, '', 0);

View File

@@ -1,3 +0,0 @@
-- DB update 2022_05_23_01 -> 2022_05_23_02
--
UPDATE `spell_proc_event` SET `procFlags`=0x1|0x20000 WHERE `entry`=-34914;

View File

@@ -1,15 +0,0 @@
-- DB update 2022_05_23_02 -> 2022_05_23_03
-- Flamebringer fix flying animation while on ground
UPDATE `creature_template_movement` SET `Flight` = 0 WHERE `CreatureId` = 27292;
-- Flamebringer remove all auras before mounting
UPDATE `creature_template` SET `AIName` = 'SmartAI' WHERE `entry` = 27292;
DELETE FROM `smart_scripts` WHERE `entryorguid` = 27292;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(27292, 0, 0, 1, 62, 0, 100, 512, 9512, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 'Flamebringer - On Gossip Option 0 Selected - Remove all auras'),
(27292, 0, 1, 2, 61, 0, 100, 512, 0, 0, 0, 0, 0, 11, 48606, 3, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 'Flamebringer - On Gossip Option 0 Selected - Cast \'Flamebringer Summon Cue\''),
(27292, 0, 2, 0, 61, 0, 100, 512, 0, 0, 0, 0, 0, 72, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 'Flamebringer - On Gossip Option 0 Selected - Close Gossip'),
(27292, 0, 3, 4, 54, 0, 100, 512, 0, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Flamebringer - On Just Summoned - Remove Npc Flags Gossip'),
(27292, 0, 4, 5, 61, 0, 100, 512, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Flamebringer - On Just Summoned - Set Reactstate Passive'),
(27292, 0, 5, 0, 61, 0, 100, 512, 0, 0, 0, 0, 0, 85, 48600, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Flamebringer - On Just Summoned - Invoker Cast \'Ride Flamebringer\''),
(27292, 0, 6, 0, 28, 0, 100, 512, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Flamebringer - On Passenger Removed - Despawn Instant');

View File

@@ -1,12 +0,0 @@
-- DB update 2022_05_23_03 -> 2022_05_23_04
SET @LEADERGUID := 84542;
DELETE FROM `creature_formations` WHERE `memberGUID` IN (@LEADERGUID, 84190, 84194, 84192, 84541, 84543, 84186, 84188);
INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`) VALUES
(@LEADERGUID, @LEADERGUID, 0, 0, 3),
(@LEADERGUID, 84190, 0, 0, 3),
(@LEADERGUID, 84194, 0, 0, 3),
(@LEADERGUID, 84192, 0, 0, 3),
(@LEADERGUID, 84541, 0, 0, 3),
(@LEADERGUID, 84543, 0, 0, 3),
(@LEADERGUID, 84188, 0, 0, 3),
(@LEADERGUID, 84186, 0, 0, 3);

View File

@@ -1,13 +0,0 @@
-- DB update 2022_05_23_04 -> 2022_05_23_05
UPDATE `creature_template` SET `AIName` = 'SmartAI' WHERE `entry` = 10390;
DELETE FROM `smart_scripts` WHERE (`entryorguid` = 10390) AND (`source_type` = 0) AND (`id` IN (0, 1, 2, 3, 4, 5, 6, 7));
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(10390, 0, 0, 1, 60, 0, 100, 769, 0, 0, 0, 0, 0, 31, 1, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Skeletal Guardian - On Update - Set Phase Random Between 1-3 (No Repeat)'),
(10390, 0, 1, 0, 61, 0, 100, 512, 0, 0, 0, 0, 0, 211, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Skeletal Guardian - On Update - Flag reset 0 (No Repeat)'),
(10390, 0, 2, 0, 1, 1, 100, 0, 1000, 5000, 600000, 600000, 0, 11, 13787, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Skeletal Guardian - Out of Combat - Cast \'Demon Armor\' (Phase 1)'),
(10390, 0, 3, 0, 0, 1, 100, 0, 0, 1000, 3000, 4500, 0, 11, 9613, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 'Skeletal Guardian - In Combat - Cast \'Shadow Bolt\' (Phase 1)'),
(10390, 0, 4, 0, 0, 2, 100, 0, 5000, 11000, 17000, 24500, 0, 11, 8364, 64, 0, 0, 0, 0, 5, 20, 0, 0, 0, 0, 0, 0, 0, 'Skeletal Guardian - In Combat - Cast \'Blizzard\' (Phase 2)'),
(10390, 0, 5, 0, 0, 2, 100, 0, 0, 1000, 3000, 4500, 0, 11, 9672, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 'Skeletal Guardian - In Combat - Cast \'Frostbolt\' (Phase 2)'),
(10390, 0, 6, 0, 0, 4, 100, 0, 4000, 11000, 13000, 24500, 0, 11, 11975, 64, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Skeletal Guardian - In Combat - Cast \'Arcane Explosion\' (Phase 3)'),
(10390, 0, 7, 0, 0, 4, 100, 0, 0, 1000, 2000, 3500, 0, 11, 37361, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 'Skeletal Guardian - In Combat - Cast \'Arcane Bolt\' (Phase 3)');

View File

@@ -1,5 +0,0 @@
-- DB update 2022_05_23_05 -> 2022_05_24_00
DELETE FROM `smart_scripts` WHERE (`entryorguid` = 7361) AND (`source_type` = 0) AND (`id` IN (1));
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(7361, 0, 1, 0, 6, 0, 100, 0, 0, 0, 0, 0, 0, 34, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Grubbis - On Just Died - Set Instance Data 0 to 3');

View File

@@ -1,11 +0,0 @@
-- DB update 2022_05_24_00 -> 2022_05_25_00
-- Insert missing Bear Flank drop rate for Rabid Shardtooth
DELETE FROM `creature_loot_template` WHERE `Entry` = 7446 AND `Item` = 35562;
INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Chance`, `Comment`) VALUES (7446, 35562, 65, 'Rabid Shardtooth - Bear Flank');
-- Update Bears from level 47 to 60 with correct Bear Flank drop rates
UPDATE `creature_loot_template` SET `Chance` = 45 WHERE `Item` = 35562 AND `Entry` = 8957;
UPDATE `creature_loot_template` SET `Chance` = 50 WHERE `Item` = 35562 AND `Entry` IN(8956, 1815, 5274);
UPDATE `creature_loot_template` SET `Chance` = 55 WHERE `Item` = 35562 AND `Entry` IN(7444, 7443);
UPDATE `creature_loot_template` SET `Chance` = 60 WHERE `Item` = 35562 AND `Entry` = 8958;
UPDATE `creature_loot_template` SET `Chance` = 65 WHERE `Item` = 35562 AND `Entry` IN(1816, 7446, 7445);

View File

@@ -1,8 +0,0 @@
-- DB update 2022_05_25_00 -> 2022_05_25_01
-- Commander Felstrom, set unlootable if resurrection goes through and despawn body after
UPDATE `creature_template` SET `AIName` = 'SmartAI' WHERE `entry` = 771;
DELETE FROM `smart_scripts` WHERE `entryorguid` = 771;
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(771, 0, 0, 0, 2, 0, 100, 1, 0, 10, 0, 0, 0, 11, 3488, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Commander Felstrom - Between 0-10% Health - Cast \'Felstrom Resurrection\' (No Repeat)'),
(771, 0, 1, 2, 8, 0, 100, 0, 3488, 0, 0, 0, 0, 94, 128, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Commander Felstrom - On Spellhit \'Felstrom Resurrection\' - Set Dynamic Flags Tapped By Threatlist'),
(771, 0, 2, 0, 61, 0, 100, 0, 0, 0, 0, 0, 0, 41, 2000, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Commander Felstrom - On Spellhit \'Felstrom Resurrection\' - Despawn In 2000 ms');

View File

@@ -1,27 +0,0 @@
-- DB update 2022_05_25_01 -> 2022_05_25_02
--
DROP TABLE IF EXISTS `creaturedisplayinfoextra_dbc`;
CREATE TABLE `creaturedisplayinfoextra_dbc`
( `ID` INT UNSIGNED NOT NULL DEFAULT '0',
`DisplayRaceID` INT UNSIGNED NOT NULL DEFAULT '0',
`DisplaySexID` INT UNSIGNED NOT NULL DEFAULT '0',
`SkinID` INT UNSIGNED NOT NULL DEFAULT '0',
`FaceID` INT UNSIGNED NOT NULL DEFAULT '0',
`HairStyleID` INT UNSIGNED NOT NULL DEFAULT '0',
`HairColorID` INT UNSIGNED NOT NULL DEFAULT '0',
`FacialHairID` INT UNSIGNED NOT NULL DEFAULT '0',
`NPCItemDisplay1` INT UNSIGNED NOT NULL DEFAULT '0',
`NPCItemDisplay2` INT UNSIGNED NOT NULL DEFAULT '0',
`NPCItemDisplay3` INT UNSIGNED NOT NULL DEFAULT '0',
`NPCItemDisplay4` INT UNSIGNED NOT NULL DEFAULT '0',
`NPCItemDisplay5` INT UNSIGNED NOT NULL DEFAULT '0',
`NPCItemDisplay6` INT UNSIGNED NOT NULL DEFAULT '0',
`NPCItemDisplay7` INT UNSIGNED NOT NULL DEFAULT '0',
`NPCItemDisplay8` INT UNSIGNED NOT NULL DEFAULT '0',
`NPCItemDisplay9` INT UNSIGNED NOT NULL DEFAULT '0',
`NPCItemDisplay10` INT UNSIGNED NOT NULL DEFAULT '0',
`NPCItemDisplay11` INT UNSIGNED NOT NULL DEFAULT '0',
`Flags` INT UNSIGNED NOT NULL DEFAULT '0',
`BakeName` VARCHAR(100) NOT NULL,
PRIMARY KEY (`ID`) )
ENGINE=MYISAM CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

View File

@@ -1,6 +0,0 @@
-- DB update 2022_05_25_02 -> 2022_05_25_03
-- update `Slaves of the Stormforged` quest Chinese translation
UPDATE `quest_template_locale` SET `ObjectiveText1` = '解救机械侏儒俘虏' WHERE `ID` = 12957 AND `locale` = 'zhCN';
-- update `Waterlogged Recipe` quest Chinese translation
UPDATE `quest_template_locale` SET `CompletedText` = '去达拉然找再来一杯的克莉丝蒂·斯多克顿。' WHERE `ID` = 14203 AND `locale` = 'zhCN';

View File

@@ -1,3 +0,0 @@
-- DB update 2022_05_25_03 -> 2022_05_25_04
-- (Hunter) Set Lock and Load procPhase to 0, allowing Black Arrow procs
UPDATE `spell_proc_event` SET `procPhase`=0 WHERE `entry` = -56342;

View File

@@ -1,10 +0,0 @@
-- DB update 2022_05_25_04 -> 2022_05_26_00
--
-- Content info for Durotar Shaman Quest [Rune-Inscribed Parchment]
-- EN/US Text
UPDATE `page_text` SET `Text` = "Lok-tar, $gbrother:sister;. The elements beckon you closer and bid me to show you the path of the shaman. The spirits of our ancestors watch from beyond and swell with pride knowing you have joined our ranks.$B$BWhen you are ready, seek me out near the entrance to the Den. It is there that I will be training others of our kind. Until then, may the wind be at your back.$B$BShikrik, Shaman Trainer" WHERE `id` = 2461;
-- FR Text
UPDATE `page_text_locale` SET `Text` = "Lok-tar, $gfrère:sœur;. Les éléments annoncent votre venue et me demandent de vous guider sur la voie du chaman. Les esprits de nos ancêtres observent depuis l'au-delà et tremblent de fierté à l'idée que vous ayez rejoint nos rangs.$B$BQuand vous le jugerez bon, venez me voir à l'entrée de l'Antre. C'est là que je forme les nôtres. Jusque là, que les vents vous soient favorables.$B$BShikrik, Maître des chamans" WHERE `id` = 2461 AND `locale` = 'frFR';

View File

@@ -1,13 +0,0 @@
-- DB update 2022_05_26_00 -> 2022_05_26_01
-- Change text and remove 10601 as the BroadcastTextId 'till sniff data
DELETE FROM `creature_text` WHERE `CreatureID`= 11380 AND `GroupID`=0 AND `ID`=0;
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(11380, 0, 0, 'Grats!', 14, 0, 100, 0, 0, 0, 0, 3, 'mandokir SAY_GRATS_JINDO');
-- Adjust dual dialogue on level up for Mandokir
UPDATE `creature_text` SET `Probability`=75, `comment`='mandokir SAY_DING_KILL_1' WHERE `CreatureID`=11382 AND `GroupID`=1 AND `ID`=0;
DELETE FROM `creature_text` WHERE `CreatureID`= 11382 AND `GroupID`=1 AND `ID`=1;
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Probability`, `comment`) VALUES
('11382', '1', '1', 'Your deaths feed my strength!', '14', '25', 'mandokir SAY_DING_KILL_2');

View File

@@ -1,4 +0,0 @@
-- DB update 2022_05_26_01 -> 2022_05_29_00
--
UPDATE `smart_scripts` SET `action_type`=45, `action_param1`=0, `action_param2`=1 WHERE `entryorguid`=2471801 AND `source_type`=9 AND `id`=3;
UPDATE `smart_scripts` SET `entryorguid`=24823, `source_type`=0, `event_type`=38, `event_param1`=0, `event_param2`=1 WHERE `entryorguid`=2482300 AND `source_type`=9 AND `id`=0;

View File

@@ -1,30 +0,0 @@
-- DB update 2022_05_29_00 -> 2022_05_29_01
-- Quest 8891 "Abandoned Investigations" turn in script
-- Magister Duskwither SAI
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=15951;
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (15951) AND `source_type`=0;
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (159510) AND `source_type`=9;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_param4`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(15951,0,0,0,20,0,100,0,8891,0,0,0,0,80,159510,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Magister Duskwither - ON Quest Reward (Abandoned Investigations) - Run Script'),
(159510,9,0,0,0,0,100,0,0,0,0,0,0,83,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Magister Duskwither - Script - Remove npc flags'),
(159510,9,1,0,0,0,100,0,3000,3000,0,0,0,71,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Magister Duskwither - Script - Update equipment to book'),
(159510,9,2,0,0,0,100,0,1500,1500,0,0,0,66,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0.61086523,'Magister Duskwither - Script - Set facing'),
(159510,9,3,0,0,0,100,0,8000,8000,0,0,0,5,61,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Magister Duskwither - Script - Play emote OneShotAttackThrown'),
(159510,9,4,0,0,0,100,0,0,0,0,0,0,71,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Magister Duskwither - Script - Update equipment to none'),
(159510,9,5,0,0,0,100,0,1000,1000,0,0,0,50,181012,16,0,0,0,0,8,0,0,0,0,9049.71,-7434.27,84.6563,2.09439,'Magister Duskwither - Script - Spawn Magister Duskwithers Journal'),
(159510,9,6,0,0,0,100,0,6000,6000,0,0,0,11,26660,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Magister Duskwither - Script - CAST Duskwither''s Fireball'),
(159510,9,7,0,0,0,100,0,4000,4000,0,0,0,50,181013,12,0,0,0,0,8,0,0,0,0,9049.428,-7434.1753,85.13704,1.2566359,'Magister Duskwither - Script - Spawn Fire'),
(159510,9,8,0,0,0,100,0,2000,2000,0,0,0,71,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Magister Duskwither - Script - Update equipment to staff'),
(159510,9,9,0,0,0,100,0,300,300,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Magister Duskwither - Script - Say Line 1'),
(159510,9,10,0,0,0,100,0,6000,6000,0,0,0,66,0,0,0,0,0,0,8,0,0,0,0,0,0,0,5.1487212,'Magister Duskwither - Script - Set facing'),
(159510,9,11,0,0,0,100,0,2000,2000,0,0,0,81,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Magister Duskwither - Script - Set npc flags');
-- Add Missing book equipment
DELETE FROM `creature_equip_template` WHERE `CreatureID`=15951 AND `ID`=2;
INSERT INTO `creature_equip_template` (`CreatureID`,`ID`,`ItemID1`,`ItemID2`,`ItemID3`,`VerifiedBuild`) VALUES (15951,2,12751,0,0,0);
-- Add missing spell target position
DELETE FROM `spell_target_position` WHERE `ID`=26660;
INSERT INTO `spell_target_position` (`ID`,`EffectIndex`,`MapID`,`PositionX`,`PositionY`,`PositionZ`,`Orientation`,`VerifiedBuild`) VALUES
(26660,0,530,9050,-7434,85,0,0);

View File

@@ -1,6 +0,0 @@
-- DB update 2022_05_29_01 -> 2022_05_30_00
--
UPDATE `smart_scripts` SET `event_type`=60 WHERE `entryorguid`=14122 AND `source_type`=0 AND `id`=0;
DELETE FROM `smart_scripts` WHERE `entryorguid`=14122 AND `source_type`=0 AND `id`=1;
INSERT INTO `smart_scripts` VALUES
(14122,0,1,0,54,0,100,0,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,'Hydrospawn - on summon - set passive react');

View File

@@ -1,3 +0,0 @@
-- DB update 2022_05_30_00 -> 2022_05_30_01
-- BroadcastTextId for Leviathan Mk II's plasma blast
UPDATE `creature_text` SET `BroadcastTextId` = 34217 WHERE `CreatureID` = 33432 AND `GroupID` = 0;

View File

@@ -1,51 +0,0 @@
-- DB update 2022_05_30_01 -> 2022_05_30_02
DELETE FROM `creature_loot_template` WHERE (`Entry` IN (14507, 14509, 14510, 14515, 14517) AND `Item` IN (22711, 22712, 22713, 22714, 22715, 22716, 22718, 22720, 22721, 22722, 30546)) OR (`Entry` = 14834) AND (`Item` IN (34090, 30398)) OR (`Entry` IN (15084, 15082, 15085, 15083));
INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
(14507, 30546, 30546, 100, 0, 1, 0, 1, 1, ''),
(14509, 30546, 30546, 100, 0, 1, 0, 1, 1, ''),
(14510, 30546, 30546, 100, 0, 1, 0, 1, 1, ''),
(14515, 30546, 30546, 100, 0, 1, 0, 1, 1, ''),
(14517, 30546, 30546, 100, 0, 1, 0, 1, 1, ''),
(14834, 34090, 34090, 100, 0, 1, 1, 1, 1, 'Hakkar - (ReferenceTable)'),
(14834, 30398, 30398, 100, 0, 1, 0, 1, 1, ''),
(15082, 19939, 0, 100, 0, 1, 2, 1, 1, 'Gri\'lek - Gri\'lek\'s Blood'),
(15082, 19939, 0, 20, 0, 1, 3, 1, 1, 'Gri\'lek - Gri\'lek\'s Blood'),
(15082, 19939, 0, 20, 0, 1, 4, 1, 1, 'Gri\'lek - Gri\'lek\'s Blood'),
(15082, 19961, 0, 0, 0, 1, 1, 1, 1, 'Gri\'lek - Gri\'lek\'s Grinder'),
(15082, 19962, 0, 0, 0, 1, 1, 1, 1, 'Gri\'lek - Gri\'lek\'s Carver'),
(15084, 19940, 0, 100, 0, 1, 2, 1, 1, 'Renataki - Renataki\'s Tooth'),
(15084, 19940, 0, 20, 0, 1, 3, 1, 1, 'Renataki - Renataki\'s Tooth'),
(15084, 19940, 0, 20, 0, 1, 4, 1, 1, 'Renataki - Renataki\'s Tooth'),
(15084, 19963, 0, 0, 0, 1, 1, 1, 1, 'Renataki - Pitchfork of Madness'),
(15084, 19964, 0, 0, 0, 1, 1, 1, 1, 'Renataki - Renataki\'s Soul Conduit'),
(15083, 19942, 0, 100, 0, 1, 2, 1, 1, 'Hazza\'rah - Hazza\'rah\'s Dream Thread'),
(15083, 19942, 0, 20, 0, 1, 3, 1, 1, 'Hazza\'rah - Hazza\'rah\'s Dream Thread'),
(15083, 19942, 0, 20, 0, 1, 4, 1, 1, 'Hazza\'rah - Hazza\'rah\'s Dream Thread'),
(15083, 19967, 0, 0, 0, 1, 1, 1, 1, 'Hazza\'rah - Thoughtblighter'),
(15083, 19968, 0, 0, 0, 1, 1, 1, 1, 'Hazza\'rah - Fiery Retributer'),
(15085, 19941, 0, 100, 0, 1, 2, 1, 1, 'Wushoolay - Wushoolay\'s Mane'),
(15085, 19941, 0, 20, 0, 1, 3, 1, 1, 'Wushoolay - Wushoolay\'s Mane'),
(15085, 19941, 0, 20, 0, 1, 4, 1, 1, 'Wushoolay - Wushoolay\'s Mane'),
(15085, 19965, 0, 0, 0, 1, 1, 1, 1, 'Wushoolay - Wushoolay\'s Poker'),
(15085, 19993, 0, 0, 0, 1, 1, 1, 1, 'Wushoolay - Hoodoo Hunting Bow');
DELETE FROM `reference_loot_template` WHERE (`Entry` = 30546) AND (`Item` IN (22711, 22712, 22713, 22714, 22715, 22716, 22718, 22720, 22721, 22722)) OR (`Entry` = 30398) AND (`Item` IN (19852, 19853, 19856, 19857, 19864, 20257, 20264)) OR (`Entry` = 34090) AND (`Item` IN (19852, 19853, 19856, 19857, 19864, 20257, 20264));
INSERT INTO `reference_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
(30546, 22711, 0, 0, 0, 1, 1, 1, 1, ''),
(30546, 22712, 0, 0, 0, 1, 1, 1, 1, ''),
(30546, 22713, 0, 0, 0, 1, 1, 1, 1, ''),
(30546, 22714, 0, 0, 0, 1, 1, 1, 1, ''),
(30546, 22715, 0, 0, 0, 1, 1, 1, 1, ''),
(30546, 22716, 0, 0, 0, 1, 1, 1, 1, ''),
(30546, 22718, 0, 0, 0, 1, 1, 1, 1, ''),
(30546, 22720, 0, 0, 0, 1, 1, 1, 1, ''),
(30546, 22721, 0, 0, 0, 1, 1, 1, 1, ''),
(30546, 22722, 0, 0, 0, 1, 1, 1, 1, ''),
(30398, 19852, 0, 0, 0, 1, 1, 1, 1, ''),
(30398, 19853, 0, 0, 0, 1, 1, 1, 1, ''),
(30398, 19856, 0, 0, 0, 1, 1, 1, 1, ''),
(30398, 19857, 0, 0, 0, 1, 1, 1, 1, ''),
(30398, 19864, 0, 0, 0, 1, 1, 1, 1, ''),
(30398, 20257, 0, 0, 0, 1, 1, 1, 1, ''),
(30398, 20264, 0, 0, 0, 1, 1, 1, 1, '');

View File

@@ -1,11 +0,0 @@
-- DB update 2022_05_30_02 -> 2022_06_02_00
--
DELETE FROM `command` WHERE `name` IN ("deserter instance add", "deserter instance remove", "deserter instance remove all", "deserter bg add", "deserter bg remove", "deserter bg remove all");
INSERT INTO `command` (`name`, `security`, `help`) VALUES
("deserter instance add", 3, "Syntax: .deserter instance add $playerName $time \n\n Adds the instance deserter debuff to a player or your target with $time duration."),
("deserter instance remove", 3, "Syntax: .deserter instance remove $playerName \n\n Removes the instance deserter debuff from a player or your target."),
("deserter instance remove all", 3, "Syntax: .deserter instance remove all \n\n Removes the instance deserter debuff from all online and offline players."),
("deserter bg add", 3, "Syntax: .deserter bg add $playerName $time \n\n Adds the bg deserter debuff to a player or your target with $time duration."),
("deserter bg remove", 3, "Syntax: .deserter bg remove $playerName \n\n Removes the bg deserter debuff from a player or your target."),
("deserter bg remove all", 3, "Syntax: .deserter bg remove all \n\n Removes the bg deserter debuff from all online and offline players.");

View File

@@ -1,14 +0,0 @@
-- DB update 2022_06_02_00 -> 2022_06_02_01
-- Condition for Loh'atu gossip
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=3481;
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
(15,3481,0,0,0,8,0,5535,0,0,0,0,0,'','Show gossip option 0 if player has quest ''Spiritual Unrest'' rewarded'),
(15,3481,0,0,0,8,0,5536,0,0,0,0,0,'','Show gossip option 0 if player has quest ''A Land Filled with Hatred'' rewarded'),
(15,3481,1,0,0,8,0,5535,0,0,0,0,0,'','Show gossip option 1 if player has quest ''Spiritual Unrest'' rewarded'),
(15,3481,1,0,0,8,0,5536,0,0,0,0,0,'','Show gossip option 1 if player has quest ''A Land Filled with Hatred'' rewarded'),
(15,3481,2,0,0,8,0,5535,0,0,0,0,0,'','Show gossip option 2 if player has quest ''Spiritual Unrest'' rewarded'),
(15,3481,2,0,0,8,0,5536,0,0,0,0,0,'','Show gossip option 2 if player has quest ''A Land Filled with Hatred'' rewarded'),
(15,3481,3,0,0,8,0,5535,0,0,0,0,0,'','Show gossip option 3 if player has quest ''Spiritual Unrest'' rewarded'),
(15,3481,3,0,0,8,0,5536,0,0,0,0,0,'','Show gossip option 3 if player has quest ''A Land Filled with Hatred'' rewarded'),
(15,3481,4,0,0,8,0,5535,0,0,0,0,0,'','Show gossip option 4 if player has quest ''Spiritual Unrest'' rewarded'),
(15,3481,4,0,0,8,0,5536,0,0,0,0,0,'','Show gossip option 4 if player has quest ''A Land Filled with Hatred'' rewarded');

View File

@@ -1,17 +0,0 @@
-- DB update 2022_06_02_01 -> 2022_06_03_00
DELETE FROM `spell_proc_event` WHERE `entry` = '71602';
DELETE FROM `spell_proc_event` WHERE `entry` = '75465';
DELETE FROM `spell_proc_event` WHERE `entry` = '71845';
DELETE FROM `spell_proc_event` WHERE `entry` = '71846';
DELETE FROM `spell_proc_event` WHERE `entry` = '72419';
DELETE FROM `spell_proc_event` WHERE `entry` = '75474';
UPDATE `item_template` SET `spellppmRate_1` = 10 WHERE (`entry` = 50353);
UPDATE `item_template` SET `spellppmRate_1` = 10 WHERE (`entry` = 50348);
UPDATE `item_template` SET `spellppmRate_1` = 2 WHERE (`entry` = 49992);
UPDATE `item_template` SET `spellppmRate_1` = 2 WHERE (`entry` = 50648);
UPDATE `item_template` SET `spellppmRate_1` = 10 WHERE (`entry` = 50400);
UPDATE `item_template` SET `spellppmRate_1` = 10 WHERE (`entry` = 50399);
UPDATE `item_template` SET `spellppmRate_1` = 10 WHERE (`entry` = 54572);
UPDATE `item_template` SET `spellppmRate_1` = 10 WHERE (`entry` = 54588);

View File

@@ -1,9 +0,0 @@
-- DB update 2022_06_03_00 -> 2022_06_03_01
--
UPDATE `creature_template` SET `speed_run` = 1.14286, `speed_walk` = 1.32 WHERE `entry` = 14517;
DELETE FROM `spell_script_names` WHERE `ScriptName` = 'spell_batrider_bomb';
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
(23970, 'spell_batrider_bomb');
UPDATE `gameobject_template` SET `Data2` = 6 WHERE `entry` = 180125;

View File

@@ -1,582 +0,0 @@
-- DB update 2022_06_03_01 -> 2022_06_04_00
/* Set correct movement flags for Buzzard creatures */
UPDATE `creature_template_movement` SET `Ground` = 2 WHERE `CreatureId` IN (2830, 2829);
/* Buzzard - GUID 7006 */
SET @NPC := 7006;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `position_x` = -6811.91, `position_y` = -3616.86, `position_z` = 247.556, `orientation` = 2.74597 WHERE `guid` = @NPC;
DELETE FROM `creature_addon` WHERE `guid` = @NPC;
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES (@NPC, @PATH);
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`) VALUES
(@PATH, 1, -6809.25, -3596.17, 243.167, 100.0, 0, 2),
(@PATH, 2, -6797.86, -3589.94, 241.792, 100.0, 0, 2),
(@PATH, 3, -6758.9, -3579.09, 243.121, 100.0, 0, 2),
(@PATH, 4, -6745.04, -3555.24, 245.206, 100.0, 5000, 2),
(@PATH, 5, -6770.95, -3532.25, 245.837, 100.0, 0, 2),
(@PATH, 6, -6797.96, -3506.01, 242.788, 100.0, 0, 2),
(@PATH, 7, -6799.65, -3463.84, 241.792, 100.0, 0, 2),
(@PATH, 8, -6760.58, -3444.72, 241.988, 100.0, 0, 2),
(@PATH, 9, -6735.39, -3412.09, 241.792, 100.0, 0, 2),
(@PATH, 10, -6720.83, -3385.17, 241.785, 100.0, 0, 2),
(@PATH, 11, -6697.01, -3374.81, 243.211, 100.0, 0, 2),
(@PATH, 12, -6720.83, -3385.17, 241.785, 100.0, 0, 2),
(@PATH, 13, -6735.39, -3412.09, 241.792, 100.0, 0, 2),
(@PATH, 14, -6760.58, -3444.72, 241.988, 100.0, 0, 2),
(@PATH, 15, -6799.65, -3463.84, 241.792, 100.0, 0, 2),
(@PATH, 16, -6797.96, -3506.01, 242.788, 100.0, 0, 2),
(@PATH, 17, -6770.95, -3532.25, 245.837, 100.0, 0, 2),
(@PATH, 18, -6745.04, -3555.24, 245.206, 100.0, 0, 2),
(@PATH, 19, -6758.9, -3579.09, 243.121, 100.0, 0, 2),
(@PATH, 20, -6797.86, -3589.94, 241.792, 100.0, 0, 2),
(@PATH, 21, -6809.25, -3596.17, 243.167, 100.0, 0, 2),
(@PATH, 22, -6814.66, -3615.71, 247.226, 100.0, 0, 2);
/* Buzzard - GUID 7137 */
SET @NPC := 7137;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `position_x` = -7112.69, `position_y` = -3521.0, `position_z` = 246.566, `orientation` = 5.30948 WHERE `guid` = @NPC;
DELETE FROM `creature_addon` WHERE `guid` = @NPC;
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES (@NPC, @PATH);
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`) VALUES
(@PATH, 1, -7077.76, -3543.48, 241.898, 100.0, 0, 2),
(@PATH, 2, -7045.7, -3551.22, 243.829, 100.0, 0, 2),
(@PATH, 3, -7015.01, -3551.6, 243.641, 100.0, 0, 2),
(@PATH, 4, -6982.05, -3518.47, 242.542, 100.0, 0, 2),
(@PATH, 5, -6968.26, -3491.34, 241.792, 100.0, 0, 2),
(@PATH, 6, -6940.34, -3458.93, 241.792, 100.0, 0, 2),
(@PATH, 7, -6921.61, -3465.03, 242.421, 100.0, 0, 2),
(@PATH, 8, -6878.95, -3466.98, 244.479, 100.0, 0, 2),
(@PATH, 9, -6851.05, -3453.28, 244.063, 100.0, 0, 2),
(@PATH, 10, -6826.14, -3458.7, 244.067, 100.0, 0, 2),
(@PATH, 11, -6784.65, -3464.25, 241.792, 100.0, 0, 2),
(@PATH, 12, -6754.12, -3479.79, 242.417, 100.0, 0, 2),
(@PATH, 13, -6715.67, -3483.13, 241.924, 100.0, 0, 2),
(@PATH, 14, -6686.95, -3487.32, 252.35699999999997, 100.0, 0, 2),
(@PATH, 15, -6715.67, -3483.13, 241.799, 100.0, 0, 2),
(@PATH, 16, -6754.12, -3479.79, 242.417, 100.0, 0, 2),
(@PATH, 17, -6784.65, -3464.25, 241.792, 100.0, 0, 2),
(@PATH, 18, -6826.14, -3458.7, 244.067, 100.0, 0, 2),
(@PATH, 19, -6851.05, -3453.28, 244.063, 100.0, 0, 2),
(@PATH, 20, -6878.95, -3466.98, 244.479, 100.0, 0, 2),
(@PATH, 21, -6921.61, -3465.03, 242.421, 100.0, 0, 2),
(@PATH, 22, -6940.34, -3458.93, 241.792, 100.0, 0, 2),
(@PATH, 23, -6968.26, -3491.34, 241.792, 100.0, 0, 2),
(@PATH, 24, -6982.05, -3518.47, 242.542, 100.0, 0, 2),
(@PATH, 25, -7015.01, -3551.6, 243.641, 100.0, 0, 2),
(@PATH, 26, -7045.7, -3551.22, 243.829, 100.0, 0, 2),
(@PATH, 27, -7077.76, -3543.48, 241.898, 100.0, 0, 2),
(@PATH, 28, -7107.82, -3528.15, 245.41, 100.0, 0, 2);
/* Shadowforge Surveyor - GUID 7220 */
SET @NPC := 7220;
SET @PATH := @NPC * 10;
DELETE FROM `creature_addon` WHERE `guid` = @NPC;
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES (@NPC, @PATH);
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
(@PATH, 1, -6144.04, -3081.53, 225.98, 100.0, 0),
(@PATH, 2, -6146.38, -3077.72, 225.765, 100.0, 0),
(@PATH, 3, -6149.53, -3071.44, 226.486, 100.0, 0),
(@PATH, 4, -6152.11, -3068.48, 226.113, 100.0, 0),
(@PATH, 5, -6154.74, -3063.19, 225.002, 100.0, 0),
(@PATH, 6, -6155.24, -3055.54, 224.84, 100.0, 0),
(@PATH, 7, -6154.36, -3048.77, 224.491, 100.0, 0),
(@PATH, 8, -6150.64, -3042.61, 224.529, 100.0, 0),
(@PATH, 9, -6144.75, -3037.45, 224.996, 100.0, 0),
(@PATH, 10, -6137.22, -3033.51, 223.743, 100.0, 0),
(@PATH, 11, -6144.75, -3037.45, 224.996, 100.0, 0),
(@PATH, 12, -6150.64, -3042.61, 224.529, 100.0, 0),
(@PATH, 13, -6154.36, -3048.77, 224.491, 100.0, 0),
(@PATH, 14, -6155.24, -3055.54, 224.84, 100.0, 0),
(@PATH, 15, -6154.85, -3062.72, 224.862, 100.0, 0),
(@PATH, 16, -6152.16, -3068.39, 226.126, 100.0, 0),
(@PATH, 17, -6149.53, -3071.44, 226.486, 100.0, 0),
(@PATH, 18, -6146.38, -3077.72, 225.765, 100.0, 0),
(@PATH, 19, -6144.04, -3081.53, 225.98, 100.0, 0),
(@PATH, 20, -6141.79, -3087.05, 225.732, 100.0, 0);
/* Shadowforge Digger - GUID 7224 */
SET @NPC := 7224;
SET @PATH := @NPC * 10;
UPDATE `creature_addon` set `path_id` = @PATH WHERE `guid` = @NPC;
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
(@PATH, 1, -6154.46, -3053.13, 224.826, 100.0, 0),
(@PATH, 2, -6154.06, -3046.47, 224.652, 100.0, 0),
(@PATH, 3, -6155.4, -3043.88, 224.422, 2.28, 45000),
(@PATH, 4, -6155.82, -3055.49, 224.807, 100.0, 0),
(@PATH, 5, -6153.58, -3059.57, 224.93, 100.0, 0),
(@PATH, 6, -6151.7, -3060.31, 225.245, 0.471239, 45000);
/* Buzzard - GUID 7251 */
SET @NPC := 7251;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `position_x` = -6883.96, `position_y` = -3329.96, `position_z` = 248.58, `orientation` = 0.251015 WHERE `guid` = @NPC;
DELETE FROM `creature_addon` WHERE `guid` = @NPC;
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES (@NPC, @PATH);
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`) VALUES
(@PATH, 1, -6888.0, -3356.21, 243.799, 100.0, 0, 2),
(@PATH, 2, -6901.86, -3377.27, 242.131, 100.0, 0, 2),
(@PATH, 3, -6933.3, -3395.66, 242.587, 100.0, 0, 2),
(@PATH, 4, -6933.27, -3431.34, 242.621, 100.0, 0, 2),
(@PATH, 5, -6924.07, -3460.16, 242.376, 100.0, 0, 2),
(@PATH, 6, -6951.56, -3493.01, 241.917, 100.0, 0, 2),
(@PATH, 7, -6944.84, -3526.17, 241.792, 100.0, 0, 2),
(@PATH, 8, -6926.08, -3562.52, 241.907, 100.0, 0, 2),
(@PATH, 9, -6915.77, -3598.79, 242.975, 100.0, 0, 2),
(@PATH, 10, -6951.36, -3628.01, 241.792, 100.0, 0, 2),
(@PATH, 11, -6934.38, -3651.09, 246.249, 100.0, 0, 2),
(@PATH, 12, -6951.36, -3628.01, 241.792, 100.0, 0, 2),
(@PATH, 13, -6915.77, -3598.79, 242.975, 100.0, 0, 2),
(@PATH, 14, -6926.08, -3562.52, 241.907, 100.0, 0, 2),
(@PATH, 15, -6944.84, -3526.17, 241.792, 100.0, 0, 2),
(@PATH, 16, -6951.56, -3493.01, 241.917, 100.0, 0, 2),
(@PATH, 17, -6924.07, -3460.16, 242.376, 100.0, 0, 2),
(@PATH, 18, -6933.27, -3431.34, 242.621, 100.0, 0, 2),
(@PATH, 19, -6933.3, -3395.66, 242.587, 100.0, 0, 2),
(@PATH, 20, -6901.86, -3377.27, 242.131, 100.0, 0, 2),
(@PATH, 21, -6888.0, -3356.21, 243.799, 100.0, 0, 2),
(@PATH, 22, -6879.02, -3328.7, 247.92, 100.0, 0, 2);
/* Buzzard - GUID 7252 */
SET @NPC := 7252;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `position_x` = -6947.38, `position_y` = -3311.41, `position_z` = 260.875, `orientation` = 4.50295 WHERE `guid` = @NPC;
DELETE FROM `creature_addon` WHERE `guid` = @NPC;
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES (@NPC, @PATH);
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`) VALUES
(@PATH, 1, -6932.46, -3343.0, 243.987, 100.0, 0, 2),
(@PATH, 2, -6936.72, -3372.14, 241.792, 100.0, 0, 2),
(@PATH, 3, -6936.86, -3388.97, 242.167, 100.0, 0, 2),
(@PATH, 4, -6957.8, -3415.2, 241.792, 100.0, 0, 2),
(@PATH, 5, -6981.07, -3437.66, 241.792, 100.0, 0, 2),
(@PATH, 6, -7012.01, -3448.14, 242.167, 100.0, 0, 2),
(@PATH, 7, -7034.03, -3482.56, 241.762, 100.0, 0, 2),
(@PATH, 8, -7041.37, -3520.53, 243.426, 100.0, 0, 2),
(@PATH, 9, -7044.2, -3550.63, 244.01, 100.0, 0, 2),
(@PATH, 10, -7085.11, -3563.21, 241.792, 100.0, 0, 2),
(@PATH, 11, -7098.92, -3597.39, 244.899, 100.0, 0, 2),
(@PATH, 12, -7085.11, -3563.21, 241.792, 100.0, 0, 2),
(@PATH, 13, -7044.2, -3550.63, 244.01, 100.0, 0, 2),
(@PATH, 14, -7041.37, -3520.53, 243.426, 100.0, 0, 2),
(@PATH, 15, -7034.03, -3482.56, 241.762, 100.0, 0, 2),
(@PATH, 16, -7012.01, -3448.14, 242.167, 100.0, 0, 2),
(@PATH, 17, -6981.07, -3437.66, 241.792, 100.0, 0, 2),
(@PATH, 18, -6957.8, -3415.2, 241.792, 100.0, 0, 2),
(@PATH, 19, -6936.86, -3388.97, 242.167, 100.0, 0, 2),
(@PATH, 20, -6936.72, -3372.14, 241.792, 100.0, 0, 2),
(@PATH, 21, -6932.46, -3343.0, 243.987, 100.0, 0, 2),
(@PATH, 22, -6946.19, -3315.67, 258.952, 100.0, 0, 2);
/* Buzzard - GUID 7253 */
SET @NPC := 7253;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `position_x` = -7181.01, `position_y` = -3326.08, `position_z` = 247.645, `orientation` = 0.822118 WHERE `guid` = @NPC;
DELETE FROM `creature_addon` WHERE `guid` = @NPC;
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES (@NPC, @PATH);
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`) VALUES
(@PATH, 1, -7147.13, -3335.6, 244.256, 100.0, 0, 2),
(@PATH, 2, -7120.95, -3360.97, 242.911, 100.0, 0, 2),
(@PATH, 3, -7112.48, -3395.7, 241.918, 100.0, 0, 2),
(@PATH, 4, -7093.57, -3428.64, 242.185, 100.0, 0, 2),
(@PATH, 5, -7063.82, -3436.23, 245.298, 100.0, 0, 2),
(@PATH, 6, -7031.27, -3456.35, 243.157, 100.0, 0, 2),
(@PATH, 7, -6998.35, -3486.11, 241.792, 100.0, 0, 2),
(@PATH, 8, -6992.29, -3516.26, 243.167, 100.0, 0, 2),
(@PATH, 9, -6970.74, -3551.4, 241.866, 100.0, 0, 2),
(@PATH, 10, -6947.52, -3554.22, 242.042, 100.0, 0, 2),
(@PATH, 11, -6919.98, -3577.41, 242.47, 100.0, 0, 2),
(@PATH, 12, -6901.67, -3608.33, 242.993, 100.0, 0, 2),
(@PATH, 13, -6891.81, -3634.18, 246.06, 100.0, 0, 2),
(@PATH, 14, -6901.67, -3608.33, 242.993, 100.0, 0, 2),
(@PATH, 15, -6919.98, -3577.41, 242.47, 100.0, 0, 2),
(@PATH, 16, -6947.52, -3554.22, 242.042, 100.0, 0, 2),
(@PATH, 17, -6970.74, -3551.4, 241.866, 100.0, 0, 2),
(@PATH, 18, -6992.29, -3516.26, 243.167, 100.0, 0, 2),
(@PATH, 19, -6998.35, -3486.11, 241.792, 100.0, 0, 2),
(@PATH, 20, -7031.27, -3456.35, 243.157, 100.0, 0, 2),
(@PATH, 21, -7063.82, -3436.23, 245.298, 100.0, 0, 2),
(@PATH, 22, -7093.57, -3428.64, 242.185, 100.0, 0, 2),
(@PATH, 23, -7112.48, -3395.7, 241.918, 100.0, 0, 2),
(@PATH, 24, -7120.95, -3360.97, 242.911, 100.0, 0, 2),
(@PATH, 25, -7147.13, -3335.6, 244.256, 100.0, 0, 2),
(@PATH, 26, -7177.73, -3322.53, 246.539, 100.0, 0, 2);
/* Starving Buzzard - GUID 7561 */
SET @NPC := 7561;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `position_x` = -6388.68, `position_y` = -3576.89, `position_z` = 269.532, `orientation` = 4.08407 WHERE `guid` = @NPC;
DELETE FROM `creature_addon` WHERE `guid` = @NPC;
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES (@NPC, @PATH);
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`) VALUES
(@PATH, 1, -6371.3, -3594.98, 247.97, 100.0, 0, 2),
(@PATH, 2, -6354.91, -3614.21, 242.14, 100.0, 0, 2),
(@PATH, 3, -6362.36, -3647.93, 242.31, 100.0, 0, 2),
(@PATH, 4, -6388.21, -3641.88, 242.295, 100.0, 0, 2),
(@PATH, 5, -6408.34, -3626.71, 250.96, 100.0, 0, 2),
(@PATH, 6, -6429.45, -3627.02, 257.59, 100.0, 0, 2),
(@PATH, 7, -6445.15, -3633.09, 254.014, 100.0, 0, 2),
(@PATH, 8, -6473.49, -3647.55, 244.618, 100.0, 0, 2),
(@PATH, 9, -6480.76, -3664.51, 247.527, 100.0, 0, 2),
(@PATH, 10, -6473.28, -3676.01, 252.08100000000002, 100.0, 0, 2),
(@PATH, 11, -6471.78, -3685.61, 256.946, 100.0, 0, 2),
(@PATH, 12, -6478.87, -3700.13, 265.363, 100.0, 0, 2),
(@PATH, 13, -6488.8, -3703.67, 270.987, 100.0, 0, 2),
(@PATH, 14, -6504.08, -3706.28, 273.873, 100.0, 0, 2),
(@PATH, 15, -6526.79, -3698.45, 272.456, 100.0, 0, 2),
(@PATH, 16, -6504.11, -3706.28, 273.991, 100.0, 0, 2),
(@PATH, 17, -6488.8, -3703.67, 270.987, 100.0, 0, 2),
(@PATH, 18, -6478.87, -3700.13, 265.363, 100.0, 0, 2),
(@PATH, 19, -6471.78, -3685.61, 256.946, 100.0, 0, 2),
(@PATH, 20, -6473.28, -3676.01, 252.08100000000002, 100.0, 0, 2),
(@PATH, 21, -6480.76, -3664.51, 247.527, 100.0, 0, 2),
(@PATH, 22, -6473.49, -3647.55, 244.618, 100.0, 0, 2),
(@PATH, 23, -6445.15, -3633.09, 254.014, 100.0, 0, 2),
(@PATH, 24, -6429.45, -3627.02, 257.59, 100.0, 0, 2),
(@PATH, 25, -6408.34, -3626.71, 250.96, 100.0, 0, 2),
(@PATH, 26, -6388.21, -3641.88, 242.295, 100.0, 0, 2),
(@PATH, 27, -6362.36, -3647.93, 242.31, 100.0, 0, 2),
(@PATH, 28, -6354.91, -3614.21, 242.14, 100.0, 0, 2),
(@PATH, 29, -6371.3, -3594.98, 247.97, 100.0, 0, 2),
(@PATH, 30, -6395.35, -3586.23, 270.905, 100.0, 0, 2);
/* Starving Buzzard - GUID 7607 */
SET @NPC := 7607;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `position_x` = -6547.11, `position_y` = -3590.26, `position_z` = 263.315, `orientation` = 5.2796 WHERE `guid` = @NPC;
DELETE FROM `creature_addon` WHERE `guid` = @NPC;
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES (@NPC, @PATH);
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`) VALUES
(@PATH, 1, -6546.91, -3612.78, 252.546, 100.0, 0, 2),
(@PATH, 2, -6567.01, -3630.33, 242.39, 100.0, 0, 2),
(@PATH, 3, -6596.16, -3615.76, 241.792, 100.0, 0, 2),
(@PATH, 4, -6621.69, -3592.92, 242.001, 100.0, 0, 2),
(@PATH, 5, -6643.48, -3599.43, 241.792, 100.0, 0, 2),
(@PATH, 6, -6653.5, -3629.29, 242.042, 100.0, 0, 2),
(@PATH, 7, -6665.13, -3654.09, 252.755, 100.0, 0, 2),
(@PATH, 8, -6655.26, -3666.55, 258.265, 100.0, 0, 2),
(@PATH, 9, -6648.55, -3671.17, 262.686, 100.0, 0, 2),
(@PATH, 10, -6634.89, -3676.32, 264.832, 100.0, 0, 2),
(@PATH, 11, -6615.17, -3681.26, 265.56, 100.0, 0, 2),
(@PATH, 12, -6593.81, -3698.81, 268.281, 100.0, 0, 2),
(@PATH, 13, -6571.59, -3703.16, 273.226, 100.0, 0, 2),
(@PATH, 14, -6547.1, -3700.65, 272.422, 100.0, 0, 2),
(@PATH, 15, -6571.59, -3703.16, 273.226, 100.0, 0, 2),
(@PATH, 16, -6593.81, -3698.81, 268.281, 100.0, 0, 2),
(@PATH, 17, -6615.17, -3681.26, 265.56, 100.0, 0, 2),
(@PATH, 18, -6634.89, -3676.32, 264.832, 100.0, 0, 2),
(@PATH, 19, -6648.55, -3671.17, 262.686, 100.0, 0, 2),
(@PATH, 20, -6655.26, -3666.55, 258.265, 100.0, 0, 2),
(@PATH, 21, -6665.13, -3654.09, 252.755, 100.0, 0, 2),
(@PATH, 22, -6653.5, -3629.29, 242.042, 100.0, 0, 2),
(@PATH, 23, -6643.48, -3599.43, 241.792, 100.0, 0, 2),
(@PATH, 24, -6621.69, -3592.92, 242.001, 100.0, 0, 2),
(@PATH, 25, -6596.16, -3615.76, 241.792, 100.0, 0, 2),
(@PATH, 26, -6567.01, -3630.33, 242.39, 100.0, 0, 2),
(@PATH, 27, -6546.91, -3612.78, 252.546, 100.0, 0, 2),
(@PATH, 28, -6545.3, -3593.11, 262.506, 100.0, 0, 2);
/* Buzzard - GUID 7614 */
SET @NPC := 7614;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `position_x` = -6787.12, `position_y` = -3653.08, `position_z` = 247.035, `orientation` = 2.40914 WHERE `guid` = @NPC;
DELETE FROM `creature_addon` WHERE `guid` = @NPC;
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES (@NPC, @PATH);
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`) VALUES
(@PATH, 1, -6772.58, -3640.43, 243.189, 100.0, 0, 2),
(@PATH, 2, -6754.54, -3631.1, 241.749, 100.0, 0, 2),
(@PATH, 3, -6755.22, -3618.73, 241.749, 100.0, 0, 2),
(@PATH, 4, -6752.14, -3604.26, 242.05, 100.0, 0, 2),
(@PATH, 5, -6737.61, -3596.97, 242.547, 100.0, 0, 2),
(@PATH, 6, -6721.14, -3587.47, 242.711, 100.0, 0, 2),
(@PATH, 7, -6716.05, -3564.79, 243.176, 100.0, 0, 2),
(@PATH, 8, -6688.82, -3544.26, 242.138, 100.0, 0, 2),
(@PATH, 9, -6661.65, -3516.61, 247.939, 100.0, 0, 2),
(@PATH, 10, -6658.14, -3483.01, 257.019, 100.0, 0, 2),
(@PATH, 11, -6648.16, -3458.14, 261.122, 100.0, 0, 2),
(@PATH, 12, -6658.12, -3412.55, 258.497, 100.0, 0, 2),
(@PATH, 13, -6648.16, -3458.14, 261.122, 100.0, 0, 2),
(@PATH, 14, -6658.14, -3483.01, 257.019, 100.0, 0, 2),
(@PATH, 15, -6661.65, -3516.61, 247.939, 100.0, 0, 2),
(@PATH, 16, -6688.82, -3544.26, 242.138, 100.0, 0, 2),
(@PATH, 17, -6715.98, -3564.71, 243.138, 100.0, 0, 2),
(@PATH, 18, -6721.04, -3587.42, 242.62, 100.0, 0, 2),
(@PATH, 19, -6737.61, -3596.97, 242.547, 100.0, 0, 2),
(@PATH, 20, -6752.14, -3604.26, 242.05, 100.0, 0, 2),
(@PATH, 21, -6755.22, -3618.73, 241.749, 100.0, 0, 2),
(@PATH, 22, -6754.54, -3631.1, 241.749, 100.0, 0, 2),
(@PATH, 23, -6772.58, -3640.43, 243.189, 100.0, 0, 2),
(@PATH, 24, -6787.63, -3652.62, 247.154, 100.0, 0, 2);
/* Starving Buzzard - GUID 7705 */
SET @NPC := 7705;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `position_x` = -6344.17, `position_y` = -3295.69, `position_z` = 262.754, `orientation` = 4.18879 WHERE `guid` = @NPC;
DELETE FROM `creature_addon` WHERE `guid` = @NPC;
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES (@NPC, @PATH);
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`) VALUES
(@PATH, 1, -6337.79, -3317.69, 249.862, 100.0, 0, 2),
(@PATH, 2, -6348.75, -3332.36, 242.44, 100.0, 0, 2),
(@PATH, 3, -6344.74, -3365.74, 241.792, 100.0, 0, 2),
(@PATH, 4, -6317.13, -3396.21, 240.141, 100.0, 0, 2),
(@PATH, 5, -6285.82, -3419.93, 239.051, 100.0, 0, 2),
(@PATH, 6, -6253.66, -3436.98, 237.79, 100.0, 0, 2),
(@PATH, 7, -6237.7, -3458.54, 239.34, 100.0, 0, 2),
(@PATH, 8, -6251.97, -3473.62, 246.596, 100.0, 0, 2),
(@PATH, 9, -6270.89, -3486.68, 252.644, 100.0, 0, 2),
(@PATH, 10, -6294.5, -3496.35, 250.91, 100.0, 0, 2),
(@PATH, 11, -6313.64, -3498.86, 246.061, 100.0, 0, 2),
(@PATH, 12, -6342.42, -3506.43, 241.834, 100.0, 0, 2),
(@PATH, 13, -6357.96, -3521.32, 246.796, 100.0, 0, 2),
(@PATH, 14, -6371.56, -3543.19, 259.244, 100.0, 0, 2),
(@PATH, 15, -6357.96, -3521.32, 246.796, 100.0, 0, 2),
(@PATH, 16, -6342.42, -3506.43, 241.834, 100.0, 0, 2),
(@PATH, 17, -6313.64, -3498.86, 246.061, 100.0, 0, 2),
(@PATH, 18, -6294.5, -3496.35, 250.91, 100.0, 0, 2),
(@PATH, 19, -6270.89, -3486.68, 252.644, 100.0, 0, 2),
(@PATH, 20, -6251.97, -3473.62, 246.596, 100.0, 0, 2),
(@PATH, 21, -6237.7, -3458.54, 239.34, 100.0, 0, 2),
(@PATH, 22, -6253.66, -3436.98, 237.79, 100.0, 0, 2),
(@PATH, 23, -6285.82, -3419.93, 239.051, 100.0, 0, 2),
(@PATH, 24, -6317.13, -3396.21, 240.141, 100.0, 0, 2),
(@PATH, 25, -6344.74, -3365.74, 241.792, 100.0, 0, 2),
(@PATH, 26, -6348.75, -3332.36, 242.44, 100.0, 0, 2),
(@PATH, 27, -6337.79, -3317.69, 249.862, 100.0, 0, 2),
(@PATH, 28, -6348.47, -3296.53, 262.444, 100.0, 0, 2);
/* Starving Buzzard - GUID 7706 */
SET @NPC := 7706;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `position_x` = -6293.02, `position_y` = -3540.83, `position_z` = 255.493, `orientation` = 6.0912 WHERE `guid` = @NPC;
DELETE FROM `creature_addon` WHERE `guid` = @NPC;
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES (@NPC, @PATH);
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`) VALUES
(@PATH, 1, -6309.64, -3551.04, 250.121, 100.0, 0, 2),
(@PATH, 2, -6330.5, -3565.26, 242.258, 100.0, 0, 2),
(@PATH, 3, -6356.39, -3578.34, 244.417, 100.0, 0, 2),
(@PATH, 4, -6360.57, -3601.59, 241.869, 100.0, 0, 2),
(@PATH, 5, -6363.55, -3635.48, 241.792, 100.0, 0, 2),
(@PATH, 6, -6383.01, -3653.02, 243.271, 100.0, 0, 2),
(@PATH, 7, -6400.48, -3665.74, 243.501, 100.0, 0, 2),
(@PATH, 8, -6423.64, -3669.32, 243.821, 100.0, 0, 2),
(@PATH, 9, -6449.26, -3667.73, 243.82, 100.0, 0, 2),
(@PATH, 10, -6473.78, -3659.77, 245.28, 100.0, 0, 2),
(@PATH, 11, -6486.57, -3671.69, 252.15499999999997, 100.0, 0, 2),
(@PATH, 12, -6473.78, -3659.77, 245.28, 100.0, 0, 2),
(@PATH, 13, -6449.26, -3667.73, 243.82, 100.0, 0, 2),
(@PATH, 14, -6423.64, -3669.32, 243.821, 100.0, 0, 2),
(@PATH, 15, -6400.48, -3665.74, 243.501, 100.0, 0, 2),
(@PATH, 16, -6383.01, -3653.02, 243.271, 100.0, 0, 2),
(@PATH, 17, -6363.55, -3635.48, 241.792, 100.0, 0, 2),
(@PATH, 18, -6360.57, -3601.59, 241.869, 100.0, 0, 2),
(@PATH, 19, -6356.46, -3578.38, 244.332, 100.0, 0, 2),
(@PATH, 20, -6330.5, -3565.26, 242.258, 100.0, 0, 2),
(@PATH, 21, -6309.64, -3551.04, 250.121, 100.0, 0, 2),
(@PATH, 22, -6293.6, -3543.78, 254.57100000000003, 100.0, 0, 2);
/* Starving Buzzard - GUID 7724 */
SET @NPC := 7724;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `position_x` = -6118.22, `position_y` = -3446.35, `position_z` = 263.376, `orientation` = 1.68663 WHERE `guid` = @NPC;
DELETE FROM `creature_addon` WHERE `guid` = @NPC;
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES (@NPC, @PATH);
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`) VALUES
(@PATH, 1, -6135.86, -3430.15, 250.7, 100.0, 0, 2),
(@PATH, 2, -6152.67, -3417.56, 244.799, 100.0, 0, 2),
(@PATH, 3, -6165.62, -3391.81, 243.028, 100.0, 0, 2),
(@PATH, 4, -6181.44, -3386.96, 241.163, 100.0, 0, 2),
(@PATH, 5, -6213.01, -3381.29, 239.398, 100.0, 0, 2),
(@PATH, 6, -6245.12, -3387.58, 239.271, 100.0, 0, 2),
(@PATH, 7, -6266.66, -3407.41, 239.168, 100.0, 0, 2),
(@PATH, 8, -6278.52, -3423.51, 238.746, 100.0, 0, 2),
(@PATH, 9, -6314.57, -3442.77, 239.492, 100.0, 0, 2),
(@PATH, 10, -6337.46, -3462.88, 241.753, 100.0, 0, 2),
(@PATH, 11, -6347.84, -3477.28, 241.86, 100.0, 0, 2),
(@PATH, 12, -6338.71, -3515.47, 241.834, 100.0, 0, 2),
(@PATH, 13, -6333.27, -3534.63, 241.685, 100.0, 0, 2),
(@PATH, 14, -6307.21, -3550.54, 250.302, 100.0, 0, 2),
(@PATH, 15, -6286.62, -3543.03, 258.238, 100.0, 0, 2),
(@PATH, 16, -6307.21, -3550.54, 250.302, 100.0, 0, 2),
(@PATH, 17, -6333.27, -3534.63, 241.685, 100.0, 0, 2),
(@PATH, 18, -6338.71, -3515.47, 241.834, 100.0, 0, 2),
(@PATH, 19, -6347.84, -3477.28, 241.86, 100.0, 0, 2),
(@PATH, 20, -6337.46, -3462.88, 241.753, 100.0, 0, 2),
(@PATH, 21, -6314.57, -3442.77, 239.492, 100.0, 0, 2),
(@PATH, 22, -6278.52, -3423.51, 238.746, 100.0, 0, 2),
(@PATH, 23, -6266.66, -3407.41, 239.168, 100.0, 0, 2),
(@PATH, 24, -6245.12, -3387.58, 239.271, 100.0, 0, 2),
(@PATH, 25, -6213.01, -3381.29, 239.398, 100.0, 0, 2),
(@PATH, 26, -6181.51, -3386.97, 241.042, 100.0, 0, 2),
(@PATH, 27, -6165.62, -3391.81, 243.028, 100.0, 0, 2),
(@PATH, 28, -6152.73, -3417.5, 244.855, 100.0, 0, 2),
(@PATH, 29, -6135.91, -3430.1, 250.674, 100.0, 0, 2),
(@PATH, 30, -6118.29, -3445.71, 263.008, 100.0, 0, 2);
/* Shadowforge Digger - GUID 7736 */
SET @NPC := 7736;
SET @PATH := @NPC * 10;
UPDATE `creature_addon` set `path_id` = @PATH WHERE `guid` = @NPC;
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
(@PATH, 1, -6116.14, -3006.02, 223.452, 100.0, 45000),
(@PATH, 2, -6123.77, -3009.48, 221.833, 2.9947, 45000);
/* Starving Buzzard - GUID 7796 */
SET @NPC := 7796;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `position_x` = -6363.76, `position_y` = -3508.55, `position_z` = 246.23, `orientation` = 5.96903 WHERE `guid` = @NPC;
DELETE FROM `creature_addon` WHERE `guid` = @NPC;
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES (@NPC, @PATH);
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`, `move_type`) VALUES
(@PATH, 1, -6368.26, -3466.82, 244.829, 100.0, 0, 2),
(@PATH, 2, -6362.57, -3443.06, 241.753, 100.0, 0, 2),
(@PATH, 3, -6345.93, -3416.62, 241.559, 100.0, 0, 2),
(@PATH, 4, -6313.67, -3401.18, 239.946, 100.0, 0, 2),
(@PATH, 5, -6285.39, -3406.43, 239.255, 100.0, 0, 2),
(@PATH, 6, -6257.33, -3442.1, 237.983, 100.0, 0, 2),
(@PATH, 7, -6238.56, -3451.22, 238.124, 100.0, 0, 2),
(@PATH, 8, -6210.24, -3438.81, 238.298, 100.0, 0, 2),
(@PATH, 9, -6198.03, -3408.55, 239.194, 100.0, 0, 2),
(@PATH, 10, -6192.33, -3386.96, 239.292, 100.0, 0, 2),
(@PATH, 11, -6174.5, -3369.47, 245.401, 100.0, 0, 2),
(@PATH, 12, -6149.01, -3369.75, 244.548, 100.0, 0, 2),
(@PATH, 13, -6174.5, -3369.47, 245.401, 100.0, 0, 2),
(@PATH, 14, -6192.33, -3386.96, 239.292, 100.0, 0, 2),
(@PATH, 15, -6198.03, -3408.55, 239.194, 100.0, 0, 2),
(@PATH, 16, -6210.24, -3438.81, 238.298, 100.0, 0, 2),
(@PATH, 17, -6238.56, -3451.22, 238.124, 100.0, 0, 2),
(@PATH, 18, -6257.33, -3442.1, 237.983, 100.0, 0, 2),
(@PATH, 19, -6285.39, -3406.43, 239.255, 100.0, 0, 2),
(@PATH, 20, -6313.67, -3401.18, 239.946, 100.0, 0, 2),
(@PATH, 21, -6345.93, -3416.62, 241.559, 100.0, 0, 2),
(@PATH, 22, -6362.57, -3443.06, 241.753, 100.0, 0, 2),
(@PATH, 23, -6368.25, -3466.71, 244.777, 100.0, 0, 2),
(@PATH, 24, -6360.65, -3507.1, 244.52, 100.0, 0, 2);
/* Shadowforge Ruffian - GUID 9230 */
SET @NPC := 9230;
SET @PATH := @NPC * 10;
UPDATE `creature_addon` set `path_id` = @PATH WHERE `guid` = @NPC;
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
(@PATH, 1, -6071.02, -3133.92, 254.006, 100.0, 0),
(@PATH, 2, -6067.03, -3134.64, 253.744, 100.0, 0),
(@PATH, 3, -6069.15, -3137.9, 254.253, 100.0, 0),
(@PATH, 4, -6076.13, -3133.62, 253.989, 100.0, 0),
(@PATH, 5, -6080.28, -3131.97, 253.426, 100.0, 0),
(@PATH, 6, -6084.9, -3130.2, 253.631, 100.0, 0),
(@PATH, 7, -6088.52, -3124.03, 252.514, 100.0, 0),
(@PATH, 8, -6089.38, -3117.48, 251.538, 100.0, 0),
(@PATH, 9, -6089.48, -3111.04, 251.394, 100.0, 0),
(@PATH, 10, -6089.52, -3106.35, 250.837, 100.0, 0),
(@PATH, 11, -6089.07, -3114.42, 251.377, 100.0, 0),
(@PATH, 12, -6088.68, -3121.53, 252.032, 100.0, 0),
(@PATH, 13, -6087.68, -3126.75, 253.098, 100.0, 0),
(@PATH, 14, -6085.5, -3129.51, 253.555, 100.0, 0),
(@PATH, 15, -6080.6, -3130.18, 253.74, 100.0, 0),
(@PATH, 16, -6076.07, -3130.61, 254.185, 100.0, 0);

View File

@@ -1,3 +0,0 @@
-- DB update 2022_06_04_00 -> 2022_06_06_00
--
UPDATE `creature_template` SET `flags_extra`=`flags_extra`|256 WHERE `entry`=15082;

View File

@@ -1,15 +0,0 @@
-- DB update 2022_06_06_00 -> 2022_06_06_01
DELETE FROM `creature_loot_template` WHERE (`Entry` = 15204) AND (`Item` IN (20689, 20690, 20691)) OR (`Entry` = 15205) AND (`Item` IN (20686, 20687, 20688)) OR (`Entry` = 15305) AND (`Item` IN (20683, 20684, 20685))OR (`Item` IN (20680, 20681, 20682));
INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
(15203, 20680, 0, 33.3334, 0, 1, 3, 1, 1, 'Prince Skaldrenox - Abyssal Mail Pauldrons'),
(15203, 20681, 0, 33.3333, 0, 1, 3, 1, 1, 'Prince Skaldrenox - Abyssal Leather Bracers'),
(15203, 20682, 0, 33.3333, 0, 1, 3, 1, 1, 'Prince Skaldrenox - Elemental Focus Band'),
(15204, 20689, 0, 33.3333, 0, 1, 3, 1, 1, 'High Marshal Whirlaxis - Abyssal Leather Shoulders'),
(15204, 20690, 0, 33.3333, 0, 1, 3, 1, 1, 'High Marshal Whirlaxis - Abyssal Cloth Wristbands'),
(15204, 20691, 0, 33.3334, 0, 1, 3, 1, 1, 'High Marshal Whirlaxis - Windshear Cape'),
(15205, 20686, 0, 33.3334, 0, 1, 3, 1, 1, 'Baron Kazum - Abyssal Cloth Amice'),
(15205, 20687, 0, 33.3333, 0, 1, 3, 1, 1, 'Baron Kazum - Abyssal Plate Vambraces'),
(15205, 20688, 0, 33.3333, 0, 1, 3, 1, 1, 'Baron Kazum - Earthen Guard'),
(15305, 20683, 0, 33.3333, 0, 1, 3, 1, 1, 'Lord Skwol - Abyssal Plate Epaulets'),
(15305, 20684, 0, 33.3333, 0, 1, 3, 1, 1, 'Lord Skwol - Abyssal Mail Armguards'),
(15305, 20685, 0, 33.3334, 0, 1, 3, 1, 1, 'Lord Skwol - Wavefront Necklace');

View File

@@ -1,44 +0,0 @@
-- DB update 2022_06_06_01 -> 2022_06_06_02
-- Flame Leviathan add mising Boss Emote (15 and above)
DELETE FROM `creature_text` WHERE `CreatureID` = 33113;
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(33113, 0, 0, 'Hostile entities detected. Threat assessment protocol active. Primary target engaged. Time minus 30 seconds to re-evaluation.', 14, 0, 100, 0, 0, 15506, 33487, 0, 'Flame Leviathan SAY_AGGRO'),
(33113, 1, 0, 'Threat assessment routine modified. Current target threat level: 0. Acquiring new target.', 14, 0, 100, 0, 0, 15521, 33507, 0, 'Flame Leviathan SAY_SLAY'),
(33113, 2, 0, 'Total systems failure. Defense protocols breached. Leviathan unit shutting down.', 14, 0, 100, 0, 0, 15520, 33506, 0, 'Flame Leviathan SAY_DEATH'),
(33113, 3, 0, 'Threat re-evaluated. Target assessment complete. Changing course.', 14, 0, 100, 0, 0, 15507, 33488, 0, 'Flame Leviathan SAY_TARGET_1'),
(33113, 3, 1, 'Pursuit objective modified. Changing course.', 14, 0, 100, 0, 0, 15508, 33489, 0, 'Flame Leviathan SAY_TARGET_2'),
(33113, 3, 2, 'Hostile entity\'s stratagem predicted. Re-routing battle function. Changing course.', 14, 0, 100, 0, 0, 15509, 33490, 0, 'Flame Leviathan SAY_TARGET_3'),
(33113, 4, 0, 'Orbital countermeasures enabled.', 14, 0, 100, 0, 0, 15510, 33491, 0, 'Flame Leviathan SAY_HARDMODE'),
(33113, 5, 0, '*ALERT* Static defense system failure. Orbital countermeasures disabled.', 14, 0, 100, 0, 0, 15511, 33492, 0, 'Flame Leviathan SAY_TOWER_NONE'),
(33113, 6, 0, 'Hodir\'s Fury online. Acquiring target.', 14, 0, 100, 0, 0, 15512, 33493, 0, 'Flame Leviathan SAY_TOWER_FROST'),
(33113, 7, 0, 'Mimiron\'s Inferno online. Acquiring target.', 14, 0, 100, 0, 0, 15513, 33495, 0, 'Flame Leviathan SAY_TOWER_FLAME'),
(33113, 8, 0, 'Freya\'s Ward online. Acquiring target.', 14, 0, 100, 0, 0, 15514, 33497, 0, 'Flame Leviathan SAY_TOWER_NATURE'),
(33113, 9, 0, 'Thorim\'s Hammer online. Acquiring target.', 14, 0, 100, 0, 0, 15515, 33499, 0, 'Flame Leviathan SAY_TOWER_STORM'),
(33113, 10, 0, 'Unauthorized entity attempting circuit overload. Activating anti-personnel countermeasures.', 14, 0, 100, 0, 0, 15516, 33501, 0, 'Flame Leviathan SAY_PLAYER_RIDING'),
(33113, 11, 0, 'System malfunction. Diverting power to support systems.', 14, 0, 100, 0, 0, 15517, 33503, 0, 'Flame Leviathan SAY_OVERLOAD_1'),
(33113, 11, 1, 'Combat matrix overload. Powering doooow...', 14, 0, 100, 0, 0, 15518, 33504, 0, 'Flame Leviathan SAY_OVERLOAD_2'),
(33113, 11, 2, 'System restart required. Deactivating weapons systems.', 14, 0, 100, 0, 0, 15519, 33505, 0, 'Flame Leviathan SAY_OVERLOAD_3'),
(33113, 12, 0, '%s pursues $n.', 41, 0, 100, 0, 0, 0, 33502, 0, 'Flame Leviathan EMOTE_PURSUE'),
(33113, 13, 0, '%s\'s circuits overloaded.', 41, 0, 100, 0, 0, 0, 33304, 0, 'Flame Leviathan EMOTE_OVERLOAD'),
(33113, 14, 0, 'Automatic repair sequence initiated.', 41, 0, 100, 0, 0, 0, 33538, 0, 'Flame Leviathan EMOTE_REPAIR'),
(33113, 15, 0, '%s activates Hodir\'s Fury.', 41, 0, 100, 0, 0, 0, 33494, 0, 'Flame Leviathan EMOTE_FROST'),
(33113, 16, 0, '%s activates Mimiron\'s Inferno.', 41, 0, 100, 0, 0, 0, 33496, 0, 'Flame Leviathan EMOTE_FLAME'),
(33113, 17, 0, '%s activates Freya\'s Ward.', 41, 0, 100, 0, 0, 0, 33498, 0, 'Flame Leviathan EMOTE_NATURE'),
(33113, 18, 0, '%s activates Thorim\'s Hammer.', 41, 0, 100, 0, 0, 0, 33500, 0, 'Flame Leviathan EMOTE_STORM'),
(33113, 19, 0, '%s reactivated. Resuming combat functions.', 41, 0, 100, 0, 0, 0, 33305, 0, 'Flame Leviathan EMOTE_REACTIVATE');
-- Bronzebeard Radio remove equipment (floating pickaxe)
DELETE FROM `creature_equip_template` WHERE `CreatureID` = 34054;
-- Bronzebeard Radio move hardcode to DB (previously empty)
DELETE FROM `creature_text` WHERE `CreatureID` = 34054;
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(34054, 0, 0, 'You\'ve done it! You\'ve broken the defenses of Ulduar. In a few moments, we will be dropping in to...', 12, 0, 100, 0, 0, 15804, 34154, 3, 'Bronzebeard Radio SAY_FL_START_0'),
(34054, 1, 0, 'What is that? Be careful! Something\'s headed your way!', 12, 0, 100, 0, 0, 15805, 34155, 3, 'Bronzebeard Radio SAY_FL_START_1'),
(34054, 2, 0, 'Quicly! Evasive action! Evasive act--', 12, 0, 100, 0, 0, 15806, 34156, 3, 'Bronzebeard Radio SAY_FL_START_2'),
(34054, 3, 0, 'There are four generators powering the defense structures. If you sabotage the generators, the missile attacks will stop!', 12, 0, 100, 0, 0, 15796, 34147, 3, 'Bronzebeard Radio SAY_FL_GENERATORS'),
(34054, 4, 0, 'It appears you are near a repair station! Drive your vehicle onto the platform, and it should be automatically repaired.', 12, 0, 100, 0, 0, 15803, 34153, 3, 'Bronzebeard Radio SAY_STATIONS'),
(34054, 5, 0, 'Ah, the tower of Krolmir. It is said that the power of Thorim has been used only once... and that it turned an entire continent to dust.', 12, 0, 100, 0, 0, 15801, 34151, 3, 'Bronzebeard Radio SAY_TOWER_THORIM'),
(34054, 6, 0, 'This tower powers the Hammer of Hodir. It is said to have the power to turn entire armies to ice!', 12, 0, 100, 0, 0, 15797, 34148, 3, 'Bronzebeard Radio SAY_TOWER_HODIR'),
(34054, 7, 0, 'You\'re approaching the tower of Freya. It contains the power to turn barren wastelands into jungles teeming with life overnight.', 12, 0, 100, 0, 0, 15798, 34149, 3, 'Bronzebeard Radio SAY_TOWER_FREYA'),
(34054, 8, 0, 'This generator powers Mimiron\'s Gaze. In moments, it can turn earth to ash, stone to magma--we cannot let it reach full power!', 12, 0, 100, 0, 0, 15799, 34150, 3, 'Bronzebeard Radio SAY_TOWER_MIMIRON');

View File

@@ -1,3 +0,0 @@
-- DB update 2022_06_06_02 -> 2022_06_06_03
--
UPDATE `smart_scripts` SET `action_param2`=0 WHERE `entryorguid`=30105 AND `source_type`=0 AND `id`=1;

View File

@@ -1,10 +0,0 @@
-- DB update 2022_06_06_03 -> 2022_06_06_04
--
DELETE FROM `creature_text` WHERE `CreatureID` IN (11347, 11348) AND `GroupId` = 0;
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration` ,`Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(11347, 0, 0, '%s dies.', 16, 0, 100, 0, 0, 0, 8251, 3, ''),
(11348, 0, 0, '%s dies.', 16, 0, 100, 0, 0, 0, 8251, 3, '');
DELETE FROM `creature_text` WHERE `CreatureID` = 14509 AND `GroupId` = 2;
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration` ,`Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
(14509, 2, 0, '%s dies.', 16, 0, 100, 0, 0, 0, 8251, 3, '');

View File

@@ -1,3 +0,0 @@
-- DB update 2022_06_06_04 -> 2022_06_06_05
--
UPDATE `creature_template` SET `flags_extra`=`flags_extra`|0x00400000 WHERE `entry`=14986;

View File

@@ -1,834 +0,0 @@
-- DB update 2022_06_06_05 -> 2022_06_08_00
--
/* Frostmane Troll Whelp - GUID 1311 */
SET @NPC := 1311;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `position_x` = -6528.93, `position_y` = 401.96, `position_z` = 382.521, `orientation` = 0.949249 WHERE `guid` = @NPC;
DELETE FROM `creature_addon` WHERE `guid` = @NPC;
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES (@NPC, @PATH);
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
(@PATH, 1, -6528.93, 401.96, 382.521, 100.0, 0),
(@PATH, 2, -6531.52, 394.46, 381.74, 100.0, 0),
(@PATH, 3, -6537.66, 385.633, 381.193, 100.0, 0),
(@PATH, 4, -6538.54, 377.197, 381.4, 100.0, 0),
(@PATH, 5, -6530.65, 380.315, 382.223, 100.0, 0),
(@PATH, 6, -6524.32, 382.633, 382.528, 100.0, 0),
(@PATH, 7, -6518.64, 384.007, 383.915, 100.0, 0),
(@PATH, 8, -6510.7, 385.93, 384.638, 100.0, 0),
(@PATH, 9, -6498.4, 390.355, 384.936, 100.0, 0),
(@PATH, 10, -6507.72, 386.65, 385.012, 100.0, 0),
(@PATH, 11, -6516.47, 384.167, 384.138, 100.0, 0),
(@PATH, 12, -6523.69, 382.846, 382.742, 100.0, 0),
(@PATH, 13, -6531.98, 379.712, 382.186, 100.0, 0),
(@PATH, 14, -6538.37, 377.715, 381.373, 100.0, 0),
(@PATH, 15, -6539.57, 386.47, 381.676, 100.0, 0),
(@PATH, 16, -6533.17, 392.053, 381.583, 100.0, 0);
/* Ironforge Guard - GUID 1748 */
SET @NPC := 1748;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `position_x` = -4958.85, `position_y` = -997.529, `position_z` = 501.572, `orientation` = 0.977868 WHERE `guid` = @NPC;
DELETE FROM `creature_addon` WHERE `guid` = @NPC;
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES (@NPC, @PATH);
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
(@PATH, 1, -4942.37, -973.067, 501.552, 0.0, 0),
(@PATH, 2, -4922.72, -954.752, 501.57, 0.0, 0),
(@PATH, 3, -4896.28, -936.781, 501.492, 0.0, 0),
(@PATH, 4, -4872.0, -926.028, 501.515, 0.0, 0),
(@PATH, 5, -4872.0, -926.028, 501.515, 3.5488, 45000),
(@PATH, 6, -4905.08, -941.83, 501.56, 0.0, 0),
(@PATH, 7, -4929.3, -961.502, 501.57, 0.0, 0),
(@PATH, 8, -4958.95, -997.889, 501.481, 0.0, 0),
(@PATH, 9, -4958.95, -997.889, 501.481, 0.9884, 45000);
/* High Priest Rohan - GUID 1777 */
SET @NPC := 1777;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `position_x` = -4612.27, `position_y` = -909.098, `position_z` = 501.146, `orientation` = 4.32842 WHERE `guid` = @NPC;
DELETE FROM `creature_addon` WHERE `guid` = @NPC;
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES (@NPC, @PATH);
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
(@PATH, 1, -4612.25, -909.152, 501.062, 4.32842, 90000),
(@PATH, 2, -4603.22, -905.336, 502.767, 0.0, 0),
(@PATH, 3, -4602.8, -903.233, 502.767, 0.0, 0),
(@PATH, 4, -4607.16, -897.28, 502.767, 0.0, 0),
(@PATH, 5, -4607.16, -897.28, 502.767, 5.35816, 90000),
(@PATH, 6, -4601.63, -904.615, 502.767, 0.0, 0),
(@PATH, 7, -4602.05, -906.355, 502.767, 0.0, 0),
(@PATH, 8, -4608.62, -913.508, 501.061, 0.0, 0),
(@PATH, 9, -4610.18, -921.852, 501.068, 0.0, 0),
(@PATH, 10, -4607.63, -926.901, 501.071, 0.0, 0),
(@PATH, 11, -4607.63, -926.901, 501.071, 2.33874, 180000),
(@PATH, 12, -4612.25, -909.152, 501.062, 0.0, 0);
/* Roetten Stonehammer - GUID 1888 */
SET @NPC := 1888;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `position_x` = -4681.39, `position_y` = -1266.61, `position_z` = 503.382, `orientation` = 2.35619 WHERE `guid` = @NPC;
DELETE FROM `creature_addon` WHERE `guid` = @NPC;
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES (@NPC, @PATH);
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
(@PATH, 1, -4686.15, -1255.14, 501.993, 0.0, 0),
(@PATH, 2, -4675.92, -1244.38, 501.993, 0.0, 0),
(@PATH, 3, -4667.5, -1245.78, 501.993, 0.0, 0),
(@PATH, 4, -4661.6, -1250.52, 503.382, 0.0, 0),
(@PATH, 5, -4661.6, -1250.52, 503.382, 2.03745, 60000),
(@PATH, 6, -4670.11, -1243.08, 501.993, 0.0, 0),
(@PATH, 7, -4681.15, -1244.8, 501.993, 0.0, 0),
(@PATH, 8, -4686.53, -1252.01, 501.993, 0.0, 0),
(@PATH, 9, -4685.42, -1262.68, 501.993, 0.0, 0),
(@PATH, 10, -4681.39, -1266.61, 503.382, 0.0, 0),
(@PATH, 11, -4681.39, -1266.61, 503.382, 2.03745, 60000);
/* Gnomeregan Evacuee - GUID 2442 */
SET @NPC := 2442;
SET @PATH := @NPC * 10;
DELETE FROM `creature_addon` WHERE `guid` = @NPC;
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES (@NPC, @PATH);
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
(@PATH, 1, -5165.01, 635.986, 348.279, 100.0, 2000),
(@PATH, 2, -5176.52, 637.508, 348.279, 100.0, 0),
(@PATH, 3, -5180.35, 647.348, 348.279, 100.0, 0),
(@PATH, 4, -5176.56, 656.204, 348.279, 100.0, 0),
(@PATH, 5, -5163.17, 665.239, 348.932, 100.0, 0),
(@PATH, 6, -5159.09, 708.355, 369.766, 100.0, 0),
(@PATH, 7, -5165.51, 714.313, 369.766, 100.0, 0),
(@PATH, 8, -5171.31, 714.859, 369.766, 100.0, 0),
(@PATH, 9, -5175.11, 706.777, 369.766, 100.0, 0),
(@PATH, 10, -5182.93, 606.75, 408.966, 100.0, 0),
(@PATH, 11, -5180.14, 597.714, 408.496, 100.0, 0),
(@PATH, 12, -5174.19, 584.702, 404.797, 100.0, 0),
(@PATH, 13, -5148.45, 587.567, 416.345, 100.0, 3000);
/* Gibblewilt - GUID 2470 */
SET @NPC := 2470;
SET @PATH := @NPC * 10;
DELETE FROM `creature_addon` WHERE `guid` = @NPC;
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES (@NPC, @PATH);
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
(@PATH, 1, -5068.52, 456.024, 410.131, 4.30862, 0),
(@PATH, 2, -5074.61, 458.308, 410.396, 3.00879, 0),
(@PATH, 3, -5081.69, 458.405, 408.17, 3.72546, 0),
(@PATH, 4, -5085.15, 449.702, 409.889, 5.68699, 0),
(@PATH, 5, -5074.26, 442.373, 410.967, 5.68503, 10000),
(@PATH, 6, -5085.2, 449.851, 409.845, 5.70859, 0),
(@PATH, 7, -5096.99, 463.844, 404.063, 2.40599, 10000),
(@PATH, 8, -5087.35, 455.114, 407.616, 5.84407, 0),
(@PATH, 9, -5081.69, 458.405, 408.17, 0.100844, 0),
(@PATH, 10, -5074.22, 458.364, 410.452, 0.175457, 0);
/* Great Father Arctikus - GUID 2938 */
SET @NPC := 2938;
SET @PATH := @NPC * 10;
DELETE FROM `creature_addon` WHERE `guid` = @NPC;
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES (@NPC, @PATH);
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
(@PATH, 1, -5592.92, 677.581, 384.033, 0.369836, 0),
(@PATH, 2, -5600.41, 673.451, 383.062, 4.13975, 0),
(@PATH, 3, -5603.79, 663.913, 383.343, 4.70523, 0),
(@PATH, 4, -5600.97, 653.118, 384.407, 5.49849, 0),
(@PATH, 5, -5593.76, 645.6, 384.251, 2.21748, 20000),
(@PATH, 6, -5601.55, 654.102, 384.304, 5.37085, 0),
(@PATH, 7, -5603.73, 663.851, 383.358, 1.27893, 0),
(@PATH, 8, -5600.35, 673.342, 383.068, 0.522985, 0),
(@PATH, 9, -5591.76, 678.133, 384.23, 0.37965, 0),
(@PATH, 10, -5583.21, 681.232, 384.784, 0.389467, 0),
(@PATH, 11, -5579.47, 688.612, 383.054, 1.14149, 20000),
(@PATH, 12, -5583.21, 681.232, 384.784, 3.71563, 0);
/* Frostmane Headhunter - GUID 2942 */
SET @NPC := 2942;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `position_x` = -5577.25, `position_y` = 700.46, `position_z` = 381.931, `orientation` = 3.12328 WHERE `guid` = @NPC;
DELETE FROM `creature_addon` WHERE `guid` = @NPC;
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES (@NPC, @PATH);
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
(@PATH, 1, -5577.25, 700.46, 381.931, 100.0, 0),
(@PATH, 2, -5585.01, 708.591, 381.949, 100.0, 0),
(@PATH, 3, -5592.0, 712.784, 381.934, 100.0, 0),
(@PATH, 4, -5602.55, 718.777, 382.803, 100.0, 0),
(@PATH, 5, -5594.0, 713.588, 382.19, 100.0, 0),
(@PATH, 6, -5587.96, 709.834, 382.064, 100.0, 0),
(@PATH, 7, -5583.34, 706.095, 381.943, 100.0, 0),
(@PATH, 8, -5577.5, 700.577, 381.933, 100.0, 0),
(@PATH, 9, -5576.83, 694.027, 382.176, 100.0, 0),
(@PATH, 10, -5579.36, 687.62, 383.216, 100.0, 0),
(@PATH, 11, -5584.23, 681.69, 384.767, 100.0, 0),
(@PATH, 12, -5587.87, 678.992, 384.853, 100.0, 0),
(@PATH, 13, -5590.26, 677.712, 384.489, 100.0, 0),
(@PATH, 14, -5596.81, 675.263, 383.396, 100.0, 0),
(@PATH, 15, -5602.21, 669.229, 383.059, 100.0, 0),
(@PATH, 16, -5603.85, 662.869, 383.443, 100.0, 0),
(@PATH, 17, -5601.49, 654.376, 384.313, 100.0, 0),
(@PATH, 18, -5597.38, 649.613, 384.351, 100.0, 0),
(@PATH, 19, -5594.43, 646.472, 384.272, 100.0, 0),
(@PATH, 20, -5601.32, 653.812, 384.335, 100.0, 0),
(@PATH, 21, -5603.84, 662.74, 383.459, 100.0, 0),
(@PATH, 22, -5601.41, 671.24, 383.043, 100.0, 0),
(@PATH, 23, -5596.83, 674.907, 383.396, 100.0, 0),
(@PATH, 24, -5589.57, 678.627, 384.581, 100.0, 0),
(@PATH, 25, -5582.65, 683.741, 384.33, 100.0, 0),
(@PATH, 26, -5578.19, 692.47, 382.37, 100.0, 0);
/* Frostmane Snowstrider - GUID 2947 */
SET @NPC := 2947;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `position_x` = -5546.03, `position_y` = 738.82, `position_z` = 385.222, `orientation` = 2.41982 WHERE `guid` = @NPC;
DELETE FROM `creature_addon` WHERE `guid` = @NPC;
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES (@NPC, @PATH);
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
(@PATH, 1, -5546.03, 738.82, 385.222, 100.0, 0),
(@PATH, 2, -5539.86, 732.785, 385.999, 100.0, 0),
(@PATH, 3, -5535.38, 729.201, 387.988, 100.0, 0),
(@PATH, 4, -5529.31, 718.23, 390.967, 100.0, 0),
(@PATH, 5, -5528.62, 708.422, 393.078, 100.0, 0),
(@PATH, 6, -5531.43, 700.178, 394.781, 100.0, 0),
(@PATH, 7, -5534.25, 691.043, 396.589, 100.0, 0),
(@PATH, 8, -5537.04, 683.256, 397.741, 100.0, 0),
(@PATH, 9, -5533.79, 692.606, 396.268, 100.0, 0),
(@PATH, 10, -5529.48, 704.271, 394.017, 100.0, 0),
(@PATH, 11, -5527.69, 713.291, 392.18, 100.0, 0),
(@PATH, 12, -5529.17, 721.177, 390.416, 100.0, 0),
(@PATH, 13, -5534.22, 728.566, 388.28, 100.0, 0),
(@PATH, 14, -5540.0, 733.101, 385.949, 100.0, 0),
(@PATH, 15, -5545.22, 737.797, 385.304, 100.0, 0),
(@PATH, 16, -5554.19, 749.018, 384.436, 100.0, 0),
(@PATH, 17, -5561.87, 756.116, 383.703, 100.0, 0),
(@PATH, 18, -5569.84, 758.797, 383.349, 100.0, 0),
(@PATH, 19, -5578.21, 759.201, 383.616, 100.0, 0),
(@PATH, 20, -5585.1, 759.055, 384.322, 100.0, 0),
(@PATH, 21, -5596.88, 756.296, 385.322, 100.0, 0),
(@PATH, 22, -5603.58, 754.268, 385.485, 100.0, 0),
(@PATH, 23, -5610.61, 752.14, 386.286, 100.0, 0),
(@PATH, 24, -5619.16, 751.23, 386.073, 100.0, 0),
(@PATH, 25, -5626.79, 754.23, 386.583, 100.0, 0),
(@PATH, 26, -5619.98, 750.392, 385.832, 100.0, 0),
(@PATH, 27, -5610.77, 752.059, 386.309, 100.0, 0),
(@PATH, 28, -5603.11, 754.536, 385.458, 100.0, 0),
(@PATH, 29, -5598.01, 756.078, 385.329, 100.0, 0),
(@PATH, 30, -5586.29, 758.664, 384.464, 100.0, 0),
(@PATH, 31, -5577.01, 758.995, 383.548, 100.0, 0),
(@PATH, 32, -5566.79, 756.941, 383.457, 100.0, 0),
(@PATH, 33, -5560.0, 754.467, 383.881, 100.0, 0),
(@PATH, 34, -5549.91, 744.429, 384.671, 100.0, 0);
/* Wendigo - GUID 3122 */
SET @NPC := 3122;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `position_x` = -5432.3, `position_y` = -134.6, `position_z` = 350.456, `orientation` = 4.36332 WHERE `guid` = @NPC;
DELETE FROM `creature_addon` WHERE `guid` = @NPC;
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES (@NPC, @PATH);
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
(@PATH, 1, -5432.3, -134.6, 350.456, 100.0, 0),
(@PATH, 2, -5433.38, -143.261, 351.339, 100.0, 0),
(@PATH, 3, -5434.1, -153.954, 351.684, 100.0, 0),
(@PATH, 4, -5433.57, -145.358, 351.426, 100.0, 0),
(@PATH, 5, -5432.38, -134.58, 350.455, 100.0, 0),
(@PATH, 6, -5430.27, -124.66, 348.582, 100.0, 0),
(@PATH, 7, -5426.28, -118.403, 347.057, 100.0, 0),
(@PATH, 8, -5419.41, -114.086, 345.655, 100.0, 0),
(@PATH, 9, -5425.61, -117.898, 346.897, 100.0, 0),
(@PATH, 10, -5429.94, -125.822, 348.842, 100.0, 0),
(@PATH, 11, -5431.77, -131.171, 349.875, 100.0, 0);
/* Wendigo - GUID 3139 */
SET @NPC := 3139;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `position_x` = -5401.76, `position_y` = -128.122, `position_z` = 367.779, `orientation` = 5.28835 WHERE `guid` = @NPC;
DELETE FROM `creature_addon` WHERE `guid` = @NPC;
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES (@NPC, @PATH);
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
(@PATH, 1, -5401.76, -128.122, 367.779, 100.0, 0),
(@PATH, 2, -5397.15, -133.077, 367.889, 100.0, 0),
(@PATH, 3, -5393.43, -140.068, 367.868, 100.0, 0),
(@PATH, 4, -5391.8, -147.003, 367.704, 100.0, 0),
(@PATH, 5, -5390.86, -154.645, 367.061, 100.0, 0),
(@PATH, 6, -5390.79, -160.58, 367.624, 100.0, 0),
(@PATH, 7, -5391.51, -166.008, 368.767, 100.0, 0),
(@PATH, 8, -5392.28, -170.969, 369.525, 100.0, 0),
(@PATH, 9, -5390.91, -164.225, 368.239, 100.0, 0),
(@PATH, 10, -5391.26, -155.732, 367.063, 100.0, 0),
(@PATH, 11, -5392.36, -146.113, 367.866, 100.0, 0),
(@PATH, 12, -5394.55, -139.363, 368.009, 100.0, 0),
(@PATH, 13, -5397.07, -133.981, 367.915, 100.0, 0);
/* Timber - GUID 3154 */
SET @NPC := 3154;
SET @PATH := @NPC * 10;
DELETE FROM `creature_addon` WHERE `guid` = @NPC;
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES (@NPC, @PATH);
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
(@PATH, 1, -5248.09, 117.958, 394.268, 1.82279, 0),
(@PATH, 2, -5248.79, 110.069, 393.106, 4.69539, 0),
(@PATH, 3, -5248.93, 99.99, 391.792, 4.97813, 0),
(@PATH, 4, -5244.47, 89.3014, 389.637, 5.15485, 0),
(@PATH, 5, -5233.49, 79.7149, 386.934, 5.64376, 0),
(@PATH, 6, -5215.74, 81.2445, 386.134, 0.348212, 0),
(@PATH, 7, -5201.64, 91.0505, 386.112, 0.707531, 0),
(@PATH, 8, -5196.96, 105.918, 386.112, 3.05587, 0),
(@PATH, 9, -5204.8, 116.565, 387.546, 3.1619, 0),
(@PATH, 10, -5217.0, 120.209, 391.652, 3.12263, 0),
(@PATH, 11, -5232.49, 121.31, 394.311, 3.00678, 0),
(@PATH, 12, -5241.29, 126.827, 394.337, 3.2267, 0),
(@PATH, 13, -5247.15, 123.429, 394.261, 3.93356, 0);
/* Frostmane Headhunter - GUID 3183 */
SET @NPC := 3183;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `position_x` = -5316.35, `position_y` = -214.36, `position_z` = 440.956, `orientation` = 0.401843 WHERE `guid` = @NPC;
DELETE FROM `creature_addon` WHERE `guid` = @NPC;
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES (@NPC, @PATH);
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
(@PATH, 1, -5316.35, -214.36, 440.956, 100.0, 10000),
(@PATH, 2, -5317.84, -227.109, 441.159, 100.0, 0),
(@PATH, 3, -5316.58, -241.649, 440.671, 100.0, 0),
(@PATH, 4, -5313.8, -246.102, 441.356, 100.0, 0),
(@PATH, 5, -5305.87, -249.811, 445.312, 100.0, 10000),
(@PATH, 6, -5315.7, -246.452, 440.862, 100.0, 0),
(@PATH, 7, -5328.45, -244.869, 441.42, 100.0, 0),
(@PATH, 8, -5333.17, -249.242, 441.86, 100.0, 0),
(@PATH, 9, -5336.32, -257.158, 440.763, 100.0, 0),
(@PATH, 10, -5337.47, -261.884, 440.921, 100.0, 0),
(@PATH, 11, -5341.95, -273.199, 447.284, 100.0, 0),
(@PATH, 12, -5342.88, -276.696, 448.13, 100.0, 10000),
(@PATH, 13, -5347.71, -272.985, 447.438, 100.0, 0),
(@PATH, 14, -5358.61, -267.936, 442.177, 100.0, 0),
(@PATH, 15, -5368.57, -261.721, 440.882, 100.0, 0),
(@PATH, 16, -5377.26, -254.669, 447.094, 100.0, 0),
(@PATH, 17, -5380.6, -251.679, 447.381, 100.0, 10000),
(@PATH, 18, -5376.77, -244.195, 445.711, 100.0, 0),
(@PATH, 19, -5373.59, -238.356, 440.872, 100.0, 0),
(@PATH, 20, -5370.4, -233.202, 441.196, 100.0, 0),
(@PATH, 21, -5367.44, -227.769, 443.147, 100.0, 0),
(@PATH, 22, -5363.78, -223.348, 442.605, 100.0, 0),
(@PATH, 23, -5359.4, -218.502, 441.407, 100.0, 0),
(@PATH, 24, -5352.2, -210.538, 445.269, 100.0, 0),
(@PATH, 25, -5346.5, -210.742, 443.416, 100.0, 0),
(@PATH, 26, -5340.82, -213.811, 441.643, 100.0, 0),
(@PATH, 27, -5332.99, -215.503, 440.9, 100.0, 0),
(@PATH, 28, -5322.48, -217.418, 440.77, 100.0, 0);
/* Wendigo - GUID 3186 */
SET @NPC := 3186;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `position_x` = -5396.72, `position_y` = -269.959, `position_z` = 362.808, `orientation` = 0.560124 WHERE `guid` = @NPC;
DELETE FROM `creature_addon` WHERE `guid` = @NPC;
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES (@NPC, @PATH);
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
(@PATH, 1, -5396.72, -269.959, 362.808, 100.0, 0),
(@PATH, 2, -5406.76, -273.025, 362.254, 100.0, 0),
(@PATH, 3, -5416.35, -273.843, 360.902, 100.0, 0),
(@PATH, 4, -5423.34, -273.987, 359.737, 100.0, 0),
(@PATH, 5, -5431.49, -273.724, 358.434, 100.0, 0),
(@PATH, 6, -5438.46, -273.045, 357.218, 100.0, 0),
(@PATH, 7, -5447.92, -271.071, 355.96, 100.0, 0),
(@PATH, 8, -5437.42, -273.181, 357.356, 100.0, 0),
(@PATH, 9, -5431.84, -273.568, 358.359, 100.0, 0),
(@PATH, 10, -5421.35, -273.87, 360.146, 100.0, 0),
(@PATH, 11, -5414.24, -273.794, 361.216, 100.0, 0),
(@PATH, 12, -5406.41, -272.245, 362.341, 100.0, 0),
(@PATH, 13, -5397.06, -270.431, 362.773, 100.0, 0),
(@PATH, 14, -5391.94, -266.715, 363.014, 100.0, 0),
(@PATH, 15, -5380.48, -256.786, 362.554, 100.0, 0),
(@PATH, 16, -5388.0, -263.463, 362.999, 100.0, 0);
/* Wendigo - GUID 3187 */
SET @NPC := 3187;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `position_x` = -5425.7, `position_y` = -223.195, `position_z` = 371.936, `orientation` = 1.8675 WHERE `guid` = @NPC;
DELETE FROM `creature_addon` WHERE `guid` = @NPC;
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES (@NPC, @PATH);
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
(@PATH, 1, -5425.7, -223.195, 371.936, 100.0, 0),
(@PATH, 2, -5425.14, -215.183, 372.811, 100.0, 0),
(@PATH, 3, -5422.18, -207.492, 372.707, 100.0, 0),
(@PATH, 4, -5416.92, -197.329, 371.838, 100.0, 0),
(@PATH, 5, -5411.03, -190.942, 371.379, 100.0, 0),
(@PATH, 6, -5404.22, -186.135, 370.564, 100.0, 0),
(@PATH, 7, -5413.76, -193.226, 371.659, 100.0, 0),
(@PATH, 8, -5419.89, -202.552, 372.247, 100.0, 0),
(@PATH, 9, -5424.82, -211.675, 372.844, 100.0, 0),
(@PATH, 10, -5425.13, -216.157, 372.689, 100.0, 0);
/* Wendigo - GUID 3240 */
SET @NPC := 3240;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `position_x` = -5464.76, `position_y` = -246.758, `position_z` = 354.253, `orientation` = 2.74017 WHERE `guid` = @NPC;
DELETE FROM `creature_addon` WHERE `guid` = @NPC;
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES (@NPC, @PATH);
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
(@PATH, 1, -5464.76, -246.758, 354.253, 100.0, 0),
(@PATH, 2, -5470.49, -242.217, 354.253, 100.0, 0),
(@PATH, 3, -5478.29, -238.068, 354.423, 100.0, 0),
(@PATH, 4, -5484.74, -235.35, 354.509, 100.0, 0),
(@PATH, 5, -5494.42, -231.274, 354.042, 100.0, 0),
(@PATH, 6, -5504.1, -227.198, 353.52, 100.0, 0),
(@PATH, 7, -5510.55, -224.48, 353.356, 100.0, 0),
(@PATH, 8, -5515.95, -222.701, 353.458, 100.0, 0),
(@PATH, 9, -5525.14, -223.195, 354.589, 100.0, 0),
(@PATH, 10, -5514.05, -223.276, 353.323, 100.0, 0),
(@PATH, 11, -5509.24, -224.293, 353.298, 100.0, 0),
(@PATH, 12, -5502.79, -227.016, 353.688, 100.0, 0),
(@PATH, 13, -5492.97, -231.373, 354.199, 100.0, 0),
(@PATH, 14, -5485.22, -234.873, 354.495, 100.0, 0),
(@PATH, 15, -5479.93, -237.388, 354.446, 100.0, 0),
(@PATH, 16, -5473.17, -240.281, 354.309, 100.0, 0),
(@PATH, 17, -5466.21, -245.116, 354.254, 100.0, 0),
(@PATH, 18, -5461.61, -251.304, 354.254, 100.0, 0),
(@PATH, 19, -5455.2, -261.391, 354.198, 100.0, 0),
(@PATH, 20, -5459.61, -254.523, 354.281, 100.0, 0);
/* Wendigo - GUID 3572 */
SET @NPC := 3572;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `position_x` = -5554.56, `position_y` = -235.988, `position_z` = 362.897, `orientation` = 0.511921 WHERE `guid` = @NPC;
DELETE FROM `creature_addon` WHERE `guid` = @NPC;
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES (@NPC, @PATH);
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
(@PATH, 1, -5554.56, -235.988, 362.897, 100.0, 0),
(@PATH, 2, -5549.19, -231.872, 361.206, 100.0, 0),
(@PATH, 3, -5542.18, -227.456, 358.47, 100.0, 0),
(@PATH, 4, -5540.6, -226.723, 357.754, 100.0, 0),
(@PATH, 5, -5546.54, -230.191, 360.312, 100.0, 0),
(@PATH, 6, -5553.38, -235.414, 362.598, 100.0, 0),
(@PATH, 7, -5557.68, -239.184, 364.141, 100.0, 0),
(@PATH, 8, -5562.09, -245.774, 365.837, 100.0, 0),
(@PATH, 9, -5563.85, -249.584, 366.56, 100.0, 0),
(@PATH, 10, -5566.19, -256.791, 367.423, 100.0, 0),
(@PATH, 11, -5567.13, -259.798, 367.933, 100.0, 0),
(@PATH, 12, -5570.49, -267.524, 367.335, 100.0, 0),
(@PATH, 13, -5576.32, -277.889, 366.222, 100.0, 0),
(@PATH, 14, -5570.46, -267.145, 367.366, 100.0, 0),
(@PATH, 15, -5567.09, -260.1, 367.98, 100.0, 0),
(@PATH, 16, -5564.38, -250.211, 366.634, 100.0, 0),
(@PATH, 17, -5560.83, -243.65, 365.272, 100.0, 0),
(@PATH, 18, -5559.09, -240.479, 364.555, 100.0, 0);
/* Fluffy - GUID 4151 */
SET @NPC := 4151;
SET @PATH := @NPC * 10;
DELETE FROM `creature_addon` WHERE `guid` = @NPC;
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES (@NPC, @PATH);
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
(@PATH, 1, -5549.0, -1295.66, 400.267, 1.96547, 0),
(@PATH, 2, -5555.14, -1286.75, 400.705, 2.50936, 0),
(@PATH, 3, -5563.65, -1281.34, 401.378, 4.89108, 0),
(@PATH, 4, -5571.76, -1283.92, 401.595, 4.92446, 0),
(@PATH, 5, -5574.1, -1292.32, 401.575, 5.63917, 0),
(@PATH, 6, -5550.61, -1316.42, 398.663, 5.5135, 0),
(@PATH, 7, -5539.53, -1319.2, 399.05, 0.388779, 0),
(@PATH, 8, -5527.46, -1315.68, 401.761, 0.37307, 0),
(@PATH, 9, -5510.42, -1310.07, 402.876, 6.27534, 0),
(@PATH, 10, -5496.35, -1307.78, 404.306, 5.15811, 0),
(@PATH, 11, -5485.81, -1317.02, 403.623, 4.65349, 0),
(@PATH, 12, -5482.9, -1328.74, 403.128, 1.90657, 0),
(@PATH, 13, -5497.13, -1351.01, 403.118, 4.14299, 0),
(@PATH, 14, -5506.29, -1361.86, 401.173, 0.79327, 0),
(@PATH, 15, -5512.5, -1380.78, 401.059, 4.32364, 0),
(@PATH, 16, -5523.74, -1388.3, 400.524, 0.430028, 0),
(@PATH, 17, -5532.06, -1391.59, 401.022, 5.71575, 0),
(@PATH, 18, -5536.64, -1400.22, 402.253, 0.392711, 0),
(@PATH, 19, -5534.24, -1407.77, 402.474, 0.645999, 0),
(@PATH, 20, -5526.26, -1409.96, 402.421, 1.3293, 0),
(@PATH, 21, -5516.35, -1405.69, 402.985, 3.07288, 0),
(@PATH, 22, -5512.02, -1380.34, 401.147, 1.27628, 0),
(@PATH, 23, -5505.66, -1361.61, 401.475, 1.08975, 0),
(@PATH, 24, -5496.98, -1350.89, 403.125, 0.861984, 0),
(@PATH, 25, -5483.01, -1328.78, 403.113, 1.27432, 0),
(@PATH, 26, -5485.76, -1316.7, 403.664, 2.0931, 0),
(@PATH, 27, -5496.2, -1307.95, 404.289, 2.74694, 0),
(@PATH, 28, -5510.93, -1310.19, 402.859, 3.38507, 0),
(@PATH, 29, -5527.54, -1315.5, 401.787, 3.47539, 0),
(@PATH, 30, -5537.08, -1315.39, 399.541, 3.32028, 0),
(@PATH, 31, -5543.39, -1309.22, 398.204, 1.88497, 0);
DELETE FROM `creature_formations` WHERE `memberGUID` IN (4151, 4153);
INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`, `point_1`, `point_2`) VALUES
(4151, 4153, 4.80679, 183, 519, 0, 0),
(4151, 4151, 0, 0, 519, 0, 0);
/* Rockjaw Skullthumper - GUID 4524 */
SET @NPC := 4524;
SET @PATH := @NPC * 10;
DELETE FROM `creature_addon` WHERE `guid` = @NPC;
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES (@NPC, @PATH);
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
(@PATH, 1, -5871.25, -1544.41, 372.448, 5.2547, 0),
(@PATH, 2, -5869.8, -1546.8, 372.373, 4.94055, 0),
(@PATH, 3, -5866.37, -1556.3, 366.145, 0.228153, 0),
(@PATH, 4, -5856.7, -1554.05, 358.833, 0.228153, 20000),
(@PATH, 5, -5866.48, -1556.24, 366.228, 1.85785, 0),
(@PATH, 6, -5869.95, -1546.57, 372.54, 1.94739, 0),
(@PATH, 7, -5872.4, -1542.05, 372.521, 2.02672, 0),
(@PATH, 8, -5874.47, -1532.95, 379.59, 1.76518, 0),
(@PATH, 9, -5871.17, -1523.61, 379.248, 4.41983, 30000),
(@PATH, 10, -5874.42, -1532.89, 379.63, 4.76776, 0),
(@PATH, 11, -5872.52, -1541.97, 372.526, 4.93505, 0);
/* Rockjaw Bonesnapper - GUID 4542 */
SET @NPC := 4542;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `position_x` = -5627.38, `position_y` = -1692.46, `position_z` = 399.612, `orientation` = 3.53051 WHERE `guid` = @NPC;
DELETE FROM `creature_addon` WHERE `guid` = @NPC;
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES (@NPC, @PATH);
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
(@PATH, 1, -5627.38, -1692.46, 399.612, 100.0, 0),
(@PATH, 2, -5638.73, -1696.96, 399.131, 100.0, 0),
(@PATH, 3, -5647.65, -1705.31, 399.371, 100.0, 0),
(@PATH, 4, -5657.91, -1717.19, 400.254, 100.0, 0),
(@PATH, 5, -5665.49, -1732.89, 399.89, 100.0, 0),
(@PATH, 6, -5669.03, -1748.15, 400.046, 100.0, 0),
(@PATH, 7, -5666.81, -1767.67, 400.051, 100.0, 0),
(@PATH, 8, -5659.9, -1784.91, 399.696, 100.0, 0),
(@PATH, 9, -5651.59, -1797.52, 400.324, 100.0, 0),
(@PATH, 10, -5639.94, -1807.93, 399.766, 100.0, 0),
(@PATH, 11, -5627.84, -1813.34, 400.785, 100.0, 0),
(@PATH, 12, -5613.26, -1816.92, 400.942, 100.0, 0),
(@PATH, 13, -5597.3, -1820.47, 399.603, 100.0, 0),
(@PATH, 14, -5583.48, -1822.52, 399.955, 100.0, 0),
(@PATH, 15, -5568.99, -1823.99, 400.865, 100.0, 0),
(@PATH, 16, -5556.21, -1825.28, 399.653, 100.0, 0),
(@PATH, 17, -5572.36, -1823.33, 400.954, 100.0, 0),
(@PATH, 18, -5590.66, -1821.89, 399.622, 100.0, 0),
(@PATH, 19, -5608.77, -1817.4, 400.73, 100.0, 0),
(@PATH, 20, -5624.46, -1812.85, 400.957, 100.0, 0),
(@PATH, 21, -5636.85, -1809.99, 399.598, 100.0, 0),
(@PATH, 22, -5646.51, -1801.62, 400.293, 100.0, 0),
(@PATH, 23, -5657.3, -1789.51, 399.926, 100.0, 0),
(@PATH, 24, -5661.29, -1773.99, 400.341, 100.0, 0),
(@PATH, 25, -5661.82, -1757.66, 399.919, 100.0, 0),
(@PATH, 26, -5660.06, -1746.28, 400.097, 100.0, 0),
(@PATH, 27, -5657.01, -1733.84, 399.839, 100.0, 0),
(@PATH, 28, -5653.79, -1722.66, 400.801, 100.0, 0),
(@PATH, 29, -5647.43, -1708.26, 399.427, 100.0, 0),
(@PATH, 30, -5638.97, -1697.98, 399.135, 100.0, 0);
/* Rockjaw Bonesnapper - GUID 4545 */
SET @NPC := 4545;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `position_x` = -5596.2, `position_y` = -1683.52, `position_z` = 347.276, `orientation` = 6.25858 WHERE `guid` = @NPC;
DELETE FROM `creature_addon` WHERE `guid` = @NPC;
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES (@NPC, @PATH);
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
(@PATH, 1, -5596.2, -1683.52, 347.276, 100.0, 0),
(@PATH, 2, -5600.28, -1681.07, 349.036, 100.0, 0),
(@PATH, 3, -5605.89, -1674.86, 350.655, 100.0, 0),
(@PATH, 4, -5611.91, -1679.3, 351.456, 100.0, 0),
(@PATH, 5, -5609.26, -1689.22, 353.038, 100.0, 0),
(@PATH, 6, -5605.37, -1700.32, 356.982, 100.0, 0),
(@PATH, 7, -5604.51, -1705.22, 358.703, 100.0, 0),
(@PATH, 8, -5609.27, -1706.74, 359.171, 100.0, 0),
(@PATH, 9, -5614.53, -1699.49, 360.345, 100.0, 0),
(@PATH, 10, -5618.3, -1691.87, 360.588, 100.0, 0),
(@PATH, 11, -5622.24, -1683.54, 362.224, 100.0, 0),
(@PATH, 12, -5624.64, -1673.57, 362.007, 100.0, 0),
(@PATH, 13, -5621.46, -1684.72, 362.087, 100.0, 0),
(@PATH, 14, -5618.48, -1691.23, 360.625, 100.0, 0),
(@PATH, 15, -5614.23, -1699.5, 360.307, 100.0, 0),
(@PATH, 16, -5609.8, -1705.37, 359.24, 100.0, 0),
(@PATH, 17, -5603.43, -1706.61, 359.209, 100.0, 0),
(@PATH, 18, -5605.95, -1698.77, 356.382, 100.0, 0),
(@PATH, 19, -5609.09, -1689.14, 353.042, 100.0, 0),
(@PATH, 20, -5610.99, -1683.02, 351.756, 100.0, 0),
(@PATH, 21, -5610.22, -1675.92, 350.97, 100.0, 0),
(@PATH, 22, -5606.03, -1675.62, 350.676, 100.0, 0),
(@PATH, 23, -5601.71, -1680.54, 349.575, 100.0, 0);
/* Rockjaw Bonesnapper - GUID 4561 */
SET @NPC := 4561;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `position_x` = -5536.41, `position_y` = -1741.26, `position_z` = 339.58, `orientation` = 5.88313 WHERE `guid` = @NPC;
DELETE FROM `creature_addon` WHERE `guid` = @NPC;
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES (@NPC, @PATH);
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
(@PATH, 1, -5536.41, -1741.26, 339.58, 100.0, 0),
(@PATH, 2, -5526.61, -1743.64, 337.832, 100.0, 0),
(@PATH, 3, -5537.32, -1740.91, 339.711, 100.0, 0),
(@PATH, 4, -5544.39, -1735.85, 340.927, 100.0, 0),
(@PATH, 5, -5549.2, -1731.98, 342.204, 100.0, 0),
(@PATH, 6, -5556.28, -1727.06, 342.399, 100.0, 0),
(@PATH, 7, -5559.88, -1724.29, 342.479, 100.0, 0),
(@PATH, 8, -5567.05, -1719.29, 342.412, 100.0, 0),
(@PATH, 9, -5578.9, -1711.0, 342.412, 100.0, 0),
(@PATH, 10, -5582.96, -1706.39, 343.26, 100.0, 0),
(@PATH, 11, -5587.52, -1700.34, 344.939, 100.0, 0),
(@PATH, 12, -5590.26, -1692.03, 345.397, 100.0, 0),
(@PATH, 13, -5587.14, -1699.73, 345.092, 100.0, 0),
(@PATH, 14, -5583.42, -1705.41, 343.509, 100.0, 0),
(@PATH, 15, -5578.63, -1710.94, 342.412, 100.0, 0),
(@PATH, 16, -5572.14, -1716.08, 342.412, 100.0, 0),
(@PATH, 17, -5565.77, -1720.81, 342.512, 100.0, 0),
(@PATH, 18, -5559.49, -1724.6, 342.479, 100.0, 0),
(@PATH, 19, -5548.53, -1732.52, 342.105, 100.0, 0),
(@PATH, 20, -5543.56, -1736.61, 340.74, 100.0, 0);
/* Rockjaw Bonesnapper - GUID 4847 */
SET @NPC := 4847;
SET @PATH := @NPC * 10;
UPDATE `creature` SET `position_x` = -5569.31, `position_y` = -1765.96, `position_z` = 346.369, `orientation` = 3.44248 WHERE `guid` = @NPC;
DELETE FROM `creature_addon` WHERE `guid` = @NPC;
INSERT INTO `creature_addon` (`guid`, `path_id`) VALUES (@NPC, @PATH);
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
(@PATH, 1, -5569.31, -1765.96, 346.369, 100.0, 0),
(@PATH, 2, -5580.12, -1768.71, 348.96, 100.0, 0),
(@PATH, 3, -5591.17, -1770.6, 353.343, 100.0, 0),
(@PATH, 4, -5599.2, -1772.08, 356.385, 100.0, 0),
(@PATH, 5, -5587.93, -1770.32, 352.211, 100.0, 0),
(@PATH, 6, -5577.91, -1768.16, 348.083, 100.0, 0),
(@PATH, 7, -5569.47, -1765.65, 346.3, 100.0, 0),
(@PATH, 8, -5560.44, -1760.17, 342.953, 100.0, 0),
(@PATH, 9, -5552.35, -1754.22, 341.378, 100.0, 0),
(@PATH, 10, -5546.19, -1749.04, 340.797, 100.0, 0),
(@PATH, 11, -5540.59, -1742.04, 340.224, 100.0, 0),
(@PATH, 12, -5537.63, -1735.2, 340.318, 100.0, 0),
(@PATH, 13, -5534.81, -1727.29, 340.757, 100.0, 0),
(@PATH, 14, -5531.64, -1717.72, 341.291, 100.0, 0),
(@PATH, 15, -5533.11, -1710.31, 342.644, 100.0, 0),
(@PATH, 16, -5531.35, -1717.38, 341.3, 100.0, 0),
(@PATH, 17, -5533.43, -1726.32, 340.61, 100.0, 0),
(@PATH, 18, -5537.4, -1733.16, 340.365, 100.0, 0),
(@PATH, 19, -5543.9, -1742.4, 340.672, 100.0, 0),
(@PATH, 20, -5548.14, -1748.26, 340.921, 100.0, 0),
(@PATH, 21, -5551.7, -1752.42, 341.271, 100.0, 0),
(@PATH, 22, -5560.48, -1761.27, 343.182, 100.0, 0),
(@PATH, 23, -5563.01, -1763.52, 344.266, 100.0, 0);
/* Dun Morogh Mountaineer - GUID 6367 */
SET @NPC := 6367;
SET @PATH := @NPC * 10;
UPDATE `creature_addon` set `path_id` = @PATH WHERE `guid` = @NPC;
UPDATE `creature` SET `MovementType` = 2 WHERE `guid` = @NPC;
DELETE FROM `waypoint_data` where `id` = @PATH;
INSERT INTO `waypoint_data` (`id`, `point`, `position_x`, `position_y`, `position_z`, `orientation`, `delay`) VALUES
(@PATH, 1, -5001.43, -2312.58, 405.708, 0.015327, 0),
(@PATH, 2, -4994.43, -2312.47, 406.455, 0.015327, 0),
(@PATH, 3, -4987.0, -2311.8, 407.207, 6.25846, 0),
(@PATH, 4, -4978.09, -2312.61, 408.019, 6.10059, 0),
(@PATH, 5, -4966.22, -2315.96, 408.735, 5.94273, 0),
(@PATH, 6, -4958.98, -2320.9, 408.616, 5.54689, 0),
(@PATH, 7, -4951.2, -2327.95, 408.28, 5.54689, 0),
(@PATH, 8, -4943.42, -2335.0, 408.244, 5.54689, 0),
(@PATH, 9, -4937.18, -2339.43, 408.51, 5.78486, 0),
(@PATH, 10, -4928.8, -2343.15, 408.622, 5.98043, 0),
(@PATH, 11, -4921.01, -2345.13, 408.622, 6.09824, 0),
(@PATH, 12, -4910.69, -2347.06, 408.622, 6.09824, 0),
(@PATH, 13, -4903.19, -2349.92, 408.622, 5.70475, 0),
(@PATH, 14, -4911.04, -2346.58, 408.622, 2.84983, 0),
(@PATH, 15, -4917.76, -2345.17, 408.622, 3.00769, 0),
(@PATH, 16, -4928.5, -2343.13, 408.622, 2.84983, 0),
(@PATH, 17, -4934.95, -2340.75, 408.576, 2.73202, 0),
(@PATH, 18, -4944.53, -2335.04, 408.248, 2.53645, 0),
(@PATH, 19, -4951.1, -2328.78, 408.236, 2.34089, 0),
(@PATH, 20, -4957.91, -2322.43, 408.503, 2.4587, 0),
(@PATH, 21, -4963.34, -2318.01, 408.755, 2.4587, 0),
(@PATH, 22, -4972.36, -2313.44, 408.536, 2.85218, 0),
(@PATH, 23, -4979.42, -2311.96, 407.865, 3.01005, 0),
(@PATH, 24, -4992.02, -2312.32, 406.72, 3.28572, 0),
(@PATH, 25, -5002.32, -2313.53, 405.659, 3.20797, 0),
(@PATH, 26, -5013.18, -2312.1, 403.958, 2.81448, 0),
(@PATH, 27, -5019.8, -2308.56, 402.841, 2.50111, 0),
(@PATH, 28, -5027.78, -2300.47, 402.106, 2.26549, 0),
(@PATH, 29, -5034.5, -2292.4, 401.445, 2.26549, 0),
(@PATH, 30, -5039.68, -2287.59, 400.961, 2.50111, 0),
(@PATH, 31, -5048.81, -2282.12, 400.678, 2.77678, 0),
(@PATH, 32, -5059.3, -2278.6, 400.615, 3.05246, 0),
(@PATH, 33, -5072.53, -2278.86, 400.209, 3.25038, 0),
(@PATH, 34, -5080.73, -2280.5, 400.045, 3.4483, 0),
(@PATH, 35, -5089.7, -2283.8, 400.084, 3.56611, 0),
(@PATH, 36, -5099.56, -2289.5, 400.108, 3.72397, 0),
(@PATH, 37, -5108.33, -2295.28, 399.991, 3.72397, 0),
(@PATH, 38, -5119.27, -2305.02, 399.972, 3.9219, 0),
(@PATH, 39, -5125.72, -2309.44, 400.112, 3.56847, 0),
(@PATH, 40, -5137.37, -2312.98, 400.492, 3.34698, 0),
(@PATH, 41, -5146.26, -2314.14, 400.426, 3.19147, 0),
(@PATH, 42, -5156.74, -2314.67, 400.248, 3.19147, 0),
(@PATH, 43, -5168.25, -2314.5, 399.933, 2.99591, 0),
(@PATH, 44, -5178.92, -2311.86, 399.793, 2.72024, 0),
(@PATH, 45, -5184.51, -2307.65, 400.036, 2.32911, 0),
(@PATH, 46, -5187.81, -2301.88, 400.243, 1.93562, 0),
(@PATH, 47, -5191.47, -2294.36, 400.4, 2.13119, 0),
(@PATH, 48, -5198.22, -2287.34, 400.809, 2.40686, 0),
(@PATH, 49, -5192.27, -2293.99, 400.429, 5.20995, 0),
(@PATH, 50, -5187.26, -2303.21, 400.204, 5.20995, 0),
(@PATH, 51, -5182.48, -2309.11, 399.947, 5.56102, 0),
(@PATH, 52, -5176.64, -2312.85, 399.767, 5.83434, 0),
(@PATH, 53, -5168.76, -2314.9, 399.93, 6.22783, 0),
(@PATH, 54, -5153.5, -2314.91, 400.295, 0.06245, 0),
(@PATH, 55, -5140.6, -2313.82, 400.486, 0.102505, 0),
(@PATH, 56, -5134.87, -2312.79, 400.437, 0.220315, 0),
(@PATH, 57, -5127.18, -2310.48, 400.163, 0.375824, 0),
(@PATH, 58, -5120.43, -2306.3, 399.967, 0.731609, 0),
(@PATH, 59, -5112.62, -2299.29, 400.099, 0.731609, 0),
(@PATH, 60, -5105.76, -2293.91, 399.938, 0.576101, 0),
(@PATH, 61, -5099.89, -2290.1, 400.098, 0.576101, 0),
(@PATH, 62, -5091.38, -2284.57, 400.086, 0.576101, 0),
(@PATH, 63, -5080.73, -2279.57, 400.027, 0.222671, 0),
(@PATH, 64, -5068.14, -2278.18, 400.317, 0.027107, 0),
(@PATH, 65, -5052.9, -2279.86, 400.657, 6.11473, 0),
(@PATH, 66, -5046.31, -2282.43, 400.701, 5.69532, 0),
(@PATH, 67, -5036.54, -2289.96, 401.198, 5.57752, 0),
(@PATH, 68, -5029.26, -2297.66, 402.041, 5.41965, 0),
(@PATH, 69, -5025.51, -2302.71, 402.198, 5.30184, 0),
(@PATH, 70, -5020.02, -2309.3, 402.874, 5.53746, 0),
(@PATH, 71, -5012.95, -2312.65, 404.048, 6.12651, 0);

View File

@@ -1,4 +0,0 @@
-- DB update 2022_06_08_00 -> 2022_06_08_01
DELETE FROM `item_loot_template` WHERE (`Entry` = 11024) AND (`Item` IN (785, 2449, 2450, 3356, 3357, 3820, 3821, 4625, 8838, 8839, 8846, 49209));
INSERT INTO `item_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
(11024, 49209, 0, 63, 0, 1, 1, 1, 3, 'Evergreen Herb Casing - Mutated Morrowgrain');

View File

@@ -1,4 +0,0 @@
-- DB update 2022_06_08_01 -> 2022_06_08_02
-- (Quest)Mystery of the Infinite NPC: "Future You", remove SAI (unused)
UPDATE `creature_template` SET `AIName` = '' WHERE `entry` = 27899;
DELETE FROM `smart_scripts` WHERE `entryorguid` = 27899 AND `source_type` = 0;

View File

@@ -1,5 +0,0 @@
-- DB update 2022_06_08_02 -> 2022_06_09_00
--
DELETE FROM `spell_script_names` WHERE `spell_id`=24326;
INSERT INTO `spell_script_names` VALUES
(24326,'spell_gahzranka_slam');

View File

@@ -1,48 +0,0 @@
-- DB update 2022_06_09_00 -> 2022_06_09_01
--
DELETE FROM `npc_text` WHERE `ID` IN (7637,100117,100118,100119);
INSERT INTO `npc_text` (`ID`,`text0_0`,`BroadcastTextID0`,`Probability0`) VALUES
(7637,'The markings of this tablet show ancient diagrams and hold dire words of power.$B$BYou believe it is an alchemical recipe, but it is beyond your skill...',10487,1),
(100117,'Hazza\'rah, the Dreamweaver.$B$BHis is the power of nightmares, and may his foes ever sleep.$B$BHazza\'rah now dwells near the edge of madness...',10540,1),
(100118,'Renataki, of the Thousand Blades.$B$BPain is his lifeblood. Fear, his ally. May he one day return and bring joyous bloodshed with him.$B$BRenataki now dwells far from here. One day, he may return...',10541,1),
(100119,'Wushoolay, the Storm Witch.$B$BHer power is the power of the sky, the rain, and the shattered earth. May she once again reign mother to the Gurubashi. $B$BWushoolay now dwells near the edge of madness...',10544,1);
DELETE FROM `gossip_menu` WHERE `MenuID`=6443 AND `TextID`=7637;
DELETE FROM `gossip_menu` WHERE `MenuID`=6448 AND `TextID`=7643;
DELETE FROM `gossip_menu` WHERE `MenuID`=6449 AND `TextID`=100117;
DELETE FROM `gossip_menu` WHERE `MenuID`=6450 AND `TextID`=100118;
DELETE FROM `gossip_menu` WHERE `MenuID`=6451 AND `TextID`=100119;
INSERT INTO `gossip_menu` (`MenuID`,`TextID`) VALUES
(6443,7637),
(6448,7643),
(6449,100117),
(6450,100118),
(6451,100119);
DELETE FROM `gossip_menu_option` WHERE `MenuID`=6443;
INSERT INTO `gossip_menu_option` (`MenuID`,`OptionId`,`OptionIcon`,`OptionText`,`OptionBroadcastTextID`,`OptionType`,`OptionNpcFlag`,`VerifiedBuild`) VALUES
(6443,0,0,"Learn the recipe.",10486,1,1,0);
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` IN (14,15) AND `SourceGroup`=6443;
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=14 AND `SourceGroup` IN (6448,6449,6450,6451);
INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition`,`ErrorType`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES
(14,6443,7635,0,0,25,0,2259,0,0,1,0,0,"","Show gossip text 7635 if spell 'Alchemy' is not learned"),
(14,6443,7636,0,0,7,0,171,300,0,0,0,0,"","Show gossip text 7636 if player has Alchemy with skill level 300"),
(14,6443,7637,0,0,25,0,2259,0,0,0,0,0,"","Show gossip text 7637 if spell 'Alchemy' is learned"),
(14,6443,7637,0,0,7,0,171,300,0,1,0,0,"","Show gossip text 7637 if player has not Alchemy with skill level 300"),
(15,6443,0,0,0,7,0,171,300,0,0,0,0,"","Show Gossip Option 0 if player has Alchemy with skill level 300"),
(15,6443,0,0,0,25,0,24266,0,0,1,0,0,"","Show Gossip Option 0 if spell 'Gurubashi Mojo Madness' is not learned"),
(14,6448,7643,0,0,12,0,27,0,0,1,0,0,"","Show gossip text 7643 if game event 'Edge of Madness: Gri'lek is not active"),
(14,6448,7669,0,0,12,0,27,0,0,0,0,0,"","Show gossip text 7669 if game event 'Edge of Madness: Gri'lek is active"),
(14,6449,7670,0,0,12,0,28,0,0,1,0,0,"","Show gossip text 7670 if game event 'Edge of Madness: Hazza'rah is not active"),
(14,6449,100117,0,0,12,0,28,0,0,0,0,0,"","Show gossip text 100117 if game event 'Edge of Madness: Hazza'rah is active"),
(14,6450,100118,0,0,12,0,29,0,0,1,0,0,"","Show gossip text 100118 if game event 'Edge of Madness: Renataki is not active"),
(14,6450,7673,0,0,12,0,29,0,0,0,0,0,"","Show gossip text 7673 if game event 'Edge of Madness: Renataki is active"),
(14,6451,7674,0,0,12,0,30,0,0,1,0,0,"","Show gossip text 7674 if game event 'Edge of Madness: Wushoolay is not active"),
(14,6451,100119,0,0,12,0,30,0,0,0,0,0,"","Show gossip text 100119 if game event 'Edge of Madness: Wushoolay is active");
UPDATE `gameobject_template` SET `AIName` = "SmartGameObjectAI", `ScriptName` = "" WHERE `entry` = 180368;
DELETE FROM `smart_scripts` WHERE `entryorguid` = 180368 AND `source_type` = 1;
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_param4`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
(180368,1,0,1,62,0,100,0,6443,0,0,0,0,85,24267,0,0,0,0,0,7,0,0,0,0,0,0,0,0,"Tablet of Madness - On Gossip Option 0 Selected - Self Cast 'Gurubashi Mojo Madness'"),
(180368,1,1,0,61,0,100,0,0,0,0,0,0,72,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,"Tablet of Madness - On Link - Close Gossip");

View File

@@ -1,7 +0,0 @@
-- DB update 2022_06_09_01 -> 2022_06_11_00
-- Add Chinese translation of road signs
DELETE FROM `gameobject_template_locale` WHERE `entry` IN (184084,176365,176364) AND `locale` = 'zhCN';
INSERT INTO `gameobject_template_locale` (`entry`, `locale`, `name`, `castBarCaption`, `VerifiedBuild`) VALUES
(184084, 'zhCN', '开往秘蓝岛的船只', '', 18019),
(176365, 'zhCN', '开往泰达希尔的船只', '', 18019),
(176364, 'zhCN', '开往暴风城的船只', '', 18019);

View File

@@ -1,3 +0,0 @@
-- DB update 2022_06_11_00 -> 2022_06_13_00
--
UPDATE `creature_model_info` SET `CombatReach`=1.5 WHERE `DisplayID`=2836;

View File

@@ -1,8 +0,0 @@
-- DB update 2022_06_13_00 -> 2022_06_13_01
--
UPDATE `gameobject_template` SET `AIName` = 'SmartGameObjectAI' WHERE `entry` = 180517;
DELETE FROM `smart_scripts` WHERE (`entryorguid` = 180517) AND (`source_type` = 1) AND (`id` IN (0, 1));
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
(180517, 1, 0, 0, 63, 0, 100, 0, 0, 0, 0, 0, 0, 11, 24871, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Putrid Mushroom - On Just Created - Cast \'Spore Cloud\''),
(180517, 1, 1, 0, 1, 0, 100, 0, 120000, 120000, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Putrid Mushroom - Out of Combat - Despawn Instant');

View File

@@ -1,4 +0,0 @@
-- DB update 2022_06_13_01 -> 2022_06_13_02
UPDATE `creature_template` SET `ScriptName`='npc_chained_spirit', `speed_run`=0.4, `unit_flags`=`unit_flags`|33554432 WHERE `entry`=15117;

Some files were not shown because too many files have changed in this diff Show More