diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-09-10 19:59:57 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-09-10 19:59:57 -0300 |
commit | d6231af19035a2fc38cbc54b4a9b3da0f81434f5 (patch) | |
tree | a18d82fc0bbb3e16ace33ca6c728c0a96e21e4d0 /npc/019-1-1 | |
parent | 6d5062790b12e0ed9c082246a47ffe3150441f51 (diff) | |
download | serverdata-d6231af19035a2fc38cbc54b4a9b3da0f81434f5.tar.gz serverdata-d6231af19035a2fc38cbc54b4a9b3da0f81434f5.tar.bz2 serverdata-d6231af19035a2fc38cbc54b4a9b3da0f81434f5.tar.xz serverdata-d6231af19035a2fc38cbc54b4a9b3da0f81434f5.zip |
Miler pre-requisites
Diffstat (limited to 'npc/019-1-1')
-rw-r--r-- | npc/019-1-1/miler.txt | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/npc/019-1-1/miler.txt b/npc/019-1-1/miler.txt index 3b36bf094..ad556d227 100644 --- a/npc/019-1-1/miler.txt +++ b/npc/019-1-1/miler.txt @@ -8,9 +8,38 @@ 019-1-1,41,24,0 script Miler NPC_PLAYER,{ .@q=getq(LoFQuest_EPISODE); .@w=getq(NivalisQuest_Well); + + if (!THIEF_RANK && !MERC_RANK) + goto L_Rejected; + + mesn; + if (MERC_RANK) + mesq l("Hello, @@.", mercrank()); + else + mesq l("Hello, @@.", thiefrank()); + next; + + mes l("Out of Order."); close; +L_Rejected: + mesn; + mesq l("Hey, did you know there are two mouboos which constantly fight against themselves?!"); + next; + mesn; + mesq l("One claims to be a constable and teach people to sell high and buy low."); + mesq l("The other one claims to be a dangerous bandit and to teach how to steal from monsters!"); + next; + mesn; + mesq l("Well, I heard you needed to have some Job levels to sign up with them, and couldn't resign later."); + mesq l("But it is a so silly fight, that whoever you join with shouldn't do much difference."); + next; + mesn; + mesq l("Anyway, I heard both were disciples from Cordo-whatever, a powerful person from LoF Village."); + mesq l("I think you should get initiated on any side before speaking to me again."); + close; + OnInit: .sex = G_MALE; .distance = 5; |