From df62d7efcf8a6b39fc970d88c0585364a4285c99 Mon Sep 17 00:00:00 2001 From: Danial Date: Mon, 28 Oct 2019 07:21:09 +1300 Subject: [PATCH] Fix Vampyre Slayer Quest (#113) * fix vampyre slayer * add 12 quest point requirement to blackKnightsFortress Quest --- 2006Redone Server/src/redone/game/npcs/NpcActions.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/2006Redone Server/src/redone/game/npcs/NpcActions.java b/2006Redone Server/src/redone/game/npcs/NpcActions.java index d3753cfc..c26d8b6d 100644 --- a/2006Redone Server/src/redone/game/npcs/NpcActions.java +++ b/2006Redone Server/src/redone/game/npcs/NpcActions.java @@ -454,6 +454,8 @@ public class NpcActions { case 756:// harlow if (c.vampSlayer == 1) { + c.getDialogueHandler().sendDialogues(498, npcType); + } else if (c.vampSlayer == 2) { c.getDialogueHandler().sendDialogues(510, npcType); } else if (c.vampSlayer == 3) { c.getDialogueHandler().sendDialogues(531, npcType); @@ -661,7 +663,7 @@ public class NpcActions { break; case 608: - if (c.blackKnight == 0) { + if (c.blackKnight == 0 && c.questPoints >= 12) { c.getDialogueHandler().sendDialogues(3902, npcType); } else if (c.blackKnight == 1) { c.getDialogueHandler().sendDialogues(3510, npcType);