diff options
Diffstat (limited to 'npc/017-5/nahrec.txt')
-rw-r--r-- | npc/017-5/nahrec.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/npc/017-5/nahrec.txt b/npc/017-5/nahrec.txt index ddab8bd5d..84cb51334 100644 --- a/npc/017-5/nahrec.txt +++ b/npc/017-5/nahrec.txt @@ -128,6 +128,8 @@ function blacksmith_create { .@prize=getarg(4); .@price=getarg(5); + .@price=POL_AdjustPrice(.@price); + mesn; mesq l("Do you want to craft @@? For that I will need @@ @@, @@ @@ and @@ gp.", getitemlink(.@prize), .@amon1, getitemlink(.@base1), .@amon2, getitemlink(.@base2), .@price); @@ -145,7 +147,7 @@ function blacksmith_create { inventoryplace .@prize, 1; delitem .@base1, .@amon1; delitem .@base2, .@amon2; - Zeny = Zeny - .@price; + POL_PlayerMoney(.@price); getitem .@prize, 1; mes ""; |