mirror of
https://github.com/ZhengPeiRu21/mod-individual-progression
synced 2025-11-29 23:44:51 +08:00
more fixes in STV (#747)
- smart script fixes - phased a few ZG quest NPCs on Yojamba Isle
This commit is contained in:
@@ -14,6 +14,9 @@ UPDATE `creature_template` SET `ScriptName` = 'npc_ipp_preaq' WHERE `entry` IN (
|
||||
-- Phasing Cenarion Hold guards
|
||||
UPDATE `creature` SET `ScriptName` = 'npc_ipp_preaq' WHERE `id1` = 15184 AND `guid` IN (42782, 42783, 42768);
|
||||
|
||||
-- Phasing ZG quest NPCs on YoJamba Isle
|
||||
UPDATE `creature` SET `ScriptName` = 'npc_ipp_preaq' WHERE `id1` IN (14904, 14910, 15070);
|
||||
|
||||
-- Phasing NPCs until after the outdoors AQ war has been completed
|
||||
UPDATE `creature_template` SET `ScriptName` = 'npc_ipp_aq' WHERE `entry` IN (15498, 15499, 15500, 15540, 16091); -- Cenarion Hold
|
||||
|
||||
|
||||
@@ -1,13 +1,14 @@
|
||||
-- smart scripts
|
||||
UPDATE `creature_template` SET `AIName` = '' WHERE `entry` IN (681, 682, 683, 687, 736, 772, 854, 905, 1108, 1114, 2551, 4260);
|
||||
UPDATE `creature_template` SET `AIName` = '' WHERE `entry` IN (681, 682, 683, 687, 691, 736, 772, 854, 905, 1108, 1114, 2551, 4260);
|
||||
UPDATE `creature_template` SET `AIName` = 'SmartAI' WHERE `entry` IN
|
||||
(587, 588, 597, 660, 667, 669, 670, 671, 672, 674, 675, 677, 678, 679, 680, 686, 684, 690, 694, 696, 697, 699, 701, 702, 709, 710, 723, 728, 729, 730, 731, 780, 781, 782, 783,
|
||||
813, 818, 921, 937, 938, 939, 940, 941, 942, 943, 978, 979, 1059, 1060, 1061, 1062, 1085, 1096, 1097, 1144, 1150, 1151,
|
||||
1488, 1490, 1491, 1550, 1561, 1562, 1563, 1564, 1565, 1653, 1907, 2541, 2545, 2546, 2547, 2548, 2549, 2550, 2635, 4457, 4458, 4459, 4460, 4461, 4505, 4506, 4723, 14487, 14488);
|
||||
813, 818, 871, 873, 875, 877, 879, 921, 937, 938, 939, 940, 941, 942, 943, 978, 979, 1059, 1060, 1061, 1062, 1085, 1096, 1097, 1144, 1150, 1151, 1488, 1490, 1491, 1492, 1493,
|
||||
1550, 1551, 1552, 1559, 1561, 1562, 1563, 1564, 1565, 1653, 1907, 2521, 2534, 2541, 2545, 2546, 2547, 2548, 2549, 2550, 2635, 4457, 4458, 4459, 4460, 4461, 4505, 4506, 4723, 14487, 14488);
|
||||
DELETE FROM `smart_scripts` WHERE `source_type` = 0 AND `entryorguid` IN
|
||||
(587, 588, 597, 660, 667, 669, 670, 671, 672, 674, 675, 677, 678, 679, 680, 681, 682, 683, 684, 686, 687, 690, 694, 696, 697, 699, 701, 702, 709, 710, 723, 728, 729, 730, 731, 736, 772, 780, 781, 782, 783,
|
||||
813, 818, 854, 905, 921, 937, 938, 939, 940, 941, 942, 943, 978, 979, 1059, 1060, 1061, 1062, 1085, 1096, 1097, 1108, 1114, 1144, 1150, 1151,
|
||||
1488, 1490, 1491, 1550, 1561, 1562, 1563, 1564, 1565, 1653, 1907, 2541, 2545, 2546, 2547, 2548, 2549, 2550, 2551, 2635, 4260, 4457, 4458, 4459, 4460, 4461, 4505, 4506, 4723, 14487, 14488);
|
||||
(587, 588, 597, 660, 667, 669, 670, 671, 672, 674, 675, 677, 678, 679, 680, 681, 682, 683, 684, 686, 687, 690, 691, 694, 696, 697, 699, 701, 702, 709, 710, 723, 728, 729, 730, 731, 736, 772, 780, 781, 782, 783,
|
||||
813, 818, 854, 871, 873, 875, 877, 879, 905, 921, 937, 938, 939, 940, 941, 942, 943, 978, 979, 1059, 1060, 1061, 1062, 1085, 1096, 1097, 1108, 1114, 1144, 1150, 1151, 1488, 1490, 1491, 1492, 1493,
|
||||
1550, 1551, 1552, 1559, 1561, 1562, 1563, 1564, 1565, 1653, 1907, 2521, 2534, 2541, 2545, 2546, 2547, 2548, 2549, 2550, 2551, 2635, 4260, 4457, 4458, 4459, 4460, 4461, 4505, 4506, 4723, 14487, 14488);
|
||||
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`,
|
||||
`event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `event_param6`,
|
||||
`action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`,
|
||||
@@ -34,7 +35,6 @@ INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_
|
||||
(670, 0, 0, 0, 0, 0, 100, 0, 5000, 15000, 30000, 60000, 0, 0, 11, 8376, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Skullsplitter Witch Doctor - In Combat - Cast Earthgrab Totem'),
|
||||
(670, 0, 1, 0, 2, 0, 100, 0, 0, 50, 15000, 30000, 0, 0, 11, 5605, 64, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Skullsplitter Witch Doctor - Between 0-50% Health - Cast Healing Ward'),
|
||||
(670, 0, 2, 0, 2, 0, 100, 1, 0, 15, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Skullsplitter Witch Doctor - Between 0-15% Health - Flee For Assist (No Repeat)'),
|
||||
|
||||
(671, 0, 0, 0, 9, 0, 100, 0, 0, 0, 4000, 4000, 30, 60, 21, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Bloodscalp Headhunter - Outside 30 Range - Start Combat Movement'),
|
||||
(671, 0, 1, 0, 9, 0, 100, 0, 0, 0, 4000, 4000, 5, 30, 21, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Bloodscalp Headhunter - Within 5-30 Range - Stop Combat Movement'),
|
||||
(671, 0, 2, 0, 9, 0, 100, 0, 0, 0, 4000, 4000, 0, 5, 21, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Bloodscalp Headhunter - Within 0-5 Range - Start Combat Movement'),
|
||||
@@ -46,6 +46,7 @@ INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_
|
||||
(672, 0, 1, 0, 0, 0, 100, 0, 3000, 4000, 5000, 6000, 0, 0, 11, 9532, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 'Skullsplitter Spiritchaser - In Combat - Cast Lightning Bolt'),
|
||||
(672, 0, 2, 0, 0, 0, 100, 0, 6000, 7000, 12000, 14000, 0, 0, 11, 11981, 320, 0, 0, 0, 0, 5, 30, 0, 1, 0, 0, 0, 0, 0, 'Skullsplitter Spiritchaser - In Combat - Cast Mana Burn'),
|
||||
(672, 0, 3, 0, 2, 0, 100, 1, 0, 15, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Skullsplitter Spiritchaser - Between 0-15% Health - Flee For Assist (No Repeat)'),
|
||||
--
|
||||
(674, 0, 0, 0, 0, 0, 100, 0, 0, 0, 12000, 15000, 0, 0, 11, 7978, 1, 0, 0, 0, 0, 28, 30, 1, 1, 5, 0, 0, 0, 0, 'Venture Co. Strip Miner - In Combat - Cast Throw Dynamite'),
|
||||
(675, 0, 0, 0, 4, 0, 100, 0, 0, 0, 0, 0, 0, 0, 11, 8258, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Venture Co. Foreman - On Aggro - Cast Devotion Aura'),
|
||||
(675, 0, 1, 0, 2, 0, 100, 1, 0, 15, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Venture Co. Foreman - Between 0-15% Health - Flee For Assist (No Repeat)'),
|
||||
@@ -54,6 +55,7 @@ INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_
|
||||
(677, 0, 1, 0, 0, 0, 100, 0, 3000, 4000, 5000, 10000, 0, 0, 11, 20823, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 'Venture Co. Tinkerer - In Combat - Cast Fireball'),
|
||||
(677, 0, 2, 0, 0, 0, 100, 0, 5000, 9000, 70000, 85000, 0, 0, 11, 7979, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Venture Co. Tinkerer - In Combat - Cast Compact Harvest Reaper'),
|
||||
(677, 0, 3, 0, 2, 0, 100, 1, 0, 15, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Venture Co. Tinkerer - Between 0-15% Health - Flee For Assist (No Repeat)'),
|
||||
--
|
||||
(678, 0, 0, 0, 0, 0, 50, 512, 4000, 6000, 11000, 12000, 0, 0, 11, 5164, 2, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 'Mosh\'Ogg Mauler - Within 0-5 Range - Cast Knockdown'),
|
||||
(678, 0, 1, 0, 4, 0, 15, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 'Mosh\'Ogg Mauler - On Aggro - Say Line 0'),
|
||||
(679, 0, 0, 0, 0, 0, 100, 0, 2000, 6000, 5000, 11000, 0, 0, 11, 12058, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 'Mosh\'Ogg Shaman - In Combat - Cast Chain Lightning'),
|
||||
@@ -142,6 +144,23 @@ INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_
|
||||
(813, 0, 2, 0, 61, 1, 100, 0, 0, 0, 0, 0, 0, 0, 22, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Colonel Kurzen - On Smoke Bomb - Set Phase to 2'),
|
||||
(813, 0, 3, 0, 23, 2, 100, 0, 8822, 1, 100, 100, 0, 0, 11, 8818, 32, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 'Colonel Kurzen - While Stealthed - Cast Garrote (phase 2)'),
|
||||
(813, 0, 4, 0, 23, 2, 100, 0, 8822, 0, 0, 0, 0, 0, 22, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Colonel Kurzen - On Lost Stealth - Set Phase to 1'),
|
||||
(871, 0, 0, 0, 2, 0, 100, 1, 0, 15, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Saltscale Warrior - Between 0-15% Health - Flee For Assist (No Repeat)'),
|
||||
(873, 0, 0, 0, 0, 0, 100, 0, 0, 0, 2000, 2000, 0, 0, 11, 9532, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 'Saltscale Oracle - In Combat - Cast Lightning Bolt'),
|
||||
(873, 0, 1, 0, 74, 0, 100, 0, 10000, 10000, 20000, 20000, 50, 40, 11, 11986, 65, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 'Saltscale Oracle - Friendly Between 0-50% Health - Cast Healing Wave'),
|
||||
(873, 0, 2, 0, 2, 0, 100, 1, 0, 15, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Saltscale Oracle - Between 0-15% Health - Flee For Assist (No Repeat)'),
|
||||
(875, 0, 0, 0, 0, 0, 100, 0, 1000, 1000, 900000, 900000, 0, 0, 11, 12544, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Saltscale Tide Lord - Out of Combat - Cast Frost Armor'),
|
||||
(875, 0, 1, 0, 0, 0, 100, 0, 0, 0, 2000, 2000, 0, 0, 11, 9672, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 'Saltscale Tide Lord - In Combat - Cast Frostbolt'),
|
||||
(875, 0, 2, 0, 106, 0, 100, 0, 0, 0, 15000, 18000, 0, 8, 11, 11831, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Saltscale Tide Lord - Within 0-8 Range - Cast Frost Nova'),
|
||||
(875, 0, 3, 0, 2, 0, 100, 1, 0, 15, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Saltscale Tide Lord - Between 0-15% Health - Flee For Assist (No Repeat)'),
|
||||
(877, 0, 0, 0, 11, 0, 100, 0, 0, 0, 0, 0, 0, 0, 11, 3616, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Saltscale Forager - On Respawn - Cast Poison Proc'),
|
||||
(877, 0, 1, 0, 9, 0, 100, 0, 0, 0, 20000, 30000, 0, 5, 11, 13443, 32, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 'Saltscale Forager - Within 0-5 Range - Cast Rend'),
|
||||
(877, 0, 2, 0, 2, 0, 100, 1, 0, 15, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Saltscale Forager - Between 0-15% Health - Flee For Assist (No Repeat)'),
|
||||
(879, 0, 0, 0, 9, 0, 100, 0, 0, 0, 4000, 4000, 30, 60, 21, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Saltscale Hunter - Outside 30 Range - Start Combat Movement'),
|
||||
(879, 0, 1, 0, 9, 0, 100, 0, 0, 0, 4000, 4000, 5, 30, 21, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Saltscale Hunter - Within 5-30 Range - Stop Combat Movement'),
|
||||
(879, 0, 2, 0, 9, 0, 100, 0, 0, 0, 4000, 4000, 0, 5, 21, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Saltscale Hunter - Within 0-5 Range - Start Combat Movement'),
|
||||
(879, 0, 3, 0, 9, 0, 100, 0, 0, 0, 2000, 4000, 5, 30, 11, 10277, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 'Saltscale Hunter - Within 5-30 Range - Cast Throw'),
|
||||
(879, 0, 4, 0, 2, 0, 100, 1, 0, 15, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Saltscale Hunter - Between 0-15% Health - Flee For Assist (No Repeat)'),
|
||||
--
|
||||
(921, 0, 0, 0, 9, 0, 100, 0, 5200, 7500, 5900, 9800, 0, 5, 11, 40505, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 'Venture Co. Lumberjack - Within 0-5 Range - Cast Cleave'),
|
||||
(921, 0, 1, 0, 2, 0, 100, 1, 0, 15, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Venture Co. Lumberjack - Between 0-15% Health - Flee For Assist (No Repeat)'),
|
||||
(937, 0, 0, 0, 2, 0, 100, 1, 0, 15, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Kurzen Jungle Fighter - Between 0-15% Health - Flee For Assist (No Repeat)'),
|
||||
@@ -205,7 +224,13 @@ INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_
|
||||
(1490, 0, 2, 0, 2, 0, 100, 1, 0, 15, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Zanzil Witch Doctor - Between 0-15% Health - Flee For Assist (No Repeat)'),
|
||||
(1491, 0, 0, 0, 9, 0, 100, 0, 3000, 30000, 10000, 30000, 0, 5, 11, 9080, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 'Zanzil Naga - Within 0-5 Range - Cast Hamstring'),
|
||||
(1491, 0, 1, 0, 105, 0, 100, 0, 4000, 5000, 10000, 11000, 0, 5, 11, 12555, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 'Zanzil Naga - In Combat - Cast Pummel'),
|
||||
(1492, 0, 0, 0, 9, 0, 100, 0, 0, 0, 30000, 40000, 0, 8, 11, 5568, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Gorlash - Within 0-8 Range - Cast Trample'), -- https://www.youtube.com/watch?v=KoGj_skDKHw
|
||||
(1493, 0, 0, 0, 1, 0, 100, 0, 5000, 10000, 300000, 600000, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Mok\'rash - Out of Combat - Say Line 0'),
|
||||
--
|
||||
(1550, 0, 0, 0, 0, 0, 75, 0, 5000, 5000, 18000, 18000, 0, 0, 11, 6607, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 'Thrashtail Basilisk - Within 0-5 Range - Cast Lash (No Repeat)'),
|
||||
(1551, 0, 0, 0, 0, 0, 85, 0, 8000, 8000, 30000, 30000, 0, 0, 11, 5106, 96, 0, 0, 0, 0, 21, 5, 0, 0, 0, 0, 0, 0, 0, 'Ironjaw Basilisk - Within 0-5 Range - Cast Crystal Flash'), -- test!
|
||||
(1552, 0, 0, 0, 0, 0, 85, 0, 15000, 15000, 26000, 26000, 0, 0, 11, 5106, 96, 0, 0, 0, 0, 21, 5, 0, 0, 0, 0, 0, 0, 0, 'Scale Belly - Within 0-5 Range - Cast Crystal Flash'),
|
||||
(1559, 0, 0, 0, 9, 0, 100, 0, 0, 0, 6000, 10000, 0, 8, 11, 5568, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'King Mukla - Within 0-8 Range - Cast Trample'),
|
||||
(1561, 0, 0, 0, 4, 0, 100, 0, 0, 0, 0, 0, 0, 0, 11, 29651, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Bloodsail Raider - On Aggro - Cast Dual Wield'),
|
||||
(1561, 0, 1, 0, 0, 0, 100, 0, 3000, 11000, 18000, 31000, 0, 0, 11, 6533, 0, 0, 0, 0, 0, 21, 20, 0, 0, 0, 0, 0, 0, 0, 'Bloodsail Raider - In Combat - Cast Net'),
|
||||
(1561, 0, 2, 0, 2, 0, 100, 1, 0, 15, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Bloodsail Raider - Between 0-15% Health - Flee For Assist (No Repeat)'),
|
||||
@@ -232,11 +257,16 @@ INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_
|
||||
(1907, 0, 0, 0, 4, 0, 100, 0, 0, 0, 0, 0, 0, 0, 11, 7165, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Naga Explorer - On Aggro - Cast Battle Stance'),
|
||||
(1907, 0, 1, 0, 0, 0, 100, 0, 6000, 12000, 18000, 28000, 0, 0, 11, 6548, 32, 0, 0, 0, 0, 21, 5, 0, 0, 0, 0, 0, 0, 0, 'Naga Explorer - Within 0-5 Range - Cast Rend'),
|
||||
(1907, 0, 2, 0, 2, 0, 100, 1, 0, 15, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Naga Explorer - Between 0-15% Health - Flee For Assist (No Repeat)'),
|
||||
(2521, 0, 0, 0, 9, 0, 100, 0, 0, 0, 16000, 27000, 0, 8, 11, 5568, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Skymane Gorilla - Within 0-8 Range - Cast Trample'),
|
||||
(2534, 0, 0, 0, 0, 0, 100, 0, 12000, 12000, 60000, 60000, 0, 0, 11, 8832, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Zanzil the Outcast - In Combat - Cast Ward of Zanzil'),
|
||||
(2534, 0, 1, 0, 0, 0, 100, 0, 10000, 10000, 50000, 50000, 0, 0, 11, 8264, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Zanzil the Outcast - In Combat - Cast Lava Spout Totem'), -- https://www.youtube.com/watch?v=3aQiaVmbddY
|
||||
(2534, 0, 2, 0, 0, 0, 100, 0, 0, 0, 2000, 2000, 0, 0, 11, 9532, 64, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 'Zanzil the Outcast - In Combat - Cast Lightning Bolt'),
|
||||
(2534, 0, 3, 0, 2, 0, 100, 1, 0, 15, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Zanzil the Outcast - Between 0-15% Health - Flee For Assist (No Repeat)'),
|
||||
(2541, 0, 0, 0, 0, 0, 100, 0, 5000, 7000, 7000, 11000, 0, 0, 11, 15496, 0, 0, 0, 0, 0, 21, 5, 0, 0, 0, 0, 0, 0, 0, 'Lord Sakrasis - In Combat - Cast Cleave'),
|
||||
(2541, 0, 1, 0, 12, 0, 100, 1, 0, 20, 0, 0, 0, 0, 11, 7160, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 'Lord Sakrasis - Within 0-5 Range - Cast Execute (No Repeat)'),
|
||||
(2541, 0, 2, 0, 2, 0, 100, 1, 30, 60, 0, 0, 0, 0, 11, 3583, 32, 0, 0, 0, 0, 21, 10, 0, 0, 0, 0, 0, 0, 0, 'Lord Sakrasis - Between 30-60% Health - Cast Deadly Poison (No Repeat)'),
|
||||
(2541, 0, 3, 0, 2, 0, 100, 1, 0, 15, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Lord Sakrasis - Between 0-15% Health - Flee For Assist (No Repeat)'),
|
||||
(2545, 0, 0, 0, 2, 0, 100, 1, 0, 15, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '"Pretty Boy" Duncan - Between 0-15% Health - Flee For Assist (No Repeat)'),
|
||||
(2545, 0, 0, 0, 2, 0, 100, 1, 0, 15, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Pretty Boy Duncan - Between 0-15% Health - Flee For Assist (No Repeat)'),
|
||||
(2546, 0, 0, 0, 0, 0, 100, 0, 0, 500, 1400, 4900, 0, 0, 11, 6192, 32, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Fleet Master Firallon - In Combat - Cast Battle Shout'),
|
||||
(2546, 0, 1, 0, 2, 0, 100, 1, 0, 15, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Fleet Master Firallon - Between 0-15% Health - Flee For Assist (No Repeat)'),
|
||||
(2547, 0, 0, 0, 4, 0, 100, 0, 0, 0, 0, 0, 0, 0, 11, 7164, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'Ironpatch - On Aggro - Cast Defensive Stance'),
|
||||
|
||||
Reference in New Issue
Block a user