diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-12-25 21:07:38 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-12-25 21:07:38 -0300 |
commit | 6a93b98c9547725801128b227526b6512b5e2ff1 (patch) | |
tree | 8c8ee5a953a0f0dea608389efa2fad2dd9cd473a /npc | |
parent | 6946c800abf5e7e1c25197cc0f6fad5d3aa21e20 (diff) | |
download | serverdata-6a93b98c9547725801128b227526b6512b5e2ff1.tar.gz serverdata-6a93b98c9547725801128b227526b6512b5e2ff1.tar.bz2 serverdata-6a93b98c9547725801128b227526b6512b5e2ff1.tar.xz serverdata-6a93b98c9547725801128b227526b6512b5e2ff1.zip |
Bump minimum Crazyfefe points to access Candor Deep Underground
Diffstat (limited to 'npc')
-rw-r--r-- | npc/006-0/core.txt | 2 | ||||
-rw-r--r-- | npc/006-6/core.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/npc/006-0/core.txt b/npc/006-0/core.txt index f007a3209..db8bef748 100644 --- a/npc/006-0/core.txt +++ b/npc/006-0/core.txt @@ -6,7 +6,7 @@ end; OnTouch: - if (CRAZYPOINTS < 1) goto L_Reject; // FIXME + if (CRAZYPOINTS < 3) goto L_Reject; // FIXME if (getq(General_Narrator) < 3) goto L_Reject; // Tulimshar Arc must be finished specialeffect(5000, SELF, getcharid(3)); diff --git a/npc/006-6/core.txt b/npc/006-6/core.txt index 7610623cb..9cae45597 100644 --- a/npc/006-6/core.txt +++ b/npc/006-6/core.txt @@ -11,7 +11,7 @@ OnTouch: //if (!getq(CandorQuest_Area3)) goto L_Reject; if (getq(General_Narrator) < 17) goto L_Reject; // Frostia Arc must be finished /* Some of previous sections come back to bite you, now */ - if (CRAZYPOINTS < 5) goto L_Reject; + if (CRAZYPOINTS < 10) goto L_Reject; // FIXME: B4F is not ready, so fallthrough to L_Reject |