summaryrefslogtreecommitdiff
path: root/world/map/npc/001-2/jhedia.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-07-07 20:34:27 -0300
committerJesusaves <cpntb1@ymail.com>2021-07-07 20:34:27 -0300
commit9877fd4ad81120af8e63e96d5d429092014dc017 (patch)
treeec045a0535109a2e0d82e0e8155eb01ed9776452 /world/map/npc/001-2/jhedia.txt
parentaedbeb335a5ec5f55d22eace389076a18241ac9a (diff)
downloadserverdata-9877fd4ad81120af8e63e96d5d429092014dc017.tar.gz
serverdata-9877fd4ad81120af8e63e96d5d429092014dc017.tar.bz2
serverdata-9877fd4ad81120af8e63e96d5d429092014dc017.tar.xz
serverdata-9877fd4ad81120af8e63e96d5d429092014dc017.zip
Remove all Legacy files
Diffstat (limited to 'world/map/npc/001-2/jhedia.txt')
-rw-r--r--world/map/npc/001-2/jhedia.txt62
1 files changed, 0 insertions, 62 deletions
diff --git a/world/map/npc/001-2/jhedia.txt b/world/map/npc/001-2/jhedia.txt
deleted file mode 100644
index bca7d113..00000000
--- a/world/map/npc/001-2/jhedia.txt
+++ /dev/null
@@ -1,62 +0,0 @@
-// Ingot maker takes iron ore, gives ingots for future crafting purposes.
-
-001-2,23,50,0|script|Jhedia|160
-{
- set @Cost_Per_Ingot, 1000;
- set @Iron_Ore_Per, 5;
- 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 forge.\"";
- next;
- mes "[Jhedia]";
- mes "\"How many ingots would you like?\"";
- input @ingot_count;
-
- if (@ingot_count == 0)
- goto L_Jhedia_Bye;
- set @Zeny_cost, @ingot_count * @Cost_Per_Ingot;
- if (countitem("IronOre") < @Iron_Ore_Per * @ingot_count)
- goto L_Jhedia_NotEnough_Ore;
- if (countitem("Coal") < @Coal_Per * @ingot_count)
- goto L_Jhedia_NotEnough_Coal;
- if (Zeny < @Zeny_cost)
- goto L_Jhedia_NotEnough_Zeny;
- getinventorylist;
- if (@inventorylist_count == 100
- && countitem("IronIngot") == 0
- && countitem("IronOre") > @ingot_count * @Iron_Ore_Per
- | countitem("Coal") > @ingot_count * @Coal_Per)
- goto L_Jhedia_NotEnoughSlots;
- set Zeny, Zeny - @Zeny_cost;
- delitem "IronOre", @ingot_count * @Iron_Ore_Per;
- delitem "Coal", @ingot_count * @Coal_Per;
- getitem "IronIngot", @ingot_count;
- close;
-
-L_Jhedia_Bye:
- mes "[Jhedia]";
- mes "\"Goodbye then.\"";
- close;
-
-L_Jhedia_NotEnough_Ore:
- mes "[Jhedia]";
- mes "\"You do not seem to have enough Iron Ore.\"";
- close;
-
-L_Jhedia_NotEnough_Coal:
- mes "[Jhedia]";
- mes "\"You do not seem to have enough Coal.\"";
- close;
-
-L_Jhedia_NotEnough_Zeny:
- mes "[Jhedia]";
- mes "\"You do not seem to have enough gold pieces.\"";
- close;
-
-L_Jhedia_NotEnoughSlots:
- mes "[Jhedia]";
- mes "\"You do not seem to have enough room to carry this many ingots.\"";
- close;
-
-}