diff options
author | Saulc <lucashelaine14@gmail.com> | 2019-10-02 08:46:16 +0000 |
---|---|---|
committer | Saulc <lucashelaine14@gmail.com> | 2019-10-02 08:46:16 +0000 |
commit | 4bb9173b10bf88564e6fbd366e09372810c292ad (patch) | |
tree | a1731afbd88bff96bc56234b3a8847a594f039a4 /npc | |
parent | 165e78a93c81260cd2810aa89b31cb25a4a09b2a (diff) | |
download | serverdata-4bb9173b10bf88564e6fbd366e09372810c292ad.tar.gz serverdata-4bb9173b10bf88564e6fbd366e09372810c292ad.tar.bz2 serverdata-4bb9173b10bf88564e6fbd366e09372810c292ad.tar.xz serverdata-4bb9173b10bf88564e6fbd366e09372810c292ad.zip |
jhedia Can now craft Terranite Ingot, note for @jesusalva:
* I do not wanted to break your work
* Item required to craft 1 terra ingot should be; 1 TerraOre, 20 Coal And 1TinIngot
* Can you add the tinIngot as the required list ? If not I will let another NPC to craft those Terranite Ingot
Diffstat (limited to 'npc')
-rw-r--r-- | npc/003-8/jhedia.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/npc/003-8/jhedia.txt b/npc/003-8/jhedia.txt index b05ae1475..66e6f501c 100644 --- a/npc/003-8/jhedia.txt +++ b/npc/003-8/jhedia.txt @@ -69,6 +69,7 @@ L_Menu: l("Silver Ingot"), l("Gold Ingot"), l("Gold Pieces"), + rif(BaseLevel >= 70, l("Terranite Ingot")), l("Nothing, thanks."); // ingot_create(Ore, Ingot, Nº of Ore, Nº of Coal, Price); @@ -103,6 +104,9 @@ L_Menu: case 10: ingot_create(GoldOre, GoldPieces, 1, 20, 1100); break; + case 11: + ingot_create(TerraniteOre, TerraniteIngot, 10, 20, 2000); + break; default: goto L_Close; break; |