diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-12-25 10:53:55 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-12-25 10:53:55 -0300 |
commit | 39dfeac708a01f56e8055f39d69e048faf37e371 (patch) | |
tree | bc22c9da154149333d983960b4c3dccb140ff4cd | |
parent | 8931fd94794ed4cf7804499ea24c76cd334fd147 (diff) | |
download | serverdata-39dfeac708a01f56e8055f39d69e048faf37e371.tar.gz serverdata-39dfeac708a01f56e8055f39d69e048faf37e371.tar.bz2 serverdata-39dfeac708a01f56e8055f39d69e048faf37e371.tar.xz serverdata-39dfeac708a01f56e8055f39d69e048faf37e371.zip |
Tie the Candor basement progression based on main quest progression.
You won't be accepted before the respective arcs: Tulim, Halin and Frostia.
Frostia Arc isn't yet necessary because B4F isn't yet finished
-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: |