diff options
author | Ovahlord <dreadkiller@gmx.de> | 2025-04-12 17:38:01 +0200 |
---|---|---|
committer | Ovahlord <dreadkiller@gmx.de> | 2025-04-12 17:38:01 +0200 |
commit | 2b404ee64ed0f445d86da27665f46c0e901187b4 (patch) | |
tree | ede219ba454af1b18b9eb8840d9a1e7c93981615 /sql | |
parent | 724ce7cf195899d647a71a257d1091ff9d8af5e8 (diff) |
DB/Creatures: moved Garrosh back on his throne and Thaumaturge Zajir has replaced his follow Void Storage colleague and is offering his Reforge services once more
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/world/cata_classic/2025_04_12_10_world.sql | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sql/updates/world/cata_classic/2025_04_12_10_world.sql b/sql/updates/world/cata_classic/2025_04_12_10_world.sql new file mode 100644 index 00000000000..00b73128f0e --- /dev/null +++ b/sql/updates/world/cata_classic/2025_04_12_10_world.sql @@ -0,0 +1,14 @@ +-- Put Garrosh back onto his throne +UPDATE `creature` SET `position_x`= 1669.5851, `position_y`= -4343.08, `position_z`= 28.446056, `orientation`= 3.612831592559814453 WHERE `guid`= 310903; + +-- Updating the Reforger and Transmogrifier in Orgrimmar for Classic +DELETE FROM `creature` WHERE `guid`= 370880; +DELETE FROM `creature_addon` WHERE `guid`= 370880; + +SET @CGUID := 3990094; +DELETE FROM `creature` WHERE `guid`= @CGUID; +INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `PhaseGroup`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curHealthPct`, `MovementType`, `npcflag`, `unit_flags`, `unit_flags2`, `unit_flags3`, `VerifiedBuild`) VALUES +(@CGUID, 54471, 1, 1637, 5170, '0', 169, 0, 0, 1, 1721.1353759765625, -4513.19287109375, 31.32893943786621093, 0.314159274101257324, 120, 0, 0, 100, 0, NULL, NULL, NULL, NULL, 60192); -- Thaumaturge Zajir (Area: Valley of Strength - Difficulty: 0) CreateObject1 + +UPDATE `creature_template` SET `npcflag`=268435456 WHERE `entry`=54473; -- Warpweaver Dushar +DELETE FROM `creature_template_gossip` WHERE `CreatureID`= 54473; |