diff options
author | offl <11556157+offl@users.noreply.github.com> | 2025-08-17 19:26:27 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-08-17 18:26:27 +0200 |
commit | 760cd824bb1fb47ae062d62f40f900595a340fb4 (patch) | |
tree | 8446e3f61d44700ca046ae84ee18ac26360464a1 /sql | |
parent | 5649e4e76c817241034ffc4ab7bb6425329adad7 (diff) |
Scripts/Spells: Migrate & update several item spell scripts to zone files (#31171)
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/world/3.3.5/2025_08_17_00_world.sql | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2025_08_17_00_world.sql b/sql/updates/world/3.3.5/2025_08_17_00_world.sql new file mode 100644 index 00000000000..1c281a51d19 --- /dev/null +++ b/sql/updates/world/3.3.5/2025_08_17_00_world.sql @@ -0,0 +1,17 @@ +-- +UPDATE `spell_script_names` SET `ScriptName` = 'spell_netherstorm_detonate_teleporter' WHERE `ScriptName` = 'spell_detonate_teleporter'; + +-- Shouldn't be used for teleport, only to trigger events +DELETE FROM `areatrigger_teleport` WHERE `ID` = 4523; + +DELETE FROM `gameobject` WHERE `guid` = 91320 AND `id` = 184606; +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`, `StringId`, `VerifiedBuild`) VALUES +(91320,184606,530,0,0,1,1,4799.248,3779.397,211.75,0,0,0,0,1,300,0,1,'',NULL,0); + +UPDATE `spell_script_names` SET `ScriptName` = 'spell_netherstorm_socrethars_stone' WHERE `ScriptName` = 'spell_item_socrethars_stone'; + +-- +UPDATE `spell_script_names` SET `ScriptName` = 'spell_hellfire_peninsula_purify_helboar_meat' WHERE `ScriptName` = 'spell_item_purify_helboar_meat'; + +-- +UPDATE `spell_script_names` SET `ScriptName` = 'spell_hellfire_peninsula_absorb_eye_of_grillok' WHERE `ScriptName` = 'spell_item_absorb_eye_of_grillok'; |