diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-09-15 18:30:04 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-09-15 18:30:04 -0300 |
commit | 6d019fbe3bc0329e933af2c1984ac15e8a1cdd71 (patch) | |
tree | 26cb3ffba07e181e95d084e533a8d2771dbdf325 /npc/019-1 | |
parent | 88bcde883586a4322e62b901ac61a8aa8ebeabca (diff) | |
download | serverdata-6d019fbe3bc0329e933af2c1984ac15e8a1cdd71.tar.gz serverdata-6d019fbe3bc0329e933af2c1984ac15e8a1cdd71.tar.bz2 serverdata-6d019fbe3bc0329e933af2c1984ac15e8a1cdd71.tar.xz serverdata-6d019fbe3bc0329e933af2c1984ac15e8a1cdd71.zip |
Some more reactions to the well dweller
Diffstat (limited to 'npc/019-1')
-rw-r--r-- | npc/019-1/well.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/npc/019-1/well.txt b/npc/019-1/well.txt index 070d53bec..bd0100d3b 100644 --- a/npc/019-1/well.txt +++ b/npc/019-1/well.txt @@ -90,10 +90,12 @@ L_Quest: mesn l("???"); if (getiteminfo(.@id, ITEMINFO_WEIGHT) > 1000) mesq l("Ouch! That's heavy!"); + else if (getiteminfo(.@id, ITEMINFO_SELLPRICE) < 10) + mesq l("What cheap crap is this? It's not worth even 10 GP."); else if (getiteminfo(.@id, ITEMINFO_TYPE) == IT_HEALING) mesq l("Mhm, this looks healthy."); else if (getiteminfo(.@id, ITEMINFO_TYPE) == IT_AMMO) - mesq l("This is useless for me!"); + mesq l("Ammo? I prefer power gloves! That is useless for me!"); else mesq l("Who is throwing stuff at me?!"); next; |