From 28eab43720d8b06d5087c9ea3055d628399865d1 Mon Sep 17 00:00:00 2001 From: AnonXS Date: Sat, 25 Jan 2025 13:20:12 +0100 Subject: [PATCH] [Custom] Add missing hackfixes from tbc and add Plaque Fissure hackfix Remove DrekThars Scrolls 179004 hackfix - other solution found todo: align Thaurissan Relic section now that data1 default is same as in tbc --- utilities/cmangos_custom.sql | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/utilities/cmangos_custom.sql b/utilities/cmangos_custom.sql index 6e846c76d..fd3da9448 100755 --- a/utilities/cmangos_custom.sql +++ b/utilities/cmangos_custom.sql @@ -17,6 +17,10 @@ -- - Data or their parsing were wrong +-- ============================================================ +-- Classic section +-- ============================================================ + -- ------------------------------- -- Gameobject custom changes -- ------------------------------- @@ -104,8 +108,11 @@ UPDATE gameobject_template SET data2=0 WHERE entry IN (176150,176151); -- Cannonball: set radius to zero so it is only triggered through spell UPDATE gameobject_template SET data2=0 WHERE entry=176211; --- Drek'Thar's Scrolls 179004 - seemingly never used -UPDATE gameobject_template SET data1=0 WHERE entry=179004; +-- Verigan's Fist: must despawn during scripted quest +UPDATE gameobject_template SET `data3`=0, `data5`=1 WHERE entry=102413; + +-- Temporary fix data6 for GO 178559 (Larva Spewer) in prevision of coming core update +UPDATE gameobject_template SET data6=0 WHERE entry=178559; -- Inconspicuous Landmark 142189 - consumable, despawn on s.11462 expire UPDATE `gameobject_template` SET `data5` = 1 WHERE `entry` = 142189; -- 19660800 / 65536 = 300sec @@ -113,6 +120,9 @@ UPDATE `gameobject_template` SET `data5` = 1 WHERE `entry` = 142189; -- 19660800 -- hack - this bypasses despawn prevention due to GO casting a hidden 6 second spell the GO should cast - note will be put down even in core UPDATE gameobject_template SET data3=65536*6 WHERE entry IN(180619); +-- Plague Fissure: use wotlk sniff data for Eruption s.29371 spell dmg - might require go script for classic and tbc +UPDATE gameobject_template SET `data3` = 29371 WHERE entry IN (181510,181511,181512,181513,181514,181515,181516,181517,181518,181519,181520,181521,181522,181523,181524,181525,181526,181527,181528,181529,181530,181531,181532,181533,181534,181535,181536,181537,181538,181539,181540,181541,181542,181543,181544,181545,181546,181547,181548,181549,181550,181551,181552,181676,181677,181678,181695); + -- ------------------------------- -- Item custom changes -- -------------------------------