diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-15 15:28:15 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-15 15:28:15 -0300 |
commit | c15e87400250ec05711441be4f8c4984c8a583c0 (patch) | |
tree | cb993aa0a2b93cada818664c50bae091949ae52c /npc/003-1/well.txt | |
parent | 1cc4355ff0a786a6f558fb3a07d885060ea41d59 (diff) | |
download | serverdata-c15e87400250ec05711441be4f8c4984c8a583c0.tar.gz serverdata-c15e87400250ec05711441be4f8c4984c8a583c0.tar.bz2 serverdata-c15e87400250ec05711441be4f8c4984c8a583c0.tar.xz serverdata-c15e87400250ec05711441be4f8c4984c8a583c0.zip |
Saulc is right, Bucket dialog
Diffstat (limited to 'npc/003-1/well.txt')
-rw-r--r-- | npc/003-1/well.txt | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/npc/003-1/well.txt b/npc/003-1/well.txt index 75c8f91ba..fcfc1e59f 100644 --- a/npc/003-1/well.txt +++ b/npc/003-1/well.txt @@ -4,8 +4,12 @@ // Jesusalva 003-1,45,80,0 script Well#003-1 NPC_NO_SPRITE,{ - - mes col("This well is too deep and you don't have a bucket.", 9); + if (countitem(Bucket) < 0) { + mes col("This well is too deep and you don't have a bucket.", 9); + } else { + mes col("Hey you have a bucket! Too bad there are, you know, HOLES on it, so you can see.", 9); + mes col("That's exactly why you can't use it to get water. Silly.", 9); + } if (!Zeny) close; next; |