diff options
author | Saulc <lucashelaine14@gmail.com> | 2018-02-09 15:31:46 +0100 |
---|---|---|
committer | Saulc <lucashelaine14@gmail.com> | 2018-02-09 15:31:46 +0100 |
commit | 2e66d22e0586aea3af18887f42bf48abfe985577 (patch) | |
tree | 93a762cffcc7d744bf74f77de594ad793baf538f /npc/003-8/jhedia.txt | |
parent | 2bbbacacf8cdf8a06a95b3346207ea72b9917da0 (diff) | |
parent | 1646ea8eca6ed14afaf4c4f254e69e007fc27b55 (diff) | |
download | serverdata-2e66d22e0586aea3af18887f42bf48abfe985577.tar.gz serverdata-2e66d22e0586aea3af18887f42bf48abfe985577.tar.bz2 serverdata-2e66d22e0586aea3af18887f42bf48abfe985577.tar.xz serverdata-2e66d22e0586aea3af18887f42bf48abfe985577.zip |
Merge branch 'master' of gitlab.com:TMW2/serverdata
Diffstat (limited to 'npc/003-8/jhedia.txt')
-rw-r--r-- | npc/003-8/jhedia.txt | 21 |
1 files changed, 11 insertions, 10 deletions
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; } |