diff options
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."); |