From 1281370cbf29c453dcf57981b42459d05a6dba1d Mon Sep 17 00:00:00 2001 From: Tafuna Date: Tue, 7 Apr 2015 15:24:06 +0200 Subject: [PATCH] Fix Prince Malchezaar Equipment On TBC we must use other id as wotlk need sql update UPDATE creature_template SET EquipmentTemplateId = 2300 WHERE entry = 17650; -- Use Entry 2300 from UDB but change the equipentry1 and equipentry2 WOTLK Use 23996 -- Need SD2 Change DELETE FROM `creature_equip_template` WHERE entry = 2300; INSERT INTO `creature_equip_template` (`entry`, `equipentry1`, `equipentry2`, `equipentry3`) VALUES ('2300','28767','28767','0'); --- scripts/eastern_kingdoms/karazhan/boss_prince_malchezaar.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/eastern_kingdoms/karazhan/boss_prince_malchezaar.cpp b/scripts/eastern_kingdoms/karazhan/boss_prince_malchezaar.cpp index cf4ebdf0..6b99753b 100644 --- a/scripts/eastern_kingdoms/karazhan/boss_prince_malchezaar.cpp +++ b/scripts/eastern_kingdoms/karazhan/boss_prince_malchezaar.cpp @@ -59,7 +59,8 @@ enum NPC_NETHERSPITE_INFERNAL = 17646, // The netherspite infernal creature NPC_MALCHEZARS_AXE = 17650, // Malchezar's axes summoned during phase 3 - EQUIP_ID_AXE = 23996, // Axes info + // EQUIP_ID_AXE = 23996, // Axes info WotLK + EQUIP_ID_AXE = 28767, // Axes info TBC ATTACK_TIMER_DEFAULT = 2400, // note: for WotLK it is 2000 ATTACK_TIMER_AXES = 1600, // note: for WotLK it is 1333