diff options
-rw-r--r-- | npc/006-0/core.txt | 2 | ||||
-rw-r--r-- | npc/006-3/core.txt | 1 | ||||
-rw-r--r-- | npc/006-6/core.txt | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/npc/006-0/core.txt b/npc/006-0/core.txt index 00677c3c4..f007a3209 100644 --- a/npc/006-0/core.txt +++ b/npc/006-0/core.txt @@ -7,7 +7,7 @@ OnTouch: if (CRAZYPOINTS < 1) goto L_Reject; // FIXME - if (getq(General_Narrator) < 3) goto L_Reject; // FIXME + if (getq(General_Narrator) < 3) goto L_Reject; // Tulimshar Arc must be finished specialeffect(5000, SELF, getcharid(3)); dispbottom l("The power which lies in Candor acknowledges your strength."); diff --git a/npc/006-3/core.txt b/npc/006-3/core.txt index b7dfa8143..9311a1030 100644 --- a/npc/006-3/core.txt +++ b/npc/006-3/core.txt @@ -8,6 +8,7 @@ OnTouch: if (!getq(CandorQuest_Groata)) goto L_Reject; if (!getq(CandorQuest_Jak1)) goto L_Reject; + if (getq(General_Narrator) < 10) goto L_Reject; // Halinarzo Arc must be finished specialeffect(5000, SELF, getcharid(3)); dispbottom l("The power which lies in Candor acknowledges your strength."); diff --git a/npc/006-6/core.txt b/npc/006-6/core.txt index b1dfffd8f..b10bf24d9 100644 --- a/npc/006-6/core.txt +++ b/npc/006-6/core.txt @@ -9,6 +9,7 @@ OnTouch: //if (!getq(CandorQuest_Area1)) goto L_Reject; //if (!getq(CandorQuest_Area2)) goto L_Reject; //if (!getq(CandorQuest_Area3)) goto L_Reject; + if (getq(General_Narrator) < 17) goto L_Reject; // Frostia Arc must be finished // FIXME: B4F is not ready, so fallthrough to L_Reject L_Reject: |