From f86d54376a440165bff703a255f95eb8ed7b1868 Mon Sep 17 00:00:00 2001 From: megamage Date: Mon, 10 Aug 2009 15:52:11 -0500 Subject: *Fix Lightwell. By Elron --HG-- branch : trunk --- src/bindings/scripts/scripts/npc/npcs_special.cpp | 39 +++++++++++++++++++++++ 1 file changed, 39 insertions(+) (limited to 'src/bindings/scripts') diff --git a/src/bindings/scripts/scripts/npc/npcs_special.cpp b/src/bindings/scripts/scripts/npc/npcs_special.cpp index f6922745953..05ecab1f102 100644 --- a/src/bindings/scripts/scripts/npc/npcs_special.cpp +++ b/src/bindings/scripts/scripts/npc/npcs_special.cpp @@ -1679,6 +1679,40 @@ CreatureAI* GetAI_npc_mirror_image(Creature *_Creature) return new npc_mirror_image (_Creature); } +//TODO: 30% Attackdamage check for Lightwell +struct TRINITY_DLL_DECL npc_lightwellAI : public PassiveAI +{ + npc_lightwellAI(Creature *c) : PassiveAI(c) {} + + //uint32 desummon_timer; + + void Reset() + { + //desummon_timer = 180000; + m_creature->CastSpell(m_creature, 59907, false); // Spell for Lightwell Charges + } + + /* + void UpdateAI(const uint32 diff) + { + if(desummon_timer < diff) + { + m_creature->Kill(m_creature); + }else desummon_timer -= diff; + + if(!m_creature->HasAura(59907)) + { + m_creature->Kill(m_creature); + } + } + */ +}; + +CreatureAI* GetAI_npc_lightwellAI(Creature *_Creature) +{ + return new npc_lightwellAI (_Creature); +} + struct TRINITY_DLL_DECL npc_training_dummy : Scripted_NoMovementAI { npc_training_dummy(Creature *c) : Scripted_NoMovementAI(c) {} @@ -1812,6 +1846,11 @@ void AddSC_npcs_special() newscript->GetAI = &GetAI_npc_snake_trap_serpents; newscript->RegisterSelf(); + newscript = new Script; + newscript->Name="npc_lightwell"; + newscript->GetAI = &GetAI_npc_lightwellAI; + newscript->RegisterSelf(); + newscript = new Script; newscript->Name="npc_mirror_image"; newscript->GetAI = &GetAI_npc_mirror_image; -- cgit v1.2.3