mirror of
https://github.com/2006-Scape/2006Scape.git
synced 2026-07-06 16:49:07 +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
|
case 756:// harlow
|
||||||
if (c.vampSlayer == 1) {
|
if (c.vampSlayer == 1) {
|
||||||
|
c.getDialogueHandler().sendDialogues(498, npcType);
|
||||||
|
} else if (c.vampSlayer == 2) {
|
||||||
c.getDialogueHandler().sendDialogues(510, npcType);
|
c.getDialogueHandler().sendDialogues(510, npcType);
|
||||||
} else if (c.vampSlayer == 3) {
|
} else if (c.vampSlayer == 3) {
|
||||||
c.getDialogueHandler().sendDialogues(531, npcType);
|
c.getDialogueHandler().sendDialogues(531, npcType);
|
||||||
@@ -661,7 +663,7 @@ public class NpcActions {
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case 608:
|
case 608:
|
||||||
if (c.blackKnight == 0) {
|
if (c.blackKnight == 0 && c.questPoints >= 12) {
|
||||||
c.getDialogueHandler().sendDialogues(3902, npcType);
|
c.getDialogueHandler().sendDialogues(3902, npcType);
|
||||||
} else if (c.blackKnight == 1) {
|
} else if (c.blackKnight == 1) {
|
||||||
c.getDialogueHandler().sendDialogues(3510, npcType);
|
c.getDialogueHandler().sendDialogues(3510, npcType);
|
||||||
|
|||||||
Reference in New Issue
Block a user