summaryrefslogtreecommitdiff
path: root/npc/functions/petsales.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-09-13 14:37:39 -0300
committerJesusaves <cpntb1@ymail.com>2018-09-13 14:37:39 -0300
commita9f37f31b118ce94c0cca26a7650abfe17d0605e (patch)
tree6cf7a3facc2653cda3e0681d113433989c39b4b5 /npc/functions/petsales.txt
parent3a4d662445f7c7824062143b9c77361140dad1d0 (diff)
downloadserverdata-a9f37f31b118ce94c0cca26a7650abfe17d0605e.tar.gz
serverdata-a9f37f31b118ce94c0cca26a7650abfe17d0605e.tar.bz2
serverdata-a9f37f31b118ce94c0cca26a7650abfe17d0605e.tar.xz
serverdata-a9f37f31b118ce94c0cca26a7650abfe17d0605e.zip
Missing messages
Diffstat (limited to 'npc/functions/petsales.txt')
-rw-r--r--npc/functions/petsales.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/npc/functions/petsales.txt b/npc/functions/petsales.txt
index 68dc46d24..e1bf41d08 100644
--- a/npc/functions/petsales.txt
+++ b/npc/functions/petsales.txt
@@ -13,7 +13,7 @@ function script PDQ_InnerSwitch {
.@price=.@val**(PETMEMO[GHQ_GetQuestIDByMonsterID(.@mid)]+1);
mesn;
- mesq l("That'll cost you @@ @@.", .@price, getitemlink(.@iid));
+ mesq l("That'll cost you @@/@@ @@.", countitem(.@iid), .@price, getitemlink(.@iid));
next;
if (askyesno() == ASK_YES) {
if (countitem(.@iid) >= .@price) {
@@ -24,6 +24,9 @@ function script PDQ_InnerSwitch {
mesn;
mesq l("There you go!");
return 1;
+ } else {
+ mesn;
+ mesq l("You don't have that, lying is bad for health...");
}
}
return 0;