diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-07-07 18:05:35 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-07-07 18:05:35 -0300 |
commit | 7d45f1d34647d928fcc87d199d0a1d625585d3c1 (patch) | |
tree | 1ba72c92c33c6e12e88413342bed8868f38931f6 /npc/015-3 | |
parent | d73ae2f95de0dbac5ddc26cdd96c2ba9b9ddb91a (diff) | |
download | serverdata-7d45f1d34647d928fcc87d199d0a1d625585d3c1.tar.gz serverdata-7d45f1d34647d928fcc87d199d0a1d625585d3c1.tar.bz2 serverdata-7d45f1d34647d928fcc87d199d0a1d625585d3c1.tar.xz serverdata-7d45f1d34647d928fcc87d199d0a1d625585d3c1.zip |
Arkim level requeriment and logic
Diffstat (limited to 'npc/015-3')
-rw-r--r-- | npc/015-3/hermit.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/npc/015-3/hermit.txt b/npc/015-3/hermit.txt index 052dafaaf..506f7198b 100644 --- a/npc/015-3/hermit.txt +++ b/npc/015-3/hermit.txt @@ -27,7 +27,7 @@ L_Loop: next; if (.@q3 > $@ARKIM_TIMER) goto L_Timer; if (.@q3 < $@ARKIM_TIMER-(60*60*24)) setq3 HurnscaldQuest_Arkim, $@ARKIM_TIMER-(60*60*24); // Globally-bound timed quest - if (.@q2 >= 12) goto L_Timer; + if (.@q2 >= (BaseLevel-17)/3) goto L_Timer; select rif(countitem(BatWing) >= 1, l("Donate a Bat Wing")), rif(countitem(BatTeeth) >= 1, l("Donate a Bat Teeth")), @@ -58,6 +58,8 @@ L_Loop: goto L_Loop; L_Timer: + if (BaseLevel < 20) + mesc l("You need at least level 20 to help."); mesn; mesq l("You've helped me plenty. Please come back in @@", FuzzyTime($@ARKIM_TIMER+(60*60*24),2,2)); close; |