diff options
Diffstat (limited to 'npc/015-3')
-rw-r--r-- | npc/015-3/hermit.txt | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/npc/015-3/hermit.txt b/npc/015-3/hermit.txt index 0f3a84ecd..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; @@ -70,13 +72,13 @@ L_Research: select l("Thanks."), rif($ARKIM_ST >= 1400, l("Cursed Arrows")), - rif($ARKIM_ST >= 1800, l("Poison Arrows")), + rif($ARKIM_ST >= 2800, l("Poison Arrows")), rif($ARKIM_ST >= 1200, l("Piberries Infusion")), - rif($ARKIM_ST >= 1600, l("Fate's Potion")), - rif($ARKIM_ST >= 2000, l("Clotho Liquor")), - rif($ARKIM_ST >= 2700, l("Lachesis Brew")), - rif($ARKIM_ST >= 3600, l("Atropos Mixture")), - rif($ARKIM_ST >= 4500, l("Dark Desert Mushroom")); + rif($ARKIM_ST >= 2600, l("Fate's Potion")), + rif($ARKIM_ST >= 4000, l("Clotho Liquor")), + rif($ARKIM_ST >= 4700, l("Lachesis Brew")), + rif($ARKIM_ST >= 6600, l("Atropos Mixture")), + rif($ARKIM_ST >= 7500, l("Dark Desert Mushroom")); mes ""; mesn; |