diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-07-13 16:59:31 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-07-13 16:59:31 -0300 |
commit | 1b581d0b8db113ab4b4e98f42542549e4eb8a680 (patch) | |
tree | a9c682bbbd4a5f0fe883e5e5b13e822fd4ef0f82 /npc | |
parent | a75a7a38858ef4f309df7c81010146839072ea32 (diff) | |
download | serverdata-1b581d0b8db113ab4b4e98f42542549e4eb8a680.tar.gz serverdata-1b581d0b8db113ab4b4e98f42542549e4eb8a680.tar.bz2 serverdata-1b581d0b8db113ab4b4e98f42542549e4eb8a680.tar.xz serverdata-1b581d0b8db113ab4b4e98f42542549e4eb8a680.zip |
[skip ci] lay foundation for EPISODE act 2. We are missing Miler, ofc.
Nivalis haven't got in yet.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/017-3/doctor.txt | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/npc/017-3/doctor.txt b/npc/017-3/doctor.txt index bc50bd56b..495d21b26 100644 --- a/npc/017-3/doctor.txt +++ b/npc/017-3/doctor.txt @@ -4,11 +4,14 @@ // Jesusalva // Description: // Part from THE EPISODE quest +// Reference: +// http://forums.landoffire.org/viewtopic.php?f=7&t=1320&sid=80d2c735b55ccb06a39955a8fbca3913 017-3,75,68,0 script The Doctor NPC_LOF_DOCTOR,{ .@q=getq(LoFQuest_EPISODE); if (BaseLevel < 30) goto L_Weak; if (.@q == 1) goto L_Check; + if (.@q == 2 && BaseLevel >= 40) goto L_Miler; if (.@q >= 2) goto L_Tea; mesn; mesq l("Quite interesting, quite interesting indeed."); @@ -154,6 +157,22 @@ L_Missing: mesq l("Sorry, you do not have enough ingredients. You'd better search thoroughly."); close; +/////// Second Act +L_Miler: + mesn; + mesq l("Thank you for helping me make my tea. I hope the potions have been helpful..."); + next; + mesn; + mesq l("That reminds me. I have a friend in Nivalis named Miler who gave me some hints on the recipe. Would you take him a sample of what I gave you?"); + mesq l("If you've used all the ones I've given, you can always bring me more ingredients."); + menu + "I'll go right away.", -, + "Ah, I suppose I need to gather more ingredients first...", -; + setq LoFQuest_EPISODE, 3; + close; + + + OnInit: .sex=G_MALE; .distance=5; |