summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-12-17 16:07:06 -0200
committerJesusaves <cpntb1@ymail.com>2018-12-17 16:07:06 -0200
commit5f4aba60246d3024a75fd1a6d6421a3a3b15cef1 (patch)
treed99c31904e174c53b08635aadd4b7a754c1ac1ce
parent8bfde4aa714524e27a691c463e9d0e3b7207cb3e (diff)
downloadserverdata-5f4aba60246d3024a75fd1a6d6421a3a3b15cef1.tar.gz
serverdata-5f4aba60246d3024a75fd1a6d6421a3a3b15cef1.tar.bz2
serverdata-5f4aba60246d3024a75fd1a6d6421a3a3b15cef1.tar.xz
serverdata-5f4aba60246d3024a75fd1a6d6421a3a3b15cef1.zip
Jack - more flexible (or less), price update (200->60 gp)
-rw-r--r--npc/012-1/jack.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/npc/012-1/jack.txt b/npc/012-1/jack.txt
index 55eef5d2d..f8e2d38e6 100644
--- a/npc/012-1/jack.txt
+++ b/npc/012-1/jack.txt
@@ -37,14 +37,14 @@
L_Polish:
mesn;
mes l("Yes, unless you're doing something VERY special, a Wooden Log is what you need.");
- mes l("I can make a @@ for just one @@ and 200 GP for my work.", getitemlink(WoodenLog), getitemlink(RawLog));
+ mes l("I can make a @@ for just one @@ and @@ GP for my work.", getitemlink(WoodenLog), getitemlink(RawLog), .cost);
input .@count;
mes "";
if (.@count == 0)
close;
- .@Cost = .@count * 200;
+ .@Cost = .@count * .cost;
.@empty = countitem(RawLog);
if (.@empty < .@count || Zeny < .@Cost) {
@@ -174,6 +174,7 @@ L_Close:
OnInit:
.sex = G_MALE;
.distance = 5;
+ .cost=60;
end;
}