diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-05-29 09:29:45 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-05-29 09:51:13 -0300 |
commit | 91160549a5206f10da5fa54af69b1098ef38f67f (patch) | |
tree | b32f4ed0518143ed85ccc6ce3c1f2767eb38f791 /npc/003-8/jhedia.txt | |
parent | 8c6010c3e901ae2b5f605d7ff16ddbda7a2e239a (diff) | |
download | serverdata-91160549a5206f10da5fa54af69b1098ef38f67f.tar.gz serverdata-91160549a5206f10da5fa54af69b1098ef38f67f.tar.bz2 serverdata-91160549a5206f10da5fa54af69b1098ef38f67f.tar.xz serverdata-91160549a5206f10da5fa54af69b1098ef38f67f.zip |
Jhedia should, in theory, be now capable to forge Gold Pieces for you \o/
It's easier to get them dropped by a bandit though.
Diffstat (limited to 'npc/003-8/jhedia.txt')
-rw-r--r-- | npc/003-8/jhedia.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/npc/003-8/jhedia.txt b/npc/003-8/jhedia.txt index 3a8d3c1ee..3f8e21813 100644 --- a/npc/003-8/jhedia.txt +++ b/npc/003-8/jhedia.txt @@ -57,12 +57,21 @@ L_Menu: next; select l("Iron Ingot"), + l("Gold Ingot"), + l("Gold Pieces"), l("Nothing, thanks."); + // ingot_create(Ore, Ingot, Nº of Ore, Nº of Coal, Price); switch (@menu) { case 1: ingot_create(IronOre, IronIngot, 7, 11, 8500); break; + case 2: + ingot_create(GoldOre, GoldIngot, 3, 10, 8500); + break; + case 3: + ingot_create(GoldOre, GoldPieces, 1, 20, 11000); + break; default: goto L_Close; break; |