From 2e9b8ab9234529d3ed266fb9f7261a5ada089c89 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Tue, 29 May 2018 09:59:46 -0300 Subject: Typos --- npc/003-5/jeweler.txt | 2 +- npc/003-8/jhedia.txt | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/npc/003-5/jeweler.txt b/npc/003-5/jeweler.txt index ff8f74b98..471db2cc8 100644 --- a/npc/003-5/jeweler.txt +++ b/npc/003-5/jeweler.txt @@ -36,7 +36,7 @@ L_Craft: l("...I'll be back later."), L_Close; inventoryplace GoldenRing, 1; - delitem GoldPieces, 2; + delitem GoldPieces, 1; Zeny=Zeny-200; getitem GoldenRing, 1; diff --git a/npc/003-8/jhedia.txt b/npc/003-8/jhedia.txt index 3f8e21813..98f3c0e9d 100644 --- a/npc/003-8/jhedia.txt +++ b/npc/003-8/jhedia.txt @@ -14,13 +14,13 @@ function ingot_create { .@basei=getarg(0); .@prize=getarg(1); - .@amoun=getarg(2); + .@oream=getarg(2); .@coalm=getarg(3); .@price=getarg(4); mesn; mesq l("Do you want to craft @@? For that I will need @@ @@, @@ @@ and @@ gp.", - getitemlink(.@prize), .@amoun, getitemlink(.@basei), .@coalm, getitemlink(Coal), .@price); + getitemlink(.@prize), .@oream, getitemlink(.@basei), .@coalm, getitemlink(Coal), .@price); select l("Yes"), @@ -32,9 +32,9 @@ l("How many ingots do you want to make?"); input .@amount; - if (countitem(.@basei) >= .@amount * .@amoun && countitem(Coal) >= .@amount * .@coalm && Zeny >= .@price * .@amount) { + if (countitem(.@basei) >= .@amount * .@oream && countitem(Coal) >= .@amount * .@coalm && Zeny >= .@price * .@amount) { inventoryplace .@prize, .@amount; - delitem .@basei, .@amount * .@amoun; + delitem .@basei, .@amount * .@oream; delitem Coal, .@amount * .@coalm; Zeny = Zeny - .@amount * .@price; getitem .@prize, .@amount; -- cgit v1.2.3-70-g09d2