mirror of
https://github.com/2006-Scape/2006Scape.git
synced 2026-07-03 00:31:51 +00:00
Fix Vampyre Slayer Quest (#113)
* fix vampyre slayer * add 12 quest point requirement to blackKnightsFortress Quest
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user