Winds of fate a promise missing onFirstTalk.

Contributed by gigilo1968.
This commit is contained in:
MobiusDev
2017-02-25 11:05:38 +00:00
parent f765d7202f
commit ea18a423b2
2 changed files with 22 additions and 0 deletions

View File

@@ -158,6 +158,17 @@ public final class FortressOfTheDead extends AbstractInstance
return super.onKill(npc, player, isSummon);
}
@Override
public String onFirstTalk(L2Npc npc, L2PcInstance player)
{
final QuestState qs = player.getQuestState(Q10752_WindsOfFateAPromise.class.getSimpleName());
if (qs.isCond(8))
{
return "33979.html";
}
return null;
}
public static void main(String[] args)
{
new FortressOfTheDead();

View File

@@ -158,6 +158,17 @@ public final class FortressOfTheDead extends AbstractInstance
return super.onKill(npc, player, isSummon);
}
@Override
public String onFirstTalk(L2Npc npc, L2PcInstance player)
{
final QuestState qs = player.getQuestState(Q10752_WindsOfFateAPromise.class.getSimpleName());
if (qs.isCond(8))
{
return "33979.html";
}
return null;
}
public static void main(String[] args)
{
new FortressOfTheDead();