diff --git a/L2J_Mobius_1.0_Ertheia/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/30091-07.html b/L2J_Mobius_1.0_Ertheia/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/30091-07.html index b92131f328..adadf28fdc 100644 --- a/L2J_Mobius_1.0_Ertheia/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/30091-07.html +++ b/L2J_Mobius_1.0_Ertheia/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/30091-07.html @@ -1,6 +1,6 @@ Jeweler Ellie:
Ah, very nice! One, two, three... 10 ore pieces! This should be enough. Now I'll get started!
-With this Oriharukon and silver, I'll make a very pretty... Oh no!
+With this Iron Ore and Accessory Gems, I'll make a very pretty... Oh no!
I'm sorry,we've got a problem! I was going to augment the ore so I could make a beautiful piece of jewelry, but I ran out of some materials I need! Will you help me? I can't leave the store, and there's no time to order them now.
-I need 5 Oriharukons, 500 units of silver and 150 Thons. I know it's a lot, but I've got to have them! Please hurry! +I need 95 Iron Ores, 385 Accessory Gems (Low Grade) and 405 Armor Fragments (Low Grade). I know it's a lot, but I've got to have them! Please hurry! \ No newline at end of file diff --git a/L2J_Mobius_1.0_Ertheia/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/30091-09.html b/L2J_Mobius_1.0_Ertheia/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/30091-09.html index 5c06c430c5..f4c8a98d5d 100644 --- a/L2J_Mobius_1.0_Ertheia/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/30091-09.html +++ b/L2J_Mobius_1.0_Ertheia/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/30091-09.html @@ -1,4 +1,4 @@ Jeweler Ellie:
-Ah! I didn't think that you could get it so quickly! Thank you! 5 Oriharukons, 500 units of silver and 150 Thons. I'll make some beautiful jewelry for a special occasion!
+Ah! I didn't think that you could get it so quickly! Thank you! 95 Iron Ores, 385 Accessory Gems (Low Grade) and 405 Armor Fragments (Low Grade). I'll make some beautiful jewelry for a special occasion!
\ No newline at end of file diff --git a/L2J_Mobius_1.0_Ertheia/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/30091-10.html b/L2J_Mobius_1.0_Ertheia/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/30091-10.html index 21ddb0db97..c3a275b1b1 100644 --- a/L2J_Mobius_1.0_Ertheia/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/30091-10.html +++ b/L2J_Mobius_1.0_Ertheia/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/30091-10.html @@ -1,3 +1,3 @@ Jeweler Ellie:
-These materials won't be easy to find! With some help, you can probably get them quicker. I need 5 Oriharukons, 500 units of silver and 150 Thons. Don't forget! +These materials won't be easy to find! With some help, you can probably get them quicker. I need 95 Iron Ores, 385 Accessory Gems (Low Grade) and 405 Armor Fragments (Low Grade). Don't forget! \ No newline at end of file diff --git a/L2J_Mobius_1.0_Ertheia/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/Q00035_FindGlitteringJewelry.java b/L2J_Mobius_1.0_Ertheia/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/Q00035_FindGlitteringJewelry.java index de1ae29652..99618c8f64 100644 --- a/L2J_Mobius_1.0_Ertheia/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/Q00035_FindGlitteringJewelry.java +++ b/L2J_Mobius_1.0_Ertheia/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/Q00035_FindGlitteringJewelry.java @@ -35,17 +35,17 @@ public class Q00035_FindGlitteringJewelry extends Quest // Monster private static final int ALLIGATOR = 20135; // Items - private static final int SILVER_NUGGET = 1873; - private static final int ORIHARUKON = 1893; - private static final int THONS = 4044; + private static final int ACCESSORY_GEM = 36556; + private static final int IRON_ORE = 36521; + private static final int ARMOR_FRAGMENT = 36551; private static final int JEWEL_BOX = 7077; private static final int ROUGH_JEWEL = 7162; // Misc private static final int MIN_LEVEL = 60; private static final int JEWEL_COUNT = 10; - private static final int ORIHARUKON_COUNT = 5; - private static final int NUGGET_COUNT = 500; - private static final int THONS_COUNT = 150; + private static final int IRON_ORE_COUNT = 95; + private static final int ACCESSORY_GEM_COUNT = 385; + private static final int ARMOR_FRAGMENT_COUNT = 405; public Q00035_FindGlitteringJewelry() { @@ -90,11 +90,11 @@ public class Q00035_FindGlitteringJewelry extends Quest } case "30091-11.html": { - if ((getQuestItemsCount(player, ORIHARUKON) >= ORIHARUKON_COUNT) && (getQuestItemsCount(player, SILVER_NUGGET) >= NUGGET_COUNT) && (getQuestItemsCount(player, THONS) >= THONS_COUNT)) + if ((getQuestItemsCount(player, IRON_ORE) >= IRON_ORE_COUNT) && (getQuestItemsCount(player, ACCESSORY_GEM) >= ACCESSORY_GEM_COUNT) && (getQuestItemsCount(player, ARMOR_FRAGMENT) >= ARMOR_FRAGMENT_COUNT)) { - takeItems(player, ORIHARUKON, ORIHARUKON_COUNT); - takeItems(player, SILVER_NUGGET, NUGGET_COUNT); - takeItems(player, THONS, THONS_COUNT); + takeItems(player, IRON_ORE, IRON_ORE_COUNT); + takeItems(player, ACCESSORY_GEM, ACCESSORY_GEM_COUNT); + takeItems(player, ARMOR_FRAGMENT, ARMOR_FRAGMENT_COUNT); giveItems(player, JEWEL_BOX, 1); qs.exitQuest(false, true); } @@ -165,7 +165,7 @@ public class Q00035_FindGlitteringJewelry extends Quest } case 4: { - htmltext = ((getQuestItemsCount(player, ORIHARUKON) >= ORIHARUKON_COUNT) && (getQuestItemsCount(player, SILVER_NUGGET) >= NUGGET_COUNT) && (getQuestItemsCount(player, THONS) >= THONS_COUNT)) ? "30091-09.html" : "30091-10.html"; + htmltext = ((getQuestItemsCount(player, IRON_ORE) >= IRON_ORE_COUNT) && (getQuestItemsCount(player, ACCESSORY_GEM) >= ACCESSORY_GEM_COUNT) && (getQuestItemsCount(player, ARMOR_FRAGMENT) >= ARMOR_FRAGMENT_COUNT)) ? "30091-09.html" : "30091-10.html"; break; } } diff --git a/L2J_Mobius_2.5_Underground/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/30091-07.html b/L2J_Mobius_2.5_Underground/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/30091-07.html index b92131f328..adadf28fdc 100644 --- a/L2J_Mobius_2.5_Underground/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/30091-07.html +++ b/L2J_Mobius_2.5_Underground/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/30091-07.html @@ -1,6 +1,6 @@ Jeweler Ellie:
Ah, very nice! One, two, three... 10 ore pieces! This should be enough. Now I'll get started!
-With this Oriharukon and silver, I'll make a very pretty... Oh no!
+With this Iron Ore and Accessory Gems, I'll make a very pretty... Oh no!
I'm sorry,we've got a problem! I was going to augment the ore so I could make a beautiful piece of jewelry, but I ran out of some materials I need! Will you help me? I can't leave the store, and there's no time to order them now.
-I need 5 Oriharukons, 500 units of silver and 150 Thons. I know it's a lot, but I've got to have them! Please hurry! +I need 95 Iron Ores, 385 Accessory Gems (Low Grade) and 405 Armor Fragments (Low Grade). I know it's a lot, but I've got to have them! Please hurry! \ No newline at end of file diff --git a/L2J_Mobius_2.5_Underground/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/30091-09.html b/L2J_Mobius_2.5_Underground/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/30091-09.html index 5c06c430c5..f4c8a98d5d 100644 --- a/L2J_Mobius_2.5_Underground/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/30091-09.html +++ b/L2J_Mobius_2.5_Underground/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/30091-09.html @@ -1,4 +1,4 @@ Jeweler Ellie:
-Ah! I didn't think that you could get it so quickly! Thank you! 5 Oriharukons, 500 units of silver and 150 Thons. I'll make some beautiful jewelry for a special occasion!
+Ah! I didn't think that you could get it so quickly! Thank you! 95 Iron Ores, 385 Accessory Gems (Low Grade) and 405 Armor Fragments (Low Grade). I'll make some beautiful jewelry for a special occasion!
\ No newline at end of file diff --git a/L2J_Mobius_2.5_Underground/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/30091-10.html b/L2J_Mobius_2.5_Underground/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/30091-10.html index 21ddb0db97..c3a275b1b1 100644 --- a/L2J_Mobius_2.5_Underground/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/30091-10.html +++ b/L2J_Mobius_2.5_Underground/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/30091-10.html @@ -1,3 +1,3 @@ Jeweler Ellie:
-These materials won't be easy to find! With some help, you can probably get them quicker. I need 5 Oriharukons, 500 units of silver and 150 Thons. Don't forget! +These materials won't be easy to find! With some help, you can probably get them quicker. I need 95 Iron Ores, 385 Accessory Gems (Low Grade) and 405 Armor Fragments (Low Grade). Don't forget! \ No newline at end of file diff --git a/L2J_Mobius_2.5_Underground/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/Q00035_FindGlitteringJewelry.java b/L2J_Mobius_2.5_Underground/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/Q00035_FindGlitteringJewelry.java index de1ae29652..99618c8f64 100644 --- a/L2J_Mobius_2.5_Underground/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/Q00035_FindGlitteringJewelry.java +++ b/L2J_Mobius_2.5_Underground/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/Q00035_FindGlitteringJewelry.java @@ -35,17 +35,17 @@ public class Q00035_FindGlitteringJewelry extends Quest // Monster private static final int ALLIGATOR = 20135; // Items - private static final int SILVER_NUGGET = 1873; - private static final int ORIHARUKON = 1893; - private static final int THONS = 4044; + private static final int ACCESSORY_GEM = 36556; + private static final int IRON_ORE = 36521; + private static final int ARMOR_FRAGMENT = 36551; private static final int JEWEL_BOX = 7077; private static final int ROUGH_JEWEL = 7162; // Misc private static final int MIN_LEVEL = 60; private static final int JEWEL_COUNT = 10; - private static final int ORIHARUKON_COUNT = 5; - private static final int NUGGET_COUNT = 500; - private static final int THONS_COUNT = 150; + private static final int IRON_ORE_COUNT = 95; + private static final int ACCESSORY_GEM_COUNT = 385; + private static final int ARMOR_FRAGMENT_COUNT = 405; public Q00035_FindGlitteringJewelry() { @@ -90,11 +90,11 @@ public class Q00035_FindGlitteringJewelry extends Quest } case "30091-11.html": { - if ((getQuestItemsCount(player, ORIHARUKON) >= ORIHARUKON_COUNT) && (getQuestItemsCount(player, SILVER_NUGGET) >= NUGGET_COUNT) && (getQuestItemsCount(player, THONS) >= THONS_COUNT)) + if ((getQuestItemsCount(player, IRON_ORE) >= IRON_ORE_COUNT) && (getQuestItemsCount(player, ACCESSORY_GEM) >= ACCESSORY_GEM_COUNT) && (getQuestItemsCount(player, ARMOR_FRAGMENT) >= ARMOR_FRAGMENT_COUNT)) { - takeItems(player, ORIHARUKON, ORIHARUKON_COUNT); - takeItems(player, SILVER_NUGGET, NUGGET_COUNT); - takeItems(player, THONS, THONS_COUNT); + takeItems(player, IRON_ORE, IRON_ORE_COUNT); + takeItems(player, ACCESSORY_GEM, ACCESSORY_GEM_COUNT); + takeItems(player, ARMOR_FRAGMENT, ARMOR_FRAGMENT_COUNT); giveItems(player, JEWEL_BOX, 1); qs.exitQuest(false, true); } @@ -165,7 +165,7 @@ public class Q00035_FindGlitteringJewelry extends Quest } case 4: { - htmltext = ((getQuestItemsCount(player, ORIHARUKON) >= ORIHARUKON_COUNT) && (getQuestItemsCount(player, SILVER_NUGGET) >= NUGGET_COUNT) && (getQuestItemsCount(player, THONS) >= THONS_COUNT)) ? "30091-09.html" : "30091-10.html"; + htmltext = ((getQuestItemsCount(player, IRON_ORE) >= IRON_ORE_COUNT) && (getQuestItemsCount(player, ACCESSORY_GEM) >= ACCESSORY_GEM_COUNT) && (getQuestItemsCount(player, ARMOR_FRAGMENT) >= ARMOR_FRAGMENT_COUNT)) ? "30091-09.html" : "30091-10.html"; break; } } diff --git a/L2J_Mobius_3.0_Helios/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/30091-07.html b/L2J_Mobius_3.0_Helios/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/30091-07.html index b92131f328..adadf28fdc 100644 --- a/L2J_Mobius_3.0_Helios/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/30091-07.html +++ b/L2J_Mobius_3.0_Helios/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/30091-07.html @@ -1,6 +1,6 @@ Jeweler Ellie:
Ah, very nice! One, two, three... 10 ore pieces! This should be enough. Now I'll get started!
-With this Oriharukon and silver, I'll make a very pretty... Oh no!
+With this Iron Ore and Accessory Gems, I'll make a very pretty... Oh no!
I'm sorry,we've got a problem! I was going to augment the ore so I could make a beautiful piece of jewelry, but I ran out of some materials I need! Will you help me? I can't leave the store, and there's no time to order them now.
-I need 5 Oriharukons, 500 units of silver and 150 Thons. I know it's a lot, but I've got to have them! Please hurry! +I need 95 Iron Ores, 385 Accessory Gems (Low Grade) and 405 Armor Fragments (Low Grade). I know it's a lot, but I've got to have them! Please hurry! \ No newline at end of file diff --git a/L2J_Mobius_3.0_Helios/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/30091-09.html b/L2J_Mobius_3.0_Helios/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/30091-09.html index 5c06c430c5..f4c8a98d5d 100644 --- a/L2J_Mobius_3.0_Helios/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/30091-09.html +++ b/L2J_Mobius_3.0_Helios/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/30091-09.html @@ -1,4 +1,4 @@ Jeweler Ellie:
-Ah! I didn't think that you could get it so quickly! Thank you! 5 Oriharukons, 500 units of silver and 150 Thons. I'll make some beautiful jewelry for a special occasion!
+Ah! I didn't think that you could get it so quickly! Thank you! 95 Iron Ores, 385 Accessory Gems (Low Grade) and 405 Armor Fragments (Low Grade). I'll make some beautiful jewelry for a special occasion!
\ No newline at end of file diff --git a/L2J_Mobius_3.0_Helios/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/30091-10.html b/L2J_Mobius_3.0_Helios/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/30091-10.html index 21ddb0db97..c3a275b1b1 100644 --- a/L2J_Mobius_3.0_Helios/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/30091-10.html +++ b/L2J_Mobius_3.0_Helios/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/30091-10.html @@ -1,3 +1,3 @@ Jeweler Ellie:
-These materials won't be easy to find! With some help, you can probably get them quicker. I need 5 Oriharukons, 500 units of silver and 150 Thons. Don't forget! +These materials won't be easy to find! With some help, you can probably get them quicker. I need 95 Iron Ores, 385 Accessory Gems (Low Grade) and 405 Armor Fragments (Low Grade). Don't forget! \ No newline at end of file diff --git a/L2J_Mobius_3.0_Helios/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/Q00035_FindGlitteringJewelry.java b/L2J_Mobius_3.0_Helios/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/Q00035_FindGlitteringJewelry.java index de1ae29652..99618c8f64 100644 --- a/L2J_Mobius_3.0_Helios/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/Q00035_FindGlitteringJewelry.java +++ b/L2J_Mobius_3.0_Helios/dist/game/data/scripts/quests/Q00035_FindGlitteringJewelry/Q00035_FindGlitteringJewelry.java @@ -35,17 +35,17 @@ public class Q00035_FindGlitteringJewelry extends Quest // Monster private static final int ALLIGATOR = 20135; // Items - private static final int SILVER_NUGGET = 1873; - private static final int ORIHARUKON = 1893; - private static final int THONS = 4044; + private static final int ACCESSORY_GEM = 36556; + private static final int IRON_ORE = 36521; + private static final int ARMOR_FRAGMENT = 36551; private static final int JEWEL_BOX = 7077; private static final int ROUGH_JEWEL = 7162; // Misc private static final int MIN_LEVEL = 60; private static final int JEWEL_COUNT = 10; - private static final int ORIHARUKON_COUNT = 5; - private static final int NUGGET_COUNT = 500; - private static final int THONS_COUNT = 150; + private static final int IRON_ORE_COUNT = 95; + private static final int ACCESSORY_GEM_COUNT = 385; + private static final int ARMOR_FRAGMENT_COUNT = 405; public Q00035_FindGlitteringJewelry() { @@ -90,11 +90,11 @@ public class Q00035_FindGlitteringJewelry extends Quest } case "30091-11.html": { - if ((getQuestItemsCount(player, ORIHARUKON) >= ORIHARUKON_COUNT) && (getQuestItemsCount(player, SILVER_NUGGET) >= NUGGET_COUNT) && (getQuestItemsCount(player, THONS) >= THONS_COUNT)) + if ((getQuestItemsCount(player, IRON_ORE) >= IRON_ORE_COUNT) && (getQuestItemsCount(player, ACCESSORY_GEM) >= ACCESSORY_GEM_COUNT) && (getQuestItemsCount(player, ARMOR_FRAGMENT) >= ARMOR_FRAGMENT_COUNT)) { - takeItems(player, ORIHARUKON, ORIHARUKON_COUNT); - takeItems(player, SILVER_NUGGET, NUGGET_COUNT); - takeItems(player, THONS, THONS_COUNT); + takeItems(player, IRON_ORE, IRON_ORE_COUNT); + takeItems(player, ACCESSORY_GEM, ACCESSORY_GEM_COUNT); + takeItems(player, ARMOR_FRAGMENT, ARMOR_FRAGMENT_COUNT); giveItems(player, JEWEL_BOX, 1); qs.exitQuest(false, true); } @@ -165,7 +165,7 @@ public class Q00035_FindGlitteringJewelry extends Quest } case 4: { - htmltext = ((getQuestItemsCount(player, ORIHARUKON) >= ORIHARUKON_COUNT) && (getQuestItemsCount(player, SILVER_NUGGET) >= NUGGET_COUNT) && (getQuestItemsCount(player, THONS) >= THONS_COUNT)) ? "30091-09.html" : "30091-10.html"; + htmltext = ((getQuestItemsCount(player, IRON_ORE) >= IRON_ORE_COUNT) && (getQuestItemsCount(player, ACCESSORY_GEM) >= ACCESSORY_GEM_COUNT) && (getQuestItemsCount(player, ARMOR_FRAGMENT) >= ARMOR_FRAGMENT_COUNT)) ? "30091-09.html" : "30091-10.html"; break; } }