diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-07-13 16:45:52 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-07-13 16:45:52 -0300 |
commit | 2fdbb5580e1055068bca1501e9f6b1fe9f93cb5c (patch) | |
tree | 07ca5b29c0078df9e5eb09115fe2a787063453d0 /npc/017-3 | |
parent | 5927f6e2c0fa32d0194190ee5b66f9e8bb8383d8 (diff) | |
download | serverdata-2fdbb5580e1055068bca1501e9f6b1fe9f93cb5c.tar.gz serverdata-2fdbb5580e1055068bca1501e9f6b1fe9f93cb5c.tar.bz2 serverdata-2fdbb5580e1055068bca1501e9f6b1fe9f93cb5c.tar.xz serverdata-2fdbb5580e1055068bca1501e9f6b1fe9f93cb5c.zip |
Doctor will ask for HastePotion instead of Sewer Water
Diffstat (limited to 'npc/017-3')
-rw-r--r-- | npc/017-3/doctor.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/017-3/doctor.txt b/npc/017-3/doctor.txt index e38df4961..cd1ac3a64 100644 --- a/npc/017-3/doctor.txt +++ b/npc/017-3/doctor.txt @@ -50,7 +50,7 @@ L_IntroSpecify: mesc l("@@/150 @@", countitem(GambogeHerb), getitemlink(GambogeHerb)); mesc l("@@/100 @@", countitem(AlizarinHerb), getitemlink(AlizarinHerb)); mesc l("@@/50 @@", countitem(ShadowHerb), getitemlink(ShadowHerb)); - mesc l("@@/10 @@", countitem(BottleOfSewerWater), getitemlink(BottleOfSewerWater)); + mesc l("@@/10 @@", countitem(HastePotion), getitemlink(HastePotion)); menu l("That shouldn't been too hard, but do I get something in return?"), L_IntroReward, l("O.o \"That's a lot. Maybe another day.\""), -; @@ -76,7 +76,7 @@ L_Check: mesc l("@@/150 @@", countitem(GambogeHerb), getitemlink(GambogeHerb)); mesc l("@@/100 @@", countitem(AlizarinHerb), getitemlink(AlizarinHerb)); mesc l("@@/50 @@", countitem(ShadowHerb), getitemlink(ShadowHerb)); - mesc l("@@/10 @@", countitem(BottleOfSewerWater), getitemlink(BottleOfSewerWater)); + mesc l("@@/10 @@", countitem(HastePotion), getitemlink(HastePotion)); next; if (askyesno() != ASK_YES) close; @@ -87,14 +87,14 @@ L_Check: countitem(GambogeHerb) < 150 || countitem(AlizarinHerb) < 100 || countitem(ShadowHerb) < 50 || - countitem(BottleOfSewerWater) < 10) + countitem(HastePotion) < 10) goto L_Missing; delitem MauveHerb, 150; delitem CobaltHerb, 150; delitem GambogeHerb, 150; delitem AlizarinHerb, 100; delitem ShadowHerb, 50; - delitem BottleOfSewerWater, 10; + delitem HastePotion, 10; getexp 7995, 0; setq LoFQuest_EPISODE, 2; getitem HerbalTea, 5; |