diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-09-10 20:12:11 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-09-10 20:12:11 -0300 |
commit | c39f63605c2667376f985c007b3e7e9da5ff1d2e (patch) | |
tree | af8c2de20f6ba4c229c191f12ab3436642cb1606 /npc/019-1-1 | |
parent | 6816440fe21524dff649c806d4c95c4308b46dd6 (diff) | |
download | serverdata-c39f63605c2667376f985c007b3e7e9da5ff1d2e.tar.gz serverdata-c39f63605c2667376f985c007b3e7e9da5ff1d2e.tar.bz2 serverdata-c39f63605c2667376f985c007b3e7e9da5ff1d2e.tar.xz serverdata-c39f63605c2667376f985c007b3e7e9da5ff1d2e.zip |
Miler sketched
Diffstat (limited to 'npc/019-1-1')
-rw-r--r-- | npc/019-1-1/miler.txt | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/npc/019-1-1/miler.txt b/npc/019-1-1/miler.txt index 648894d8c..c744a1e0b 100644 --- a/npc/019-1-1/miler.txt +++ b/npc/019-1-1/miler.txt @@ -22,7 +22,8 @@ menu l("Hello."), -, 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 == 3 && countitem(HerbalTea), l("The Doctor sent you some tea.")), L_Doctor, + rif(.@q == 4, l("So, could I help you?")), L_Quest; close; @@ -43,6 +44,16 @@ L_Well: // Well Quest Subplot L_Doctor: + mes ""; + delitem HerbalTea, 1; + getexp 111, 11; + setq LoFQuest_EPISODE, 4; + mesn; + mesq l("Many thanks, the Doctor always know what's best for you."); // you or your health? Are you sure? + next; + mesn; + mesq l("Lemme just fetch a small something for you...."); + next; mesn; mesq l("Oh dear, oh dear, where could I have possibly left it?!"); close; @@ -65,6 +76,13 @@ L_Rejected: mesq l("I think you should get initiated on any side before speaking to me again."); close; +// Main Quest +L_Quest: + mes ""; + mesn; + mesq l("Not at the moment, I'm afraid. Maybe later."); + close; + OnInit: .sex = G_MALE; .distance = 5; |