diff options
Diffstat (limited to 'npc/019-1-1/miler.txt')
-rw-r--r-- | npc/019-1-1/miler.txt | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/npc/019-1-1/miler.txt b/npc/019-1-1/miler.txt index c793af339..45b69d1fa 100644 --- a/npc/019-1-1/miler.txt +++ b/npc/019-1-1/miler.txt @@ -9,15 +9,14 @@ .@q=getq(LoFQuest_EPISODE); .@w=getq(NivalisQuest_Well); - // Force players upon Cordo quest - if (!THIEF_RANK && !MERC_RANK) - goto L_Rejected; - mesn; if (MERC_RANK) mesq l("Hello, @@.", mercrank()); - else + else if (THIEF_RANK) mesq l("Hello, @@.", thiefrank()); + else + mesq l("Hello."); + mes ""; menu l("Hello."), -, @@ -62,6 +61,9 @@ L_Doctor: // Not on Cordo quest L_Rejected: mesn; + mesq l("You cannot help me at all. You lack any skill to do so."); + next; + mesn; mesq l("Hey, did you know there are two mouboos which constantly fight against themselves?!"); next; mesn; @@ -79,6 +81,11 @@ L_Rejected: // Main Quest L_Quest: + + // Force players upon Cordo quest + if (!THIEF_RANK && !MERC_RANK) + goto L_Rejected; + mes ""; mesn; mesq l("I lost the precious ring they gave me as a gift... Who could have taken it...?"); |