diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-05-18 00:05:56 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-05-18 00:05:56 -0300 |
commit | 1f7af276c1fbb2453cd711466c23a1c9a5a83b24 (patch) | |
tree | c7d015efd7bfd534c0de6462bce6f3b0810deaa7 /npc/007-1 | |
parent | c35966a7eb2466daeef18e469187cacab3a52b5c (diff) | |
download | serverdata-1f7af276c1fbb2453cd711466c23a1c9a5a83b24.tar.gz serverdata-1f7af276c1fbb2453cd711466c23a1c9a5a83b24.tar.bz2 serverdata-1f7af276c1fbb2453cd711466c23a1c9a5a83b24.tar.xz serverdata-1f7af276c1fbb2453cd711466c23a1c9a5a83b24.zip |
Fix bugs on Naem quest. We have a problem with shops, though
Diffstat (limited to 'npc/007-1')
-rw-r--r-- | npc/007-1/naem.txt | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/npc/007-1/naem.txt b/npc/007-1/naem.txt index ed1f479d7..4a7414b25 100644 --- a/npc/007-1/naem.txt +++ b/npc/007-1/naem.txt @@ -10,8 +10,6 @@ mesq l("My name is Naem and I guard the tunnels in this direction. You shall not pass. Now leave."); if (BaseLevel < 28) close; - if (.@q < 2) - close; if (.@q == 2) { if (!checkbound(IcedBottle)) close; next; @@ -27,7 +25,7 @@ mesq l("You can have this %s as a token of gratitude. But no, you cannot pass, so keep going!", getitemlink(MinerTankTop)); close; } - if (.@q > 3) + if (.@q >= 3) close; next; mesn; @@ -35,11 +33,11 @@ next; mesn; mesq l("I need groceries. %d %s, %d %s, %d %s, %d %s and %d %s. Give it to my wife, Silvia.", - 7, Aquada, - 6, PiouLegs, - 3, Cheese, - 3, HalfCroconut, - 1, PurpleBlobime); + 7, getitemlink(Aquada), + 6, getitemlink(PiouLegs), + 3, getitemlink(Cheese), + 3, getitemlink(HalfCroconut), + 1, getitemlink(PurpleBlobime)); next; mesn; mesq l("You can collect croconuts by killing any tree with it. Then you can break it in half from the inventory screen."); |