From 3a1b110642a6e8c3d446c7f3c19997753a44d17c Mon Sep 17 00:00:00 2001 From: avarishd <46330494+avarishd@users.noreply.github.com> Date: Tue, 10 Oct 2023 16:42:24 +0300 Subject: [PATCH] fix(DB/Gameobject): Pool triple Truesilver Vein in Desolace (#17444) --- .../rev_1696691443957086100.sql | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1696691443957086100.sql diff --git a/data/sql/updates/pending_db_world/rev_1696691443957086100.sql b/data/sql/updates/pending_db_world/rev_1696691443957086100.sql new file mode 100644 index 000000000..392d30dda --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1696691443957086100.sql @@ -0,0 +1,25 @@ +-- +DELETE FROM `gameobject` WHERE `guid` IN (9266,9268,9270,9272,9273,9274); +INSERT INTO `gameobject` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnMask`, `phaseMask`, `position_x`, `position_y`, `position_z`, `orientation`, `rotation0`, `rotation1`, `rotation2`, `rotation3`, `spawntimesecs`, `animprogress`, `state`, `ScriptName`, `VerifiedBuild`, `Comment`) VALUES +(9266, 2040, 1, 405, 598, 1, 1, -1774, 2968.79, 37.432, 4.232, 0, 0, 0, 0, 2700, 100, 1, '', 0, NULL), +(9268, 2040, 1, 405, 598, 1, 1, -1778, 2997.54, 35.715, 4.76, 0, 0, 0, 0, 2700, 100, 1, '', 0, NULL), +(9270, 2040, 1, 405, 598, 1, 1, -1765, 2986.9, 40.316, 5.803, 0, 0, 0, 0, 2700, 100, 1, '', 0, NULL), +(9272, 1735, 1, 405, 598, 1, 1, -1774, 2968.79, 37.432, 4.232, 0, 0, 0, 0, 2700, 100, 1, '', 0, NULL), +(9273, 1735, 1, 405, 598, 1, 1, -1778, 2997.54, 35.715, 4.76, 0, 0, 0, 0, 2700, 100, 1, '', 0, NULL), +(9274, 1735, 1, 405, 598, 1, 1, -1765, 2986.9, 40.316, 5.803, 0, 0, 0, 0, 2700, 100, 1, '', 0, NULL); + +DELETE FROM `pool_template` WHERE `entry` = 11699; +INSERT INTO `pool_template` (`entry`, `max_limit`, `description`) VALUES +(11699, 1, 'Desolace Mithril Deposit Pool'); + +DELETE FROM `pool_gameobject` WHERE `guid` IN (9256,9257,9258,9266,9268,9270,9272,9273,9274); +INSERT INTO `pool_gameobject` (`guid`, `pool_entry`, `chance`, `description`) VALUES +(9256, 11699, 3.3, 'Spawn Point 1 - Truesilver'), +(9266, 11699, 0, 'Spawn Point 1 - Mithril'), +(9272, 11699, 8.3, 'Spawn Point 1 - Iron'), +(9257, 11699, 3.3, 'Spawn Point 2 - Truesilver'), +(9268, 11699, 0, 'Spawn Point 2 - Mithril'), +(9273, 11699, 8.3, 'Spawn Point 2 - Iron'), +(9258, 11699, 3.3, 'Spawn Point 3 - Truesilver'), +(9270, 11699, 0, 'Spawn Point 3 - Mithril'), +(9274, 11699, 8.3, 'Spawn Point 3 - Iron');