diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-05-07 01:00:19 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-05-07 01:00:19 -0300 |
commit | 8e2b117257fa06b39ed950f270c66a03a33c9dcc (patch) | |
tree | 7c979434f6ba3acd0096900c7cde88dbad02fc64 /npc/019-1-1/miler.txt | |
parent | 820406223d76995996d328ead4d2f409045a5aa7 (diff) | |
download | serverdata-8e2b117257fa06b39ed950f270c66a03a33c9dcc.tar.gz serverdata-8e2b117257fa06b39ed950f270c66a03a33c9dcc.tar.bz2 serverdata-8e2b117257fa06b39ed950f270c66a03a33c9dcc.tar.xz serverdata-8e2b117257fa06b39ed950f270c66a03a33c9dcc.zip |
Tomorrow, before updating the server, I want to advance The Episode
Diffstat (limited to 'npc/019-1-1/miler.txt')
-rw-r--r-- | npc/019-1-1/miler.txt | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/npc/019-1-1/miler.txt b/npc/019-1-1/miler.txt index 12c25899c..1ffd492fa 100644 --- a/npc/019-1-1/miler.txt +++ b/npc/019-1-1/miler.txt @@ -24,6 +24,7 @@ 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 == 6 && !@miler_wait, l("I'm back.")), L_Continue, l("Do you want any monster killed?"), L_GHQ; // If not on Cordo quest, Miler will speak about @@ -150,12 +151,12 @@ L_Box: getitem .@id, 1; mesc l("But there was only a(n) @@ inside.", getitemlink(.@id)); } else { - .@id=rand(2,4)+.@q2; + .@id=rand2(2,4)+.@q2; Zeny=Zeny+.@id; mesc l("But there was only @@ GP inside.", .@id); } } else if (.@q2 >= 10) { - .@id=rand(3,5)+.@q2; + .@id=rand2(3,5)+.@q2; Zeny=Zeny+.@id; mesc l("But there was only @@ GP inside.", .@id); } else { @@ -180,6 +181,18 @@ L_Success: next; mesn; mesq l("Many thanks. I couldn't live without it. Please come back later."); + @miler_wait=true; + close; + +L_Continue: + 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; + mesn; + mesq l("...I deposited everything on the bank. Sorry!"); + //next; + //mesn; + //mesq l("S"); close; L_GHQ: |