aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/bindings/scripts/scripts/northrend/icecrown.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/bindings/scripts/scripts/northrend/icecrown.cpp b/src/bindings/scripts/scripts/northrend/icecrown.cpp
index 2c60709eb5b..bb6f83c3893 100644
--- a/src/bindings/scripts/scripts/northrend/icecrown.cpp
+++ b/src/bindings/scripts/scripts/northrend/icecrown.cpp
@@ -105,6 +105,19 @@ bool GossipSelect_npc_arete(Player* pPlayer, Creature* pCreature, uint32 uiSende
return true;
}
+/*######
+## The Valiant's Challenge Quest 13699
+######*/
+
+bool GossipHello_valiant_challenge(Player* player, Creature* _Creature)
+{
+ if (player->GetQuestStatus(13699) == QUEST_STATUS_INCOMPLETE)
+ {
+ player->SummonCreature(30675, player->GetInnPosX(),player->GetInnPosY(),player->GetInnPosZ(),0,TEMPSUMMON_TIMED_DESPAWN_OUT_OF_COMBAT,1000000);
+ }
+ return true;
+}
+
void AddSC_icecrown()
{
Script *newscript;
@@ -114,4 +127,9 @@ void AddSC_icecrown()
newscript->pGossipHello = &GossipHello_npc_arete;
newscript->pGossipSelect = &GossipSelect_npc_arete;
newscript->RegisterSelf();
+
+ newscript = new Script;
+ newscript->Name = "valiant_challenge";
+ newscript->pGossipHello = &GossipHello_valiant_challenge;
+ newscript->RegisterSelf();
}