diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-09-15 18:23:58 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-09-15 18:23:58 -0300 |
commit | eaf71d544e8c46442c8175fcddb6352776aa8691 (patch) | |
tree | 4c64597b7e7c6b99119a12f9eb77fbf414df588d | |
parent | 79d309207416c6825cfd6b703814b553140bd89c (diff) | |
download | serverdata-eaf71d544e8c46442c8175fcddb6352776aa8691.tar.gz serverdata-eaf71d544e8c46442c8175fcddb6352776aa8691.tar.bz2 serverdata-eaf71d544e8c46442c8175fcddb6352776aa8691.tar.xz serverdata-eaf71d544e8c46442c8175fcddb6352776aa8691.zip |
Correct Miler restriction on Cordo's Quest
-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...?"); |