diff options
-rw-r--r-- | npc/019-1-1/miler.txt | 3 | ||||
-rw-r--r-- | npc/020-4/henry.txt | 6 |
2 files changed, 5 insertions, 4 deletions
diff --git a/npc/019-1-1/miler.txt b/npc/019-1-1/miler.txt index 4c9018de8..7a294aaab 100644 --- a/npc/019-1-1/miler.txt +++ b/npc/019-1-1/miler.txt @@ -23,7 +23,7 @@ rif(.@w == 1, l("I need help.")), L_Well, rif(.@q == 3 && countitem(HerbalTea), l("The Doctor sent you some tea.")), L_Doctor, rif(.@q == 5 && countitem(PresentBox), l("I have a present box to you open.")), L_Box, - rif(.@q == 4, l("So, could I help you?")), L_Quest, + rif(.@q == 4 && BaseLevel >= 50, l("So, could I help you?")), L_Quest, rif(.@q == 6 && !@miler_wait, l("I'm back.")), L_Continue, l("Do you want any monster killed?"), L_GHQ; @@ -185,6 +185,7 @@ L_Success: close; L_Continue: + if (BaseLevel < 50) goto L_Rejected; mesn; mesq l("Welcome back. Uh, no, I haven't forgot I promised you a small something... But you see, then I lost my ring, and..."); next; diff --git a/npc/020-4/henry.txt b/npc/020-4/henry.txt index 2d2390833..99b169248 100644 --- a/npc/020-4/henry.txt +++ b/npc/020-4/henry.txt @@ -45,7 +45,7 @@ mesn; mesq "..."; next; - if (BaseLevel < 47) { + if (BaseLevel < 55) { mesn; mesq l("Alright. Now to give your quest. But not now, you're still weak. Come back later, will you."); close; // Next quest is Level 70 so. @@ -61,9 +61,9 @@ } // Also part of The EPISODE if (getq(LoFQuest_EPISODE) == 12) { - if (BaseLevel < 50) { + if (BaseLevel < 57) { mesn; - mesq l("Before you give me your report, acquire level %d.", 50); + mesq l("Before you give me your report, acquire level %d.", 55); close; // Next quest is Level 70 so. } else { mesn; |