diff options
-rw-r--r-- | npc/012-1/jack.txt | 5 |
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; } |