diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-05-29 09:59:46 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-05-29 09:59:46 -0300 |
commit | 2e9b8ab9234529d3ed266fb9f7261a5ada089c89 (patch) | |
tree | ab54102975fe04f9532d8559fccd58a08f2e31fb /npc/003-8/jhedia.txt | |
parent | 84380052f28e0e62e3e242f214babe3976366c71 (diff) | |
download | serverdata-2e9b8ab9234529d3ed266fb9f7261a5ada089c89.tar.gz serverdata-2e9b8ab9234529d3ed266fb9f7261a5ada089c89.tar.bz2 serverdata-2e9b8ab9234529d3ed266fb9f7261a5ada089c89.tar.xz serverdata-2e9b8ab9234529d3ed266fb9f7261a5ada089c89.zip |
Typos
Diffstat (limited to 'npc/003-8/jhedia.txt')
-rw-r--r-- | npc/003-8/jhedia.txt | 8 |
1 files changed, 4 insertions, 4 deletions
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; |