Skip to content

Commit

Permalink
[Instance] respawn gruuls'lair using new spawn_group and spell_list s…
Browse files Browse the repository at this point in the history
…ystem

Also add charge to spell_list

Patrols are always Lair Brute's

Correct xyz

Closes #1122

Co-authored-by: AnonXS <AnonXS@users.noreply.github.com>
  • Loading branch information
miraco and AnonXS committed Apr 22, 2023
1 parent b7f930f commit fd7d9f0
Show file tree
Hide file tree
Showing 3 changed files with 115 additions and 79 deletions.
12 changes: 4 additions & 8 deletions ACID/acid_tbc.sql
Original file line number Diff line number Diff line change
Expand Up @@ -27980,16 +27980,12 @@ INSERT INTO `creature_ai_scripts` (`id`,`creature_id`,`event_type`,`event_invers
('1884701','18847','11','0','100','0','0','0','0','0','0','0','50','0','0','0','0','0','0','0','0','0','0','0','Wild Fel Stalker - React Passive on Spawn'),
('1884702','18847','29','0','100','0','2000','2000','0','0','0','0','50','2','0','0','0','0','0','0','0','0','0','0','Wild Fel Stalker - React Aggressive on Generic Timer'),
-- Gruul the Dragonkiller (19044) - boss_gruul
-- Lair Brute 19389
-- Lair Brute 19389 - creature_spell_list
('1938901','19389','2','0','100','1024','15','0','0','0','0','0','39','50','0','0','1','2441','0','0','0','0','0','0','Lair Brute - Call For Help, Emote at 15% HP'),
('1938902','19389','0','0','100','1025','15000','18000','27000','33000','0','0','11','24193','4','512','14','-100','0','0','0','0','0','0','Lair Brute - Cast Charge and Reset Threat'),
('1938903','19389','0','0','100','1025','5000','10000','8000','12000','0','0','11','39171','1','0','0','0','0','0','0','0','0','0','Lair Brute - Cast Mortal Strike'),
('1938904','19389','0','0','100','1025','3000','8000','6000','11000','0','0','11','39174','1','0','0','0','0','0','0','0','0','0','Lair Brute - Cast Cleave'),
-- Gronn-Priest 21350
('1938902','19389','34','0','100','1','24193','-1','0','0','0','0','14','-100','0','0','0','0','0','0','0','0','0','0','Lair Brute - Reduce threat when Charge Hits'),
-- Gronn-Priest 21350 - creature_spell_list
('2135001','21350','2','0','100','1024','15','0','0','0','0','0','39','50','0','0','1','2441','0','0','0','0','0','0','Gronn-Priest - Call For Help, Emote at 15% HP'),
('2135002','21350','0','0','100','1025','5000','15000','12000','19000','0','0','11','22884','17','0','0','0','0','0','0','0','0','0','Gronn-Priest - Cast Psychic Scream'),
('2135003','21350','2','0','100','1025','50','0','22000','28000','0','0','11','36678','0','0','0','0','0','0','0','0','0','0','Gronn-Priest - Cast Heal at 50% HP'),
('2135004','21350','14','0','100','1025','118000','100','15000','18000','0','0','11','36679','12','0','0','0','0','0','0','0','0','0','Gronn-Priest - Cast Renew on Friendly Missing HP'),
('2135002','21350','2','0','100','1025','50','0','20000','30000','0','0','11','36678','0','0','0','0','0','0','0','0','0','0','Gronn-Priest - Cast Heal at 50% HP'),



Expand Down
31 changes: 31 additions & 0 deletions Updates/0730_gruuls_lair.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
-- Gruul's lair trash
-- spell_list for Lair Brute
DELETE FROM creature_spell_list WHERE Id = '1938901';
INSERT INTO `creature_spell_list` (Id, Position, SpellId, Flags, TargetId, ScriptId, Availability, Probability, InitialMin, InitialMax, RepeatMin, RepeatMax, Comments) VALUES
(1938901, 1, 24193, 0, 100, 0, 100, 0, 15000, 20000, 25000, 35000, "Lair Brute - Cast Charge - Random Player"), -- Attack - random player!
(1938901, 2, 39171, 0, 1, 0, 100, 0, 6000, 12000, 8000, 12000, "Lair Brute - Mortal Strike - Current"),
(1938901, 3, 39174, 0, 1, 0, 100, 0, 4000, 8000, 6000, 11000, "Lair Brute - Cleave - Current");

-- spell_list for Gronn-Priest
DELETE FROM creature_spell_list WHERE Id = '2135001';
INSERT INTO `creature_spell_list` (Id, Position, SpellId, Flags, TargetId, ScriptId, Availability, Probability, InitialMin, InitialMax, RepeatMin, RepeatMax, Comments) VALUES
(2135001, 1, 22884, 0, 103, 0, 100, 0, 8000, 16000, 15000, 25000, "Gronn-Priest - Psychic Scream - AoE"),
(2135001, 2, 36679, 0, 201, 0, 100, 0, 5000, 10000, 10000, 20000, "Gronn-Priest - Renew - Missing 50% including self"); -- Support - Missing 50% including self!
-- (2135001, 3, 36678, 0, ???, 0, 100, 0, 10000, 10000, 20000, 30000, "Gronn-Priest - Heal - on missing 50% including self"); -- only self 50% 10sec init timer, can currently not be done in spelllists, keeping EAI!
-- ??? needs to be hardcoded, not possible to form such a targeting rule currently.

DELETE FROM creature_spell_list_entry WHERE Id IN (1938901, 2135001);
REPLACE INTO `creature_spell_list_entry` (Id, Name, ChanceSupportAction, ChanceRangedAttack) VALUES
(1938901, "Gruuls\'Lair - Lair Brute", 0, 0),
(1938901, "Gruuls\'Lair - Gronn Priest", 0, 0);

UPDATE creature_template SET SpellList = '1938901', `Detection` = 20 WHERE entry = '19389'; -- 18
UPDATE creature_template SET SpellList = '2135001', `Detection` = 20 WHERE entry = '21350'; -- 18

-- https://youtu.be/ximDGCXUjP4?t=607
UPDATE `creature_template` SET `Detection` = 45 WHERE `entry` = 19044; -- 45~(+3bounding) - raw ~48

-- https://youtu.be/ximDGCXUjP4?t=39
UPDATE `creature_template` SET `Detection` = 25 WHERE `entry` = 18831; -- 25~(+3bounding) High King Maulgar - raw ~28
UPDATE `creature_template` SET `Detection` = 25 WHERE `entry` IN (18832,18834,18835,18836);

151 changes: 80 additions & 71 deletions Updates/Instances/565_gruul.sql
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
/* DBScriptData
DBName: Gruul's Lair
DBScriptName: instance_gruuls_lair
DB%Complete: 80
DB%Complete: 85
DBComment:
* Maulgar default weapon size doesnt match prenerf animation
* sniff path for @CGUID+7
EndDBScriptData */

SET @CGUID := 5650000; -- creatures
SET @OGUID := 5650000; -- gameobjects
SET @PGUID := 49800; -- pools
SET @SGGUID := 5650000; -- spawn_groups

-- =========
-- CREATURES
Expand All @@ -23,25 +23,23 @@ INSERT INTO `creature_movement` (`id`, `point`, `PositionX`, `PositionY`, `Posit
(@CGUID+7, 5, 70.2707, 120.313, -6.85253, 4.52706, 0, 0),
(@CGUID+7, 6, 66.75, 87.7835, -4.95224, 4.63073, 25000, 0),
-- Patrol 2
(@CGUID+10, 1, 102.667, 285.111, 1.38343, 4.65193, 20000, 0),
(@CGUID+10, 2, 108.475, 311.023, 1.56459, 1.38938, 0, 0),
(@CGUID+10, 3, 107.422, 315.295, 1.25423, 2.00357, 0, 0),
(@CGUID+10, 4, 108.58, 325.27, 1.51976, 2.29494, 55000, 0),
(@CGUID+10, 5, 108.65, 310.837, 1.60571, 4.90954, 0, 0),
(@CGUID+10, 1, 109.243, 317.835, 1.5722057, 1.780235767364501953, 55000, 0), -- 30-55s
(@CGUID+10, 2, 103.174, 288.091, 1.2337822, 100, 45000, 0), -- 30-45s
(@CGUID+10, 3, 109.243, 317.835, 1.5722057, 1.780235767364501953, 30000, 0),
(@CGUID+10, 4, 103.174, 288.091, 1.2337822, 100, 30000, 0),
-- Patrol 3
(@CGUID+15, 1, 115.935, 345.887, 4.20579, 4.05816, 0, 0),
(@CGUID+15, 2, 111.508, 332.61, 2.11866, 4.41238, 0, 0),
(@CGUID+15, 3, 108.464, 331.853, 1.70997, 3.23349, 15000, 0),
(@CGUID+15, 4, 114.04, 339.619, 3.30773, 1.08229, 0, 0),
(@CGUID+15, 5, 117.389, 347.853, 4.67211, 1.05401, 0, 0),
(@CGUID+15, 6, 124.308, 356.517, 6.12483, 0.896932, 0, 0),
(@CGUID+15, 7, 132.508, 361.832, 6.57332, 0.68566, 0, 0),
(@CGUID+15, 8, 139.363, 365.026, 4.24833, 0.386423, 0, 0),
(@CGUID+15, 9, 148.868, 364.023, 3.74505, 6.14261, 0, 0),
(@CGUID+15, 10, 166.153, 366.321, 1.37914, 0.187717, 55000, 0),
(@CGUID+15, 11, 149.978, 364.845, 3.68824, 3.30496, 0, 0),
(@CGUID+15, 12, 139.991, 365.852, 4.06457, 3.04107, 0, 0),
(@CGUID+15, 13, 131.958, 361.136, 6.8412, 3.55001, 0, 0);
(@CGUID+15, 1, 144.23323, 365.1607, 3.8937109, 100, 0, 0),
(@CGUID+15, 2, 170.33693, 367.4104, 1.0497984, 100, 60000, 0), -- 40-60s
(@CGUID+15, 3, 132.46819, 362.64624, 6.336317, 100, 0, 0),
(@CGUID+15, 4, 117.73458, 344.41876, 4.624224, 100, 0, 0),
(@CGUID+15, 5, 110.84852, 322.73474, 1.7697936, 2.635447263717651367, 22000, 0), -- 22-33s
(@CGUID+15, 6, 120.59276, 352.0573, 5.4062705, 100, 0, 0),
(@CGUID+15, 7, 144.23323, 365.1607, 3.8937109, 100, 0, 0),
(@CGUID+15, 8, 170.33693, 367.4104, 1.0497984, 100, 40000, 0),
(@CGUID+15, 9, 132.46819, 362.64624, 6.336317, 100, 0, 0),
(@CGUID+15, 10, 117.73458, 344.41876, 4.624224, 100, 0, 0),
(@CGUID+15, 11, 110.84852, 322.73474, 1.7697936, 2.635447263717651367, 33000, 0),
(@CGUID+15, 12, 120.59276, 352.0573, 5.4062705, 100, 0, 0);

-- INSERT INTO `creature_movement_template` (`entry`, `pathId`, `point`, `PositionX`, `PositionY`, `PositionZ`, `orientation`, `waittime`, `ScriptId`) VALUES

Expand All @@ -56,68 +54,35 @@ REPLACE INTO `creature_template_addon` (`entry`, `mount`, `stand_state`, `sheath
(19389, 0, 0, 1, 0, 0, NULL), -- Lair Brute
(21350, 0, 0, 1, 0, 0, NULL); -- Gronn-Priest

INSERT INTO `creature_linking` (`guid`, `master_guid`, `flag`) VALUES
(@CGUID+2, @CGUID+1, 1159), -- Krosh Firehand -> High King Maulgar
(@CGUID+3, @CGUID+1, 1159), -- Olm the Summoner -> High King Maulgar
(@CGUID+4, @CGUID+1, 1159), -- Kiggler the Crazed -> High King Maulgar
(@CGUID+5, @CGUID+1, 1159), -- Blindeye the Seer -> High King Maulgar
(@CGUID+7, @CGUID+1, 1024), -- Patrol 1 -> High King Maulgar
(@CGUID+9, @CGUID+1, 1024), -- Group 1 -> High King Maulgar
(@CGUID+8, @CGUID+9, 1167), -- Group 1
(@CGUID+11, @CGUID+12, 1167), -- Group 2
(@CGUID+13, @CGUID+14, 1167), -- Group 3
(@CGUID+16, @CGUID+17, 1167), -- Group 4
(@CGUID+18, @CGUID+17, 1167), -- Group 4
(@CGUID+12, @CGUID+6, 1024), -- Group 2 -> Gruul the Dragonkiller
(@CGUID+14, @CGUID+6, 1024), -- Group 3 -> Gruul the Dragonkiller
(@CGUID+17, @CGUID+6, 1024), -- Group 4 -> Gruul the Dragonkiller
(@CGUID+10, @CGUID+6, 1024), -- Patrol 2 -> Gruul the Dragonkiller
(@CGUID+15, @CGUID+6, 1024); -- Patrol 3 -> Gruul the Dragonkiller

REPLACE INTO `creature_linking_template` (`entry`, `map`, `master_entry`, `flag`, `search_range`) VALUES
(18847, 565, 18834, 12304, 0); -- Wild Fel Stalker -> Olm the Summoner

INSERT INTO creature_spawn_entry (guid, entry) VALUES
-- Randomize between Lair Brute (19389) and Gronn-Priest (21350)
(@CGUID+7, 19389), (@CGUID+7, 21350),
(@CGUID+8, 19389), (@CGUID+8, 21350),
(@CGUID+9, 19389), (@CGUID+9, 21350),
(@CGUID+10, 19389), (@CGUID+10, 21350),
(@CGUID+11, 19389), (@CGUID+11, 21350),
(@CGUID+12, 19389), (@CGUID+12, 21350),
(@CGUID+13, 19389), (@CGUID+13, 21350),
(@CGUID+14, 19389), (@CGUID+14, 21350),
(@CGUID+15, 19389), (@CGUID+15, 21350),
(@CGUID+16, 19389), (@CGUID+16, 21350),
(@CGUID+17, 19389), (@CGUID+17, 21350),
(@CGUID+18, 19389), (@CGUID+18, 21350);

INSERT INTO `creature` (`guid`, `id`, `map`, `spawnMask`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecsmin`, `spawntimesecsmax`, `spawndist`, `MovementType`) VALUES
(@CGUID+1, 18831, 565, 1, 143.049, 192.726, -11.2147, 3.40339, 604800, 604800, 0, 0), -- High King Maulgar
(@CGUID+2, 18832, 565, 1, 149.823, 178.019, -10.5928, 3.10669, 7200, 7200, 0, 0), -- Krosh Firehand
(@CGUID+3, 18834, 565, 1, 146.521, 185.358, -10.8378, 3.22886, 7200, 7200, 0, 0), -- Olm the Summoner
(@CGUID+4, 18835, 565, 1, 145.96, 207.296, -8.6713, 3.57792, 7200, 7200, 0, 0), -- Kiggler the Crazed
(@CGUID+5, 18836, 565, 1, 144.731, 199.921, -9.97698, 3.47321, 7200, 7200, 0, 0), -- Blindeye the Seer
(@CGUID+6, 19044, 565, 1, 239.919, 359.057, -4.65222, 3.01282, 604800, 604800, 0, 0), -- Gruul the Dragonkiller
(@CGUID+6, 19044, 565, 1, 237.403, 357.981, -3.40797, 3.14159, 604800, 604800, 0, 0), -- Gruul the Dragonkiller
-- Patrol 1
(@CGUID+7, 0, 565, 1, 67.1291, 99.4851, -5.41845, 1.4318, 3600, 3600, 0, 2), -- creature_spawn_entry
(@CGUID+7, 19389, 565, 1, 67.1291, 99.4851, -5.41845, 1.4318, 3600, 3600, 0, 2), -- Lair Brute
-- Group 1
(@CGUID+8, 0, 565, 1, 65.635, 130.703, -6.20328, 6.14971, 3600, 3600, 0, 0), -- creature_spawn_entry
(@CGUID+9, 0, 565, 1, 76.6184, 129.076, -7.02181, 3.0576, 3600, 3600, 0, 0), -- creature_spawn_entry
-- Patrol 2
(@CGUID+10, 0, 565, 1, 102.559, 288.509, 1.11309, 4.65193, 3600, 3600, 0, 2), -- creature_spawn_entry
(@CGUID+8, 0, 565, 1, 65.5642, 130.827, -6.12329, 6.16101, 3600, 3600, 0, 0), -- spawn_group_entry
(@CGUID+9, 0, 565, 1, 77.751, 130.134, -7.05176, 2.93215, 3600, 3600, 0, 0), -- spawn_group_entry

(@CGUID+10, 19389, 565, 1, 109.243, 317.835, 1.5722057, 1.780235767364501953, 3600, 3600, 0, 2), -- Lair Brute
-- Group 2
(@CGUID+11, 0, 565, 1, 95.9796, 283.051, 2.23278, 0.017294, 3600, 3600, 0, 0), -- creature_spawn_entry
(@CGUID+12, 0, 565, 1, 109.359, 281.634, 1.95785, 2.94604, 3600, 3600, 0, 0), -- creature_spawn_entry
(@CGUID+11, 0, 565, 1, 96.3461, 282.478, 2.28934, 0.0174533, 3600, 3600, 0, 0), -- spawn_group_entry
(@CGUID+12, 0, 565, 1, 107.871, 282.512, 1.97182, 2.9147, 3600, 3600, 0, 0), -- spawn_group_entry
-- Group 3
(@CGUID+13, 0, 565, 1, 101.226, 326.936, 1.57027, 1.28414, 3600, 3600, 0, 0), -- creature_spawn_entry
(@CGUID+14, 0, 565, 1, 102.668, 335.433, 2.02522, 4.51134, 3600, 3600, 0, 0), -- creature_spawn_entry
(@CGUID+13, 0, 565, 1, 102.204, 325.543, 1.53778, 1.06465, 3600, 3600, 0, 0), -- spawn_group_entry
(@CGUID+14, 0, 565, 1, 107.682, 333.561, 2.02375, 4.24115, 3600, 3600, 0, 0), -- spawn_group_entry
-- Patrol 3
(@CGUID+15, 0, 565, 1, 121.425, 353.774, 5.57, 3.99279, 3600, 3600, 0, 2), -- creature_spawn_entry
(@CGUID+15, 19389, 565, 1, 121.425, 353.774, 5.57, 3.99279, 3600, 3600, 0, 2), -- Lair Brute
-- Group 4
(@CGUID+16, 0, 565, 1, 177.683, 371.957, 0.435013, 3.14632, 3600, 3600, 0, 0), -- creature_spawn_entry
(@CGUID+17, 0, 565, 1, 175.194, 365.85, 0.046197, 2.95075, 3600, 3600, 0, 0), -- creature_spawn_entry
(@CGUID+18, 0, 565, 1, 177.139, 358.69, -1.00116, 2.79996, 3600, 3600, 0, 0); -- creature_spawn_entry
(@CGUID+16, 0, 565, 1, 178.031, 373.566, 0.628656, 3.35103, 3600, 3600, 0, 0), -- spawn_group_entry
(@CGUID+17, 0, 565, 1, 178.741, 367.175, -0.286067, 3.22886, 3600, 3600, 0, 0), -- spawn_group_entry
(@CGUID+18, 0, 565, 1, 178.218, 360.483, -1.0015, 3.10669, 3600, 3600, 0, 0); -- spawn_group_entry

-- ===========
-- GAMEOBJECTS
Expand All @@ -141,13 +106,57 @@ INSERT INTO `gameobject` (`guid`, `id`, `map`, `spawnMask`, `position_x`, `posit
-- SPAWN GROUPS
-- ============

-- INSERT INTO `spawn_group` (`Id`, `Name`, `Type`, `MaxCount`, `WorldState`, `Flags`) VALUES
-- INSERT INTO `spawn_group_entry` (`Id`, `Entry`, `MinCount`, `MaxCount`, `Chance`) VALUES
-- INSERT INTO `spawn_group_spawn` (`Id`, `Guid`, `SlotId`, `Chance`) VALUES
INSERT INTO `spawn_group` (`Id`, `Name`, `Type`, `MaxCount`, `WorldState`, `Flags`) VALUES
(@SGGUID+1, 'Gruuls\'Lair - High King Maulgar | Group 1', 0, 0, 0, 7), -- aggro, respawn and evade together
(@SGGUID+2, 'Gruuls\'Lair - Gruul | Group 1', 0, 0, 0, 0),
(@SGGUID+3, 'Gruuls\'Lair - Lair Brute | Patrol', 0, 0, @SGGUID+1, 0),
(@SGGUID+4, 'Gruuls\'Lair - Lair Brute | Gronn-Priest | Group 2', 0, 0, @SGGUID+1, 3), -- aggro and respawn together
(@SGGUID+5, 'Gruuls\'Lair - Lair Brute | Patrol', 0, 0, @SGGUID+2, 0),
(@SGGUID+6, 'Gruuls\'Lair - Lair Brute | Gronn-Priest | Group 3', 0, 0, @SGGUID+2, 3), -- aggro and respawn together
(@SGGUID+7, 'Gruuls\'Lair - Lair Brute | Gronn-Priest | Group 4', 0, 0, @SGGUID+2, 3), -- aggro and respawn together
(@SGGUID+8, 'Gruuls\'Lair - Lair Brute | Patrol', 0, 0, @SGGUID+2, 0),
(@SGGUID+9, 'Gruuls\'Lair - Lair Brute | Gronn-Priest | Group 4', 0, 0, @SGGUID+2, 3); -- aggro and respawn together

INSERT INTO `spawn_group_entry` (`Id`, `Entry`, `MinCount`, `MaxCount`, `Chance`) VALUES
(@SGGUID+4, 19389, 0, 0, 0), (@SGGUID+4, 21350, 0, 0, 0), -- Gronn-Priest, Lair Brute
(@SGGUID+6, 19389, 0, 0, 0), (@SGGUID+6, 21350, 0, 0, 0), -- Gronn-Priest, Lair Brute
(@SGGUID+7, 19389, 0, 0, 0), (@SGGUID+7, 21350, 0, 0, 0), -- Gronn-Priest, Lair Brute
(@SGGUID+9, 19389, 0, 0, 0), (@SGGUID+9, 21350, 0, 0, 0); -- Gronn-Priest, Lair Brute

INSERT INTO `spawn_group_spawn` (`Id`, `Guid`, `SlotId`) VALUES
(@SGGUID+1, @CGUID+1, -1), -- High King Maulgar
(@SGGUID+1, @CGUID+2, -1), -- Krosh Firehand
(@SGGUID+1, @CGUID+3, -1), -- Olm the Summoner
(@SGGUID+1, @CGUID+4, -1), -- Kiggler the Crazed
(@SGGUID+1, @CGUID+5, -1), -- Blindeye the Seer
(@SGGUID+2, @CGUID+6, -1), -- Gruul the Dragonkiller
(@SGGUID+3, @CGUID+7, -1), -- Lair Brute
(@SGGUID+4, @CGUID+8, -1), -- spawn_group_entry
(@SGGUID+4, @CGUID+9, -1), -- spawn_group_entry
(@SGGUID+5, @CGUID+10, -1), -- Lair Brute
(@SGGUID+6, @CGUID+11, -1), -- spawn_group_entry
(@SGGUID+6, @CGUID+12, -1), -- spawn_group_entry
(@SGGUID+7, @CGUID+13, -1), -- spawn_group_entry
(@SGGUID+7, @CGUID+14, -1), -- spawn_group_entry
(@SGGUID+8, @CGUID+15, -1), -- Lair Brute
(@SGGUID+9, @CGUID+16, -1), -- spawn_group_entry
(@SGGUID+9, @CGUID+17, -1), -- spawn_group_entry
(@SGGUID+9, @CGUID+18, -1); -- spawn_group_entry

-- INSERT INTO `spawn_group_formation` (`Id`, `FormationType`, `FormationSpread`, `FormationOptions`, `PathId`, `MovementType`, `Comment`) VALUES
-- INSERT INTO `waypoint_path_name` (`PathId`, `Name`) VALUES
-- INSERT INTO `waypoint_path` (`PathId`, `Point`, `PositionX`, `PositionY`, `PositionZ`, `Orientation`, `WaitTime`, `ScriptId`, `Comment`) VALUES

DELETE FROM `worldstate_name` WHERE `Id` IN (2778,4804);
INSERT INTO `worldstate_name` (`Id`, `Name`) VALUES
(2778, 'Gruuls\'Lair - Highking Maulgar - Encounter completed'),
(4804, 'Gruuls\'Lair - Gruul the Dragonkiller - Encounter completed');

DELETE FROM `conditions` WHERE `condition_entry` IN (@SGGUID+1, @SGGUID+2);
INSERT INTO `conditions` (`condition_entry`, `type`, `value1`, `value2`, `value3`, `value4`, `flags`, `comments`) VALUES
(@SGGUID+1, '42', 2778, '0', '0', '0', '0', 'Highking Maulgar - Trash Respawn'),
(@SGGUID+2, '42', 4804, '0', '0', '0', '0', 'Gruul the Dragonkiller - Trash Respawn');

-- =========
-- DBSCRIPTS
-- =========
Expand Down

0 comments on commit fd7d9f0

Please sign in to comment.