diff options
Diffstat (limited to 'npc/017-3')
-rw-r--r-- | npc/017-3/doctor.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/npc/017-3/doctor.txt b/npc/017-3/doctor.txt index f49940b52..c605e3d11 100644 --- a/npc/017-3/doctor.txt +++ b/npc/017-3/doctor.txt @@ -13,6 +13,7 @@ if (BaseLevel < 30) goto L_Weak; if (.@q == 13) goto L_Poison; if (.@q == 14) goto L_TimeFlask; + if (.@q == 15) mesc l("You don't look so well, have you already used the %s to defeat the Soul Eater?", getitemlink(TimeFlask)), 1; if (.@q == 1) goto L_Check; if (.@q == 2 && BaseLevel >= 40) goto L_Miler; if (.@q >= 2) goto L_Tea; @@ -210,6 +211,11 @@ L_TimeFlask: mesq l("You better find a way to travel back in time soon!"); close; } + if (BaseLevel < 60) { + mesn; + mesq l("It'll be too dangerous if you're not at least level %d. But I'm sure you can grind the required level in no time; Don't let your body down! Exercise!", 60); + close; + } mesn; mesq l("This %s will do. I mean, it won't be a comfortable trip, but you are in an emergency situation.", getitemlink(TimeFlask)); /* OVERRIDE */ @@ -246,6 +252,7 @@ L_TimeFlask: mes ""; mesn; mesq l("Good luck, %s. You'll need it.", strcharinfo(0)); + setq LoFQuest_EPISODE, 15; close; OnInit: |