Core/Script: Add sounds to quest "Let the Fires Come!" (#1061)

Add voice sounds for the Headless Horseman during quest "Let the Fires Come!"
This commit is contained in:
Stoabrogga
2018-10-30 15:02:14 +01:00
committed by Barbz
parent f40dc23242
commit 59f0d086a6

View File

@@ -662,9 +662,15 @@ class npc_hallows_end_soh : public CreatureScript
return;
}
if (counter == 5)
{
me->MonsterYell("The sky is dark. The fire burns. You strive in vain as Fate's wheel turns.", LANG_UNIVERSAL, 0);
me->PlayDirectSound(12570);
}
else if (counter == 10)
{
me->MonsterYell("The town still burns. A cleansing fire! Time is short, I'll soon retire!", LANG_UNIVERSAL, 0);
me->PlayDirectSound(12571);
}
if (Unit* trigger = getTrigger())
me->CastSpell(trigger, SPELL_START_FIRE, true);