From 15635860410b014e7c9bbb4aa0c7ce1ffc7198f0 Mon Sep 17 00:00:00 2001 From: neifion-00000000 <91289495+neifion-00000000@users.noreply.github.com> Date: Mon, 3 Apr 2023 22:19:15 -0500 Subject: [PATCH] fix(DB/SAI): Slow down Darkshire City Hall broadcasts (#15791) * fix(db/SAI): Slow down Darkshire City Hall broadcasts * Update rev_1680487892209055100.sql --- .../pending_db_world/rev_1680487892209055100.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1680487892209055100.sql diff --git a/data/sql/updates/pending_db_world/rev_1680487892209055100.sql b/data/sql/updates/pending_db_world/rev_1680487892209055100.sql new file mode 100644 index 000000000..a63a8d6a3 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1680487892209055100.sql @@ -0,0 +1,10 @@ +-- +-- Slows the repeat behavior of NPCs 263 (Lord Ello Ebonlocke), 269 (Role Dreuger), 270 (Councilman Millstripe), 271 (Ambassador Berrybuck), and 325 (Hogan Ference) dialogue to be more correctly timed +UPDATE `smart_scripts` SET `event_param3`=1306000, `event_param4`=1407000 WHERE `entryorguid`=263 AND `source_type`=0 AND `id`=1 AND `link`=0 AND `action_type`=1; +UPDATE `smart_scripts` SET `event_param3`=1052000, `event_param4`=1634000 WHERE `entryorguid`=269 AND `source_type`=0 AND `id`=0 AND `link`=0 AND `action_type`=1; +UPDATE `smart_scripts` SET `event_param3`=1394000, `event_param4`=1604000 WHERE `entryorguid`=270 AND `source_type`=0 AND `id`=0 AND `link`=0 AND `action_type`=1; +UPDATE `smart_scripts` SET `event_param3`=721000, `event_param4`=1607000 WHERE `entryorguid`=271 AND `source_type`=0 AND `id`=0 AND `link`=0 AND `action_type`=1; +UPDATE `smart_scripts` SET `event_param3`=305000, `event_param4`=355000 WHERE `entryorguid`=325 AND `source_type`=0 AND `id`=0 AND `link`=0 AND `action_type`=1; + +-- Slows repeat behavior of Commander Althea Ebonlocke (NPC 264) text broadcasts +UPDATE `smart_scripts` SET `event_param3`=1202000, `event_param4`=3026000 WHERE `entryorguid`=264 AND `source_type`=0 AND `id`=1 AND `link`=0 AND `action_type`=1;