diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-05-04 01:45:35 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-05-04 01:45:35 -0300 |
commit | 8e0458d8b4dec1e290bba29f177406a9c328683b (patch) | |
tree | 05cf7c6c5abb5881d7f0ba26276278d620099269 /npc/003-2 | |
parent | b8c073aa82358668018dfa63c622e0cf46119fb6 (diff) | |
download | serverdata-8e0458d8b4dec1e290bba29f177406a9c328683b.tar.gz serverdata-8e0458d8b4dec1e290bba29f177406a9c328683b.tar.bz2 serverdata-8e0458d8b4dec1e290bba29f177406a9c328683b.tar.xz serverdata-8e0458d8b4dec1e290bba29f177406a9c328683b.zip |
Lua updated.
Diffstat (limited to 'npc/003-2')
-rw-r--r-- | npc/003-2/lua.txt | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/npc/003-2/lua.txt b/npc/003-2/lua.txt index ba3d37142..66ca89e6d 100644 --- a/npc/003-2/lua.txt +++ b/npc/003-2/lua.txt @@ -197,12 +197,23 @@ L_Task: goto L_Finish; mesn; - if (!countitem(TulimsharGuardCard)) - mesq l("I think you should look for the Lieutenant if you want the Guard Card."); - if (!countitem(FishingRod)) - mesq l("For the fishing rod, try looking for a fisher around here. Tricky one, this quest."); - if (!countitem(LifestonePendant)) - mesq l("I have no idea about who would make a pendant, but lifestone can be done just outside the town walls."); + if (!countitem(TulimsharGuardCard)) { + mes l("The Guard Card will prove your intentions. Talk to the Lieutenant."); + mes ""; + } + if (!countitem(FishingRod)) { + mes l("The fishing rod allows a quick income by selling fishes. However, reaching the fisherman might require some exploration... The whole world is full of secrets."); + mes ""; + } + if (!countitem(LifestonePendant)) { + mes l("The lifestone pendant allows you a quicker HP recovery. Life is more important than defense."); + mes l("I have no idea about who would make a pendant, but lifestone can be done just outside the town walls."); + mes ""; + } + if (!getq(TulimsharQuest_Sailors) < 2) { + mes l("There are some sailors near the forge. Think outside the box - or rather, inside it, unless you have a fortune to buy the items."); + mes ""; + } close; L_Finish: |