Solve conflicts with new WotLK Scourge Invasion event (#551)

* Update si.sql
* Update si_creatures.sql
* Update si_gameobjects.sql
* Update 00_cleanup.sql

- updates to avoid conflicts
- Restore event 17 (WotLK Scourge Invasion)
- add Lord Blackwood to Scholomance
- add Haunted Memento as possible drop
This commit is contained in:
Grimfeather
2025-07-16 21:28:51 +02:00
committed by GitHub
parent dfe40b06bf
commit 9c103fb652
4 changed files with 1912 additions and 1382 deletions

View File

@@ -2,8 +2,7 @@
SET @OGUID := 660000;
DELETE FROM `gameobject` WHERE `id` IN (181154, 181172, 181215, 181223, 181227, 181254, 181255, 181256, 181373, 181374, 190604, 190609, 190610);
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID AND @OGUID+115;
INSERT INTO `gameobject` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnMask`, `phaseMask`, `position_x`, `position_y`, `position_z`, `orientation`,
`rotation0`, `rotation1`, `rotation2`, `rotation3`, `spawntimesecs`, `animprogress`, `state`, `VerifiedBuild`) VALUES
@@ -135,5 +134,4 @@ INSERT INTO `gameobject` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnMask`,
(@OGUID+115, 181227, 0, 0, 0, 1, 1, -8401.13, -1204.99, 187.317, 5.89863, 0, 0, 0, 0, 120, 100, 1, 0);
UPDATE `gameobject` SET `ScriptName` = 'gobject_ipp_si' WHERE `id` IN
(181154, 181172, 181215, 181223, 181227, 181254, 181255, 181256, 181373, 181374);
UPDATE `gameobject` SET `ScriptName` = 'gobject_ipp_si' WHERE `guid` BETWEEN @OGUID AND @OGUID+115);