From 826347d6d6a4553769f272c64b6fa37174d2e7d5 Mon Sep 17 00:00:00 2001 From: jesusalva Date: Fri, 9 Feb 2018 00:32:15 -0200 Subject: These minor changes (mostly comments) shall give more feeling to the game. --- npc/003-8/jhedia.txt | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) (limited to 'npc/003-8/jhedia.txt') diff --git a/npc/003-8/jhedia.txt b/npc/003-8/jhedia.txt index 9f661fa20..c638d894c 100644 --- a/npc/003-8/jhedia.txt +++ b/npc/003-8/jhedia.txt @@ -1,6 +1,7 @@ // TMW2 scripts. // Author: // Crazyfefe +// Note: script works, but one may argue it is not complete 003-8,28,30,0 script Jhedia NPC_ELVEN_FEMALE,{ @@ -12,24 +13,24 @@ function quest_create { speech S_FIRST_BLANK_LINE | S_LAST_NEXT, l("How many ingots do you want to make?"); - input .amount; + input @amount; - if (countitem("Iron Ore") >= .amount * 7 && countitem("Coal") >= .amount * 11 && Zeny >= 8500 * .amount) + if (countitem("Iron Ore") >= @amount * 7 && countitem("Coal") >= @amount * 11 && Zeny >= 8500 * @amount) { - delitem .Item1, .amount * 7; - delitem .Item2, .amount * 11; - Zeny = Zeny - .amount * .GP; - getitem .ItemCreate, .amount; + delitem .Item1, @amount * 7; + delitem .Item2, @amount * 11; + Zeny = Zeny - @amount * .GP; + getitem .ItemCreate, @amount; close; } - speech S_FIRST_BLANK_LINE | S_LAST_NEXT, - l("You don't have enought quantity."); + speech S_FIRST_BLANK_LINE,// | S_LAST_NEXT, + l("You don't have enough material."); close; } speech S_FIRST_BLANK_LINE | S_LAST_NEXT, - l("Hello do you want to craft @@, for that i will need 7 @@, 11 @@ and @@ gp.", getitemlink(.ItemCreate),getitemlink(.Item1),getitemlink(.Item2),.GP); + l("Hello! Do you want to craft @@? For that i will need 7 @@, 11 @@ and @@ gp.", getitemlink(.ItemCreate),getitemlink(.Item1),getitemlink(.Item2),.GP); do { @@ -51,7 +52,7 @@ close; OnInit: - .sex = G_MALE; + .sex = G_FEMALE; .distance = 3; end; } -- cgit v1.2.3-60-g2f50