diff options
author | Nay <dnpd.dd@gmail.com> | 2011-04-03 01:04:57 +0100 |
---|---|---|
committer | Nay <dnpd.dd@gmail.com> | 2011-04-03 01:04:57 +0100 |
commit | bb36ec189cea436e890ea5948e878d5802e1ffc9 (patch) | |
tree | 08f919d6445196b58e3dee563929dc21c1e676b2 /src | |
parent | 596dd9b35519393586f58edabd623e484fe553cc (diff) |
DB/Misc: AT [1st] Fix part of the quest chains. Add some spawns and update creature templates. Replace a core script by a SAI equivalent (rope & post).
DB/Loot: Update Magically Wrapped Gift loot chance and max item counts.
Diffstat (limited to 'src')
-rw-r--r-- | src/server/scripts/Northrend/icecrown.cpp | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/src/server/scripts/Northrend/icecrown.cpp b/src/server/scripts/Northrend/icecrown.cpp index 808717ab6c9..b29e3929722 100644 --- a/src/server/scripts/Northrend/icecrown.cpp +++ b/src/server/scripts/Northrend/icecrown.cpp @@ -276,48 +276,6 @@ public: }; /*###### -## npc_argent_tournament_post -######*/ - -enum eArgentTournamentPost -{ - SPELL_ROPE_BEAM = 63413, - NPC_GORMOK_THE_IMPALER = 35469, - NPC_ICEHOWL = 35470 -}; - -class npc_argent_tournament_post : public CreatureScript -{ -public: - npc_argent_tournament_post() : CreatureScript("npc_argent_tournament_post") { } - - struct npc_argent_tournament_postAI : public ScriptedAI - { - npc_argent_tournament_postAI(Creature* pCreature) : ScriptedAI(pCreature) {} - - void UpdateAI(const uint32 /*uiDiff*/) - { - if (me->IsNonMeleeSpellCasted(false)) - return; - - if (Creature* pTarget = me->FindNearestCreature(NPC_GORMOK_THE_IMPALER, 6.0f)) - DoCast(pTarget, SPELL_ROPE_BEAM); - - if (Creature* pTarget2 = me->FindNearestCreature(NPC_ICEHOWL, 6.0f)) - DoCast(pTarget2, SPELL_ROPE_BEAM); - - if (!UpdateVictim()) - return; - } - }; - - CreatureAI *GetAI(Creature *creature) const - { - return new npc_argent_tournament_postAI(creature); - } -}; - -/*###### ## npc_alorah_and_grimmin ######*/ @@ -429,7 +387,6 @@ void AddSC_icecrown() new npc_dame_evniki_kapsalis; new npc_squire_david; new npc_argent_valiant; - new npc_argent_tournament_post; new npc_alorah_and_grimmin; new npc_guardian_pavilion; } |