diff options
author | Fedja Beader <fedja@protonmail.ch> | 2024-07-03 01:10:18 +0200 |
---|---|---|
committer | Fedja Beader <fedja@protonmail.ch> | 2024-07-03 01:10:18 +0200 |
commit | 236a05f41d0244ba0ed7a200f023f4b52fe87ee8 (patch) | |
tree | 45d7356d84ec93a69466044d7353f455ce67aba3 | |
parent | 255831d7edac6c22cebec373b01bdac5b388d713 (diff) | |
download | serverdata-236a05f41d0244ba0ed7a200f023f4b52fe87ee8.tar.gz serverdata-236a05f41d0244ba0ed7a200f023f4b52fe87ee8.tar.bz2 serverdata-236a05f41d0244ba0ed7a200f023f4b52fe87ee8.tar.xz serverdata-236a05f41d0244ba0ed7a200f023f4b52fe87ee8.zip |
Reorder by ore/ingot value
-rw-r--r-- | npc/003-8/jhedia.txt | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/npc/003-8/jhedia.txt b/npc/003-8/jhedia.txt index 0b1d64955..fe07e526c 100644 --- a/npc/003-8/jhedia.txt +++ b/npc/003-8/jhedia.txt @@ -76,13 +76,13 @@ L_Menu: l("Iron Ingot"), l("Copper Ingot"), l("Tin Ingot"), + l("Silver Ingot"), + l("Gold Ingot"), + l("Gold Pieces"), l("Lead Ingot"), l("Titanium Ingot"), rif(BaseLevel >= 60, l("Iridium Ingot")), rif(BaseLevel >= 60, l("Platinum Ingot")), - l("Silver Ingot"), - l("Gold Ingot"), - l("Gold Pieces"), rif(BaseLevel >= 70, l("Terranite Ingot")), l("Nothing, thanks."); @@ -98,25 +98,25 @@ L_Menu: ingot_create(TinOre, TinIngot, 4, 9, 750); break; case 4: - ingot_create(LeadOre, LeadIngot, 4, 1, 760); + ingot_create(SilverOre, SilverIngot, 3, 7, 650); break; case 5: - ingot_create(TitaniumOre, TitaniumIngot, 4, 9, 800); + ingot_create(GoldOre, GoldIngot, 3, 9, 850); break; case 6: - ingot_create(IridiumOre, IridiumIngot, 4, 10, 1100); + ingot_create(GoldOre, GoldPieces, 1, 20, 1100); break; case 7: - ingot_create(PlatinumOre, PlatinumIngot, 3, 10, 1650); + ingot_create(LeadOre, LeadIngot, 4, 1, 760); break; case 8: - ingot_create(SilverOre, SilverIngot, 3, 7, 650); + ingot_create(TitaniumOre, TitaniumIngot, 4, 9, 800); break; case 9: - ingot_create(GoldOre, GoldIngot, 3, 9, 850); + ingot_create(IridiumOre, IridiumIngot, 4, 10, 1100); break; case 10: - ingot_create(GoldOre, GoldPieces, 1, 20, 1100); + ingot_create(PlatinumOre, PlatinumIngot, 3, 10, 1650); break; case 11: ingot_create(TerraniteOre, TerraniteIngot, 10, 20, 2000); |