summaryrefslogtreecommitdiff
path: root/npc/021-2_Tulimshar/jhedia.txt
diff options
context:
space:
mode:
authornmaligec <wouldnot@hotmail.com>2011-01-05 00:34:26 -0500
committernmaligec <wouldnot@hotmail.com>2011-01-05 00:34:26 -0500
commited8cac19500c515cae40c1fd4b2d87abd96ae3ba (patch)
tree3136c4b4bac4db3a432384390efcc22f88ff2790 /npc/021-2_Tulimshar/jhedia.txt
parent21156bed9c3d6eb3cf66a1e1557f4fc8c87a4194 (diff)
parent1e1e26e1255a487a14ca99c60c3ab51ad3988f9b (diff)
downloadserverdata-ed8cac19500c515cae40c1fd4b2d87abd96ae3ba.tar.gz
serverdata-ed8cac19500c515cae40c1fd4b2d87abd96ae3ba.tar.bz2
serverdata-ed8cac19500c515cae40c1fd4b2d87abd96ae3ba.tar.xz
serverdata-ed8cac19500c515cae40c1fd4b2d87abd96ae3ba.zip
merging updates from previous test repo ta-testing.
Diffstat (limited to 'npc/021-2_Tulimshar/jhedia.txt')
-rw-r--r--npc/021-2_Tulimshar/jhedia.txt15
1 files changed, 9 insertions, 6 deletions
diff --git a/npc/021-2_Tulimshar/jhedia.txt b/npc/021-2_Tulimshar/jhedia.txt
index 096f4932..2677a099 100644
--- a/npc/021-2_Tulimshar/jhedia.txt
+++ b/npc/021-2_Tulimshar/jhedia.txt
@@ -7,7 +7,10 @@
set @Coal_Per, 10;
mes "[Jhedia]";
- mes "\"I forge iron ore into ingots. Ingots are more useful for skilled smiths, like armorers, because the ore is refined and made into useful units which can be worked with. To make ingots I need " + @Iron_Ore_Per + " iron ore and " + @Cost_Per_Ingot + " gp per ingot. I also need " + @Coal_Per + " coal for my forgeHow many ingots would you like?\"";
+ mes "\"I forge [Iron Ore] into ingots. Ingots are more useful for skilled smiths, like armorers, because the ore is refined and made into useful units which can be worked with. To make ingots, I need " + @Iron_Ore_Per + " [Iron Ore] and " + @Cost_Per_Ingot + " gp per ingot. I also need " + @Coal_Per + " [Coal] for my forge.\"";
+ next;
+ mes "[Jhedia]";
+ mes "\"How many ingots would you like?\"";
input @ingot_count;
if (@ingot_count == 0) goto L_Jhedia_Bye;
@@ -25,27 +28,27 @@
L_Jhedia_Bye:
mes "[Jhedia]";
- mes "\"Good Bye.\"";
+ mes "\"Goodbye then.\"";
close;
L_Jhedia_NotEnough_Ore:
mes "[Jhedia]";
- mes "\"You don't seem to have enough iron ore.\"";
+ mes "\"You do not seem to have enough [Iron Ore].\"";
close;
L_Jhedia_NotEnough_Coal:
mes "[Jhedia]";
- mes "\"You don't seem to have enough coal.\"";
+ mes "\"You do not seem to have enough [Coal].\"";
close;
L_Jhedia_NotEnough_Zeny:
mes "[Jhedia]";
- mes "\"You don't seem to have enough gold pieces.\"";
+ mes "\"You do not seem to have enough gold pieces.\"";
close;
L_Jhedia_NotEnoughSlots:
mes "[Jhedia]";
- mes "You don't seem to have enough room to carry this many ingots.";
+ mes "\"You do not seem to have enough room to carry this many ingots.\"";
close;
}