diff options
| author | Wyrserth <wyrserth@protonmail.com> | 2019-07-20 22:24:15 +0200 |
|---|---|---|
| committer | Wyrserth <wyrserth@protonmail.com> | 2019-07-20 22:24:15 +0200 |
| commit | 9695285e662644b479d825f5f5819b71b8a8a7b2 (patch) | |
| tree | dc827f5bcdf3b40d1ae4e30536e9314cdaa9e48a | |
| parent | a295a9f10adf5e0ff70bf7c81381aa3fd9978833 (diff) | |
DB/Event: add game_event entry for Operation: Gnomeregan and assign related creatures/gameobjects.
| -rw-r--r-- | sql/updates/world/3.3.5/2019_07_20_03_world.sql | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2019_07_20_03_world.sql b/sql/updates/world/3.3.5/2019_07_20_03_world.sql new file mode 100644 index 00000000000..6c0df98229a --- /dev/null +++ b/sql/updates/world/3.3.5/2019_07_20_03_world.sql @@ -0,0 +1,56 @@ +-- +SET @ENTRY := 82; +DELETE FROM `game_event` WHERE `eventEntry`=@ENTRY; +INSERT INTO `game_event` (`eventEntry`, `start_time`, `end_time`, `occurence`, `length`, `holiday`, `holidayStage`, `description`, `world_event`, `announce`) VALUES +(@ENTRY, "2010-09-07 01:00:00", "2010-10-10 01:00:00", 9999999, 47520, 0, 0, "Operation: Gnomeregan", 0, 2); + +DELETE FROM `game_event_creature` WHERE `eventEntry`=@ENTRY; +INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES +(@ENTRY, 207186), +(@ENTRY, 207193), +(@ENTRY, 207174), +(@ENTRY, 207175), +(@ENTRY, 207176), +(@ENTRY, 207177), +(@ENTRY, 207178), +(@ENTRY, 207179), +(@ENTRY, 207180), +(@ENTRY, 207181), +(@ENTRY, 207182), +(@ENTRY, 207183), +(@ENTRY, 207184), +(@ENTRY, 207185), +(@ENTRY, 207190), +(@ENTRY, 207191), +(@ENTRY, 207192), +(@ENTRY, 207194), +(@ENTRY, 207195), +(@ENTRY, 207188), +(@ENTRY, 207187), +(@ENTRY, 207196), +(@ENTRY, 207197), +(@ENTRY, 207198), +(@ENTRY, 207199), +(@ENTRY, 207189); + +DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@ENTRY; +INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES +(@ENTRY, 151271), +(@ENTRY, 151272), +(@ENTRY, 151273), +(@ENTRY, 151274), +(@ENTRY, 151275), +(@ENTRY, 151276), +(@ENTRY, 151277), +(@ENTRY, 151244), +(@ENTRY, 151245), +(@ENTRY, 151246), +(@ENTRY, 151247), +(@ENTRY, 151248), +(@ENTRY, 151249), +(@ENTRY, 151250), +(@ENTRY, 151251), +(@ENTRY, 151252), +(@ENTRY, 151253), +(@ENTRY, 151254), +(@ENTRY, 151255); |
